Config.in 572 B

1234567891011121314151617
  1. config 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. http://pqxx.org/development/libpqxx/
  11. comment "libpqxx needs toolchain w/ C++, gcc >= 4.9, threads"
  12. depends on BR2_PACKAGE_POSTGRESQL
  13. depends on !BR2_INSTALL_LIBSTDCPP || \
  14. !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 || \
  15. !BR2_TOOLCHAIN_HAS_THREADS