ef385d0427
Other changes: - Add a hash for the license file. - Change the URL from pqxx.org to the official GitHub repository, as releases are no longer being posted to the old download mirror. - Remove the patch, this has been fixed in the upstream code for some time. - Remove AUTORECONF, as it is no longer necessary because the patch has been removed. - Require gcc >= 4.7, as C++11 is now mandatory: http://pqxx.org/development/libpqxx/ Signed-off-by: Adam Duskett <Adamduskett@outlook.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
15 lines
495 B
Plaintext
15 lines
495 B
Plaintext
config BR2_PACKAGE_LIBPQXX
|
|
bool "libpqxx"
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 # C++11
|
|
depends on BR2_PACKAGE_POSTGRESQL
|
|
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++ support, gcc >= 4.7"
|
|
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_7
|
|
depends on BR2_PACKAGE_POSTGRESQL
|