diff options
Diffstat (limited to 'src/Makefile.in')
| -rw-r--r-- | src/Makefile.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index f430c787d56..eb4e8903812 100644 --- a/src/Makefile.in +++ b/src/Makefile.in | |||
| @@ -111,9 +111,6 @@ LD_SWITCH_SYSTEM_TEMACS=@LD_SWITCH_SYSTEM_TEMACS@ | |||
| 111 | ## Flags to pass to ld only for temacs. | 111 | ## Flags to pass to ld only for temacs. |
| 112 | TEMACS_LDFLAGS = $(LD_SWITCH_SYSTEM) $(LD_SWITCH_SYSTEM_TEMACS) | 112 | TEMACS_LDFLAGS = $(LD_SWITCH_SYSTEM) $(LD_SWITCH_SYSTEM_TEMACS) |
| 113 | 113 | ||
| 114 | ## $LDFLAGS or empty if NS_IMPL_GNUSTEP (for some reason). | ||
| 115 | TEMACS_LDFLAGS2 = @TEMACS_LDFLAGS2@ | ||
| 116 | |||
| 117 | ## If available, the full path to the paxctl program. | 114 | ## If available, the full path to the paxctl program. |
| 118 | ## On grsecurity/PaX systems, unexec will fail due to a gap between | 115 | ## On grsecurity/PaX systems, unexec will fail due to a gap between |
| 119 | ## the bss section and the heap. This can be prevented by disabling | 116 | ## the bss section and the heap. This can be prevented by disabling |
| @@ -230,6 +227,9 @@ LIBX_OTHER=@LIBX_OTHER@ | |||
| 230 | ## configure, which should set it to nil in non-X builds. | 227 | ## configure, which should set it to nil in non-X builds. |
| 231 | LIBX_BASE=$(LIBXMENU) $(LD_SWITCH_X_SITE) | 228 | LIBX_BASE=$(LIBXMENU) $(LD_SWITCH_X_SITE) |
| 232 | 229 | ||
| 230 | ## Only used for GNUstep | ||
| 231 | LIBS_GNUSTEP=@LIBS_GNUSTEP@ | ||
| 232 | |||
| 233 | LIBSOUND= @LIBSOUND@ | 233 | LIBSOUND= @LIBSOUND@ |
| 234 | CFLAGS_SOUND= @CFLAGS_SOUND@ | 234 | CFLAGS_SOUND= @CFLAGS_SOUND@ |
| 235 | 235 | ||
| @@ -412,7 +412,7 @@ otherobj= $(TERMCAP_OBJ) $(PRE_ALLOC_OBJ) $(GMALLOC_OBJ) $(RALLOC_OBJ) \ | |||
| 412 | ## Note that SunOS needs -lm to come before -lc; otherwise, you get | 412 | ## Note that SunOS needs -lm to come before -lc; otherwise, you get |
| 413 | ## duplicated symbols. If the standard libraries were compiled | 413 | ## duplicated symbols. If the standard libraries were compiled |
| 414 | ## with GCC, we might need LIB_GCC again after them. | 414 | ## with GCC, we might need LIB_GCC again after them. |
| 415 | LIBES = $(LIBS) $(W32_LIBS) $(LIBX_BASE) $(LIBIMAGE) \ | 415 | LIBES = $(LIBS) $(W32_LIBS) $(LIBS_GNUSTEP) $(LIBX_BASE) $(LIBIMAGE) \ |
| 416 | $(LIBX_OTHER) $(LIBSOUND) \ | 416 | $(LIBX_OTHER) $(LIBSOUND) \ |
| 417 | $(RSVG_LIBS) $(IMAGEMAGICK_LIBS) $(LIB_CLOCK_GETTIME) \ | 417 | $(RSVG_LIBS) $(IMAGEMAGICK_LIBS) $(LIB_CLOCK_GETTIME) \ |
| 418 | $(WEBKIT_LIBS) $(CLUTTER_LIBS) $(GIR_LIBS) \ | 418 | $(WEBKIT_LIBS) $(CLUTTER_LIBS) $(GIR_LIBS) \ |
| @@ -488,7 +488,7 @@ $(lib)/libgnu.a: $(config_h) | |||
| 488 | 488 | ||
| 489 | temacs$(EXEEXT): $(START_FILES) stamp-oldxmenu $(obj) $(otherobj) \ | 489 | temacs$(EXEEXT): $(START_FILES) stamp-oldxmenu $(obj) $(otherobj) \ |
| 490 | $(lib)/libgnu.a $(W32_RES) | 490 | $(lib)/libgnu.a $(W32_RES) |
| 491 | $(CC) $(LD_FIRSTFLAG) $(ALL_CFLAGS) $(TEMACS_LDFLAGS) $(TEMACS_LDFLAGS2) \ | 491 | $(CC) $(LD_FIRSTFLAG) $(ALL_CFLAGS) $(TEMACS_LDFLAGS) $(LDFLAGS) \ |
| 492 | -o temacs $(START_FILES) $(obj) $(otherobj) $(lib)/libgnu.a $(LIBES) \ | 492 | -o temacs $(START_FILES) $(obj) $(otherobj) $(lib)/libgnu.a $(LIBES) \ |
| 493 | $(W32_RES_LINK) | 493 | $(W32_RES_LINK) |
| 494 | test "$(CANNOT_DUMP)" = "yes" || \ | 494 | test "$(CANNOT_DUMP)" = "yes" || \ |