diff --git a/package/wireshark/0001-cmake-lemon-wipe-CMAKE_SYSROOT-if-needed.patch b/package/wireshark/0001-cmake-lemon-wipe-CMAKE_SYSROOT-if-needed.patch new file mode 100644 index 0000000000..51875fd267 --- /dev/null +++ b/package/wireshark/0001-cmake-lemon-wipe-CMAKE_SYSROOT-if-needed.patch @@ -0,0 +1,30 @@ +From 982e5ab072816e29f6f2dc84d9a00ee7c4fdee40 Mon Sep 17 00:00:00 2001 +From: Fabrice Fontaine +Date: Fri, 26 Nov 2021 17:45:23 +0100 +Subject: [PATCH] cmake: lemon: wipe CMAKE_SYSROOT if needed + +Wipe CMAKE_SYSROOT when LEMON_C_COMPILER is set to avoid a build failure +when cross-compiling (e.g. with buildroot) + +Signed-off-by: Fabrice Fontaine +[Upstream status: +https://gitlab.com/wireshark/wireshark/-/merge_requests/5224] +--- + tools/lemon/CMakeLists.txt | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/tools/lemon/CMakeLists.txt b/tools/lemon/CMakeLists.txt +index 8742aa9fc9..7c8cc23a35 100644 +--- a/tools/lemon/CMakeLists.txt ++++ b/tools/lemon/CMakeLists.txt +@@ -12,6 +12,7 @@ add_executable(lemon lemon.c) + if(DEFINED LEMON_C_COMPILER) + set(CMAKE_C_COMPILER "${LEMON_C_COMPILER}") + set(CMAKE_C_FLAGS "") ++ set(CMAKE_SYSROOT "") + endif() + + # To keep lemon.c as close to upstream as possible, deliberately ignore +-- +2.33.0 + diff --git a/package/wireshark/wireshark.hash b/package/wireshark/wireshark.hash index 0876703e49..bc7c9f4d7e 100644 --- a/package/wireshark/wireshark.hash +++ b/package/wireshark/wireshark.hash @@ -1,6 +1,6 @@ -# From https://www.wireshark.org/download/src/all-versions/SIGNATURES-3.4.7.txt -sha1 3fa4bb774030442b9908243a9927d38479c52bf5 wireshark-3.4.7.tar.xz -sha256 6c4cee51ef997cb9d9aaee84113525a5629157d3c743d7c4e320000de804a09d wireshark-3.4.7.tar.xz +# From https://www.wireshark.org/download/src/all-versions/SIGNATURES-3.4.10.txt +sha1 63839abd94d3ae376f860e2d2969777680106578 wireshark-3.4.10.tar.xz +sha256 8aa7ef4a44ae62bb8db463cf761e2cc03b97305e0e77ed5be53fa83729187cef wireshark-3.4.10.tar.xz # Locally calculated sha256 7cdbed2b697efaa45576a033f1ac0e73cd045644a91c79bbf41d4a7d81dac7bf COPYING diff --git a/package/wireshark/wireshark.mk b/package/wireshark/wireshark.mk index 75b9c8b897..2ba81d1f39 100644 --- a/package/wireshark/wireshark.mk +++ b/package/wireshark/wireshark.mk @@ -4,7 +4,7 @@ # ################################################################################ -WIRESHARK_VERSION = 3.4.7 +WIRESHARK_VERSION = 3.4.10 WIRESHARK_SOURCE = wireshark-$(WIRESHARK_VERSION).tar.xz WIRESHARK_SITE = https://www.wireshark.org/download/src/all-versions WIRESHARK_LICENSE = wireshark license @@ -20,29 +20,12 @@ WIRESHARK_DEPENDENCIES = \ libpcap \ speexdsp -WIRESHARK_MAKE_ENV = \ - $(TARGET_MAKE_ENV) \ - PATH="$(@D)/bin:$(BR_PATH)" - WIRESHARK_CONF_OPTS = \ -DDISABLE_WERROR=ON \ -DENABLE_ILBC=OFF \ -DENABLE_PCAP=ON \ - -DENABLE_SMI=OFF - -# wireshark needs the host version of lemon during compilation. -# This binrary is provided by sqlite-src (which is different from -# sqlite-autotools that is currently packaged in buildroot) moreover wireshark -# adds several patches. -# So, instead of creating a separate host package and installing lemon to -# $(HOST_DIR), this binary is compiled on-the-fly -define WIRESHARK_BUILD_LEMON_TOOL - cd $(@D); \ - mkdir -p $(@D)/bin; \ - $(HOSTCC) $(HOST_CFLAGS) -o $(@D)/bin/lemon tools/lemon/lemon.c -endef - -WIRESHARK_PRE_BUILD_HOOKS += WIRESHARK_BUILD_LEMON_TOOL + -DENABLE_SMI=OFF \ + -DLEMON_C_COMPILER=$(HOSTCC) ifeq ($(BR2_TOOLCHAIN_HAS_LIBATOMIC),y) WIRESHARK_CONF_OPTS += -DCMAKE_EXE_LINKER_FLAGS=-latomic