Bump Buildroot to 2021.02-rc3 (#1260)
* Rebase patches to Buildroot 2021.02-rc3 * Update Buildroot to 2021.02-rc3 * Declare Kernel headers to be Linux version 5.10 (since they are, and new Buildroot knows about 5.10)
This commit is contained in:
@@ -19,6 +19,15 @@ config BR2_PACKAGE_POSTGRESQL
|
||||
|
||||
http://www.postgresql.org
|
||||
|
||||
if BR2_PACKAGE_POSTGRESQL
|
||||
|
||||
config BR2_PACKAGE_POSTGRESQL_FULL
|
||||
bool "postgresql-full"
|
||||
help
|
||||
Build PostgreSQL, contrib, and documentation.
|
||||
|
||||
endif
|
||||
|
||||
comment "postgresql needs a toolchain w/ dynamic library, wchar"
|
||||
depends on BR2_USE_MMU
|
||||
depends on BR2_STATIC_LIBS || !BR2_USE_WCHAR
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
# From https://ftp.postgresql.org/pub/source/v12.5/postgresql-12.5.tar.bz2.md5
|
||||
md5 f19e48090bbd59ea81826b5fd99e7e97 postgresql-12.5.tar.bz2
|
||||
# From https://ftp.postgresql.org/pub/source/v12.5/postgresql-12.5.tar.bz2.sha256
|
||||
sha256 bd0d25341d9578b5473c9506300022de26370879581f5fddd243a886ce79ff95 postgresql-12.5.tar.bz2
|
||||
# From https://ftp.postgresql.org/pub/source/v13.2/postgresql-13.2.tar.bz2.sha256
|
||||
sha256 5fd7fcd08db86f5b2aed28fcfaf9ae0aca8e9428561ac547764c2a2b0f41adfc postgresql-13.2.tar.bz2
|
||||
|
||||
# License file, Locally calculated
|
||||
sha256 739e5d454d81d31a482469338b7c856f1f5c6b4cdda1551cea6f0f6d18eef62c COPYRIGHT
|
||||
sha256 31ccadc0a70e8e0e8a35c5833567b64388dfe34987d962e1911554e271294105 COPYRIGHT
|
||||
|
||||
@@ -4,17 +4,16 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
POSTGRESQL_VERSION = 12.5
|
||||
POSTGRESQL_VERSION = 13.2
|
||||
POSTGRESQL_SOURCE = postgresql-$(POSTGRESQL_VERSION).tar.bz2
|
||||
POSTGRESQL_SITE = https://ftp.postgresql.org/pub/source/v$(POSTGRESQL_VERSION)
|
||||
POSTGRESQL_LICENSE = PostgreSQL
|
||||
POSTGRESQL_LICENSE_FILES = COPYRIGHT
|
||||
POSTGRESQL_CPE_ID_VENDOR = postgresql
|
||||
POSTGRESQL_INSTALL_STAGING = YES
|
||||
POSTGRESQL_CONFIG_SCRIPTS = pg_config
|
||||
POSTGRESQL_CONF_ENV = \
|
||||
ac_cv_type_struct_sockaddr_in6=yes \
|
||||
pgac_cv_snprintf_long_long_int_modifier="ll" \
|
||||
pgac_cv_snprintf_size_t_support=yes \
|
||||
LIBS=$(TARGET_NLS_LIBS)
|
||||
POSTGRESQL_CONF_OPTS = --disable-rpath
|
||||
POSTGRESQL_DEPENDENCIES = $(TARGET_NLS_DEPENDENCIES)
|
||||
@@ -24,6 +23,12 @@ POSTGRESQL_DEPENDENCIES = $(TARGET_NLS_DEPENDENCIES)
|
||||
# manually, you must unset MAKELEVEL or set it to zero"
|
||||
POSTGRESQL_MAKE_OPTS = MAKELEVEL=0
|
||||
|
||||
ifeq ($(BR2_PACKAGE_POSTGRESQL_FULL),y)
|
||||
POSTGRESQL_MAKE_OPTS += world
|
||||
POSTGRESQL_INSTALL_TARGET_OPTS += DESTDIR=$(TARGET_DIR) install-world
|
||||
POSTGRESQL_INSTALL_STAGING_OPTS += DESTDIR=$(STAGING_DIR) install-world
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_TOOLCHAIN_USES_UCLIBC),y)
|
||||
# PostgreSQL does not build against uClibc with locales
|
||||
# enabled, due to an uClibc bug, see
|
||||
|
||||
Reference in New Issue
Block a user