Date: Sat, 11 Aug 2012 15:16:54 -0400 From: Curtis Villamizar <curtis@occnc.com> To: freebsd-ports@freebsd.org Cc: "Eugene M. Kim" <ab@astralblue.net>, curtis@occnc.com Subject: patch to build spamass-milter with sendmail-sasl Message-ID: <201208111916.q7BJGsts036695@gateway.ipv6.occnc.com>
next in thread | raw e-mail | index | archive | help
FYI- The mail/spamass-milter port won't build if the sendmail-sasl port has been built. The patch below fixes this. The port maintainer is on the Cc. No bug has been reported. Curtis --- Makefile.orig 2011-12-02 20:38:47.000000000 -0500 +++ Makefile 2012-08-11 14:51:23.000000000 -0400 @@ -25,10 +25,17 @@ REJECTTEXT_PATCH "Customize SMTP reject message" off \ LDAP "LDAP support" off \ SENDMAIL_PORT "Build against sendmail port" off \ + SENDMAIL_SASL "Use SASL version of sendmail port" off \ IPV6 "Apply IPv6 whitelist patch" off .include <bsd.port.pre.mk> +.if defined(WITH_SENDMAIL_PORT) +.if defined(WITH_SENDMAIL_SASL) +SENDMAIL_MILTER_PORT= sendmail-sasl +.endif +.endif + ORIG_ARGS= fd:mMp:P:r:u:D:i:b:B:e:x NEW_ARGS:= ${ORIG_ARGS}
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201208111916.q7BJGsts036695>