From 9b135f5d12cbf23ddb1bd92f990bf095bb337801 Mon Sep 17 00:00:00 2001 From: jwzawadzki Date: Thu, 26 Oct 2017 20:13:47 +0200 Subject: [PATCH] [wireshark] fix build issue [#919] (#923) configure option was changed from --without-plugins to --disable-plugins (https://code.wireshark.org/review/24026). --- projects/wireshark/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/wireshark/build.sh b/projects/wireshark/build.sh index 09cb00123..761d93aa5 100755 --- a/projects/wireshark/build.sh +++ b/projects/wireshark/build.sh @@ -26,7 +26,7 @@ cp -a $SRC/wireshark-fuzzdb/samples/* "$SAMPLES_DIR" # compile static version of libs # XXX, with static wireshark linking each fuzzer binary is ~240 MB (just libwireshark.a is 423 MBs). # XXX, wireshark is not ready for including static plugins into binaries. -CONFOPTS="--disable-shared --enable-static --without-plugins" +CONFOPTS="--disable-shared --enable-static --disable-plugins" # disable optional dependencies CONFOPTS="$CONFOPTS --without-pcap --without-ssl --without-gnutls"