2017-12-17 00:52:59 +01:00
|
|
|
config BR2_PACKAGE_PROJ
|
|
|
|
bool "proj"
|
2019-10-08 19:04:31 +02:00
|
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 # C++11
|
2017-12-17 00:52:59 +01:00
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
2019-10-14 04:20:42 +02:00
|
|
|
depends on BR2_USE_WCHAR
|
2019-10-06 15:47:34 +02:00
|
|
|
select BR2_PACKAGE_SQLITE
|
2017-12-17 00:52:59 +01:00
|
|
|
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/
|
|
|
|
|
2019-10-14 04:20:42 +02:00
|
|
|
comment "proj needs a toolchain w/ C++, gcc >= 4.7, threads, wchar"
|
2019-10-08 19:04:31 +02:00
|
|
|
depends on !BR2_INSTALL_LIBSTDCPP || \
|
2019-10-14 04:20:42 +02:00
|
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 || \
|
|
|
|
!BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR
|