aboutsummaryrefslogtreecommitdiff
path: root/security/amavisd-milter
diff options
context:
space:
mode:
authorJohn Marino <marino@FreeBSD.org>2015-07-03 09:20:24 +0000
committerJohn Marino <marino@FreeBSD.org>2015-07-03 09:20:24 +0000
commita28dc18cc5a6a390b88aa2152e325a91fc3df010 (patch)
tree481a215277c150e0d67a1d99419e3f97f1a9beb1 /security/amavisd-milter
parentcc6fc822f1291aab58c72fe580b41eae6a35b24d (diff)
downloadports-a28dc18cc5a6a390b88aa2152e325a91fc3df010.tar.gz
ports-a28dc18cc5a6a390b88aa2152e325a91fc3df010.zip
security/amavisd-milter: Remove pre-everything check
The pre-everything target fails on systems that do not have sendmail installed in base. The logic may have worked in the past, but today the existence check fails because the library that is checked is pulled in later. The check itself is aimed at the sysadmin that intentionally changes the sendmail default to not install milter, but then tries to install this port. The worst case scenario the results from removing this check (even if it worked) is that the amavisd-milter port breaks during the build. PR: 200247 Submitted by: marino Approved by: maintainer timeout (6 weeks)
Notes
Notes: svn path=/head/; revision=391224
Diffstat (limited to 'security/amavisd-milter')
-rw-r--r--security/amavisd-milter/Makefile12
1 files changed, 0 insertions, 12 deletions
diff --git a/security/amavisd-milter/Makefile b/security/amavisd-milter/Makefile
index fba900ee1a1a..3bbbcda3b039 100644
--- a/security/amavisd-milter/Makefile
+++ b/security/amavisd-milter/Makefile
@@ -50,18 +50,6 @@ PORTDOCS= AUTHORS CHANGES INSTALL LICENSE README TODO
BROKEN= Base system sendmail not found or too old, rebuild with WITH_SENDMAIL_PORT=yes
.endif
-.if !defined(SENDMAIL_WITHOUT_MILTER)
-.if defined(WITH_SENDMAIL_PORT)
-.if !defined(WITH_SENDMAIL_STATIC_MILTER) && !exists(${LOCALBASE}/lib/libmilter.so.${MILTER_SOVER})
-pre-everything::
- @${ECHO_MSG}
- @${ECHO_MSG} You must rebuild sendmail port with SENDMAIL_WITH_SHARED_MILTER
- @${ECHO_MSG} or set variable WITH_SENDMAIL_STATIC_MILTER
- @${FALSE}
-.endif
-.endif
-.endif
-
.if defined(WITH_SENDMAIL_PORT)
CONFIGURE_ARGS+=--with-sendmail=${MILTERBASE}
.endif