diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2010-08-30 10:02:39 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2010-08-30 10:09:52 +0200 |
commit | 1c4dbb5fa7df89731e5d59f680e9dc34f24f8835 (patch) | |
tree | 42d596127c70f6befa793a4dbb2357700b474506 /package/libgtk2/Config.in | |
parent | 8e32ec9a1fa9a520017594b38c6e261e2c5f490d (diff) |
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/libgtk2/Config.in')
-rw-r--r-- | package/libgtk2/Config.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/package/libgtk2/Config.in b/package/libgtk2/Config.in index 3d15f4c93..bc4ca9d76 100644 --- a/package/libgtk2/Config.in +++ b/package/libgtk2/Config.in @@ -13,10 +13,11 @@ config BR2_PACKAGE_LIBGTK2 # time. depends on BR2_PACKAGE_XORG7||(BR2_PACKAGE_DIRECTFB && BR2_DEPRECATED) depends on BR2_USE_WCHAR # glib2 + depends on BR2_INSTALL_LIBSTDCPP # pango help The GTK+ version 2 graphical user interface library http://www.gtk.org/ -comment "libgtk2 requires a toolchain with WCHAR support" - depends on !BR2_USE_WCHAR +comment "libgtk2 requires a toolchain with WCHAR and C++ support" + depends on !BR2_USE_WCHAR || !BR2_INSTALL_LIBSTDCPP |