From daaae8243b3d05774f368f292b04994f1a10245f Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Sun, 24 Mar 2019 20:50:25 -0700 Subject: [PATCH] file: Update to 5.36 Added some linker flags to reclaim some space. Switched to $(FPIC) from -fPIC. Signed-off-by: Rosen Penev --- libs/file/Makefile | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/libs/file/Makefile b/libs/file/Makefile index 04a498f753..8fceca7e88 100644 --- a/libs/file/Makefile +++ b/libs/file/Makefile @@ -8,14 +8,14 @@ include $(TOPDIR)/rules.mk PKG_NAME:=file -PKG_VERSION:=5.35 +PKG_VERSION:=5.36 PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://src.fedoraproject.org/lookaside/pkgs/file/ \ http://download.openpkg.org/components/cache/file/ \ ftp://ftp.astron.com/pub/file/ -PKG_HASH:=30c45e817440779be7aac523a905b123cba2a6ed0bf4f5439e1e99ba940b5546 +PKG_HASH:=fb608290c0fd2405a8f63e5717abf6d03e22e183fb21884413d1edd918184379 PKG_LICENSE:=BSD-2c PKG_LICENSE_FILES:=COPYING @@ -47,15 +47,19 @@ $(call Package/file/Default) DEPENDS:=+zlib endef +TARGET_CFLAGS += $(FPIC) +TARGET_LDFLAGS += -Wl,--gc-sections,--as-needed + CONFIGURE_ARGS += \ --enable-shared \ --enable-static \ - --disable-libseccomp + --disable-libseccomp \ + --disable-rpath \ + --disable-warnings \ + --without-pic MAKE_PATH := src -TARGET_CFLAGS += $(FPIC) - define Build/Compile/magic ( cd $(PKG_BUILD_DIR)/magic/Magdir; \ for f in `ls`; do \