summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorJan Djärv <jan.h.d@swipnet.se>2009-12-09 18:46:53 +0000
committerJan Djärv <jan.h.d@swipnet.se>2009-12-09 18:46:53 +0000
commitb6c7fd6859f326986218869072cec7ba57e0b364 (patch)
treece03b07458964bae2383fd96da04d2a11a90f9a8 /configure.in
parentad281d695e9036562416b2571970299e70393628 (diff)
downloademacs-b6c7fd6859f326986218869072cec7ba57e0b364.tar.gz
configure.in: Don't check for RSVG or GConf unless X11 is used.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 42cc66045ff..8320448d855 100644
--- a/configure.in
+++ b/configure.in
@@ -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.])