Config.in 549 B

1234567891011121314151617
  1. config BR2_PACKAGE_PYTHON_PYICU
  2. bool "python-pyicu"
  3. depends on !BR2_BINFMT_FLAT # icu
  4. depends on BR2_HOST_GCC_AT_LEAST_4_9 # icu
  5. depends on BR2_INSTALL_LIBSTDCPP # icu
  6. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # icu
  7. select BR2_PACKAGE_ICU
  8. help
  9. Python extension wrapping the ICU C++ API.
  10. https://github.com/ovalhub/pyicu
  11. comment "python-pyicu needs a toolchain w/ C++, gcc >= 4.9, host gcc >= 4.9"
  12. depends on !BR2_BINFMT_FLAT
  13. depends on !BR2_INSTALL_LIBSTDCPP || \
  14. !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 || \
  15. !BR2_HOST_GCC_AT_LEAST_4_9