diff options
| author | Richard M. Stallman | 2002-09-01 13:38:50 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2002-09-01 13:38:50 +0000 |
| commit | dfe15ea33eb20a0ecec748eefffe2c38e3e4b7fa (patch) | |
| tree | 08d129844ff1e149801c69363b9559d007461956 /src | |
| parent | 4455ad75c5aba5dc4bae53fe271fea8b391b4a54 (diff) | |
| download | emacs-dfe15ea33eb20a0ecec748eefffe2c38e3e4b7fa.tar.gz emacs-dfe15ea33eb20a0ecec748eefffe2c38e3e4b7fa.zip | |
(TEMACS_LDFLAGS): Renamed from ALL_LDFLAGS. Don't include LDFLAGS.
(temacs): Pass LDFLAGS separately, and not via YMF_PASS_LDFLAGS.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 15 | ||||
| -rw-r--r-- | src/Makefile.in | 7 |
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 @@ | |||
| 1 | 2002-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 | |||
| 10 | 2002-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 | |||
| 1 | 2002-08-31 Eli Zaretskii <eliz@is.elta.co.il> | 16 | 2002-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 | ||
| 508 | ALL_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) | 509 | TEMACS_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 | ||
| 896 | temacs: MAKE_PARALLEL $(LOCALCPP) $(STARTFILES) stamp-oldxmenu ${obj} ${otherobj} OBJECTS_MACHINE prefix-args | 897 | temacs: 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 | ||