summaryrefslogtreecommitdiff
path: root/mail
diff options
context:
space:
mode:
authorRong-En Fan <rafan@FreeBSD.org>2007-04-07 18:09:25 +0000
committerRong-En Fan <rafan@FreeBSD.org>2007-04-07 18:09:25 +0000
commitc489ca83df0c179e7e9bc82a32260c95a8168276 (patch)
tree48e7604ace5646285dd252b4d075ad602be0adb4 /mail
parent- Update to 20070407 snapshot (diff)
- Correct WITH_SENDMAIL_BASE logic
- Change BROKEN to IGNORE since it's not broken but it's the sendmail that does not support milter PR: ports/111336 Submitted by: Thomas Abthorpe <thomas at goodking.ca> (maintainer)
Notes
Notes: svn path=/head/; revision=189439
Diffstat (limited to 'mail')
-rw-r--r--mail/spamass-milter/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/mail/spamass-milter/Makefile b/mail/spamass-milter/Makefile
index 5eced9a2a784..b3cffdd8bf91 100644
--- a/mail/spamass-milter/Makefile
+++ b/mail/spamass-milter/Makefile
@@ -49,11 +49,11 @@ LDFLAGS+= -L${LOCALBASE}/lib
WITH_SENDMAIL_BASE=yes
.endif
-.if defined(WITH_SENDMAIL_BASE) && exists(/usr/lib/libmilter.a)
+.if defined(WITH_SENDMAIL_BASE)
+.if exists(/usr/lib/libmilter.a)
MILTERBASE= /usr
.else
-.if !exists(/usr/lib/libmilter.a)
-BROKEN= Base system sendmail not found or too old, rebuild with WITH_SENDMAIL_PORT=yes
+IGNORE= Base system sendmail not found or too old, rebuild with WITH_SENDMAIL_PORT=yes
.endif
.endif