aboutsummaryrefslogtreecommitdiffstats
path: root/src/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'src/Makefile.in')
-rw-r--r--src/Makefile.in10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/Makefile.in b/src/Makefile.in
index 53904a3992a..a71292e14f7 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -1,3 +1,4 @@
1
1# Makefile for GNU Emacs. 2# Makefile for GNU Emacs.
2# Copyright (C) 1985, 1987, 1988, 1993, 1994, 1995, 1999, 2000, 2001, 2002, 3# Copyright (C) 1985, 1987, 1988, 1993, 1994, 1995, 1999, 2000, 2001, 2002,
3# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 4# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
@@ -269,7 +270,9 @@ GCONF_LIBS = @GCONF_LIBS@
269 270
270/* C_SWITCH_X_SITE must come before C_SWITCH_X_MACHINE and C_SWITCH_X_SYSTEM 271/* C_SWITCH_X_SITE must come before C_SWITCH_X_MACHINE and C_SWITCH_X_SYSTEM
271 since it may have -I options that should override those two. */ 272 since it may have -I options that should override those two. */
272ALL_CFLAGS=-Demacs -DHAVE_CONFIG_H $(MYCPPFLAGS) -I. -I${srcdir} C_SWITCH_MACHINE C_SWITCH_SYSTEM C_SWITCH_X_SITE C_SWITCH_X_MACHINE C_SWITCH_X_SYSTEM C_SWITCH_SYSTEM_TEMACS ${CFLAGS_SOUND} ${RSVG_CFLAGS} ${DBUS_CFLAGS} ${GCONF_CFLAGS} ${CFLAGS} @FREETYPE_CFLAGS@ @FONTCONFIG_CFLAGS@ @LIBOTF_CFLAGS@ @M17N_FLT_CFLAGS@ ${DEPFLAGS} 273
274ALL_CFLAGS=-Demacs -DHAVE_CONFIG_H $(MYCPPFLAGS) -I. -I${srcdir} C_SWITCH_MACHINE C_SWITCH_SYSTEM C_SWITCH_X_SITE C_SWITCH_X_MACHINE C_SWITCH_X_SYSTEM C_SWITCH_SYSTEM_TEMACS ${CFLAGS_SOUND} ${RSVG_CFLAGS} ${IMAGEMAGICK_CFLAGS} ${DBUS_CFLAGS} ${GCONF_CFLAGS} ${CFLAGS} @FREETYPE_CFLAGS@ @FONTCONFIG_CFLAGS@ @LIBOTF_CFLAGS@ @M17N_FLT_CFLAGS@ ${DEPFLAGS}
275
273ALL_OBJC_CFLAGS=$(ALL_CFLAGS) @GNU_OBJC_CFLAGS@ 276ALL_OBJC_CFLAGS=$(ALL_CFLAGS) @GNU_OBJC_CFLAGS@
274 277
275.SUFFIXES: .m 278.SUFFIXES: .m
@@ -388,6 +391,9 @@ CFLAGS_SOUND= @CFLAGS_SOUND@
388RSVG_LIBS= @RSVG_LIBS@ 391RSVG_LIBS= @RSVG_LIBS@
389RSVG_CFLAGS= @RSVG_CFLAGS@ 392RSVG_CFLAGS= @RSVG_CFLAGS@
390 393
394IMAGEMAGICK_LIBS= @IMAGEMAGICK_LIBS@
395IMAGEMAGICK_CFLAGS= @IMAGEMAGICK_CFLAGS@
396
391#ifndef ORDINARY_LINK 397#ifndef ORDINARY_LINK
392/* Fix linking if compiled with GCC. */ 398/* Fix linking if compiled with GCC. */
393#ifdef __GNUC__ 399#ifdef __GNUC__
@@ -850,7 +856,7 @@ SOME_MACHINE_LISP = ../lisp/mouse.elc \
850 duplicated symbols. If the standard libraries were compiled 856 duplicated symbols. If the standard libraries were compiled
851 with GCC, we might need gnulib again after them. */ 857 with GCC, we might need gnulib again after them. */
852 858
853LIBES = $(LOADLIBES) $(LIBS) $(LIBX) $(LIBSOUND) $(RSVG_LIBS) $(DBUS_LIBS) \ 859LIBES = $(LOADLIBES) $(LIBS) $(LIBX) $(LIBSOUND) $(RSVG_LIBS) ${IMAGEMAGICK_LIBS} $(DBUS_LIBS) \
854 @LIBGPM@ @LIBRESOLV@ LIBS_SYSTEM LIBS_MACHINE LIBS_TERMCAP \ 860 @LIBGPM@ @LIBRESOLV@ LIBS_SYSTEM LIBS_MACHINE LIBS_TERMCAP \
855 $(GETLOADAVG_LIBS) ${GCONF_LIBS} \ 861 $(GETLOADAVG_LIBS) ${GCONF_LIBS} \
856 @FREETYPE_LIBS@ @FONTCONFIG_LIBS@ @LIBOTF_LIBS@ @M17N_FLT_LIBS@ \ 862 @FREETYPE_LIBS@ @FONTCONFIG_LIBS@ @LIBOTF_LIBS@ @M17N_FLT_LIBS@ \