1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-30 11:03:19 +03:00

Partial fixes for contrib build on AIX: include -lm where needed.

Per Rocco Altier.
This commit is contained in:
Tom Lane
2005-07-24 23:30:10 +00:00
parent d675226e20
commit ac652466ec
5 changed files with 10 additions and 5 deletions

View File

@ -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