2014-04-04 22:14:01 +02:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# postgresql
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2020-02-14 09:39:10 +01:00
|
|
|
POSTGRESQL_VERSION = 12.2
|
2014-04-04 22:14:01 +02:00
|
|
|
POSTGRESQL_SOURCE = postgresql-$(POSTGRESQL_VERSION).tar.bz2
|
2019-08-09 17:59:41 +02:00
|
|
|
POSTGRESQL_SITE = https://ftp.postgresql.org/pub/source/v$(POSTGRESQL_VERSION)
|
2014-04-04 22:14:01 +02:00
|
|
|
POSTGRESQL_LICENSE = PostgreSQL
|
|
|
|
POSTGRESQL_LICENSE_FILES = COPYRIGHT
|
2014-07-28 13:57:28 +02:00
|
|
|
POSTGRESQL_INSTALL_STAGING = YES
|
2014-08-13 15:57:09 +02:00
|
|
|
POSTGRESQL_CONFIG_SCRIPTS = pg_config
|
2016-10-28 12:14:03 +02:00
|
|
|
POSTGRESQL_CONF_ENV = \
|
|
|
|
ac_cv_type_struct_sockaddr_in6=yes \
|
2016-11-28 19:53:51 +01:00
|
|
|
pgac_cv_snprintf_long_long_int_modifier="ll" \
|
2019-04-20 15:35:51 +02:00
|
|
|
pgac_cv_snprintf_size_t_support=yes \
|
|
|
|
LIBS=$(TARGET_NLS_LIBS)
|
2015-09-29 22:01:31 +02:00
|
|
|
POSTGRESQL_CONF_OPTS = --disable-rpath
|
2019-04-20 15:35:51 +02:00
|
|
|
POSTGRESQL_DEPENDENCIES = $(TARGET_NLS_DEPENDENCIES)
|
2014-07-28 13:57:28 +02:00
|
|
|
|
2018-10-21 00:10:56 +02:00
|
|
|
# https://www.postgresql.org/docs/11/static/install-procedure.html:
|
|
|
|
# "If you want to invoke the build from another makefile rather than
|
|
|
|
# manually, you must unset MAKELEVEL or set it to zero"
|
|
|
|
POSTGRESQL_MAKE_OPTS = MAKELEVEL=0
|
|
|
|
|
2015-03-10 20:59:37 +01:00
|
|
|
ifeq ($(BR2_TOOLCHAIN_USES_UCLIBC),y)
|
|
|
|
# PostgreSQL does not build against uClibc with locales
|
|
|
|
# enabled, due to an uClibc bug, see
|
|
|
|
# http://lists.uclibc.org/pipermail/uclibc/2014-April/048326.html
|
|
|
|
# so overwrite automatic detection and disable locale support
|
|
|
|
POSTGRESQL_CONF_ENV += pgac_cv_type_locale_t=no
|
|
|
|
endif
|
|
|
|
|
2014-04-04 22:14:01 +02:00
|
|
|
ifneq ($(BR2_TOOLCHAIN_HAS_THREADS),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
POSTGRESQL_CONF_OPTS += --disable-thread-safety
|
2014-04-04 22:14:01 +02:00
|
|
|
endif
|
|
|
|
|
2019-05-06 11:04:09 +02:00
|
|
|
ifeq ($(BR2_arcle)$(BR2_arceb)$(BR2_microblazeel)$(BR2_microblazebe)$(BR2_or1k)$(BR2_nios2)$(BR2_riscv)$(BR2_xtensa)$(BR2_nds32),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
POSTGRESQL_CONF_OPTS += --disable-spinlocks
|
2014-05-15 18:42:11 +02:00
|
|
|
endif
|
|
|
|
|
2014-04-04 22:14:01 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_READLINE),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
POSTGRESQL_DEPENDENCIES += readline
|
2014-04-04 22:14:01 +02:00
|
|
|
else
|
2015-03-31 09:21:57 +02:00
|
|
|
POSTGRESQL_CONF_OPTS += --without-readline
|
2014-04-04 22:14:01 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_ZLIB),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
POSTGRESQL_DEPENDENCIES += zlib
|
2014-04-04 22:14:01 +02:00
|
|
|
else
|
2015-03-31 09:21:57 +02:00
|
|
|
POSTGRESQL_CONF_OPTS += --without-zlib
|
2014-04-04 22:14:01 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_TZDATA),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
POSTGRESQL_DEPENDENCIES += tzdata
|
|
|
|
POSTGRESQL_CONF_OPTS += --with-system-tzdata=/usr/share/zoneinfo
|
2014-04-22 17:41:25 +02:00
|
|
|
else
|
2015-03-31 09:21:57 +02:00
|
|
|
POSTGRESQL_DEPENDENCIES += host-zic
|
2015-09-29 22:01:32 +02:00
|
|
|
POSTGRESQL_CONF_ENV += ZIC="$(ZIC)"
|
2014-04-04 22:14:01 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
POSTGRESQL_DEPENDENCIES += openssl
|
|
|
|
POSTGRESQL_CONF_OPTS += --with-openssl
|
2017-11-25 18:12:14 +01:00
|
|
|
else
|
|
|
|
# PostgreSQL checks for /dev/urandom and fails if it's being cross-compiled and
|
|
|
|
# an SSL library isn't found. Since /dev/urandom is guaranteed to be provided
|
|
|
|
# on Linux systems, explicitly tell the configure script it's available.
|
|
|
|
POSTGRESQL_CONF_ENV += ac_cv_file__dev_urandom=yes
|
2014-04-04 22:14:01 +02:00
|
|
|
endif
|
|
|
|
|
2016-10-24 16:13:18 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_OPENLDAP),y)
|
|
|
|
POSTGRESQL_DEPENDENCIES += openldap
|
|
|
|
POSTGRESQL_CONF_OPTS += --with-ldap
|
|
|
|
else
|
|
|
|
POSTGRESQL_CONF_OPTS += --without-ldap
|
|
|
|
endif
|
|
|
|
|
2018-07-27 09:41:25 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_LIBXML2),y)
|
|
|
|
POSTGRESQL_DEPENDENCIES += libxml2
|
|
|
|
POSTGRESQL_CONF_OPTS += --with-libxml
|
|
|
|
POSTGRESQL_CONF_ENV += XML2_CONFIG=$(STAGING_DIR)/usr/bin/xml2-config
|
|
|
|
else
|
|
|
|
POSTGRESQL_CONF_OPTS += --without-libxml
|
|
|
|
endif
|
|
|
|
|
2019-02-04 19:53:40 +01:00
|
|
|
# required for postgresql.service Type=notify
|
|
|
|
ifeq ($(BR2_PACKAGE_SYSTEMD),y)
|
|
|
|
POSTGRESQL_DEPENDENCIES += systemd
|
|
|
|
POSTGRESQL_CONF_OPTS += --with-systemd
|
|
|
|
else
|
|
|
|
POSTGRESQL_CONF_OPTS += --without-systemd
|
|
|
|
endif
|
|
|
|
|
2019-05-21 15:39:32 +02:00
|
|
|
POSTGRESQL_CFLAGS = $(TARGET_CFLAGS)
|
|
|
|
|
|
|
|
ifeq ($(BR2_TOOLCHAIN_HAS_GCC_BUG_85180),y)
|
|
|
|
POSTGRESQL_CFLAGS += -O0
|
|
|
|
endif
|
|
|
|
|
|
|
|
POSTGRESQL_CONF_ENV += CFLAGS="$(POSTGRESQL_CFLAGS)"
|
|
|
|
|
2014-04-04 22:14:01 +02:00
|
|
|
define POSTGRESQL_USERS
|
|
|
|
postgres -1 postgres -1 * /var/lib/pgsql /bin/sh - PostgreSQL Server
|
|
|
|
endef
|
|
|
|
|
|
|
|
define POSTGRESQL_INSTALL_TARGET_FIXUP
|
|
|
|
$(INSTALL) -dm 0700 $(TARGET_DIR)/var/lib/pgsql
|
2014-08-13 15:57:10 +02:00
|
|
|
$(RM) -rf $(TARGET_DIR)/usr/lib/postgresql/pgxs
|
2014-04-04 22:14:01 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
POSTGRESQL_POST_INSTALL_TARGET_HOOKS += POSTGRESQL_INSTALL_TARGET_FIXUP
|
|
|
|
|
2014-08-13 15:57:09 +02:00
|
|
|
define POSTGRESQL_INSTALL_CUSTOM_PG_CONFIG
|
|
|
|
$(INSTALL) -m 0755 -D package/postgresql/pg_config \
|
|
|
|
$(STAGING_DIR)/usr/bin/pg_config
|
2018-03-12 11:12:30 +01:00
|
|
|
$(SED) "s|@POSTGRESQL_VERSION@|$(POSTGRESQL_VERSION)|g" $(STAGING_DIR)/usr/bin/pg_config
|
2014-08-13 15:57:09 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
POSTGRESQL_POST_INSTALL_STAGING_HOOKS += POSTGRESQL_INSTALL_CUSTOM_PG_CONFIG
|
|
|
|
|
2014-04-04 22:14:01 +02:00
|
|
|
define POSTGRESQL_INSTALL_INIT_SYSV
|
|
|
|
$(INSTALL) -m 0755 -D package/postgresql/S50postgresql \
|
|
|
|
$(TARGET_DIR)/etc/init.d/S50postgresql
|
|
|
|
endef
|
|
|
|
|
2014-05-20 23:16:51 +02:00
|
|
|
define POSTGRESQL_INSTALL_INIT_SYSTEMD
|
|
|
|
$(INSTALL) -D -m 644 package/postgresql/postgresql.service \
|
2015-03-20 20:14:02 +01:00
|
|
|
$(TARGET_DIR)/usr/lib/systemd/system/postgresql.service
|
2014-05-20 23:16:51 +02:00
|
|
|
endef
|
|
|
|
|
2014-04-04 22:14:01 +02:00
|
|
|
$(eval $(autotools-package))
|