Config.in 951 B

12345678910111213141516171819202122232425
  1. config BR2_PACKAGE_PANGOMM2_46
  2. bool "pangomm (2.46.x)"
  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_CAIROMM1_14
  10. select BR2_PACKAGE_GLIBMM2_66
  11. select BR2_PACKAGE_PANGO
  12. select BR2_PACKAGE_LIBSIGC2
  13. help
  14. The pangomm package is a set of C++ bindings for Pango.
  15. This is the last version before the API and ABI change
  16. introduced in 2.48.0 which requires C++17.
  17. http://www.gtkmm.org/
  18. comment "pangomm (2.46.x) 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