123456789101112131415161718 |
- config BR2_PACKAGE_PYTHON_PYPROJ
- bool "python-pyproj"
- depends on BR2_INSTALL_LIBSTDCPP # proj
- depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 # proj
- depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL # proj
- depends on BR2_USE_WCHAR # proj
- select BR2_PACKAGE_PYTHON_CERTIFI # runtime
- select BR2_PACKAGE_PROJ # runtime
- help
- Python interface to PROJ (cartographic projections and
- coordinate transformations library).
- https://github.com/pyproj4/pyproj
- comment "python-pyproj needs a toolchain w/ C++, gcc >= 4.7, NPTL, wchar"
- depends on !BR2_INSTALL_LIBSTDCPP || \
- !BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 || \
- !BR2_TOOLCHAIN_HAS_THREADS_NPTL || !BR2_USE_WCHAR
|