Config.in 982 B

1234567891011121314151617181920212223242526
  1. config BR2_PACKAGE_OSM2PGSQL
  2. bool "osm2pgsql"
  3. depends on BR2_INSTALL_LIBSTDCPP # boost, fmt, libosmium, protozero
  4. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 # C++11, libosmium, protozero
  5. depends on BR2_TOOLCHAIN_HAS_THREADS # boost, libosmium
  6. depends on BR2_USE_WCHAR # boost, fmt, libosmium
  7. select BR2_PACKAGE_BOOST
  8. select BR2_PACKAGE_BOOST_SYSTEM
  9. select BR2_PACKAGE_BOOST_FILESYSTEM
  10. select BR2_PACKAGE_BZIP2
  11. select BR2_PACKAGE_EXPAT
  12. select BR2_PACKAGE_FMT
  13. select BR2_PACKAGE_LIBOSMIUM
  14. select BR2_PACKAGE_PROTOZERO
  15. select BR2_PACKAGE_ZLIB
  16. help
  17. osm2pgsql is a tool for loading OpenStreetMap data into a
  18. PostgreSQL / PostGIS database suitable for applications like
  19. rendering into a map, geocoding with Nominatim,
  20. or general analysis.
  21. https://osm2pgsql.org
  22. comment "osm2pgsql needs a toolchain w/ C++, wchar, threads, gcc >= 4.7"
  23. depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \
  24. !BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 || !BR2_TOOLCHAIN_HAS_THREADS