aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authormorriss <morriss@f5534014-38df-0310-8fa8-9805f1628bb7>2012-01-24 03:16:33 +0000
committermorriss <morriss@f5534014-38df-0310-8fa8-9805f1628bb7>2012-01-24 03:16:33 +0000
commitf4f6248a1fcb63419b9bb45501e07204ea9d075d (patch)
tree86598b6d3723577346d3264828599dbad6eda7b2 /configure.in
parent9dfe1c1c6dfb5baf9cba5daf1d3efc3037edc940 (diff)
Fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6737
As suggested by njtaylor0101 [AT] gmail.com: we (always) check for the gthread module when checking glib so there's no need to check for it when checking GTK. This prevents us, when configuring with gtk3, for checking for gthread-2.0 version 3.0.0 or later. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40684 f5534014-38df-0310-8fa8-9805f1628bb7
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 73ebc2aac1..a102289898 100644
--- a/configure.in
+++ b/configure.in
@@ -801,7 +801,7 @@ if test "x$enable_wireshark" = "xyes"; then
have_gtk=yes
AC_DEFINE(HAVE_GTK, 1,
[Define to 1 if compiling with GTK])
- ], have_gtk=no, gthread)
+ ], have_gtk=no)
else
AM_PATH_GTK_2_0(2.12.0,
@@ -811,7 +811,7 @@ if test "x$enable_wireshark" = "xyes"; then
have_gtk=yes
AC_DEFINE(HAVE_GTK, 1,
[Define to 1 if compiling with GTK])
- ], have_gtk=no, gthread)
+ ], have_gtk=no)
fi
else
have_gtk=no