summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorTom Lane2006-09-10 22:07:02 +0000
committerTom Lane2006-09-10 22:07:02 +0000
commit4ee24cbb55a17c6808338f22ca86bd8f24d6955b (patch)
treef9ee9385d806bcb380411cea23d1b5d278544ff9 /contrib
parent723af8e67a14c7ed4ba164929aeb6d6c5aa238f0 (diff)
Install a cleaner solution to the AIX libpq linking problem, as per
an earlier discussion. Centralize assumptions about what libpq depends on in one place in Makefile.global. I am unconvinced that this list is complete, but since ecpg seems to have gotten along with just these entries, we'll try it this way and see what happens.
Diffstat (limited to 'contrib')
-rw-r--r--contrib/dblink/Makefile5
1 files changed, 1 insertions, 4 deletions
diff --git a/contrib/dblink/Makefile b/contrib/dblink/Makefile
index 950fed5069..aebf403fae 100644
--- a/contrib/dblink/Makefile
+++ b/contrib/dblink/Makefile
@@ -1,4 +1,4 @@
-# $PostgreSQL: pgsql/contrib/dblink/Makefile,v 1.12 2006/09/10 21:38:26 tgl Exp $
+# $PostgreSQL: pgsql/contrib/dblink/Makefile,v 1.13 2006/09/10 22:07:02 tgl Exp $
MODULE_big = dblink
PG_CPPFLAGS = -I$(libpq_srcdir)
@@ -20,6 +20,3 @@ top_builddir = ../..
include $(top_builddir)/src/Makefile.global
include $(top_srcdir)/contrib/contrib-global.mk
endif
-
-# Apparently AIX requires that we mention everything libpq depends on :-(
-SHLIB_LINK += $(filter -lintl -lssl -lcrypto, $(LIBS))