1config BR2_PACKAGE_PANGOMM 2 bool "pangomm" 3 depends on BR2_TOOLCHAIN_HAS_SYNC_4 # pango -> harfbuzz 4 depends on BR2_INSTALL_LIBSTDCPP # glibmm/pango 5 depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C++11 6 depends on BR2_TOOLCHAIN_HAS_THREADS # *mm/pango -> libglib2 7 depends on BR2_USE_MMU # *mm/pango -> libglib2 8 depends on BR2_USE_WCHAR # *mm/pango -> libglib2 9 select BR2_PACKAGE_CAIROMM 10 select BR2_PACKAGE_GLIBMM 11 select BR2_PACKAGE_PANGO 12 select BR2_PACKAGE_LIBSIGC 13 help 14 The pangomm package is a set of C++ bindings for Pango. 15 16 http://www.gtkmm.org/ 17 18comment "pangomm needs a toolchain w/ C++, wchar, threads, gcc >= 4.9" 19 depends on BR2_USE_MMU 20 depends on BR2_TOOLCHAIN_HAS_SYNC_4 21 depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 || !BR2_USE_WCHAR \ 22 || !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS 23