]> git.eshelyaron.com Git - emacs.git/commitdiff
(START_FILES, LIB_STANDARD): Adjust value according to HAVE_X86_64_LIB64_DIR.
authorGlenn Morris <rgm@gnu.org>
Thu, 17 Jan 2008 04:04:26 +0000 (04:04 +0000)
committerGlenn Morris <rgm@gnu.org>
Thu, 17 Jan 2008 04:04:26 +0000 (04:04 +0000)
src/ChangeLog
src/m/ibms390x.h

index 25b994e3ab84b2f4bdc0358e036ce55573a98936..ceea594199e666110954884b62be7975bb8becff 100644 (file)
@@ -1,3 +1,8 @@
+2008-01-17  Glenn Morris  <rgm@gnu.org>
+
+       * m/ibms390x.h (START_FILES, LIB_STANDARD): Adjust value according
+       to HAVE_X86_64_LIB64_DIR.
+
 2008-01-11  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
 
        * mac.c (mac_emacs_pid) [MAC_OSX]: New variable.
index 89aa3c193356edb3c90d85a198c743cdcb4e3f77..290b17a3e3f5cbdad36248d1446a5a6576e17615 100644 (file)
@@ -23,7 +23,7 @@ Boston, MA 02110-1301, USA.  */
    into ibms390.h.  */
 
 
-/* The following line tells the configuration script what sort of 
+/* The following line tells the configuration script what sort of
    operating system this machine is likely to run.
    USUAL-OPSYS="<name of system .h file here, without the s- or .h>"
 
@@ -161,10 +161,18 @@ NOTE-END */
 #define XPNTR(a) XUINT (a)
 
 #undef START_FILES
+#ifdef HAVE_X86_64_LIB64_DIR
 #define START_FILES pre-crt0.o /usr/lib64/crt1.o /usr/lib64/crti.o
+#else
+#define START_FILES pre-crt0.o /usr/lib/crt1.o /usr/lib/crti.o
+#endif
 
 #undef LIB_STANDARD
+#ifdef HAVE_X86_64_LIB64_DIR
 #define LIB_STANDARD -lgcc -lc -lgcc /usr/lib64/crtn.o
+#else
+#define LIB_STANDARD -lgcc -lc -lgcc /usr/lib/crtn.o
+#endif
 
 /* arch-tag: 4b87653c-6add-4663-8691-7d9dc17b5519
    (do not change this comment) */