From: Robert Marko Date: Fri, 5 Apr 2024 13:44:40 +0000 (+0200) Subject: tools: zstd: dont override ZSTD_LEGACY_SUPPORT X-Git-Tag: v24.10.0-rc1~2323 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d5c4cb0a8d251883d7a17d4426311090d6791249;p=thirdparty%2Fopenwrt.git tools: zstd: dont override ZSTD_LEGACY_SUPPORT We dont really have a reason to deviate from the upstream default for ZSTD_LEGACY_SUPPORT value of 5, as it will save a bit of space but prevent decompressing data compressed with legacy ZSTD versions. Signed-off-by: Robert Marko --- diff --git a/tools/zstd/Makefile b/tools/zstd/Makefile index d194ecd005c..5b98d9215f6 100644 --- a/tools/zstd/Makefile +++ b/tools/zstd/Makefile @@ -21,7 +21,6 @@ HOST_CFLAGS += \ -DZSTDCLI_CLEVEL_MAX=20 HOST_MAKE_FLAGS += \ - ZSTD_LEGACY_SUPPORT=7 \ BACKTRACE=0 \ HAVE_THREAD=1 \ HAVE_ZLIB=0 \