1config BR2_PACKAGE_LIBGEOTIFF 2 bool "libgeotiff" 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 # proj 6 depends on BR2_USE_WCHAR # proj 7 select BR2_PACKAGE_PROJ 8 select BR2_PACKAGE_TIFF 9 help 10 Libgeotiff is an open source library normally hosted on top of 11 libtiff for reading, and writing GeoTIFF information tags. 12 13 https://github.com/OSGeo/libgeotiff 14 15comment "libgeotiff needs a toolchain w/ C++, gcc >= 4.7, threads, wchar" 16 depends on !BR2_INSTALL_LIBSTDCPP || \ 17 !BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 || \ 18 !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR 19