From: Glenn Morris Date: Thu, 17 Jan 2008 04:04:26 +0000 (+0000) Subject: (START_FILES, LIB_STANDARD): Adjust value according to HAVE_X86_64_LIB64_DIR. X-Git-Tag: emacs-pretest-22.1.90~79 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5d2c8fc0d8e74cfa8bbe6b5d4a26eff56d911df6;p=emacs.git (START_FILES, LIB_STANDARD): Adjust value according to HAVE_X86_64_LIB64_DIR. --- diff --git a/src/ChangeLog b/src/ChangeLog index 25b994e3ab8..ceea594199e 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2008-01-17 Glenn Morris + + * m/ibms390x.h (START_FILES, LIB_STANDARD): Adjust value according + to HAVE_X86_64_LIB64_DIR. + 2008-01-11 YAMAMOTO Mitsuharu * mac.c (mac_emacs_pid) [MAC_OSX]: New variable. diff --git a/src/m/ibms390x.h b/src/m/ibms390x.h index 89aa3c19335..290b17a3e3f 100644 --- a/src/m/ibms390x.h +++ b/src/m/ibms390x.h @@ -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="" @@ -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) */