diff options
author | Sebastian Kemper <sebastian_ml@gmx.net> | 2019-12-30 19:02:16 +0100 |
---|---|---|
committer | Sebastian Kemper <sebastian_ml@gmx.net> | 2019-12-30 19:02:19 +0100 |
commit | 27c47239367f11ad8bc6b5ee19ec4fb78b99d5cf (patch) | |
tree | 9fe9aed05f16324e402e8a2661fb1e1a46966eec /libs | |
parent | 40a29bf0555c522f76e984f6cccb395d84fbe0d2 (diff) |
apr-util: clean up the package
- removes extra flags '$(FPIC)' etc., there is no good reason for them
being used
- stops removing aclocal.m4 and build/ltmain.sh (reason of removal of
these files is not apparent anymore)
- adds PKG_BUILD_PARALLEL:=1
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Diffstat (limited to 'libs')
-rw-r--r-- | libs/apr-util/Makefile | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/libs/apr-util/Makefile b/libs/apr-util/Makefile index b067359f8..6fe72ed98 100644 --- a/libs/apr-util/Makefile +++ b/libs/apr-util/Makefile @@ -18,8 +18,9 @@ PKG_MAINTAINER:=Thomas Heil <heil@terminal-consulting.de> PKG_LICENSE:=Apache License PKG_CPE_ID:=cpe:/a:apache:apr-util +PKG_BUILD_PARALLEL:=1 + PKG_FIXUP:=autoreconf -PKG_REMOVE_FILES:=aclocal.m4 build/ltmain.sh PKG_INSTALL:=1 @@ -34,9 +35,6 @@ define Package/libaprutil URL:=http://apr.apache.org/ endef -TARGET_CFLAGS += $(FPIC) -TARGET_CPPFLAGS += -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE - CONFIGURE_ARGS += \ --with-pgsql=no \ --with-apr="$(STAGING_DIR)/usr/bin/apr-1-config" \ @@ -55,9 +53,6 @@ CONFIGURE_VARS += \ ac_cv_path_ODBC_CONFIG= \ APR_BUILD_DIR="$(STAGING_DIR)/usr/share/build-1" -MAKE_FLAGS += \ - APRUTIL_LIBS="-lsqlite3 $(TARGET_LDFLAGS) -lexpat $(if $(ICONV_FULL),-liconv) -lapr-1 -luuid -lm -lcrypt" - define Build/InstallDev $(INSTALL_DIR) $(1)/usr/bin $(1)/usr/include/apr-1/ $(1)/usr/lib $(1)/usr/lib/pkgconfig/ $(CP) $(PKG_INSTALL_DIR)/usr/bin/apu-1-config \ |