summaryrefslogtreecommitdiff
path: root/contrib/tsearch2
diff options
context:
space:
mode:
authorTom Lane2005-07-24 23:30:10 +0000
committerTom Lane2005-07-24 23:30:10 +0000
commitac652466ec9ee98087650b9f164e4a4b5692e3a7 (patch)
treea6c78e0d4e4c1b5dfd79bfb2e7c63395c8e9a40e /contrib/tsearch2
parentd675226e20f7a2b66bf42e2ffb14bb9b48f65302 (diff)
Partial fixes for contrib build on AIX: include -lm where needed.
Per Rocco Altier.
Diffstat (limited to 'contrib/tsearch2')
-rw-r--r--contrib/tsearch2/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/tsearch2/Makefile b/contrib/tsearch2/Makefile
index 15983db4281..1691dd578d2 100644
--- a/contrib/tsearch2/Makefile
+++ b/contrib/tsearch2/Makefile
@@ -1,4 +1,4 @@
-# $PostgreSQL: pgsql/contrib/tsearch2/Makefile,v 1.8 2004/10/17 23:09:31 tgl Exp $
+# $PostgreSQL: pgsql/contrib/tsearch2/Makefile,v 1.9 2005/07/24 23:30:10 tgl Exp $
MODULE_big = tsearch2
OBJS = dict_ex.o dict.o snmap.o stopword.o common.o prs_dcfg.o \
@@ -19,7 +19,7 @@ DATA_built = tsearch2.sql untsearch2.sql
DOCS = README.tsearch2
REGRESS = tsearch2
-SHLIB_LINK := -lm
+SHLIB_LINK += $(filter -lm, $(LIBS))
ifdef USE_PGXS