* Bump pkg-config version to 0.29.1 * Use https for the source download (http gets directed there)
Signed-off-by: Hannu Nyman <[email protected]> --- Release notes: https://lists.freedesktop.org/archives/pkg-config/2016-March/001043.html - Fixed a regression from 0.29 with unquoting values queried with --variable. In some cases, this would cause shell special characters to be escaped in ways they weren't before. Instead, the unquoting only occurs if the value appears to be quoted. (#93284) - Add support for building pkg-config with Microsoft Visual Studio. Thanks to Chun-wei Fan for the fix. (#92489) - Allow overriding pkg-config variables with environment variables. By setting an environment variable of the form PKG_CONFIG_$PACKAGE_$VARIABLE, a pkg-config variable can be set globally without always having to pass --define-variable. Thanks to Alex Larsson for the fix. (#90917) - Honor -Wl,-framework in addition to -framework so that multiple frameworks are handled on OSX. (#1278) - Fix the OSX build using --with-internal-glib. Thanks to Rudá Moura for the initial fix and Adam Mercer for testing the final patch. (#92902) tools/pkg-config/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/pkg-config/Makefile b/tools/pkg-config/Makefile index 40e6e08..c649b24 100644 --- a/tools/pkg-config/Makefile +++ b/tools/pkg-config/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2006-2015 OpenWrt.org +# Copyright (C) 2006-2016 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -7,11 +7,11 @@ include $(TOPDIR)/rules.mk PKG_NAME:=pkg-config -PKG_VERSION:=0.29 +PKG_VERSION:=0.29.1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz -PKG_SOURCE_URL:=http://pkgconfig.freedesktop.org/releases/ -PKG_MD5SUM:=77f27dce7ef88d0634d0d6f90e03a77f +PKG_SOURCE_URL:=https://pkgconfig.freedesktop.org/releases/ +PKG_MD5SUM:=f739a28cae4e0ca291f82d1d41ef107d HOST_BUILD_PARALLEL:=1 -- 2.5.0 _______________________________________________ openwrt-devel mailing list [email protected] https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel
