diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 6 | ||||
| -rw-r--r-- | src/s/irix6-5.h | 3 | ||||
| -rw-r--r-- | src/s/usg5-4-common.h | 5 |
3 files changed, 4 insertions, 10 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 076b5eb1cce..907b54d614f 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -3,8 +3,10 @@ | |||
| 3 | * s/netbsd.h: Let configure include signal.h if needed. | 3 | * s/netbsd.h: Let configure include signal.h if needed. |
| 4 | Remove file, which is now empty. | 4 | Remove file, which is now empty. |
| 5 | 5 | ||
| 6 | * s/usg5-4-common.h (_longjmp, _setjmp): Let configure set them. | 6 | * s/usg5-4-common.h (_longjmp, _setjmp, TIOCSIGSEND): |
| 7 | * s/irix6-5.h (_longjmp, _setjmp): No more need to undefine. | 7 | Let configure set them. |
| 8 | * s/irix6-5.h (_longjmp, _setjmp, TIOCSIGSEND): | ||
| 9 | No more need to undefine. | ||
| 8 | 10 | ||
| 9 | 2012-07-30 Andreas Schwab <schwab@linux-m68k.org> | 11 | 2012-07-30 Andreas Schwab <schwab@linux-m68k.org> |
| 10 | 12 | ||
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 | |||