aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1994-10-01 04:42:45 +0000
committerRichard M. Stallman1994-10-01 04:42:45 +0000
commitfe9f955af30ea463f2f303146e7fce793d0d379f (patch)
treedfe474b4ecdd1fe851f0c6198ca09378e77e3ed4 /src
parentf4e5bca55691985ad31a7d156c118d7a7dae3a95 (diff)
downloademacs-fe9f955af30ea463f2f303146e7fce793d0d379f.tar.gz
emacs-fe9f955af30ea463f2f303146e7fce793d0d379f.zip
(LDFLAGS): New variable.
(LIBX): Use LDFLAGS.
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Makefile.in b/src/Makefile.in
index c4c5f957367..39b7c2cb56c 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -333,7 +333,8 @@ LIBXT=
333#ifdef HAVE_X11 333#ifdef HAVE_X11
334/* LD_SWITCH_X_DEFAULT comes after everything else that specifies 334/* LD_SWITCH_X_DEFAULT comes after everything else that specifies
335 options for where to find X libraries, but before those libraries. */ 335 options for where to find X libraries, but before those libraries. */
336LIBX= $(LIBXMENU) LD_SWITCH_X_SITE LD_SWITCH_X_DEFAULT $(LIBXT) LIB_X11_LIB LIBX11_MACHINE LIBX11_SYSTEM 336X11_LDFLAGS = LD_SWITCH_X_SITE LD_SWITCH_X_DEFAULT
337LIBX= $(LIBXMENU) $(X11_LDFLAGS) $(LIBXT) LIB_X11_LIB LIBX11_MACHINE LIBX11_SYSTEM
337#else /* not HAVE_X11 */ 338#else /* not HAVE_X11 */
338LIBX= $(LIBXMENU) LD_SWITCH_X_SITE -lX10 LIBX10_MACHINE LIBX10_SYSTEM 339LIBX= $(LIBXMENU) LD_SWITCH_X_SITE -lX10 LIBX10_MACHINE LIBX10_SYSTEM
339#endif /* not HAVE_X11 */ 340#endif /* not HAVE_X11 */