diff options
author | schmonz <schmonz@pkgsrc.org> | 2005-01-08 19:58:16 +0000 |
---|---|---|
committer | schmonz <schmonz@pkgsrc.org> | 2005-01-08 19:58:16 +0000 |
commit | 371dbaab812fb26c2161cba19e7403d5fdbbb4cb (patch) | |
tree | afc13e17adf2ad51520e91763911607bed4364f7 /mail/dovecot/hacks.mk | |
parent | a803ed79fc1a2a1dffcf95f327112b2f73deb62e (diff) | |
download | pkgsrc-371dbaab812fb26c2161cba19e7403d5fdbbb4cb.tar.gz |
Update to 0.99.13. From the changelog:
* GNUTLS support hasn't been working for a while, so it's not even
tried to be used anymore unless explicitly wanted.
+ Added CRAM-MD5 authentication mechanism. Patch by Joshua Goodall
+ Added SMD5 and LDAP-MD5 password schemes and changed MD5 scheme to
use LDAP-MD5 if the password isn't in MD5crypt format. Patch by
Joshua Goodall
+ Workaround for some POP3 client bugs: if message doesn't contain the
"end of headers" empty line, add it automatically.
+ vpopmail supports now all password schemes, most importantly
MD5crypt works now without support from libc's crypt()
- SQL and LDAP authentication was broken
- SEARCH UNKEYWORD wasn't working
pkgsrc changes:
* Disable GNU TLS support for the time being.
* Move the workaround for the gcc2 sparc64 ICE into hacks.mk.
* Format DESCR.
Diffstat (limited to 'mail/dovecot/hacks.mk')
-rw-r--r-- | mail/dovecot/hacks.mk | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/mail/dovecot/hacks.mk b/mail/dovecot/hacks.mk new file mode 100644 index 00000000000..454b2c7dba2 --- /dev/null +++ b/mail/dovecot/hacks.mk @@ -0,0 +1,9 @@ +# $NetBSD: hacks.mk,v 1.1 2005/01/08 19:58:16 schmonz Exp $ + +.include "../../mk/compiler.mk" + +# Avoid an ICE in gcc2 on sparc64 +.if !empty(CC_VERSION:Mgcc-*) +PKG_HACKS+= sparc64-gcc2-ice +CONFIGURE_ENV+= F77=${FALSE} +.endif |