]> www.fi.muni.cz Git - evince.git/commitdiff
[build] Do not use automagic dependencies for GConf
authorHib Eris <hib@hiberis.nl>
Tue, 9 Jun 2009 14:30:01 +0000 (16:30 +0200)
committerCarlos Garcia Campos <carlosgc@gnome.org>
Tue, 9 Jun 2009 17:34:42 +0000 (19:34 +0200)
configure.ac

index 86f13ec87fbc5f23776a341a6d30a7ec1953e807..152cab053860cd9303f5bc7280f8bb85f7069117 100644 (file)
@@ -223,28 +223,25 @@ AM_CONDITIONAL([DBUS_TOOL_NO_PREFIX], [test "x$DBUS_VERSION" = "x33"])
 
 dnl ========= Check for GConf
 
+if test "$os_win32" = yes; then
+  with_gconf_default=no
+else
+  with_gconf_default=yes
+fi
+
 AC_MSG_CHECKING([whether GConf support is requested])
 AC_ARG_WITH([gconf],
   [AS_HELP_STRING([--without-gconf],[disable the use of gconf])],
-  [],[with_gconf=check])
+  [],[with_gconf=$with_gconf_default])
 AC_MSG_RESULT([$with_gconf])
 
-if test "x$with_gconf" != "xno"; then
-       PKG_CHECK_MODULES([GCONF],[gconf-2.0],
-               with_gconf=yes,
-               if test "x$with_gconf" = "xcheck"; then
-                       with_gconf=no
-                       AC_MSG_WARN(The use of GConf is disabled since required library gconf-2.0 was not found.)
-               else
-                       AC_MSG_FAILURE(GConf test failed: $GCONF_PKG_ERRORS)
-               fi
-       )
-fi
-if test "x$with_gconf" = "xyes"; then
-       AC_DEFINE([WITH_GCONF],[1],[Define if GConf support is enabled])
-fi
 AM_CONDITIONAL([WITH_GCONF],[test "$with_gconf" = "yes"])
 
+if test "$with_gconf" = "yes"; then
+   PKG_CHECK_MODULES([GCONF],[gconf-2.0])
+   AC_DEFINE([WITH_GCONF],[1],[Define if GConf support is enabled])
+fi
+
 AM_GCONF_SOURCE_2
 
 AC_PATH_PROG([GCONFTOOL], [gconftool-2], [false])