From aece8d872ab62d378c19021a573c03bc7a1296b4 Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Tue, 18 Feb 2020 16:44:44 -0800 Subject: [PATCH] file: add newly introduced compression support Also make it explicit in the configure args. Signed-off-by: Rosen Penev --- libs/file/Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/libs/file/Makefile b/libs/file/Makefile index 33d29ce8f..1b37784f9 100644 --- a/libs/file/Makefile +++ b/libs/file/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=file PKG_VERSION:=5.38 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://src.fedoraproject.org/lookaside/pkgs/file/ \ @@ -44,7 +44,7 @@ $(call Package/file/Default) SECTION:=libs CATEGORY:=Libraries TITLE+= library - DEPENDS:=+zlib + DEPENDS:=+zlib +liblzma +libbz2 endef TARGET_CFLAGS += $(FPIC) @@ -53,6 +53,9 @@ TARGET_LDFLAGS += -Wl,--gc-sections,--as-needed CONFIGURE_ARGS += \ --enable-shared \ --enable-static \ + --enable-bzlib \ + --enable-xzlib \ + --enable-zlib \ --disable-libseccomp \ --disable-rpath \ --disable-warnings \