diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2016-03-22 18:38:00 -0300 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-03-22 23:03:27 +0100 |
commit | 592581b827899fcbe1a6978ffcd7c968f47f74cf (patch) | |
tree | 99975f172d356704ab75f0251eef57363b384382 /package/pcre | |
parent | 7e4dab488594021b012b1ef3b49772eece97b760 (diff) | |
download | buildroot-592581b827899fcbe1a6978ffcd7c968f47f74cf.tar.gz buildroot-592581b827899fcbe1a6978ffcd7c968f47f74cf.zip |
pcre: enable unicode properties for host variant
They're required for host-libglib2 and using system pcre is the
default/recommended with newer versions.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/pcre')
-rw-r--r-- | package/pcre/pcre.mk | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/package/pcre/pcre.mk b/package/pcre/pcre.mk index 06652c70e4..7fcc592a14 100644 --- a/package/pcre/pcre.mk +++ b/package/pcre/pcre.mk @@ -12,6 +12,9 @@ PCRE_LICENSE_FILES = LICENCE PCRE_INSTALL_STAGING = YES PCRE_CONFIG_SCRIPTS = pcre-config +# They're required for host-libglib2 +HOST_PCRE_CONF_OPTS = --enable-unicode-properties + ifneq ($(BR2_INSTALL_LIBSTDCPP),y) # pcre will use the host g++ if a cross version isn't available PCRE_CONF_OPTS = --disable-cpp |