Config.in 708 B

1234567891011121314151617181920
  1. config BR2_PACKAGE_PROJ
  2. bool "proj"
  3. depends on BR2_INSTALL_LIBSTDCPP
  4. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 # C++11
  5. depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
  6. depends on BR2_USE_WCHAR
  7. select BR2_PACKAGE_SQLITE
  8. help
  9. proj.4 is a standard UNIX filter function which converts
  10. geographic longitude and latitude coordinates into cartesian
  11. coordinates (and vice versa), and it is a C API for software
  12. developers to include coordinate transformation in their own
  13. software.
  14. http://proj4.org/
  15. comment "proj needs a toolchain w/ C++, gcc >= 4.7, NPTL, wchar"
  16. depends on !BR2_INSTALL_LIBSTDCPP || \
  17. !BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 || \
  18. !BR2_TOOLCHAIN_HAS_THREADS_NPTL || !BR2_USE_WCHAR