diff options
author | steve <steve@FreeBSD.org> | 1999-02-04 02:06:37 +0000 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 1999-02-04 02:06:37 +0000 |
commit | 101376fe1a1a0acad6ac4e3226e96cb519d05fe8 (patch) | |
tree | c9e25de4b4e26183080a024420427bb9ed9251d6 /databases/postgresql73 | |
parent | 0d55d14a86a5e60200653f790d864c10239734d5 (diff) | |
download | FreeBSD-ports-101376fe1a1a0acad6ac4e3226e96cb519d05fe8.zip FreeBSD-ports-101376fe1a1a0acad6ac4e3226e96cb519d05fe8.tar.gz |
Fix build for ELF and update PLIST to match the current state of affairs.
PR: 9685
Diffstat (limited to 'databases/postgresql73')
-rw-r--r-- | databases/postgresql73/files/patch-ar | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/databases/postgresql73/files/patch-ar b/databases/postgresql73/files/patch-ar new file mode 100644 index 0000000..a1fd3d5 --- /dev/null +++ b/databases/postgresql73/files/patch-ar @@ -0,0 +1,16 @@ +--- Makefile.shlib.orig Wed Feb 3 19:16:02 1999 ++++ Makefile.shlib Wed Feb 3 19:18:28 1999 +@@ -59,10 +59,11 @@ + ifeq ($(PORTNAME), freebsd) + ifdef BSD_SHLIB + install-shlib-dep := install-shlib +- shlib := lib$(NAME)$(DLSUFFIX).$(SO_MAJOR_VERSION).$(SO_MINOR_VERSION) + ifdef ELF_SYSTEM +- LDFLAGS_SL := -x -Bshareable ++ shlib := lib$(NAME)$(DLSUFFIX).$(SO_MAJOR_VERSION) ++ LDFLAGS_SL := -x -shared -soname $(shlib) + else ++ shlib := lib$(NAME)$(DLSUFFIX).$(SO_MAJOR_VERSION).$(SO_MINOR_VERSION) + LDFLAGS_SL := -x -Bshareable -Bforcearchive + endif + CFLAGS += $(CFLAGS_SL) |