aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGlenn Morris2012-07-11 00:28:27 -0700
committerGlenn Morris2012-07-11 00:28:27 -0700
commit09f4e3b0149e10d6d6a3d4915cf5c0a9768ded46 (patch)
treefe5a71ed4d8988810942b3847380ff2b14127e24 /src
parent554fef512f2b7015d09a4921cc0eb3b966dbfabe (diff)
downloademacs-09f4e3b0149e10d6d6a3d4915cf5c0a9768ded46.tar.gz
emacs-09f4e3b0149e10d6d6a3d4915cf5c0a9768ded46.zip
Move SIGNALS_VIA_CHARACTERS from src/s to configure
* configure.ac (SIGNALS_VIA_CHARACTERS): Move here from src/s. * src/s/aix4-2.h, src/s/bsd-common.h, src/s/cygwin.h, src/s/gnu-linux.h: * src/s/irix6-5.h: Move SIGNALS_VIA_CHARACTERS to configure.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog3
-rw-r--r--src/s/aix4-2.h3
-rw-r--r--src/s/bsd-common.h3
-rw-r--r--src/s/cygwin.h3
-rw-r--r--src/s/gnu-linux.h11
-rw-r--r--src/s/irix6-5.h4
6 files changed, 3 insertions, 24 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index b323a876334..5542d1db0f1 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -14,6 +14,9 @@
14 14
152012-07-11 Glenn Morris <rgm@gnu.org> 152012-07-11 Glenn Morris <rgm@gnu.org>
16 16
17 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/gnu-linux.h:
18 * s/irix6-5.h: Move SIGNALS_VIA_CHARACTERS to configure.
19
17 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h: 20 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
18 * s/gnu-linux.h, s/hpux10-20.h, s/template.h, s/usg5-4-common.h: 21 * s/gnu-linux.h, s/hpux10-20.h, s/template.h, s/usg5-4-common.h:
19 Move CLASH_DETECTION to configure. 22 Move CLASH_DETECTION to configure.
diff --git a/src/s/aix4-2.h b/src/s/aix4-2.h
index 5741ef7c492..9fd7938f37c 100644
--- a/src/s/aix4-2.h
+++ b/src/s/aix4-2.h
@@ -41,9 +41,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
41/* Special items needed to make Emacs run on this system. */ 41/* Special items needed to make Emacs run on this system. */
42 42
43/* Perry Smith <pedz@ddivt1.austin.ibm.com> says these are correct. */ 43/* Perry Smith <pedz@ddivt1.austin.ibm.com> says these are correct. */
44#define SIGNALS_VIA_CHARACTERS
45
46/* Perry Smith <pedz@ddivt1.austin.ibm.com> says these are correct. */
47#undef sigmask 44#undef sigmask
48 45
49#ifndef HAVE_LIBXMU 46#ifndef HAVE_LIBXMU
diff --git a/src/s/bsd-common.h b/src/s/bsd-common.h
index c9c531b70b6..184ba7d036b 100644
--- a/src/s/bsd-common.h
+++ b/src/s/bsd-common.h
@@ -59,6 +59,3 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
59 59
60/* Define HAVE_SOCKETS if system supports 4.2-compatible sockets. */ 60/* Define HAVE_SOCKETS if system supports 4.2-compatible sockets. */
61#define HAVE_SOCKETS 61#define HAVE_SOCKETS
62
63/* Send signals to subprocesses by "typing" special chars at them. */
64#define SIGNALS_VIA_CHARACTERS
diff --git a/src/s/cygwin.h b/src/s/cygwin.h
index 9faaea785d7..cf418135b8d 100644
--- a/src/s/cygwin.h
+++ b/src/s/cygwin.h
@@ -76,6 +76,3 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
76 As malloc is not the Cygwin malloc, the Cygwin memalign always 76 As malloc is not the Cygwin malloc, the Cygwin memalign always
77 returns ENOSYS. A workaround is to set G_SLICE=always-malloc. */ 77 returns ENOSYS. A workaround is to set G_SLICE=always-malloc. */
78#define G_SLICE_ALWAYS_MALLOC 78#define G_SLICE_ALWAYS_MALLOC
79
80/* Send signals to subprocesses by "typing" special chars at them. */
81#define SIGNALS_VIA_CHARACTERS
diff --git a/src/s/gnu-linux.h b/src/s/gnu-linux.h
index d61d3ae5621..463ad226ec1 100644
--- a/src/s/gnu-linux.h
+++ b/src/s/gnu-linux.h
@@ -25,17 +25,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
25#define USG 25#define USG
26#define GNU_LINUX 26#define GNU_LINUX
27 27
28#ifdef emacs
29#ifdef HAVE_LINUX_VERSION_H
30#include <linux/version.h>
31
32#if LINUX_VERSION_CODE >= 0x20400
33/* 21 Jun 06: Eric Hanchrow <offby1@blarg.net> says this works. */
34#define SIGNALS_VIA_CHARACTERS
35#endif /* LINUX_VERSION_CODE >= 0x20400 */
36#endif /* HAVE_LINUX_VERSION_H */
37#endif /* emacs */
38
39#if defined HAVE_GRANTPT 28#if defined HAVE_GRANTPT
40#define UNIX98_PTYS 29#define UNIX98_PTYS
41 30
diff --git a/src/s/irix6-5.h b/src/s/irix6-5.h
index 1f50df600d9..506f2c6cd8f 100644
--- a/src/s/irix6-5.h
+++ b/src/s/irix6-5.h
@@ -28,10 +28,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
28 28
29#undef SETUP_SLAVE_PTY 29#undef SETUP_SLAVE_PTY
30 30
31/* thomas@mathematik.uni-bremen.de says this is needed. */
32/* Make process_send_signal work by "typing" a signal character on the pty. */
33#define SIGNALS_VIA_CHARACTERS
34
35/* Letter to use in finding device name of first pty, 31/* Letter to use in finding device name of first pty,
36 if system supports pty's. 'a' means it is /dev/ptya0 */ 32 if system supports pty's. 'a' means it is /dev/ptya0 */
37#undef FIRST_PTY_LETTER 33#undef FIRST_PTY_LETTER