From 2cba6cd07b7fc1072400e2cfa1ea10bf6e46347f Mon Sep 17 00:00:00 2001 From: Volker Christian Date: Sat, 5 Aug 2023 20:00:00 +0200 Subject: [PATCH] file: Fix FTBFS due to missing dependency Fixes #21583 zstdlib and lzlib support is currently not neccessary for OpenWRT. Thus, Explicitly disable zstdlib and lzlib as they would be enabled automatically in case they are already installed. Signed-off-by: Volker Christian (cherry picked from commit 3ee4f030b525d8d7c56605735df1c44d1362f026) --- libs/file/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libs/file/Makefile b/libs/file/Makefile index 25941eccec..eaf8e501d7 100644 --- a/libs/file/Makefile +++ b/libs/file/Makefile @@ -56,8 +56,10 @@ CONFIGURE_ARGS += \ --enable-xzlib \ --enable-zlib \ --disable-libseccomp \ + --disable-lzlib \ --disable-rpath \ --disable-warnings \ + --disable-zstdlib \ --without-pic MAKE_PATH := src -- 2.30.2