summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Valavanis <valavanisalex@gmail.com>2013-03-26 18:50:41 +0000
committerAlex Valavanis <valavanisalex@gmail.com>2013-03-26 18:50:41 +0000
commitd7850af40cecebb2f56636b28877e04522f1b1bc (patch)
treee4f5bfba3b57ef7dee94f62887eb219f85b419fb
parentPrevent config failure with GTK_CHECK_BACKEND when Gtk+ 3 dev is unavailable (diff)
downloadinkscape-d7850af40cecebb2f56636b28877e04522f1b1bc.tar.gz
inkscape-d7850af40cecebb2f56636b28877e04522f1b1bc.zip
Fix check for X11 backend with Gtk+ 2
(bzr r12250)
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 52ae1a7fe..4fd8f39c9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -680,7 +680,7 @@ else
# Check whether we are using the X11 backend for Gtk+ 2.
AC_MSG_CHECKING([if Gtk+ 2.0 is using the X11 backend target])
- if test `$PKG_CONFIG --variable=target gtk+-2.0`; then
+ if test "x`$PKG_CONFIG --variable=target gtk+-2.0`" = "xx11"; then
have_x11=yes
else
have_x11=no