mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-08 08:30:47 -09:00
Changelog: https://github.com/libgeos/geos/releases/tag/3.14.0 Bump minimal GCC version to 7. (Switched to C++17 as minimum requirement)e142764b77Since commit26292ce880libgeos uses fenv.h to catch FPU exceptions. Some libc implementation may have no fenv support. So add a patch to detect fenv.h availability. Signed-off-by: Maxim Kochetkov <fido_max@inbox.ru> [Julien: - reformat patch title to fix check-package error - add Upstream header in patch to fix check-package error ] Signed-off-by: Julien Olivain <ju.o@free.fr>
20 lines
737 B
Plaintext
20 lines
737 B
Plaintext
config BR2_PACKAGE_LIBGEOS
|
|
bool "libgeos"
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_USE_WCHAR
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_7 # C++17
|
|
help
|
|
GEOS (Geometry Engine - Open Source) is a C++ port of the
|
|
JTS Topology Suite (JTS). It aims to contain the complete
|
|
functionality of JTS in C++. This includes all the OpenGIS
|
|
Simple Features for SQL spatial predicate functions and
|
|
spatial operators, as well as specific JTS enhanced functions.
|
|
|
|
https://trac.osgeo.org/geos
|
|
|
|
comment "libgeos needs a toolchain w/ C++, wchar, gcc >= 7, threads"
|
|
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \
|
|
!BR2_TOOLCHAIN_HAS_THREADS || \
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_7
|