diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2005-07-05 23:13:57 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2005-07-05 23:13:57 +0000 |
commit | c19aa704c84e660c73fb45e0d3f38d0840f17823 (patch) | |
tree | 8a51d3894d1c2fe50316c4d88c74c15d485b0e0b /src | |
parent | d22a3727a5f8bd19f4443713b19908367e4181b8 (diff) |
Fix contrib/pgcrypto to autoconfigure for OpenSSL when --with-openssl
is used in the toplevel configure. Per Marko Kreen.
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.global.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Makefile.global.in b/src/Makefile.global.in index f537682569f..0735ecdcc4e 100644 --- a/src/Makefile.global.in +++ b/src/Makefile.global.in @@ -1,5 +1,5 @@ # -*-makefile-*- -# $PostgreSQL: pgsql/src/Makefile.global.in,v 1.215 2005/07/03 18:54:28 petere Exp $ +# $PostgreSQL: pgsql/src/Makefile.global.in,v 1.216 2005/07/05 23:13:57 tgl Exp $ #------------------------------------------------------------------------------ # All PostgreSQL makefiles include this file and use the variables it sets, @@ -128,6 +128,8 @@ pgxsdir = $(pkglibdir)/pgxs with_perl = @with_perl@ with_python = @with_python@ with_tcl = @with_tcl@ +with_openssl = @with_openssl@ +with_zlib = @with_zlib@ enable_shared = @enable_shared@ enable_rpath = @enable_rpath@ enable_nls = @enable_nls@ |