aboutsummaryrefslogtreecommitdiff
path: root/projects/wireshark
diff options
context:
space:
mode:
authorjwzawadzki <jbwzawadzki@gmail.com>2017-10-26 20:13:47 +0200
committerMax Moroz <dor3s1@gmail.com>2017-10-26 11:13:47 -0700
commit9b135f5d12cbf23ddb1bd92f990bf095bb337801 (patch)
tree416b5ff88f9850488b4b7ad2b14f89569f5ad7dd /projects/wireshark
parent3987385f7be0f847bbedd1874fbac57438a76ac1 (diff)
downloadoss-fuzz-9b135f5d12cbf23ddb1bd92f990bf095bb337801.tar.gz
[wireshark] fix build issue [#919] (#923)
configure option was changed from --without-plugins to --disable-plugins (https://code.wireshark.org/review/24026).
Diffstat (limited to 'projects/wireshark')
-rwxr-xr-xprojects/wireshark/build.sh2
1 files changed, 1 insertions, 1 deletions
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"