aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2012-03-21 06:13:53 +0000
committerGuy Harris <guy@alum.mit.edu>2012-03-21 06:13:53 +0000
commitfd72ad5e9255f3e1905c822549845e5d2d8f1f0b (patch)
tree92fac6eaea55e65e5def7ea98816f0164b2d077b /configure.in
parent40a034b3f500d30d1e7a164138dd2cc99c112de6 (diff)
Automake can, at times, be a delicate fragile flower. Apparently,
having something in wireshark_LDADD that's filled in by the configure script means that the items referred to by that string aren't treated as dependencies. svn path=/trunk/; revision=41709
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in4
1 files changed, 0 insertions, 4 deletions
diff --git a/configure.in b/configure.in
index 7ff8e11554..6c2bb5a810 100644
--- a/configure.in
+++ b/configure.in
@@ -819,7 +819,6 @@ if test "x$enable_wireshark" = "xyes"; then
# compile.
#
CPPFLAGS="-DQT_GUI_LIB $CPPFLAGS"
- UI_LIBS='$(wireshark_QT_UI_LIBS)'
have_qt=yes
],
[
@@ -842,7 +841,6 @@ if test "x$enable_wireshark" = "xyes"; then
CFLAGS="$CFLAGS $GTK_CFLAGS"
CXXFLAGS="$CXXFLAGS $GTK_CFLAGS"
have_gtk=yes
- UI_LIBS='$(wireshark_GTK_UI_LIBS)'
AC_DEFINE(HAVE_GTK, 1,
[Define to 1 if compiling with GTK])
], have_gtk=no)
@@ -853,7 +851,6 @@ if test "x$enable_wireshark" = "xyes"; then
CFLAGS="$CFLAGS $GTK_CFLAGS"
CXXFLAGS="$CXXFLAGS $GTK_CFLAGS"
have_gtk=yes
- UI_LIBS='$(wireshark_GTK_UI_LIBS)'
AC_DEFINE(HAVE_GTK, 1,
[Define to 1 if compiling with GTK])
], have_gtk=no)
@@ -863,7 +860,6 @@ else
have_qt=no
have_gtk=no
fi
-AC_SUBST(UI_LIBS)
# GLib checks; we require GLib 2.14 or later, and require gmodule
# support, as we need that for dynamically loading plugins.