Config.in 657 B

123456789101112131415161718
  1. config BR2_PACKAGE_PYTHON_PYPROJ
  2. bool "python-pyproj"
  3. depends on BR2_INSTALL_LIBSTDCPP # proj
  4. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 # proj
  5. depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL # proj
  6. depends on BR2_USE_WCHAR # proj
  7. select BR2_PACKAGE_PYTHON_CERTIFI # runtime
  8. select BR2_PACKAGE_PROJ # runtime
  9. help
  10. Python interface to PROJ (cartographic projections and
  11. coordinate transformations library).
  12. https://github.com/pyproj4/pyproj
  13. comment "python-pyproj needs a toolchain w/ C++, gcc >= 4.7, NPTL, wchar"
  14. depends on !BR2_INSTALL_LIBSTDCPP || \
  15. !BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 || \
  16. !BR2_TOOLCHAIN_HAS_THREADS_NPTL || !BR2_USE_WCHAR