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>
17 lines
494 B
Makefile
17 lines
494 B
Makefile
################################################################################
|
|
#
|
|
# libpqxx
|
|
#
|
|
################################################################################
|
|
|
|
LIBPQXX_VERSION = 6.0.0
|
|
LIBPQXX_SITE = $(call github,jtv,libpqxx,$(LIBPQXX_VERSION))
|
|
LIBPQXX_INSTALL_STAGING = YES
|
|
LIBPQXX_DEPENDENCIES = postgresql
|
|
LIBPQXX_LICENSE = BSD-3-Clause
|
|
LIBPQXX_LICENSE_FILES = COPYING
|
|
|
|
LIBPQXX_CONF_ENV += ac_cv_path_PG_CONFIG=$(STAGING_DIR)/usr/bin/pg_config
|
|
|
|
$(eval $(autotools-package))
|