|
@@ -1,6 +1,7 @@
|
|
config BR2_PACKAGE_LIBPQXX
|
|
config BR2_PACKAGE_LIBPQXX
|
|
bool "libpqxx"
|
|
bool "libpqxx"
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
|
|
+ depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 # C++11
|
|
depends on BR2_PACKAGE_POSTGRESQL
|
|
depends on BR2_PACKAGE_POSTGRESQL
|
|
help
|
|
help
|
|
libpqxx is the official C++ client API for PostgreSQL, the
|
|
libpqxx is the official C++ client API for PostgreSQL, the
|
|
@@ -8,6 +9,6 @@ config BR2_PACKAGE_LIBPQXX
|
|
|
|
|
|
http://pqxx.org/development/libpqxx/
|
|
http://pqxx.org/development/libpqxx/
|
|
|
|
|
|
-comment "libpqxx needs toolchain w/ C++ support"
|
|
|
|
- depends on !BR2_INSTALL_LIBSTDCPP
|
|
|
|
|
|
+comment "libpqxx needs toolchain w/ C++ support, gcc >= 4.7"
|
|
|
|
+ depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_7
|
|
depends on BR2_PACKAGE_POSTGRESQL
|
|
depends on BR2_PACKAGE_POSTGRESQL
|