diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-11-19 03:37:43 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-11-19 03:37:43 +0000 |
commit | 4df17d92b5585910ca81d1c71c3be1bfd89058e3 (patch) | |
tree | 2124693943c4537719c27826759c82a0d2e20740 /src | |
parent | e3687f6858e31f3d41c1b8a0ef5b3854ad399177 (diff) | |
download | emacs-4df17d92b5585910ca81d1c71c3be1bfd89058e3.tar.gz |
#undef SIGPOLL and SIGURG as well as SIGIO.
Diffstat (limited to 'src')
-rw-r--r-- | src/s/gnu-linux.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/s/gnu-linux.h b/src/s/gnu-linux.h index 1017e2dfe62..8d2278ec7e1 100644 --- a/src/s/gnu-linux.h +++ b/src/s/gnu-linux.h @@ -169,6 +169,10 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* Here we assume that signal.h is already included. */ #ifdef emacs #undef SIGIO +/* Some versions of Linux define SIGURG and SIGPOLL as aliases for SIGIO. + This prevents lossage in process.c. */ +#undef SIGURG +#undef SIGPOLL #endif /* This is needed for sysdep.c */ |