diff options
author | asami <asami@FreeBSD.org> | 1998-10-24 02:42:49 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1998-10-24 02:42:49 +0800 |
commit | 3a03e0c6e94dbb01d0db0133a159fff6d8b73a40 (patch) | |
tree | 14ba8986f00efd37350ab732d74811bc99f84e40 /mail/imap-uw/Makefile | |
parent | 47fd941f78323eee057ae5b5f8d526570b6fba18 (diff) | |
download | freebsd-ports-gnome-3a03e0c6e94dbb01d0db0133a159fff6d8b73a40.tar.gz freebsd-ports-gnome-3a03e0c6e94dbb01d0db0133a159fff6d8b73a40.tar.zst freebsd-ports-gnome-3a03e0c6e94dbb01d0db0133a159fff6d8b73a40.zip |
The previous commit broke this for a.out.
===
cc -fpic -DPIC -c -O -pipe -DNFSKLUDGE -DIGNORE_LOCK_EACCES_ERRORS mx.c -o mx.so
ld -Bshareable -x -soname libc-client.so.2.1 -o libc-client.so.2.1 mail.so misc.so newsrc.so smanager.so osdep.so utf8.so siglocal.so dummy.so pseudo.so netmsg.so flstring.so fdstring.so rfc822.so nntp.so smtp.so imap4r1.so pop3.so unix.so mbox.so mbx.so mmdf.so tenex.so mtx.so news.so phile.so mh.so mx.so
ld: libc-client.so.2.1: No such file or directory
*** Error code 1
Stop.
Diffstat (limited to 'mail/imap-uw/Makefile')
-rw-r--r-- | mail/imap-uw/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/mail/imap-uw/Makefile b/mail/imap-uw/Makefile index 285d729b1705..4a2152e10460 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.18 1998/10/12 19:17:34 jseger Exp $ +# $Id: Makefile,v 1.19 1998/10/13 23:25:06 jseger Exp $ # DISTNAME= imap-4.2 @@ -15,6 +15,10 @@ 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 |