From 9da948e2953ae662edfcbc71aa3cc547da65db46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Mayer?= Date: Wed, 19 Jul 2006 15:08:46 +0000 Subject: [PATCH] Fix to http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=333 The additional libs need to be added to the final linking stage of all programs using it - not just the libs that pull in the dependencies (that doesn't work on all platforms, just most). svn path=/trunk/; revision=18765 --- Makefile.am | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile.am b/Makefile.am index f5f4522e16..4466107488 100644 --- a/Makefile.am +++ b/Makefile.am @@ -339,6 +339,7 @@ tshark_LDADD = \ @PCRE_LIBS@ \ @GLIB_LIBS@ -lm \ @PCAP_LIBS@ @SOCKET_LIBS@ @NSL_LIBS@ @ADNS_LIBS@ @KRB5_LIBS@ \ + @LIBICONV@ \ @LIBGCRYPT_LIBS@ \ @LIBGNUTLS_LIBS@ @@ -457,6 +458,7 @@ dftest_LDADD = \ @PCRE_LIBS@ \ @GLIB_LIBS@ -lm \ @PCAP_LIBS@ @SOCKET_LIBS@ @NSL_LIBS@ @ADNS_LIBS@ @KRB5_LIBS@ \ + @LIBICONV@ \ @LIBGCRYPT_LIBS@ \ @LIBGNUTLS_LIBS@