]> code.delx.au - gnu-emacs/blobdiff - src/s/gnu-linux.h
(LIB_MOTIF): Fix typo.
[gnu-emacs] / src / s / gnu-linux.h
index 2225f5f8e9e190a340197a3101889a83bfde5d9f..5416a42beacd7eab7ef6d34e9af3df6a32e10e7c 100644 (file)
@@ -1,5 +1,4 @@
-/* This file is the configuration file for Lignux systems
-   (that is,  Linux-based GNU operating systems.)
+/* This file is the configuration file for Linux-based GNU systems
    Copyright (C) 1985, 1986, 1992, 1994, 1996 Free Software Foundation, Inc.
 
 This file is part of GNU Emacs.
@@ -36,7 +35,7 @@ Boston, MA 02111-1307, USA.  */
 /* SYSTEM_TYPE should indicate the kind of system you are using.
  It sets the Lisp variable system-type.  */
 
-#define SYSTEM_TYPE "lignux"           /* All the best software is free. */
+#define SYSTEM_TYPE "gnu/linux"                /* All the best software is free. */
 
 /* Check the version number of Linux--if it is at least 1.2.0,
    it is safe to use SIGIO.  */
@@ -91,9 +90,9 @@ Boston, MA 02111-1307, USA.  */
    The alternative is that a lock file named
    /usr/spool/mail/$USER.lock.  */
 
-/* Both are used in Linux by different mail programs.  I assume that most
-   people are using newer mailers that have heard of flock.  Change this
-   if you need to. */
+/* On GNU/Linux systems, both methods are used by various mail
+   programs.  I assume that most people are using newer mailers that
+   have heard of flock.  Change this if you need to. */
 
 #define MAIL_USE_FLOCK
 
@@ -151,7 +150,7 @@ Boston, MA 02111-1307, USA.  */
 #define LIB_GCC `$(CC) $(C_SWITCH_X_SITE) -print-libgcc-file-name`
 
 #ifndef __ELF__
-/* Linux has crt0.o in a non-standard place */
+/* GNU/Linux usually has crt0.o in a non-standard place */
 #define START_FILES pre-crt0.o /usr/lib/crt0.o
 #else
 #define START_FILES pre-crt0.o /usr/lib/crt1.o /usr/lib/crti.o
@@ -160,17 +159,12 @@ Boston, MA 02111-1307, USA.  */
 #ifdef __ELF__
 /* Here is how to find X Windows.  LD_SWITCH_X_SITE_AUX gives an -R option
    says where to find X windows at run time.  */
-#ifndef __GNUC__
+
 #define LD_SWITCH_SYSTEM LD_SWITCH_X_SITE_AUX
-#else /* GCC */
-/* We use ./prefix-args because we don't know whether LD_SWITCH_X_SITE_AUX
-   has anything in it.  It can be empty.
-   This works ok in src.  Luckily lib-src does not use LD_SWITCH_SYSTEM.  */
-#define LD_SWITCH_SYSTEM `./prefix-args -Xlinker LD_SWITCH_X_SITE_AUX`
-#endif /* GCC */
 #endif /* __ELF__ */
 
-/* As of version 1.1.51, Linux does not actually implement SIGIO.  */
+/* As of version 1.1.51, Linux did not actually implement SIGIO.
+   But it works in newer versions.  */
 /* Here we assume that signal.h is already included.  */
 #ifdef emacs
 #ifdef LINUX_SIGIO_DOES_WORK