diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2006-09-06 18:30:17 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2006-09-06 18:30:17 +0000 |
commit | 389870b256bc65f088a7f9a4ea4a88c01242c551 (patch) | |
tree | d617f4b79fb88cdfcb31e7e7e953c5af8efeef6a | |
parent | 34ec0c81af793c9f74f8e8e0be87f0c1135c5e1a (diff) | |
download | postgresql-389870b256bc65f088a7f9a4ea4a88c01242c551.tar.gz postgresql-389870b256bc65f088a7f9a4ea4a88c01242c551.zip |
Be more wary about which LIBS elements to pull into sslinfo link.
Per buildfarm results.
-rw-r--r-- | contrib/sslinfo/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/sslinfo/Makefile b/contrib/sslinfo/Makefile index 4818a613f21..f064153cc8f 100644 --- a/contrib/sslinfo/Makefile +++ b/contrib/sslinfo/Makefile @@ -13,4 +13,4 @@ include $(top_builddir)/src/Makefile.global include $(top_srcdir)/contrib/contrib-global.mk endif -SHLIB_LINK += $(LIBS) +SHLIB_LINK += $(filter -lssl -lcrypto -lssleay32 -leay32, $(LIBS)) |