[poppler] poppler: ChangeLog,1.399,1.400 configure.ac,1.54,1.55

Kristian Høgsberg krh at kemper.freedesktop.org
Mon Jul 24 12:49:53 PDT 2006


Update of /cvs/poppler/poppler
In directory kemper:/tmp/cvs-serv21296

Modified Files:
	ChangeLog configure.ac 
Log Message:
2006-07-24  Kristian Høgsberg  <krh at redhat.com>

	* configure.ac:
	* poppler/Makefile.am: Move fontconfig dependency to libpoppler.


Index: ChangeLog
===================================================================
RCS file: /cvs/poppler/poppler/ChangeLog,v
retrieving revision 1.399
retrieving revision 1.400
diff -u -d -r1.399 -r1.400
--- ChangeLog	18 Jul 2006 21:32:11 -0000	1.399
+++ ChangeLog	24 Jul 2006 19:49:51 -0000	1.400
@@ -1,3 +1,8 @@
+2006-07-24  Kristian Høgsberg  <krh at redhat.com>
+
+	* configure.ac:
+	* poppler/Makefile.am: Move fontconfig dependency to libpoppler.
+
 2006-07-18  Jeff Muizelaar  <jeff at infidigm.net>
 
 	* poppler/Gfx.cc: fix opCloseStroke to match the behaviour of

Index: configure.ac
===================================================================
RCS file: /cvs/poppler/poppler/configure.ac,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -d -r1.54 -r1.55
--- configure.ac	31 May 2006 04:53:27 -0000	1.54
+++ configure.ac	24 Jul 2006 19:49:51 -0000	1.55
@@ -138,7 +138,7 @@
 
   AC_PATH_PROG(FREETYPE_CONFIG, freetype-config, no)
   if test "x$FREETYPE_CONFIG" != "xno" ; then
-	  
+
     FREETYPE_CFLAGS=`$FREETYPE_CONFIG --cflags`
     FREETYPE_LIBS=`$FREETYPE_CONFIG --libs`
     AC_DEFINE(HAVE_FREETYPE_H, 1, [Have FreeType2 include files])
@@ -150,13 +150,12 @@
 AC_SUBST(FREETYPE_CFLAGS)
 AC_SUBST(FREETYPE_LIBS)
 
+PKG_CHECK_MODULES(FONTCONFIG, fontconfig)
+
 AC_ARG_ENABLE(splash-output,
               AC_HELP_STRING([--disable-splash-output],
 	                     [Don't build the Splash graphics backend.]),,
               enable_splash_output="yes")
-if test x$enable_splash_output = xyes; then
-  PKG_CHECK_MODULES(SPLASH, fontconfig)
-fi
 AM_CONDITIONAL(BUILD_SPLASH_OUTPUT, test x$enable_splash_output = xyes)
 AH_TEMPLATE([HAVE_SPLASH], [Use splash for rendering.])
 if test x$enable_splash_output = xyes; then
@@ -171,9 +170,9 @@
               enable_cairo_output=$enableval,
               enable_cairo_output="try")
 if test x$enable_cairo_output = xyes; then
-  PKG_CHECK_MODULES(CAIRO, cairo >= $CAIRO_VERSION fontconfig)
+  PKG_CHECK_MODULES(CAIRO, cairo >= $CAIRO_VERSION)
 elif test x$enable_cairo_output = xtry; then
-  PKG_CHECK_MODULES(CAIRO, cairo >= $CAIRO_VERSION fontconfig,
+  PKG_CHECK_MODULES(CAIRO, cairo >= $CAIRO_VERSION,
                     [enable_cairo_output="yes"],
                     [enable_cairo_output="no"])
 fi
@@ -197,9 +196,9 @@
               enable_poppler_glib=$enableval,
               enable_poppler_glib="try")
 if test x$enable_poppler_glib = xyes; then
-  PKG_CHECK_MODULES(POPPLER_GLIB, gdk-2.0 >= 2.4.0 fontconfig)
+  PKG_CHECK_MODULES(POPPLER_GLIB, gdk-2.0 >= 2.4.0)
 elif test x$enable_poppler_glib = xtry; then
-  PKG_CHECK_MODULES(POPPLER_GLIB, gdk-2.0 >= 2.4.0 fontconfig,
+  PKG_CHECK_MODULES(POPPLER_GLIB, gdk-2.0 >= 2.4.0,
                     [enable_poppler_glib="yes"],
                     [enable_poppler_glib="no"])
 fi
@@ -280,9 +279,6 @@
 	                     [Don't compile poppler command line utils.]),
               enable_utils=$enableval,
               enable_utils="yes")
-if test x$enable_utils = xyes; then
-  PKG_CHECK_MODULES(UTILS, fontconfig)
-fi
 AM_CONDITIONAL(BUILD_UTILS, test x$enable_utils = xyes)
 
 AC_ARG_ENABLE(compile-warnings,



More information about the poppler mailing list