1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-19 23:22:23 +03:00

Remove leftovers from subproject removals. Fixes for Python and Kerberos

configuration.
This commit is contained in:
Peter Eisentraut
2002-09-04 22:54:18 +00:00
parent be475f92cd
commit e43ecb3d1a
21 changed files with 50 additions and 306 deletions

View File

@@ -42,11 +42,6 @@ CFLAGS_SL = -fPIC
else
CFLAGS_SL = +z
endif
ifeq ($(GXX), yes)
CXXFLAGS_SL = -fPIC
else
CXXFLAGS_SL = +z
endif
# Rule for building shared libs (currently used only for regression test
# shlib ... should go away, since this is not really enough knowledge)

View File

@@ -13,7 +13,4 @@ CFLAGS_SL =
%$(DLSUFFIX): %.o
@echo 'cannot make shared object $@ from $<'
override CXXFLAGS +=-I/usr/local/include/g++
override CFLAGS +=-I/usr/local/include
sqlmansect = 7

View File

@@ -8,11 +8,6 @@ CFLAGS_SL = -fpic
else
CFLAGS_SL = -K PIC
endif
ifeq ($(GXX), yes)
CXXFLAGS_SL = -fpic
else
CXXFLAGS_SL = -K PIC
endif
%.so: %.o
$(LD) -G -Bdynamic -o $@ $<

View File

@@ -1,4 +1,4 @@
# $Header: /cvsroot/pgsql/src/makefiles/Makefile.solaris,v 1.8 2001/11/11 19:20:53 momjian Exp $
# $Header: /cvsroot/pgsql/src/makefiles/Makefile.solaris,v 1.9 2002/09/04 22:54:18 petere Exp $
AROPT = crs
@@ -16,11 +16,6 @@ CFLAGS_SL = -fPIC
else
CFLAGS_SL = -KPIC
endif
ifeq ($(GXX), yes)
CXXFLAGS_SL = -fPIC
else
CXXFLAGS_SL = -KPIC
endif
%.so: %.o
$(LD) -G -Bdynamic -o $@ $<

View File

@@ -6,11 +6,6 @@ CFLAGS_SL = -fpic
else
CFLAGS_SL = -PIC
endif
ifeq ($(GXX), yes)
CXXFLAGS_SL = -fPIC
else
CXXFLAGS_SL = -PIC
endif
%.so: %.o
$(LD) -assert pure-text -Bdynamic -o $@ $<

View File

@@ -20,11 +20,6 @@ CFLAGS_SL = -fpic
else
CFLAGS_SL = -K PIC
endif
ifeq ($(GXX), yes)
CXXFLAGS_SL = -fpic
else
CXXFLAGS_SL = -K PIC
endif
ifeq ($(GCC), yes)
SO_FLAGS = -shared
else