]> git.eshelyaron.com Git - emacs.git/commitdiff
configure.in: Don't check for RSVG or GConf unless X11 is used.
authorJan Djärv <jan.h.d@swipnet.se>
Wed, 9 Dec 2009 18:46:53 +0000 (18:46 +0000)
committerJan Djärv <jan.h.d@swipnet.se>
Wed, 9 Dec 2009 18:46:53 +0000 (18:46 +0000)
ChangeLog
configure
configure.in

index d864a925b70033e2f4275bbd9858ad24af097159..f33f84c64c7791f08395b879969771888ef4edbe 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2009-12-09  Jan Djärv  <jan.h.d@swipnet.se>
+
+       * configure.in: Don't check for RSVG or GConf unless X11 is used.
+
 2009-12-09  Ken Brown  <kbrown@cornell.edu>  (tiny change)
 
        * configure.in: Allow compiling Emacs with GTK on Cygwin.
index f3d46f1c06aed5ddf358eec1143f12ad30c389b2..79dfe0fdbdf9d4b63215ac936726dfdccda44afc 100755 (executable)
--- a/configure
+++ b/configure
@@ -11327,7 +11327,7 @@ fi
 
 ### Use -lrsvg-2 if available, unless `--with-rsvg=no' is specified.
 HAVE_RSVG=no
-if test "${HAVE_X11}" = "yes" || test "${HAVE_NS}" = "yes"; then
+if test "${HAVE_X11}" = "yes"; then
   if test "${with_rsvg}" != "no"; then
     RSVG_REQUIRED=2.11.0
     RSVG_MODULE="librsvg-2.0 >= $RSVG_REQUIRED"
@@ -12588,7 +12588,7 @@ done
 fi
 
 HAVE_GCONF=no
-if test "X$with_x" != "Xno" && test "${with_gconf}" = "yes"; then
+if test "${HAVE_X11}" = "yes" && test "${with_gconf}" = "yes"; then
 
   succeeded=no
 
index 42cc66045ffa9de18656dc87b8b3b47a257c4047..8320448d8552a91335beb6d81867acb412e6a301 100644 (file)
@@ -1610,7 +1610,7 @@ fi
 
 ### Use -lrsvg-2 if available, unless `--with-rsvg=no' is specified.
 HAVE_RSVG=no
-if test "${HAVE_X11}" = "yes" || test "${HAVE_NS}" = "yes"; then
+if test "${HAVE_X11}" = "yes"; then
   if test "${with_rsvg}" != "no"; then
     RSVG_REQUIRED=2.11.0
     RSVG_MODULE="librsvg-2.0 >= $RSVG_REQUIRED"
@@ -1756,7 +1756,7 @@ fi
 dnl GConf has been tested under GNU/Linux only.
 dnl The version is really arbitrary, it is about the same age as Gtk+ 2.6.
 HAVE_GCONF=no
-if test "X$with_x" != "Xno" && test "${with_gconf}" = "yes"; then
+if test "${HAVE_X11}" = "yes" && test "${with_gconf}" = "yes"; then
    PKG_CHECK_MODULES(GCONF, gconf-2.0 >= 2.13, HAVE_GCONF=yes, HAVE_GCONF=no)
    if test "$HAVE_GCONF" = yes; then
       AC_DEFINE(HAVE_GCONF, 1, [Define to 1 if using GConf.])