From: Bruce Momjian Date: Fri, 21 May 2004 03:10:47 +0000 (+0000) Subject: Add -lpgport to ecpglib link only on win32. Other platforms have X-Git-Tag: REL8_0_0BETA1~576 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=928e73ea62ea8fbf2a79ba0cae319910fda4d161;p=thirdparty%2Fpostgresql.git Add -lpgport to ecpglib link only on win32. Other platforms have problems with it. --- diff --git a/src/interfaces/ecpg/ecpglib/Makefile b/src/interfaces/ecpg/ecpglib/Makefile index 7be457e7472..4577b8b0fa7 100644 --- a/src/interfaces/ecpg/ecpglib/Makefile +++ b/src/interfaces/ecpg/ecpglib/Makefile @@ -4,7 +4,7 @@ # # Copyright (c) 1994, Regents of the University of California # -# $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/Makefile,v 1.19 2004/05/21 00:14:38 tgl Exp $ +# $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/Makefile,v 1.20 2004/05/21 03:10:47 momjian Exp $ # #------------------------------------------------------------------------- @@ -23,7 +23,11 @@ override CFLAGS += $(PTHREAD_CFLAGS) OBJS= execute.o typename.o descriptor.o data.o error.o prepare.o memory.o \ connect.o misc.o -SHLIB_LINK = -L../pgtypeslib -lpgtypes $(libpq) \ +ifeq ($(PORTNAME), win32) +PGPORT=-lpgport +endif + +SHLIB_LINK = -L../pgtypeslib -lpgtypes $(PGPORT) $(libpq) \ $(filter -lintl -lssl -lcrypto -lkrb5 -lcrypt -lm, $(LIBS)) $(PTHREAD_LIBS) all: all-lib