aboutsummaryrefslogtreecommitdiffstats
path: root/mail/spamass-milter
diff options
context:
space:
mode:
authorrafan <rafan@FreeBSD.org>2007-04-08 02:09:25 +0800
committerrafan <rafan@FreeBSD.org>2007-04-08 02:09:25 +0800
commit05a3d9012f3fd5183ccf04bbd3a105dcc4a8ca2b (patch)
treec1e7582e16da4086c10939033eee8ad9d4b5faef /mail/spamass-milter
parentd2ed9aa9a4712110885d9afef76a8431beb6ff8e (diff)
downloadfreebsd-ports-gnome-05a3d9012f3fd5183ccf04bbd3a105dcc4a8ca2b.tar.gz
freebsd-ports-gnome-05a3d9012f3fd5183ccf04bbd3a105dcc4a8ca2b.tar.zst
freebsd-ports-gnome-05a3d9012f3fd5183ccf04bbd3a105dcc4a8ca2b.zip
- 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)
Diffstat (limited to 'mail/spamass-milter')
-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