mirror of
https://github.com/postgres/postgres.git
synced 2025-07-27 12:41:57 +03:00
Remove "sco" and "unixware" ports.
SCO OpenServer and SCO UnixWare are more or less dead platforms. We have never had a buildfarm member testing the "sco" port, and the last "unixware" member was last heard from in 2012, so it's fair to doubt that the code even compiles anymore on either one. Remove both ports. We can always undo this if someone shows up with an interest in maintaining and testing these platforms. Discussion: <17177.1476136994@sss.pgh.pa.us>
This commit is contained in:
@ -1,13 +0,0 @@
|
||||
AROPT = cr
|
||||
export_dynamic = -Wl,-Bexport
|
||||
|
||||
DLSUFFIX = .so
|
||||
ifeq ($(GCC), yes)
|
||||
CFLAGS_SL = -fpic
|
||||
else
|
||||
CFLAGS_SL = -K PIC
|
||||
endif
|
||||
|
||||
# Rule for building a shared library from a single .o file
|
||||
%.so: %.o
|
||||
$(LD) -G -Bdynamic -o $@ $<
|
@ -1,35 +0,0 @@
|
||||
AROPT = crs
|
||||
ifeq ($(with_gnu_ld), yes)
|
||||
export_dynamic = -Wl,-E
|
||||
else
|
||||
export_dynamic = -Wl,-Bexport
|
||||
endif
|
||||
|
||||
ifeq ($(ld_R_works), yes)
|
||||
ifeq ($(with_gnu_ld), yes)
|
||||
rpath = -Wl,-rpath,'$(rpathdir)'
|
||||
else
|
||||
rpath = -Wl,-R'$(rpathdir)'
|
||||
endif
|
||||
endif
|
||||
|
||||
# Unixware needs threads for everything that uses libpq
|
||||
CFLAGS += $(PTHREAD_CFLAGS)
|
||||
|
||||
DLSUFFIX = .so
|
||||
ifeq ($(GCC), yes)
|
||||
CFLAGS_SL = -fpic
|
||||
else
|
||||
CFLAGS_SL = -K PIC
|
||||
endif
|
||||
ifeq ($(GCC), yes)
|
||||
SO_FLAGS = -shared
|
||||
else
|
||||
SO_FLAGS = -G
|
||||
endif
|
||||
|
||||
# Rule for building a shared library from a single .o file
|
||||
%.so: %.o
|
||||
$(CC) $(CFLAGS) $(LDFLAGS) $(LDFLAGS_SL) $(SO_FLAGS) -o $@ $<
|
||||
|
||||
sqlmansect = 5sql
|
Reference in New Issue
Block a user