]> git.eshelyaron.com Git - emacs.git/commitdiff
configure.in: Don't zero-out FONTCONFIG_CFLAGS and FONTCONFIG_LIBS
authorMiles Bader <miles@gnu.org>
Sat, 22 Jan 2011 02:45:57 +0000 (11:45 +0900)
committerMiles Bader <miles@gnu.org>
Sat, 22 Jan 2011 02:45:57 +0000 (11:45 +0900)
when building with XFT (doing so is incorrect, as Emacs directly uses
fontconfig, and breaks building when using a strict linker).

ChangeLog
configure.in

index 364fe879c5ea79be452c9c44f0cb3a8e502f9b5f..e00254b23abf2e802b9c6cec3c3cf18e62d57a0e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2011-01-22  Miles Bader  <miles@gnu.org>
+
+       * configure.in: Don't zero-out FONTCONFIG_CFLAGS and
+       FONTCONFIG_LIBS when building with XFT (doing so is incorrect, as
+       Emacs directly uses fontconfig, and breaks building when using a
+       strict linker).
+
 2011-01-21  Paul Eggert  <eggert@cs.ucla.edu>
 
        src/config.in: shrink slightly
index bd1133319ba472fb51f5489296e1a677edc6ebcc..161ba74f9449077e8e89fabbbdd772690939922b 100644 (file)
@@ -2252,17 +2252,9 @@ if test "${HAVE_X11}" = "yes"; then
        HAVE_XFT=no
     fi
 
-
-    HAVE_FREETYPE=no
     ## We used to allow building with FreeType and without Xft.
     ## However, the ftx font backend driver is not in good shape.
-    if test "${HAVE_XFT}" = "yes"; then
-      dnl As we use Xft, we anyway use freetype.
-      dnl There's no need for additional CFLAGS and LIBS.
-      HAVE_FREETYPE=yes
-      FONTCONFIG_CFLAGS=
-      FONTCONFIG_LIBS=
-    fi
+    HAVE_FREETYPE=$HAVE_XFT
 
     HAVE_LIBOTF=no
     if test "${HAVE_FREETYPE}" = "yes"; then