diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2008-05-18 03:24:17 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2008-05-18 03:24:17 +0000 |
commit | d4b9f44bf9373ae57b3ae2bfca7f2c870b0eefca (patch) | |
tree | 38701f1c78d6f7d81baacd8d043efd1662c52189 /src | |
parent | 1bfe97e5a89fea0994a9c5d428b08cd7c3d63c3b (diff) | |
download | postgresql-d4b9f44bf9373ae57b3ae2bfca7f2c870b0eefca.tar.gz |
okay, looks like ecpg/compatlib needs -lintl too.
Per buildfarm results.
Diffstat (limited to 'src')
-rw-r--r-- | src/interfaces/ecpg/compatlib/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/interfaces/ecpg/compatlib/Makefile b/src/interfaces/ecpg/compatlib/Makefile index 29f27ea35c..737c1150cc 100644 --- a/src/interfaces/ecpg/compatlib/Makefile +++ b/src/interfaces/ecpg/compatlib/Makefile @@ -5,7 +5,7 @@ # Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group # Portions Copyright (c) 1994, Regents of the University of California # -# $PostgreSQL: pgsql/src/interfaces/ecpg/compatlib/Makefile,v 1.40 2008/04/07 14:15:58 petere Exp $ +# $PostgreSQL: pgsql/src/interfaces/ecpg/compatlib/Makefile,v 1.41 2008/05/18 03:24:17 tgl Exp $ # #------------------------------------------------------------------------- @@ -21,8 +21,8 @@ override CPPFLAGS := -I../include -I$(top_srcdir)/src/interfaces/ecpg/include \ -I$(libpq_srcdir) -I$(top_srcdir)/src/include/utils $(CPPFLAGS) override CFLAGS += $(PTHREAD_CFLAGS) -SHLIB_LINK = -L../ecpglib -lecpg -L../pgtypeslib -lpgtypes $(libpq) -lm \ - $(PTHREAD_LIBS) +SHLIB_LINK = -L../ecpglib -lecpg -L../pgtypeslib -lpgtypes $(libpq) \ + $(filter -lintl -lm, $(LIBS)) $(PTHREAD_LIBS) SHLIB_EXPORTS = exports.txt |