Package: wireshark Version: 0.99.7~pre1-2.0.1 Severity: important Tags: patch
Hi, The --with-plugins wireshark configure option seems to be broken. Attached is a patch to fix it. This is upstream bug #2077 Sjoerd -- System Information: Debian Release: lenny/sid APT prefers unstable APT policy: (500, 'unstable'), (500, 'testing'), (1, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 2.6.23-1-amd64 (SMP w/4 CPU cores) Locale: LANG=C, LC_CTYPE=nl_NL (charmap=ISO-8859-1) Shell: /bin/sh linked to /bin/bash Versions of packages wireshark depends on: ii libadns1 1.4-0.1 Asynchronous-capable DNS client li ii libatk1.0-0 1.20.0-1 The ATK accessibility toolkit ii libc6 2.7-3 GNU C Library: Shared libraries ii libcairo2 1.4.10-1.1 The Cairo 2D vector graphics libra ii libcap1 1:1.10-14 support for getting/setting POSIX. ii libcomerr2 1.40.2-1 common error description library ii libgcrypt11 1.2.4-2 LGPL Crypto library - runtime libr ii libglib2.0-0 2.14.4-2 The GLib library of C routines ii libgnutls13 2.0.4-1 the GNU TLS library - runtime libr ii libgtk2.0-0 2.12.3-1 The GTK+ graphical user interface ii libkrb53 1.6.dfsg.3~beta1-2 MIT Kerberos runtime libraries ii libpango1.0-0 1.18.3-1 Layout and rendering of internatio ii libpcap0.8 0.9.8-2 System interface for user-level pa ii libpcre3 7.3-2 Perl 5 Compatible Regular Expressi ii libportaudio2 19+svn20071022-2 Portable audio I/O - shared librar ii wireshark-common 0.99.7~pre1-2.0.1 network traffic analyser (common f ii zlib1g 1:1.2.3.3.dfsg-7 compression library - runtime Versions of packages wireshark recommends: ii gksu 2.0.0-5 graphical frontend to su -- no debconf information
Index: configure.in =================================================================== --- configure.in (revision 23791) +++ configure.in (working copy) @@ -1486,9 +1486,8 @@ have_plugins=no elif test "x$have_plugins" = "xno"; then AC_MSG_ERROR([GLib on this platform doesn't support loadable modules, so you can't enable plugins.]) - if test "x$withval" != "xyes"; then - plugindir="$withval" - fi + elif test "x$withval" != "xyes"; then + plugindir="$withval" fi ]) AM_CONDITIONAL(HAVE_PLUGINS, test "x$have_plugins" = "xyes")