diff options
author | krant <aleksey.vasilenko@gmail.com> | 2024-02-05 13:41:44 +0200 |
---|---|---|
committer | Rosen Penev <rosenp@gmail.com> | 2024-02-07 14:00:33 -0800 |
commit | 55abc039ffe2b0ef8e8e776427224daa413d0452 (patch) | |
tree | af9c92b84298a43eaa2f7f42d468b97fd4f8081d /libs/apr-util/Makefile | |
parent | 3bae7fda61fc0fc2047f90229976fffbc36b5b75 (diff) |
apr-util: update to 1.6.3
- Remove upstreamed patches
- Fix OS path leak in iconv configure script
Signed-off-by: krant <aleksey.vasilenko@gmail.com>
Diffstat (limited to 'libs/apr-util/Makefile')
-rw-r--r-- | libs/apr-util/Makefile | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/libs/apr-util/Makefile b/libs/apr-util/Makefile index ccc45872a..f953263c2 100644 --- a/libs/apr-util/Makefile +++ b/libs/apr-util/Makefile @@ -8,12 +8,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=apr-util -PKG_VERSION:=1.6.1 -PKG_RELEASE:=7 +PKG_VERSION:=1.6.3 +PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 PKG_SOURCE_URL:=@APACHE/apr/ -PKG_HASH:=d3e12f7b6ad12687572a3a39475545a072608f4ba03a6ce8a3778f607dd0035b +PKG_HASH:=a41076e3710746326c3945042994ad9a4fcac0ce0277dd8fea076fec3c9772b5 PKG_MAINTAINER:=Thomas Heil <heil@terminal-consulting.de> PKG_LICENSE:=Apache-2.0 @@ -49,6 +49,11 @@ $(call Package/libaprutil/Default) TITLE:=Apache Portable Runtime Utility Library endef +## Prevent apu-iconv.m4 to append "/lib" to LDFLAGS if ICONV_PREFIX is empty +ifeq ($(ICONV_PREFIX),) +ICONV_PREFIX=no +endif + CONFIGURE_ARGS += \ --with-apr="$(STAGING_DIR)/usr/bin/apr-1-config" \ --with-expat="$(STAGING_DIR)/usr" \ |