From f4a99d175b292cc149505f52df5bfa0204a5047d Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Thu, 3 Jan 2019 22:03:34 +0000 Subject: gnu: postgresql: Build with openssl support. * gnu/packages/databases.scm (postgresql)[arguments]: Add --with-openssl to [inputs]: Add openssl. --- gnu/packages/databases.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index 6b0ff5d07c..7d5502e560 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -751,7 +751,7 @@ as a drop-in replacement of MySQL.") (patches (search-patches "postgresql-disable-resolve_symlinks.patch")))) (build-system gnu-build-system) (arguments - `(#:configure-flags '("--with-uuid=e2fs") + `(#:configure-flags '("--with-uuid=e2fs" "--with-openssl") #:phases (modify-phases %standard-phases (add-before 'configure 'patch-/bin/sh @@ -770,6 +770,7 @@ as a drop-in replacement of MySQL.") (inputs `(("readline" ,readline) ("libuuid" ,util-linux) + ("openssl" ,openssl) ("zlib" ,zlib))) (home-page "https://www.postgresql.org/") (synopsis "Powerful object-relational database system") -- cgit v1.2.3