summaryrefslogtreecommitdiff
path: root/src/makefiles
diff options
context:
space:
mode:
authorBruce Momjian2012-05-03 14:58:44 +0000
committerBruce Momjian2012-05-03 14:58:44 +0000
commitebcaa5fcde8411786e3765414465174e6d31c8e6 (patch)
treef5380c3e09ca02a1fc6e4b8971ddecce0554df2c /src/makefiles
parent7490c48f1e2c51dce77d33f7fd464e72713679a5 (diff)
Remove BSD/OS (BSDi) port. There are no known users upgrading to
Postgres 9.2, and perhaps no existing users either.
Diffstat (limited to 'src/makefiles')
-rw-r--r--src/makefiles/Makefile.bsdi25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/makefiles/Makefile.bsdi b/src/makefiles/Makefile.bsdi
deleted file mode 100644
index e2c9be3dcd0..00000000000
--- a/src/makefiles/Makefile.bsdi
+++ /dev/null
@@ -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 $@ $<