aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2004-05-21 00:14:38 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2004-05-21 00:14:38 +0000
commit9bfee3adeeb5eb08bdfe192371a4db67fb6a216f (patch)
tree7cb6b8807ac931d4b8c642da9303fcba9495b8ba /src
parent58c42f37ab3183d33403ef002c21c94fc9c252bb (diff)
downloadpostgresql-9bfee3adeeb5eb08bdfe192371a4db67fb6a216f.tar.gz
postgresql-9bfee3adeeb5eb08bdfe192371a4db67fb6a216f.zip
Revert addition of -lpgport, which breaks the build on platforms that
are sticky about non-PIC code in shared libraries. Windows will have to find another solution (probably similar to the way libpq does it).
Diffstat (limited to 'src')
-rw-r--r--src/interfaces/ecpg/ecpglib/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/ecpg/ecpglib/Makefile b/src/interfaces/ecpg/ecpglib/Makefile
index 32c8b474264..7be457e7472 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.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