diff options
author | Ross Burton <ross.burton@intel.com> | 2016-02-05 11:46:00 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-07 17:29:44 +0000 |
commit | 365f4092070b2e7978b8db65298308f4e770a501 (patch) | |
tree | 371ee5328988dce30aff07c382c72b4bb7e782be /meta/recipes-core | |
parent | 839eebceecf33d106592bab154481486533ece75 (diff) | |
download | openembedded-core-365f4092070b2e7978b8db65298308f4e770a501.tar.gz openembedded-core-365f4092070b2e7978b8db65298308f4e770a501.tar.bz2 openembedded-core-365f4092070b2e7978b8db65298308f4e770a501.zip |
glib-2.0: use the system libpcre
Instead of using the internal copy of libpcre, use one that we build. Note that
this requires libpcre enables Unicode properties.
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/glib-2.0/glib.inc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/recipes-core/glib-2.0/glib.inc b/meta/recipes-core/glib-2.0/glib.inc index dc88d19d0a..35153fa2a7 100644 --- a/meta/recipes-core/glib-2.0/glib.inc +++ b/meta/recipes-core/glib-2.0/glib.inc @@ -31,6 +31,10 @@ inherit autotools gettext gtk-doc pkgconfig ptest-gnome upstream-version-is-even S = "${WORKDIR}/glib-${PV}" +PACKAGECONFIG ??= "system-pcre" +# To use the system pcre it must be configured with --enable-unicode-properties +PACKAGECONFIG[system-pcre] = "--with-pcre=system,--with-pcre=internal,libpcre" + CORECONF = "--disable-dtrace --disable-fam --disable-libelf --disable-systemtap --disable-man" PRINTF = "--enable-included-printf=no" |