* [Buildroot] [NEXT 1/1] postgresql: bump to 10.1
@ 2017-11-20 14:43 Adam Duskett
2017-11-22 21:28 ` Thomas Petazzoni
0 siblings, 1 reply; 2+ messages in thread
From: Adam Duskett @ 2017-11-20 14:43 UTC (permalink / raw)
To: buildroot
changes:
- Add a hash for the license file.
- PostgreSQL 10.0 and above will default to checking for /dev/urandom if an
SSL library is not found, which will fail when cross compiling.
The workaround is to add --disable-strong-random to the configure options
if a SSL library not selected.
Signed-off-by: Adam Duskett <aduskett@gmail.com>
---
package/postgresql/postgresql.hash | 7 ++++---
package/postgresql/postgresql.mk | 4 +++-
2 files changed, 7 insertions(+), 4 deletions(-)
diff --git a/package/postgresql/postgresql.hash b/package/postgresql/postgresql.hash
index e628389..e234770 100644
--- a/package/postgresql/postgresql.hash
+++ b/package/postgresql/postgresql.hash
@@ -1,4 +1,5 @@
-# From https://ftp.postgresql.org/pub/source/v9.6.6/postgresql-9.6.6.tar.bz2.sha256
-sha256 399cdffcb872f785ba67e25d275463d74521566318cfef8fe219050d063c8154 postgresql-9.6.6.tar.bz2
+# From https://ftp.postgresql.org/pub/source/v10.1/postgresql-10.1.tar.bz2.sha256
+sha256 3ccb4e25fe7a7ea6308dea103cac202963e6b746697366d72ec2900449a5e713 postgresql-10.1.tar.bz2
+
# License file, Locally calculated
-sha256 7dc8de32741ad1b03e21710771b55a1b9d460671d47f28a8840f917e38c66676 COPYRIGHT
+sha256 7dc8de32741ad1b03e21710771b55a1b9d460671d47f28a8840f917e38c66676 COPYRIGHT
diff --git a/package/postgresql/postgresql.mk b/package/postgresql/postgresql.mk
index 50ce212..d1f231b 100644
--- a/package/postgresql/postgresql.mk
+++ b/package/postgresql/postgresql.mk
@@ -4,7 +4,7 @@
#
################################################################################
-POSTGRESQL_VERSION = 9.6.6
+POSTGRESQL_VERSION = 10.1
POSTGRESQL_SOURCE = postgresql-$(POSTGRESQL_VERSION).tar.bz2
POSTGRESQL_SITE = http://ftp.postgresql.org/pub/source/v$(POSTGRESQL_VERSION)
POSTGRESQL_LICENSE = PostgreSQL
@@ -56,6 +56,8 @@ endif
ifeq ($(BR2_PACKAGE_OPENSSL),y)
POSTGRESQL_DEPENDENCIES += openssl
POSTGRESQL_CONF_OPTS += --with-openssl
+else
+POSTGRESQL_CONF_OPTS += --disable-strong-random
endif
ifeq ($(BR2_PACKAGE_OPENLDAP),y)
--
2.13.6
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [Buildroot] [NEXT 1/1] postgresql: bump to 10.1
2017-11-20 14:43 [Buildroot] [NEXT 1/1] postgresql: bump to 10.1 Adam Duskett
@ 2017-11-22 21:28 ` Thomas Petazzoni
0 siblings, 0 replies; 2+ messages in thread
From: Thomas Petazzoni @ 2017-11-22 21:28 UTC (permalink / raw)
To: buildroot
Hello,
> - PostgreSQL 10.0 and above will default to checking for /dev/urandom if an
> SSL library is not found, which will fail when cross compiling.
> The workaround is to add --disable-strong-random to the configure options
> if a SSL library not selected.
Since /dev/urandom is guaranteed to be provided on Linux systems, I
believe a better solution is to pass ac_cv_file__dev_urandom=yes in
POSTGRESQL_CONF_ENV, so that the PostgreSQL configure script knows
that /dev/urandom will be available on the target.
Could you test this instead?
Thanks!
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2017-11-22 21:28 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-11-20 14:43 [Buildroot] [NEXT 1/1] postgresql: bump to 10.1 Adam Duskett
2017-11-22 21:28 ` Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox