OSDN Git Service

Revert addition of -lpgport, which breaks the build on platforms that
authorTom Lane <tgl@sss.pgh.pa.us>
Fri, 21 May 2004 00:14:38 +0000 (00:14 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Fri, 21 May 2004 00:14:38 +0000 (00:14 +0000)
are sticky about non-PIC code in shared libraries.  Windows will have
to find another solution (probably similar to the way libpq does it).

src/interfaces/ecpg/ecpglib/Makefile

index 32c8b47..7be457e 100644 (file)
@@ -4,7 +4,7 @@
 #
 # Copyright (c) 1994, Regents of the University of California
 #
-# $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/Makefile,v 1.18 2004/05/19 05:14:58 momjian Exp $
+# $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/Makefile,v 1.19 2004/05/21 00:14:38 tgl Exp $
 #
 #-------------------------------------------------------------------------
 
@@ -23,7 +23,7 @@ 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 -lpgport $(libpq) \
+SHLIB_LINK = -L../pgtypeslib -lpgtypes $(libpq) \
        $(filter -lintl -lssl -lcrypto -lkrb5 -lcrypt -lm, $(LIBS)) $(PTHREAD_LIBS)
 
 all: all-lib