summaryrefslogtreecommitdiffstats
path: root/package/pango
diff options
context:
space:
mode:
authorPeter Korsgaard <jacmet@sunsite.dk>2010-08-30 10:02:39 +0200
committerPeter Korsgaard <jacmet@sunsite.dk>2010-08-30 10:09:52 +0200
commit1c4dbb5fa7df89731e5d59f680e9dc34f24f8835 (patch)
tree42d596127c70f6befa793a4dbb2357700b474506 /package/pango
parent8e32ec9a1fa9a520017594b38c6e261e2c5f490d (diff)
downloadbuildroot-novena-1c4dbb5fa7df89731e5d59f680e9dc34f24f8835.tar.gz
buildroot-novena-1c4dbb5fa7df89731e5d59f680e9dc34f24f8835.zip
pango: needs C++ for freetype handling
Pango was recently updated to v1.28 as a dependency of webkit, but its freetype support has unfortunately been rewritten with parts in C++ (since pango 1.25), so adjust dependencies of pango and users of it to require C++ support. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/pango')
-rw-r--r--package/pango/Config.in5
1 files changed, 3 insertions, 2 deletions
diff --git a/package/pango/Config.in b/package/pango/Config.in
index e4c084d0c..923c3d4ac 100644
--- a/package/pango/Config.in
+++ b/package/pango/Config.in
@@ -1,6 +1,7 @@
config BR2_PACKAGE_PANGO
bool "pango"
depends on BR2_USE_WCHAR # glib2
+ depends on BR2_INSTALL_LIBSTDCPP # freetype support
select BR2_PACKAGE_LIBGLIB2
select BR2_PACKAGE_EXPAT
select BR2_PACKAGE_CAIRO
@@ -15,5 +16,5 @@ config BR2_PACKAGE_PANGO
http://www.pango.org/
-comment "pango requires a toolchain with WCHAR support"
- depends on !BR2_USE_WCHAR
+comment "pango requires a toolchain with WCHAR and C++ support"
+ depends on !BR2_USE_WCHAR || !BR2_INSTALL_LIBSTDCPP