ui/gtk/main.c calls get_conn_cfilter(), which is defined in ui/util.c,
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>
Sun, 19 Feb 2012 00:19:35 +0000 (00:19 +0000)
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>
Sun, 19 Feb 2012 00:19:35 +0000 (00:19 +0000)
so we need to link libui *after* libgtkui.  (It worked on Mac OS X, but
the OS X linker might do things differently from the GNU linker.)

git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@41063 f5534014-38df-0310-8fa8-9805f1628bb7

Makefile.am

index b4648fda787147a3f4ac1b0da834ac08e208f74f..a0fefb62f1a5d7232c077227097fb167a17bf725 100644 (file)
@@ -386,9 +386,9 @@ endif
 # @GTK_LIBS@ (as those are also needed for X applications, and GTK+
 # applications are X applications).
 wireshark_LDADD = \
-       ui/libui.a                      \
        ui/gtk/libgtkui.a               \
        ui/gtk/libgtkui_dirty.a         \
+       ui/libui.a                      \
        codecs/libcodec.a               \
        wiretap/libwiretap.la           \
        epan/libwireshark.la            \