diff options
author | steve <steve@FreeBSD.org> | 1998-10-26 21:54:24 +0800 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 1998-10-26 21:54:24 +0800 |
commit | c0c1c20ed3edeb8e4369a9f5886515a83b63b886 (patch) | |
tree | 1ea6be8a59ef56e3286cb66c6434e8836ffd1f93 | |
parent | aa5efcbe530731160b8e8c214edc7ff008b2ccde (diff) | |
download | freebsd-ports-gnome-c0c1c20ed3edeb8e4369a9f5886515a83b63b886.tar.gz freebsd-ports-gnome-c0c1c20ed3edeb8e4369a9f5886515a83b63b886.tar.zst freebsd-ports-gnome-c0c1c20ed3edeb8e4369a9f5886515a83b63b886.zip |
Fix a braino I introduced that made this fail in -stable.
-rw-r--r-- | mail/imap-uw/Makefile | 6 | ||||
-rw-r--r-- | mail/imap-uw/files/patch-ab | 4 |
2 files changed, 3 insertions, 7 deletions
diff --git a/mail/imap-uw/Makefile b/mail/imap-uw/Makefile index 4a2152e10460..6b07f8ef59d0 100644 --- a/mail/imap-uw/Makefile +++ b/mail/imap-uw/Makefile @@ -3,7 +3,7 @@ # Date created: 9 Jan 1997 # Whom: pst # -# $Id: Makefile,v 1.19 1998/10/13 23:25:06 jseger Exp $ +# $Id: Makefile,v 1.20 1998/10/23 18:42:49 asami Exp $ # DISTNAME= imap-4.2 @@ -15,10 +15,6 @@ EXTRACT_SUFX= .tar.Z MAINTAINER= imap-uw@freebsd.ady.ro -VERSION!= sysctl -n kern.osreldate -.if ${VERSION} < 300000 -BROKEN= build -.endif ALL_TARGET= bsf MAN8= ipopd.8 imapd.8 diff --git a/mail/imap-uw/files/patch-ab b/mail/imap-uw/files/patch-ab index afab8c317626..59d55db387b5 100644 --- a/mail/imap-uw/files/patch-ab +++ b/mail/imap-uw/files/patch-ab @@ -51,9 +51,9 @@ +$(SHLIB): $(SOFILES) +.if $(PORTOBJFORMAT) == "elf" -+ ld -Bshareable -x -o $(SHLIB) $(SOFILES) ++ ld -shared -x -soname $(SHLIB) -o $(SHLIB) $(SOFILES) +.else -+ ld -Bshareable -x -soname $(SHLIB) -o $(SHLIB) $(SOFILES) ++ ld -Bshareable -x -o $(SHLIB) $(SOFILES) +.endif + +.c.so: osdep.h |