Config.in 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. config BR2_PACKAGE_GDAL
  2. bool "gdal"
  3. depends on BR2_TOOLCHAIN_HAS_SYNC_4 # json-c
  4. depends on BR2_INSTALL_LIBSTDCPP # proj, qhull
  5. # configure can't find proj, when linking statically
  6. depends on !BR2_STATIC_LIBS
  7. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 # C++11, proj
  8. depends on !BR2_TOOLCHAIN_HAS_BINUTILS_BUG_27597
  9. depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL # proj
  10. depends on BR2_USE_WCHAR # proj
  11. select BR2_PACKAGE_GIFLIB
  12. select BR2_PACKAGE_JPEG
  13. select BR2_PACKAGE_JSON_C
  14. select BR2_PACKAGE_LIBGEOTIFF
  15. select BR2_PACKAGE_LIBPNG
  16. select BR2_PACKAGE_PROJ
  17. select BR2_PACKAGE_QHULL
  18. select BR2_PACKAGE_ZLIB
  19. help
  20. GDAL is a translator library for raster and vector geospatial
  21. data formats. As a library, it presents a single raster
  22. abstract data model and single vector abstract data model to
  23. the calling application for all supported formats. It also
  24. comes with a variety of useful command line utilities for data
  25. translation and processing.
  26. https://gdal.org/
  27. comment "gdal needs a toolchain w/ C++, dynamic library, gcc >= 4.7, not binutils bug 27597, NPTL, wchar"
  28. depends on BR2_TOOLCHAIN_HAS_SYNC_4
  29. depends on !BR2_INSTALL_LIBSTDCPP || BR2_STATIC_LIBS || \
  30. !BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 || \
  31. BR2_TOOLCHAIN_HAS_BINUTILS_BUG_27597 || \
  32. !BR2_TOOLCHAIN_HAS_THREADS_NPTL || !BR2_USE_WCHAR