mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-24 14:03:29 +08:00
ded7b29e5e
libgeos unconditionally uses wstring which raises the following build failure: In file included from /srv/storage/autobuild/run/instance-3/output-1/build/libgeos-3.9.0/tools/astyle/ASLocalizer.cpp:40: /srv/storage/autobuild/run/instance-3/output-1/build/libgeos-3.9.0/tools/astyle/ASLocalizer.h:72:34: error: 'wstring' does not name a type; did you mean 'stdin'? string convertToMultiByte(const wstring& wideStr) const; ^~~~~~~ stdin Fixes: - http://autobuild.buildroot.org/results/e97d03848d9bbf1845b994f391679a1dbf49f61e Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
16 lines
554 B
Plaintext
16 lines
554 B
Plaintext
config BR2_PACKAGE_LIBGEOS
|
|
bool "libgeos"
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_USE_WCHAR
|
|
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"
|
|
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR
|