mirror of
https://github.com/PartialVolume/shredos.x86_64.git
synced 2026-02-20 17:42:10 +00:00
19 lines
657 B
Plaintext
19 lines
657 B
Plaintext
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
|