diff options
author | pav <pav@FreeBSD.org> | 2004-11-15 03:59:51 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2004-11-15 03:59:51 +0800 |
commit | b585a95f72f2d9ab59ca16180fae79c676a165bc (patch) | |
tree | 29b00250696c6cc59681c1d902211b62d3ea4022 /mail/postfix28/scripts | |
parent | de3f8e13961e1a524bb60c2a36f34803c5a62d5f (diff) | |
download | freebsd-ports-gnome-b585a95f72f2d9ab59ca16180fae79c676a165bc.tar.gz freebsd-ports-gnome-b585a95f72f2d9ab59ca16180fae79c676a165bc.tar.zst freebsd-ports-gnome-b585a95f72f2d9ab59ca16180fae79c676a165bc.zip |
- Support SPF and TLS at the same time
PR: ports/72774
Submitted by: Marcus Grando <marcus@corp.grupos.com.br>
Approved by: maintainer timeout (2 weeks)
Diffstat (limited to 'mail/postfix28/scripts')
-rw-r--r-- | mail/postfix28/scripts/configure.postfix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mail/postfix28/scripts/configure.postfix b/mail/postfix28/scripts/configure.postfix index 01d1cc47f16f..947ae63e657b 100644 --- a/mail/postfix28/scripts/configure.postfix +++ b/mail/postfix28/scripts/configure.postfix @@ -1,5 +1,5 @@ #!/bin/sh -# $FreeBSD: /tmp/pcvs/ports/mail/postfix28/scripts/Attic/configure.postfix,v 1.55 2004-10-26 14:23:33 pav Exp $ +# $FreeBSD: /tmp/pcvs/ports/mail/postfix28/scripts/Attic/configure.postfix,v 1.56 2004-11-14 19:59:51 pav Exp $ if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then exit @@ -219,6 +219,9 @@ while [ "$1" ]; do ## echo "README+= SPF_README" echo "" SUB_SPF="" + if [ X$SUB_TLS != "X" ]; then + echo "EXTRA_PATCHES+= ${FILESDIR}/extra-libspf2_and_tls.patch" + fi ;; IPv6) if [ X$SUB_TLS = "X" ]; then |