]> granicus.if.org Git - postgresql/commitdiff
Fix dblink build for --enable-nls or --enable-openssl on AIX.
authorTom Lane <tgl@sss.pgh.pa.us>
Sun, 10 Sep 2006 21:38:26 +0000 (21:38 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Sun, 10 Sep 2006 21:38:26 +0000 (21:38 +0000)
Per Chris Browne.

contrib/dblink/Makefile

index 1c8b6587545fae5ee5ca49e501e957849ec7f50b..950fed5069317ecc39052d936fd95e3c568a525e 100644 (file)
@@ -1,4 +1,4 @@
-# $PostgreSQL: pgsql/contrib/dblink/Makefile,v 1.11 2006/02/27 12:54:38 petere Exp $
+# $PostgreSQL: pgsql/contrib/dblink/Makefile,v 1.12 2006/09/10 21:38:26 tgl Exp $
 
 MODULE_big = dblink
 PG_CPPFLAGS = -I$(libpq_srcdir)
@@ -20,3 +20,6 @@ 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))