|
@@ -4,6 +4,7 @@ config BR2_PACKAGE_OSM2PGSQL
|
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 # C++11, libosmium, protozero
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # boost, libosmium
|
|
|
depends on BR2_USE_WCHAR # boost, fmt, libosmium
|
|
|
+ depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 # std::future
|
|
|
select BR2_PACKAGE_BOOST
|
|
|
select BR2_PACKAGE_BOOST_SYSTEM
|
|
|
select BR2_PACKAGE_BOOST_FILESYSTEM
|
|
@@ -24,3 +25,6 @@ config BR2_PACKAGE_OSM2PGSQL
|
|
|
comment "osm2pgsql needs a toolchain w/ C++, wchar, threads, gcc >= 4.7"
|
|
|
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \
|
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 || !BR2_TOOLCHAIN_HAS_THREADS
|
|
|
+
|
|
|
+comment "osm2pgsql needs a toolchain not affected by GCC bug 64735"
|
|
|
+ depends on BR2_TOOLCHAIN_HAS_GCC_BUG_64735
|