diff options
author | Nick Hainke <vincent@systemli.org> | 2023-02-05 14:06:35 +0100 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2023-02-05 22:39:17 +0100 |
commit | 57ad2ea110dc3899e87af6c60acf60375c9efa5f (patch) | |
tree | 2e0119237e0267ce80c800ae5372f0afa244efc6 | |
parent | c5608227ef8b705c18fb5323409bc69bd9ca192e (diff) | |
download | upstream-57ad2ea110dc3899e87af6c60acf60375c9efa5f.tar.gz upstream-57ad2ea110dc3899e87af6c60acf60375c9efa5f.tar.bz2 upstream-57ad2ea110dc3899e87af6c60acf60375c9efa5f.zip |
tools/pkgconf: update to 1.9.4
Release information:
https://github.com/pkgconf/pkgconf/blob/master/NEWS
Fixes CVE-2023-24056.
Further, this commit corrects the "-Dtests" flag and changes it from
"false" to "disabled".
Signed-off-by: Nick Hainke <vincent@systemli.org>
-rw-r--r-- | tools/pkgconf/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/pkgconf/Makefile b/tools/pkgconf/Makefile index b5f241b7dc..fded7e0fd6 100644 --- a/tools/pkgconf/Makefile +++ b/tools/pkgconf/Makefile @@ -7,11 +7,11 @@ include $(TOPDIR)/rules.mk PKG_NAME:=pkgconf -PKG_VERSION:=1.9.3 +PKG_VERSION:=1.9.4 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz PKG_SOURCE_URL:=https://distfiles.dereferenced.org/pkgconf -PKG_HASH:=5fb355b487d54fb6d341e4f18d4e2f7e813a6622cf03a9e87affa6a40565699d +PKG_HASH:=daccf1bbe5a30d149b556c7d2ffffeafd76d7b514e249271abdd501533c1d8ae include $(INCLUDE_DIR)/host-build.mk include $(INCLUDE_DIR)/meson.mk @@ -22,7 +22,7 @@ HOSTCC := $(HOSTCC_NOCACHE) MESON_HOST_ARGS += \ -Ddefault_library=static \ - -Dtests=false + -Dtests=disabled define Host/Install $(call Host/Install/Meson) |