diff options
author | Sven Neumann <neumann@teufel.de> | 2013-11-22 22:58:27 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2013-11-25 11:01:32 +0100 |
commit | e9060f3c18ee8e25e6ad73aa6ff007a58f231f52 (patch) | |
tree | a1b96f49424efc2739db1cbf07ec34c97d2f8306 | |
parent | d34c3ea105e81cdb389347f23dd2cde7ed11ba55 (diff) | |
download | buildroot-e9060f3c18ee8e25e6ad73aa6ff007a58f231f52.tar.gz buildroot-e9060f3c18ee8e25e6ad73aa6ff007a58f231f52.zip |
libglib2: the system PCRE needs to have UTF and UCP enabled
If glib2 is compiled with the system PCRE instead of the included
copy, then that system PCRE needs to have support for UTF-8 and
Unicode properties enabled. Otherwise you will get such warnings
at run-time:
GLib-CRITICAL **: PCRE library is compiled without UTF8 support
GLib-CRITICAL **: PCRE library is compiled without UTF8 properties support
Signed-off-by: Sven Neumann <neumann@teufel.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/libglib2/Config.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/libglib2/Config.in b/package/libglib2/Config.in index db6a950661..7cbfea5dce 100644 --- a/package/libglib2/Config.in +++ b/package/libglib2/Config.in @@ -3,6 +3,7 @@ config BR2_PACKAGE_LIBGLIB2 select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE select BR2_PACKAGE_LIBFFI + select BR2_PACKAGE_PCRE_UCP if BR2_PACKAGE_PCRE select BR2_PACKAGE_ZLIB depends on BR2_USE_WCHAR # gettext depends on BR2_TOOLCHAIN_HAS_THREADS |