buildroot/package/libpqxx/Config.in
Fabrice Fontaine 23dc553da7 package/libpqxx: needs gcc >= 4.9
libpqxx uses brace-initialisation since version 6.3.0 and
c93a4626f4

Fixes:
 - http://autobuild.buildroot.org/results/3416a2eaa6b69014f733d38a17c161b024301534

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2019-10-16 22:18:42 +02:00

18 lines
572 B
Plaintext

config BR2_PACKAGE_LIBPQXX
bool "libpqxx"
depends on BR2_PACKAGE_POSTGRESQL
depends on BR2_TOOLCHAIN_HAS_THREADS
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C++11
depends on BR2_INSTALL_LIBSTDCPP
help
libpqxx is the official C++ client API for PostgreSQL, the
enterprise-strength open-source relational database.
http://pqxx.org/development/libpqxx/
comment "libpqxx needs toolchain w/ C++, gcc >= 4.9, threads"
depends on BR2_PACKAGE_POSTGRESQL
depends on !BR2_INSTALL_LIBSTDCPP || \
!BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 || \
!BR2_TOOLCHAIN_HAS_THREADS