aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/ChangeLog15
-rw-r--r--src/Makefile.in7
2 files changed, 19 insertions, 3 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 40286abc86b..2ddaa3d9af9 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,18 @@
12002-09-01 Richard M. Stallman <rms@gnu.org>
2
3 * alloc.c (display_malloc_warning): Use display-warning.
4 (malloc_warning_1): Function deleted.
5
6 * alloc.c [ALLOC_DEBUG]: #undef INLINE.
7
8 * lread.c (read1): Handle #! by skipping the line.
9
102002-08-31 Richard M. Stallman <rms@gnu.org>
11
12 * Makefile.in (TEMACS_LDFLAGS): Renamed from ALL_LDFLAGS.
13 Don't include LDFLAGS.
14 (temacs): Pass LDFLAGS separately, and not via YMF_PASS_LDFLAGS.
15
12002-08-31 Eli Zaretskii <eliz@is.elta.co.il> 162002-08-31 Eli Zaretskii <eliz@is.elta.co.il>
2 17
3 * xdisp.c (get_window_cursor_type): Don't use x_highlight_frame 18 * xdisp.c (get_window_cursor_type): Don't use x_highlight_frame
diff --git a/src/Makefile.in b/src/Makefile.in
index a71798e2c42..9271bc5c8b9 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -505,8 +505,9 @@ LD=ld
505#endif /* not COFF_ENCAPSULATE */ 505#endif /* not COFF_ENCAPSULATE */
506#endif /* not ORDINARY_LINK */ 506#endif /* not ORDINARY_LINK */
507 507
508ALL_LDFLAGS = LD_SWITCH_SYSTEM LD_SWITCH_SYSTEM_TEMACS LD_SWITCH_MACHINE \ 508/* Flags to pass to LD only for temacs. */
509 LD_SWITCH_MACHINE_TEMACS LD_SWITCH_SITE $(LDFLAGS) 509TEMACS_LDFLAGS = LD_SWITCH_SYSTEM LD_SWITCH_SYSTEM_TEMACS LD_SWITCH_MACHINE \
510 LD_SWITCH_MACHINE_TEMACS LD_SWITCH_SITE
510 511
511/* A macro which other sections of Makefile can redefine to munge the 512/* A macro which other sections of Makefile can redefine to munge the
512 flags before they're passed to LD. This is helpful if you have 513 flags before they're passed to LD. This is helpful if you have
@@ -894,7 +895,7 @@ ${libsrc}make-docfile:
894#endif 895#endif
895 896
896temacs: MAKE_PARALLEL $(LOCALCPP) $(STARTFILES) stamp-oldxmenu ${obj} ${otherobj} OBJECTS_MACHINE prefix-args 897temacs: MAKE_PARALLEL $(LOCALCPP) $(STARTFILES) stamp-oldxmenu ${obj} ${otherobj} OBJECTS_MACHINE prefix-args
897 $(LD) YMF_PASS_LDFLAGS (${STARTFLAGS} ${ALL_LDFLAGS}) \ 898 $(LD) YMF_PASS_LDFLAGS (${STARTFLAGS} ${TEMACS_LDFLAGS}) $(LDFLAGS) \
898 -o temacs ${STARTFILES} ${obj} ${otherobj} \ 899 -o temacs ${STARTFILES} ${obj} ${otherobj} \
899 OBJECTS_MACHINE ${LIBES} 900 OBJECTS_MACHINE ${LIBES}
900 901