Config.in 863 B

123456789101112131415161718192021
  1. config BR2_PACKAGE_LIBGEOS
  2. bool "libgeos"
  3. depends on BR2_INSTALL_LIBSTDCPP
  4. depends on BR2_USE_WCHAR
  5. depends on BR2_TOOLCHAIN_HAS_THREADS
  6. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C++14
  7. depends on !BR2_TOOLCHAIN_HAS_BINUTILS_BUG_27597
  8. help
  9. GEOS (Geometry Engine - Open Source) is a C++ port of the
  10. JTS Topology Suite (JTS). It aims to contain the complete
  11. functionality of JTS in C++. This includes all the OpenGIS
  12. Simple Features for SQL spatial predicate functions and
  13. spatial operators, as well as specific JTS enhanced functions.
  14. https://trac.osgeo.org/geos
  15. comment "libgeos needs a toolchain w/ C++, wchar, gcc >= 4.9, threads not binutils bug 27597"
  16. depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \
  17. !BR2_TOOLCHAIN_HAS_THREADS || \
  18. !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 || \
  19. BR2_TOOLCHAIN_HAS_BINUTILS_BUG_27597