aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/m/ibms390x.h10
2 files changed, 14 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 25b994e3ab8..ceea594199e 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12008-01-17 Glenn Morris <rgm@gnu.org>
2
3 * m/ibms390x.h (START_FILES, LIB_STANDARD): Adjust value according
4 to HAVE_X86_64_LIB64_DIR.
5
12008-01-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> 62008-01-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2 7
3 * mac.c (mac_emacs_pid) [MAC_OSX]: New variable. 8 * 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. */
23 into ibms390.h. */ 23 into ibms390.h. */
24 24
25 25
26/* The following line tells the configuration script what sort of 26/* The following line tells the configuration script what sort of
27 operating system this machine is likely to run. 27 operating system this machine is likely to run.
28 USUAL-OPSYS="<name of system .h file here, without the s- or .h>" 28 USUAL-OPSYS="<name of system .h file here, without the s- or .h>"
29 29
@@ -161,10 +161,18 @@ NOTE-END */
161#define XPNTR(a) XUINT (a) 161#define XPNTR(a) XUINT (a)
162 162
163#undef START_FILES 163#undef START_FILES
164#ifdef HAVE_X86_64_LIB64_DIR
164#define START_FILES pre-crt0.o /usr/lib64/crt1.o /usr/lib64/crti.o 165#define START_FILES pre-crt0.o /usr/lib64/crt1.o /usr/lib64/crti.o
166#else
167#define START_FILES pre-crt0.o /usr/lib/crt1.o /usr/lib/crti.o
168#endif
165 169
166#undef LIB_STANDARD 170#undef LIB_STANDARD
171#ifdef HAVE_X86_64_LIB64_DIR
167#define LIB_STANDARD -lgcc -lc -lgcc /usr/lib64/crtn.o 172#define LIB_STANDARD -lgcc -lc -lgcc /usr/lib64/crtn.o
173#else
174#define LIB_STANDARD -lgcc -lc -lgcc /usr/lib/crtn.o
175#endif
168 176
169/* arch-tag: 4b87653c-6add-4663-8691-7d9dc17b5519 177/* arch-tag: 4b87653c-6add-4663-8691-7d9dc17b5519
170 (do not change this comment) */ 178 (do not change this comment) */