Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 3 Jul 2015 09:20:25 +0000 (UTC)
From:      John Marino <marino@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r391224 - head/security/amavisd-milter
Message-ID:  <201507030920.t639KP33083761@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201507030920.t639KP33083761>