diff options
author | Peter Pentchev <roam@FreeBSD.org> | 2001-05-22 17:14:58 +0000 |
---|---|---|
committer | Peter Pentchev <roam@FreeBSD.org> | 2001-05-22 17:14:58 +0000 |
commit | 6a876150e18bbd4285ec1d80783a06b5aece2ad9 (patch) | |
tree | 1035d60cf71f8b9d5034062c4c9658142c5dcfdd /mail/postfix-current | |
parent | 181f39b885093d00a904fbb4c47625b1bbecf164 (diff) | |
download | ports-6a876150e18bbd4285ec1d80783a06b5aece2ad9.tar.gz ports-6a876150e18bbd4285ec1d80783a06b5aece2ad9.zip |
Notes
Diffstat (limited to 'mail/postfix-current')
-rw-r--r-- | mail/postfix-current/scripts/configure.postfix | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/mail/postfix-current/scripts/configure.postfix b/mail/postfix-current/scripts/configure.postfix index d4cdc347bf7f..e1b7d41c028d 100644 --- a/mail/postfix-current/scripts/configure.postfix +++ b/mail/postfix-current/scripts/configure.postfix @@ -105,9 +105,19 @@ while [ "$1" ]; do SUB_TEST="" ;; \"IPv6\") + if [ `uname -m` != "i386" ]; then + /usr/bin/dialog --msgbox "IPv6 patch currently only supported on i386!" 5 60 > /dev/stderr + rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc + exit 1 + fi + if [ X$SUB_TLS = "X" ]; then + /usr/bin/dialog --msgbox "IPv6 and TLS patch cannot be used simultaneously!" 5 60 > /dev/stderr + rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc + exit 1 + fi echo "PATCH_SITES+= ftp://ftp.kame.net/pub/kame/misc/" echo "PATCH_SITES+= \${MASTER_SITE_RINGSERVER:S,%SUBDIR%,net/kame/misc/&,}" - echo "PATCHFILES+= postfix-20010228release-v6-20010415a.diff.gz" + echo "PATCHFILES+= postfix-20010228release-v6-20010424a.diff.gz" echo "PATCH_DIST_STRIP= -p1" echo "" ;; |