summaryrefslogtreecommitdiff
path: root/src/pl
diff options
context:
space:
mode:
authorTom Lane2004-02-10 07:26:25 +0000
committerTom Lane2004-02-10 07:26:25 +0000
commit0eb69519150325ed902ebf6ec4ab0847fb96bf90 (patch)
tree624cc1137d526a4155531588e0cd78ba5543bed9 /src/pl
parentd1587f1f5b8682dafc8bfff42df8b3da87d32d77 (diff)
Repair missing inclusions of -lintl for shared libraries.
Diffstat (limited to 'src/pl')
-rw-r--r--src/pl/plpgsql/src/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pl/plpgsql/src/Makefile b/src/pl/plpgsql/src/Makefile
index b375384589a..9db7e2b4ff2 100644
--- a/src/pl/plpgsql/src/Makefile
+++ b/src/pl/plpgsql/src/Makefile
@@ -2,7 +2,7 @@
#
# Makefile for the plpgsql shared object
#
-# $PostgreSQL: pgsql/src/pl/plpgsql/src/Makefile,v 1.24 2003/11/29 19:52:12 pgsql Exp $
+# $PostgreSQL: pgsql/src/pl/plpgsql/src/Makefile,v 1.25 2004/02/10 07:26:25 tgl Exp $
#
#-------------------------------------------------------------------------
@@ -20,7 +20,7 @@ SO_MAJOR_VERSION= 1
SO_MINOR_VERSION= 0
override CPPFLAGS := -I$(srcdir) $(CPPFLAGS)
-SHLIB_LINK = $(BE_DLLLIBS)
+SHLIB_LINK = $(filter -lintl, $(LIBS)) $(BE_DLLLIBS)
rpath :=
OBJS = pl_gram.o pl_handler.o pl_comp.o pl_exec.o pl_funcs.o