[wireshark] fix build issue [#919] (#923)

configure option was changed from --without-plugins to --disable-plugins (https://code.wireshark.org/review/24026).
This commit is contained in:
jwzawadzki 2017-10-26 20:13:47 +02:00 committed by Max Moroz
parent 3987385f7b
commit 9b135f5d12
1 changed files with 1 additions and 1 deletions

View File

@ -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"