1
0
mirror of https://git.yoctoproject.org/poky synced 2026-07-17 04:07:06 +00:00

pkgconfig: add patch to disable legacy scripts such as glib-config

On an F13 host with glib-config installed pkgconfig-native can get into a
horrible state with recursive calls between pkg-config and glib-config.
The patch adds a configure time option to disable legacy script support in
pkgconfig and makes use of the option for Poky.

Signed-off-by: Joshua Lock <josh@linux.intel.com>
This commit is contained in:
Joshua Lock
2010-06-22 13:20:08 +01:00
parent 7646f333e1
commit e2c567f51e
2 changed files with 50 additions and 7 deletions
+8 -7
View File
@@ -5,19 +5,20 @@ It replaces the ubiquitous *-config scripts you may have \
seen with a single tool."
HOMEPAGE = "http://pkg-config.freedesktop.org/wiki/"
LICENSE = "GPL"
PR = "r7"
PR = "r8"
DEPENDS = "glib-2.0"
DEPENDS_virtclass-native = ""
DEPENDS_virtclass-nativesdk = ""
EXTRA_OECONF = "--with-installed-glib"
EXTRA_OECONF_virtclass-native = ""
EXTRA_OECONF_virtclass-nativesdk = ""
EXTRA_OECONF = "--with-installed-glib --disable-legacy-scripts"
EXTRA_OECONF_virtclass-native = "--disable-legacy-scripts"
EXTRA_OECONF_virtclass-nativesdk = "--disable-legacy-scripts"
SRC_URI = "http://pkgconfig.freedesktop.org/releases/pkg-config-${PV}.tar.gz \
file://autofoo.patch;patch=1 \
file://sysrootfix.patch;patch=1 \
file://glibconfig-sysdefs.h"
file://autofoo.patch \
file://sysrootfix.patch \
file://glibconfig-sysdefs.h \
file://disable-legacy.patch"
S = "${WORKDIR}/pkg-config-${PV}/"