ANNOUNCEMENT: Live Wireshark University & Allegro Packets online APAC Wireshark Training Session
April 17th, 2024 | 14:30-16:00 SGT (UTC+8) | Online

Wireshark-bugs: [Wireshark-bugs] [Bug 4281] ./autogen.sh fails for wireshark build

Date: Fri, 11 Dec 2009 08:28:35 -0800 (PST)
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4281

--- Comment #4 from Matt P <parrisimo@xxxxxxxxx> 2009-12-11 08:28:34 PST ---
I've narrowed it down to a change that occurred in ./configure.in at line 119
in version 28874:

Change
  AM_PATH_LIBGNUTLS(1.2.0,
to
  PKG_CHECK_MODULES([LIBGNUTLS], [gnutls >= 1.2.0],
which results in:

if test "x$with_gnutls" = "xyes"; then
  PKG_CHECK_MODULES([LIBGNUTLS], [gnutls >= 1.2.0],
        [
                echo "gnuTLS found, enabling ssl decryption"
                AC_DEFINE(HAVE_LIBGNUTLS, 1, [Define to use gnutls library])
                tls_message="yes"
        ]
        , [
                echo echo "gnuTLS not found, disabling ssl decryption"
                tls_message="no"
        ]
  )

For some reason, the PKG_CHECK_MODULES function doesn't work, so the AC_DEFINE
macro is never set.

 Any ideas?

-- 
Configure bugmail: https://bugs.wireshark.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.