svn commit: r391224 - head/security/amavisd-milter
John Marino
marino at FreeBSD.org
Fri Jul 3 09:20:25 UTC 2015
Author: marino
Date: Fri Jul 3 09:20:24 2015
New Revision: 391224
URL: https://svnweb.freebsd.org/changeset/ports/391224
Log:
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)
Modified:
head/security/amavisd-milter/Makefile
Modified: head/security/amavisd-milter/Makefile
==============================================================================
--- head/security/amavisd-milter/Makefile Fri Jul 3 09:19:24 2015 (r391223)
+++ head/security/amavisd-milter/Makefile Fri Jul 3 09:20:24 2015 (r391224)
@@ -50,18 +50,6 @@ PORTDOCS= AUTHORS CHANGES INSTALL LICENS
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
More information about the svn-ports-all
mailing list