aboutsummaryrefslogtreecommitdiffstats
path: root/aclocal-fallback/gtk-2.0.m4
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss@ulticom.com>2012-01-24 03:16:33 +0000
committerJeff Morriss <jeff.morriss@ulticom.com>2012-01-24 03:16:33 +0000
commita2c21a2b53ea64532b3a451c9569be8fde85aacf (patch)
tree86598b6d3723577346d3264828599dbad6eda7b2 /aclocal-fallback/gtk-2.0.m4
parent13316398dd3a0e1258633bd92f4ff07f40fb0386 (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. svn path=/trunk/; revision=40684
Diffstat (limited to 'aclocal-fallback/gtk-2.0.m4')
-rw-r--r--aclocal-fallback/gtk-2.0.m47
1 files changed, 2 insertions, 5 deletions
diff --git a/aclocal-fallback/gtk-2.0.m4 b/aclocal-fallback/gtk-2.0.m4
index 144eadec89..b59ea4b16a 100644
--- a/aclocal-fallback/gtk-2.0.m4
+++ b/aclocal-fallback/gtk-2.0.m4
@@ -15,11 +15,8 @@ AC_ARG_ENABLE(gtktest, [ --disable-gtktest do not try to compile and run
pkg_config_args=gtk+-2.0
for module in . $4
do
- case "$module" in
- gthread)
- pkg_config_args="$pkg_config_args gthread-2.0"
- ;;
- esac
+ # No modules to check for now
+ :
done
no_gtk=""