mirror of
https://github.com/postgres/postgres.git
synced 2025-07-31 22:04:40 +03:00
Remove BSD/OS (BSDi) port. There are no known users upgrading to
Postgres 9.2, and perhaps no existing users either.
This commit is contained in:
@ -1,25 +0,0 @@
|
||||
AROPT = cr
|
||||
|
||||
# bsdi 4.0 and later is ELF
|
||||
DLSUFFIX = .so
|
||||
ifeq ($(host_os), bsdi2.0)
|
||||
DLSUFFIX = .o
|
||||
endif
|
||||
ifeq ($(host_os), bsdi2.1)
|
||||
DLSUFFIX = .o
|
||||
endif
|
||||
ifeq ($(findstring bsdi3, $(host_os)), bsdi3)
|
||||
DLSUFFIX = .o
|
||||
endif
|
||||
|
||||
ifeq ($(DLSUFFIX), .so)
|
||||
CFLAGS_SL = -fpic
|
||||
rpath = -Wl,-rpath,'$(rpathdir)'
|
||||
export_dynamic = -Wl,-export-dynamic
|
||||
else
|
||||
CFLAGS_SL =
|
||||
endif
|
||||
|
||||
# Rule for building a shared library from a single .o file
|
||||
%.so: %.o
|
||||
$(CC) $(CFLAGS) $(LDFLAGS) $(LDFLAGS_SL) -shared -o $@ $<
|
Reference in New Issue
Block a user