From: Fabrice Fontaine Date: Sun, 1 Nov 2020 12:05:58 +0000 (+0100) Subject: package/wireshark: add zstd optional dependency X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=105004f72acb56e86a778deb9c33eced3173db14;p=buildroot.git package/wireshark: add zstd optional dependency zstd is available since version 3.1.1 and is enabled by default: https://github.com/wireshark/wireshark/commit/ad94c4d459d243c0cbbb9b222d5f7cdf8189ab86 Signed-off-by: Fabrice Fontaine Signed-off-by: Yann E. MORIN --- diff --git a/package/wireshark/wireshark.mk b/package/wireshark/wireshark.mk index 0bcb97606a..0d4fedb3f0 100644 --- a/package/wireshark/wireshark.mk +++ b/package/wireshark/wireshark.mk @@ -155,6 +155,13 @@ else WIRESHARK_CONF_OPTS += -DBUILD_sdjournal=OFF endif +ifeq ($(BR2_PACKAGE_ZSTD),y) +WIRESHARK_CONF_OPTS += -DENABLE_ZSTD=ON +WIRESHARK_DEPENDENCIES += zstd +else +WIRESHARK_CONF_OPTS += -DENABLE_ZSTD=OFF +endif + # Disable plugins as some of them (like l16mono) can't be built # statically. ENABLE_STATIC=ON actually means "disable shared library" # and ENABLE_STATIC=OFF means "enable shared library". So for the