diff options
author | Richard M. Stallman <rms@gnu.org> | 2001-12-11 22:20:20 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2001-12-11 22:20:20 +0000 |
commit | 8a2a6032daa218702d62b8d1e12240bda4bfb302 (patch) | |
tree | 2448a3b540110767589fd9963d56b9e666be1d34 /src/sysdep.c | |
parent | 8db5530aa05f20f511a0cf2373fd838004be80be (diff) | |
download | emacs-8a2a6032daa218702d62b8d1e12240bda4bfb302.tar.gz |
Test GNU_LINUX, not LINUX.
Diffstat (limited to 'src/sysdep.c')
-rw-r--r-- | src/sysdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sysdep.c b/src/sysdep.c index 28de7dba019..6d0528cb2db 100644 --- a/src/sysdep.c +++ b/src/sysdep.c @@ -245,7 +245,7 @@ static int baud_convert[] = #else #if defined (HAVE_LIBNCURSES) && ! defined (NCURSES_OSPEED_T) #else -#if defined (HAVE_TERMIOS_H) && defined (LINUX) +#if defined (HAVE_TERMIOS_H) && defined (GNU_LINUX) #include <termios.h> #endif #endif @@ -476,7 +476,7 @@ wait_for_termination (pid) break; wait (0); #else /* neither BSD_SYSTEM nor UNIPLUS: random sysV */ -#ifdef POSIX_SIGNALS /* would this work for LINUX as well? */ +#ifdef POSIX_SIGNALS /* would this work for GNU/Linux as well? */ sigblock (sigmask (SIGCHLD)); errno = 0; if (kill (pid, 0) == -1 && errno == ESRCH) |