1config BR2_PACKAGE_LIBPQXX 2 bool "libpqxx" 3 depends on BR2_PACKAGE_POSTGRESQL 4 depends on BR2_TOOLCHAIN_HAS_THREADS 5 depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C++11 6 depends on BR2_INSTALL_LIBSTDCPP 7 help 8 libpqxx is the official C++ client API for PostgreSQL, the 9 enterprise-strength open-source relational database. 10 11 http://pqxx.org/development/libpqxx/ 12 13comment "libpqxx needs toolchain w/ C++, gcc >= 4.9, threads" 14 depends on BR2_PACKAGE_POSTGRESQL 15 depends on !BR2_INSTALL_LIBSTDCPP || \ 16 !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 || \ 17 !BR2_TOOLCHAIN_HAS_THREADS 18