diff options
| author | Glenn Morris | 2012-07-30 07:52:08 -0700 |
|---|---|---|
| committer | Glenn Morris | 2012-07-30 07:52:08 -0700 |
| commit | b65e7c462a0cd29836c0ff8cf868d8a8b5a69fa6 (patch) | |
| tree | 17505cf2b46fdfa3938aee13ba6070dabc7910f0 /src/s | |
| parent | 32bac6d6e81cc5039db7e34e3ac70930d2cb586e (diff) | |
| download | emacs-b65e7c462a0cd29836c0ff8cf868d8a8b5a69fa6.tar.gz emacs-b65e7c462a0cd29836c0ff8cf868d8a8b5a69fa6.zip | |
Move TIOCSIGSEND from src/s to configure
* configure.ac (TIOCSIGSEND): Move here from src/s.
* src/s/usg5-4-common.h (TIOCSIGSEND): Let configure set it.
* src/s/irix6-5.h (TIOCSIGSEND): No more need to undefine.
Diffstat (limited to 'src/s')
| -rw-r--r-- | src/s/irix6-5.h | 3 | ||||
| -rw-r--r-- | src/s/usg5-4-common.h | 5 |
2 files changed, 0 insertions, 8 deletions
diff --git a/src/s/irix6-5.h b/src/s/irix6-5.h index 1750183189d..338c18cca52 100644 --- a/src/s/irix6-5.h +++ b/src/s/irix6-5.h | |||
| @@ -24,6 +24,3 @@ char *_getpty(); | |||
| 24 | #endif | 24 | #endif |
| 25 | 25 | ||
| 26 | #undef SA_RESTART /* not the same as defining BROKEN_SA_RESTART */ | 26 | #undef SA_RESTART /* not the same as defining BROKEN_SA_RESTART */ |
| 27 | |||
| 28 | #undef TIOCSIGSEND /* defined in usg5-4-common.h */ | ||
| 29 | |||
diff --git a/src/s/usg5-4-common.h b/src/s/usg5-4-common.h index 12506bd8d08..05f22143460 100644 --- a/src/s/usg5-4-common.h +++ b/src/s/usg5-4-common.h | |||
| @@ -42,8 +42,3 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 42 | waitpid ((pid_t) -1, (status), (options)) | 42 | waitpid ((pid_t) -1, (status), (options)) |
| 43 | #define WRETCODE(w) (w >> 8) | 43 | #define WRETCODE(w) (w >> 8) |
| 44 | 44 | ||
| 45 | /* TIOCGPGRP is broken in SysVr4, so we can't send signals to PTY | ||
| 46 | subprocesses the usual way. But TIOCSIGNAL does work for PTYs, and | ||
| 47 | this is all we need. */ | ||
| 48 | #define TIOCSIGSEND TIOCSIGNAL | ||
| 49 | |||