807ee5be79
proj needs C++11 since version 5.2.0 and
2905176697
Fixes:
- http://autobuild.buildroot.org/results/af3451a37b5f6c81d4b19edfe84dbed09e1af0e9
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
19 lines
646 B
Plaintext
19 lines
646 B
Plaintext
config BR2_PACKAGE_PROJ
|
|
bool "proj"
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 # C++11
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
select BR2_PACKAGE_SQLITE
|
|
help
|
|
proj.4 is a standard UNIX filter function which converts
|
|
geographic longitude and latitude coordinates into cartesian
|
|
coordinates (and vice versa), and it is a C API for software
|
|
developers to include coordinate transformation in their own
|
|
software.
|
|
|
|
http://proj4.org/
|
|
|
|
comment "proj needs a toolchain w/ C++, gcc >= 4.7, threads"
|
|
depends on !BR2_INSTALL_LIBSTDCPP || \
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 || !BR2_TOOLCHAIN_HAS_THREADS
|