]> git.eshelyaron.com Git - emacs.git/commitdiff
Test GNU_LINUX, not LINUX.
authorRichard M. Stallman <rms@gnu.org>
Tue, 11 Dec 2001 22:20:20 +0000 (22:20 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 11 Dec 2001 22:20:20 +0000 (22:20 +0000)
src/Makefile.in
src/dispnew.c
src/emacs.c
src/fileio.c
src/mem-limits.h
src/process.c
src/sysdep.c

index 04655d4f266a989235a76240240f4e3a6ad1280e..1687c58eeb60c6bc4c4cfcbfdf2742258c67780f 100644 (file)
@@ -109,7 +109,7 @@ CC = C_COMPILER
 /* GNU libc requires ORDINARY_LINK so that its own crt0 is used.
    Linux is an exception because it uses a funny variant of GNU libc.  */
 #ifdef __GNU_LIBRARY__
-#ifndef LINUX
+#ifndef GNU_LINUX
 #define ORDINARY_LINK
 #endif
 #endif
index da6bcc33b1e0588d42dc8223e07f1270fd09e4b1..c5ce42ef3814f61c70d390a084c8f2cbd61ded9e 100644 (file)
@@ -101,7 +101,7 @@ Boston, MA 02111-1307, USA.  */
 #endif
 #endif /* not __GNU_LIBRARY__ */
 
-#if defined(HAVE_TERM_H) && defined (LINUX) && defined (HAVE_LIBNCURSES)
+#if defined(HAVE_TERM_H) && defined (GNU_LINUX) && defined (HAVE_LIBNCURSES)
 #include <term.h>              /* for tgetent */
 #endif
 \f
@@ -6397,7 +6397,7 @@ init_display ()
 #else
       Vwindow_system_version = make_number (10);
 #endif
-#if defined (LINUX) && defined (HAVE_LIBNCURSES)
+#if defined (GNU_LINUX) && defined (HAVE_LIBNCURSES)
       /* In some versions of ncurses,
         tputs crashes if we have not called tgetent.
         So call tgetent.  */
index 2262194d1af3d50c67c74e34b4f5a5667d7d637a..bf7f9a5f977efb399675c344bda3afb6bc601b63 100644 (file)
@@ -593,7 +593,7 @@ void __do_global_ctors_aux ()
 void __do_global_dtors ()
 {}
 /* Linux has a bug in its library; avoid an error.  */
-#ifndef LINUX
+#ifndef GNU_LINUX
 char * __CTOR_LIST__[2] = { (char *) (-1), 0 };
 #endif
 char * __DTOR_LIST__[2] = { (char *) (-1), 0 };
index 407109ddc874f5150700f21a46266ef672a3e8d3..69a7ec82d882a25c442184aeaf5613bf5ee596a5 100644 (file)
@@ -23,7 +23,7 @@ Boston, MA 02111-1307, USA.  */
 
 #include <config.h>
 
-#if defined (USG5) || defined (BSD_SYSTEM) || defined (LINUX)
+#if defined (USG5) || defined (BSD_SYSTEM) || defined (GNU_LINUX)
 #include <fcntl.h>
 #endif
 
index dae4cf7fd45807c1d96fd48f3510ebff45bc86d3..1028d7ff5adcf7424378f354bc9ed1760215e6c6 100644 (file)
@@ -118,7 +118,7 @@ get_lim_data ()
   lim_data = -1;
 
   /* Use the ulimit call, if we seem to have it.  */
-#if !defined (ULIMIT_BREAK_VALUE) || defined (LINUX)
+#if !defined (ULIMIT_BREAK_VALUE) || defined (GNU_LINUX)
   lim_data = ulimit (3, 0);
 #endif
 
index 5d579149f2cc1c62c9cd46f947b88e0f3f6350e8..e9f7c59936ced6f05aab374744c17e2ea9c4c084 100644 (file)
@@ -4276,7 +4276,7 @@ sigchld_handler (signo)
         Otherwise (on systems that have WNOHANG), loop around
         to use up all the processes that have something to tell us.  */
 #if (defined WINDOWSNT \
-     || (defined USG && !defined LINUX \
+     || (defined USG && !defined GNU_LINUX \
          && !(defined HPUX && defined WNOHANG)))
 #if defined (USG) && ! defined (POSIX_SIGNALS)
       signal (signo, sigchld_handler);
index 28de7dba0195c66b510503ebbba9afed981d4144..6d0528cb2dbcdba69a2181b238b303a9a149aa7a 100644 (file)
@@ -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)