aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-12-06 12:46:47 +0000
committerChristian Grothoff <christian@grothoff.org>2011-12-06 12:46:47 +0000
commit5e6abb1027d6f8c8dd56e987f4c32972a58f433a (patch)
tree28c44247ffce262322553c754e31f1085b7c3884
parentf3c01305f98557c3020fb76bff38576dc9f3f2fd (diff)
downloadgnunet-gtk-5e6abb1027d6f8c8dd56e987f4c32972a58f433a.tar.gz
gnunet-gtk-5e6abb1027d6f8c8dd56e987f4c32972a58f433a.zip
LRN: do not look for both GTK-3 and GTK-2
-rw-r--r--configure.ac5
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index a7d9bb01..e522e32f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -169,7 +169,10 @@ fi
169AC_MSG_CHECKING(for gtk) 169AC_MSG_CHECKING(for gtk)
170without_gtk=true 170without_gtk=true
171AM_PATH_GTK_3_0(3.0.0,without_gtk=false,) 171AM_PATH_GTK_3_0(3.0.0,without_gtk=false,)
172AM_PATH_GTK_2_0(2.6.0,without_gtk=false,) 172if test $without_gtk = true
173then
174 AM_PATH_GTK_2_0(2.6.0,without_gtk=false,)
175fi
173AM_CONDITIONAL(HAVE_GTK, test x$without_gtk != xtrue) 176AM_CONDITIONAL(HAVE_GTK, test x$without_gtk != xtrue)
174if test $without_gtk != true 177if test $without_gtk != true
175then 178then