diff options
author | Bruce Momjian | 1997-01-12 04:25:23 +0000 |
---|---|---|
committer | Bruce Momjian | 1997-01-12 04:25:23 +0000 |
commit | 2595785b9bd72c72bc97a6ef62e2f27e53c9ce03 (patch) | |
tree | 8a6d500ed3a5afb589c9885642bda0b5da8e6a8a | |
parent | e2e6b2d730bac6833324b529f76ca3064288900f (diff) |
Shared library cleanup for -fpic.
-rw-r--r-- | src/backend/lib/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/backend/lib/Makefile b/src/backend/lib/Makefile index 515e228a345..e7768be01e8 100644 --- a/src/backend/lib/Makefile +++ b/src/backend/lib/Makefile @@ -4,7 +4,7 @@ # Makefile for lib (miscellaneous stuff) # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/backend/lib/Makefile,v 1.5 1997/01/10 18:19:02 momjian Exp $ +# $Header: /cvsroot/pgsql/src/backend/lib/Makefile,v 1.6 1997/01/12 04:25:23 momjian Exp $ # #------------------------------------------------------------------------- @@ -15,9 +15,7 @@ INCLUDE_OPT = -I.. \ -I../port/$(PORTNAME) \ -I../../include -ifeq ($(CC), gcc) - CFLAGS+=$(INCLUDE_OPT) -fpic -DPIC -endif +CFLAGS+=$(INCLUDE_OPT) $(CFLAGS_SL) OBJS = bit.o fstack.o hasht.o lispsort.o qsort.o stringinfo.o dllist.o |