diff options
author | pav <pav@FreeBSD.org> | 2004-07-14 00:23:12 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2004-07-14 00:23:12 +0800 |
commit | 14cf9a4437814edf4f7148ec85ad55e85c0be70c (patch) | |
tree | da432fa5d92d2d9c021177a1b87aa04e9d337c97 /mail/postfix22/scripts | |
parent | 214c2bced61bd58181a04ac16fd97ffaa5926a31 (diff) | |
download | freebsd-ports-gnome-14cf9a4437814edf4f7148ec85ad55e85c0be70c.tar.gz freebsd-ports-gnome-14cf9a4437814edf4f7148ec85ad55e85c0be70c.tar.zst freebsd-ports-gnome-14cf9a4437814edf4f7148ec85ad55e85c0be70c.zip |
- Update to 2.1.4
PR: ports/68949
Submitted by: Vivek Khera <vivek@khera.org> (maintainer)
Diffstat (limited to 'mail/postfix22/scripts')
-rw-r--r-- | mail/postfix22/scripts/configure.postfix | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/mail/postfix22/scripts/configure.postfix b/mail/postfix22/scripts/configure.postfix index 05b5c1f6d756..38d43d084335 100644 --- a/mail/postfix22/scripts/configure.postfix +++ b/mail/postfix22/scripts/configure.postfix @@ -1,5 +1,5 @@ #!/bin/sh -# $FreeBSD: /tmp/pcvs/ports/mail/postfix22/scripts/Attic/configure.postfix,v 1.50 2004-06-25 09:11:35 pav Exp $ +# $FreeBSD: /tmp/pcvs/ports/mail/postfix22/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" |