diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2015-10-05 10:49:29 -0300 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-10-05 16:33:32 +0100 |
commit | d7f6d320b64ae582d17362dae971288c993736dc (patch) | |
tree | 44c8ffa9a6a418f48d6b35a4e5d8ef8d670b5cf3 /package/pkgconf/0001-fix-variable.patch | |
parent | e602c97f0b653d2526eec87f5717f8c69ed93da4 (diff) | |
download | buildroot-d7f6d320b64ae582d17362dae971288c993736dc.tar.gz buildroot-d7f6d320b64ae582d17362dae971288c993736dc.zip |
pkgconf: bump to version 0.9.12
Drop patches, they aren't required any more.
It fixes a bug where inline comments cause issues, like:
Libs: -lblah # -lbleh
...it would make pkgconf search for the '#' package
This is required for the nettle 3.1.1 upgrade since howgeed.pc adjusts
Libs according to static/dynamic builds using the comment feature.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/pkgconf/0001-fix-variable.patch')
-rw-r--r-- | package/pkgconf/0001-fix-variable.patch | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/package/pkgconf/0001-fix-variable.patch b/package/pkgconf/0001-fix-variable.patch deleted file mode 100644 index 4c213d6ee8..0000000000 --- a/package/pkgconf/0001-fix-variable.patch +++ /dev/null @@ -1,29 +0,0 @@ -[PATCH] prefix sysroot to include/libdir path variables - -Prefix includedir / libdir variable values with sysroot if a variable is -requested (--variable=<name>), similar to how it's done for -I / -L flags. - -This is sometimes used to find header files (E.G. in gst-plugins configure), -so ensure the sysroot'ed files are used. - -Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> -Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com> - -diff -Nura pkgconf-0.8.9.orig/main.c pkgconf-0.8.9/main.c ---- pkgconf-0.8.9.orig/main.c 2012-10-24 14:32:08.236508699 -0300 -+++ pkgconf-0.8.9/main.c 2012-10-24 14:54:36.771070217 -0300 -@@ -298,7 +298,13 @@ - if (eflag != PKG_ERRF_OK) - return false; - -- printf("%s\n", req.buf); -+ if ( !strcmp(req.variable, "includedir") || -+ !strcmp(req.variable, "mapdir") || -+ !strcmp(req.variable, "sdkdir") || -+ !strcmp(req.variable, "libdir")) -+ printf("%s%s\n", sysroot_dir, req.buf); -+ else -+ printf("%s\n", req.buf); - return true; - } - |