diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2004-07-13 16:23:12 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2004-07-13 16:23:12 +0000 |
commit | e28d8ba3be5b45d7d5e5364b0328c0c7e7b8e6a2 (patch) | |
tree | c759b09f1ad4837a77120479d6f36363160d6e47 /mail/postfix27 | |
parent | 5f363444c6134cef9f798d1ec1b6882fe31a835f (diff) | |
download | ports-e28d8ba3be5b45d7d5e5364b0328c0c7e7b8e6a2.tar.gz ports-e28d8ba3be5b45d7d5e5364b0328c0c7e7b8e6a2.zip |
Notes
Diffstat (limited to 'mail/postfix27')
-rw-r--r-- | mail/postfix27/Makefile | 2 | ||||
-rw-r--r-- | mail/postfix27/distinfo | 4 | ||||
-rw-r--r-- | mail/postfix27/scripts/configure.postfix | 6 |
3 files changed, 8 insertions, 4 deletions
diff --git a/mail/postfix27/Makefile b/mail/postfix27/Makefile index 43bde1f43b6f..0924e703a274 100644 --- a/mail/postfix27/Makefile +++ b/mail/postfix27/Makefile @@ -15,7 +15,7 @@ # NOTE: PCRE is enabled by default unless you specifically disable it. PORTNAME= postfix -PORTVERSION= 2.1.3 +PORTVERSION= 2.1.4 PORTEPOCH= 1 CATEGORIES= mail ipv6 MASTER_SITES= ftp://ftp.porcupine.org/mirrors/postfix-release/official/ \ diff --git a/mail/postfix27/distinfo b/mail/postfix27/distinfo index 1b6289fcad25..6c6b60b774f8 100644 --- a/mail/postfix27/distinfo +++ b/mail/postfix27/distinfo @@ -1,5 +1,5 @@ -MD5 (postfix/postfix-2.1.3.tar.gz) = 1f515b0d80cd1f9db0113240bf36f248 -SIZE (postfix/postfix-2.1.3.tar.gz) = 1971632 +MD5 (postfix/postfix-2.1.4.tar.gz) = f96fc9e7cbf9750d4a91475fcbd02a81 +SIZE (postfix/postfix-2.1.4.tar.gz) = 1970068 MD5 (postfix/pfixtls-0.8.18-2.1.3-0.9.7d.tar.gz) = d3211ebd4d2fbbc9c78235666ed355ac SIZE (postfix/pfixtls-0.8.18-2.1.3-0.9.7d.tar.gz) = 239141 MD5 (postfix/ipv6-1.25-pf-2.1.3.patch.gz) = cd99ff3ddf9bb88e23a7e33ae42d0772 diff --git a/mail/postfix27/scripts/configure.postfix b/mail/postfix27/scripts/configure.postfix index 58257bdba6bd..152c605c921b 100644 --- a/mail/postfix27/scripts/configure.postfix +++ b/mail/postfix27/scripts/configure.postfix @@ -1,5 +1,5 @@ #!/bin/sh -# $FreeBSD: /tmp/pcvs/ports/mail/postfix27/scripts/Attic/configure.postfix,v 1.50 2004-06-25 09:11:35 pav Exp $ +# $FreeBSD: /tmp/pcvs/ports/mail/postfix27/scripts/Attic/configure.postfix,v 1.51 2004-07-13 16:23:12 pav Exp $ if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then exit @@ -23,6 +23,7 @@ NOPCRE "DISABLE Perl Compatible Regular Expressions" "$status_NOPCRE" \ SASL "Cyrus SASLv1 (Simple Authentication and Security Layer)" "$status_SASL" \ SASL2 "Cyrus SASLv2 (Simple Authentication and Security Layer)" "$status_SASL2" \ SASLKRB "If your SASL requires Kerberos select this option" "$status_SASLKRB" \ +SASLKRB5 "If your SASL requires Kerberos5 select this option" "$status_SASLKRB5" \ TLS "SSL and TLS" "$status_TLS" \ IPv6 "IPv6 support" "$status_IPv6" \ IPv6TLS "IPv6 support with SSL and TLS" "$status_IPv6TLS" \ @@ -103,6 +104,9 @@ while [ "$1" ]; do SASLKRB) echo "POSTFIX_AUXLIBS+= -lkrb -lcrypto -lcom_err" ;; + SASLKRB5) + echo "POSTFIX_AUXLIBS+= -lkrb5 -lcrypto -lcom_err" + ;; TLS) echo "MAN8+= tlsmgr.8" echo "USE_OPENSSL= yes" |