diff options
author | obache <obache@pkgsrc.org> | 2011-06-22 01:05:36 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2011-06-22 01:05:36 +0000 |
commit | 23d1afe59d9b8e61637f0b97f22279c8b450e27f (patch) | |
tree | 1c3fefffaf5c2b60393d5764e46ef0f191818c73 /mail/cyrus-imapd24/patches/patch-aa | |
parent | 73dcaac95c2a92b92db7ae2d5afca7be567f4f5d (diff) | |
download | pkgsrc-23d1afe59d9b8e61637f0b97f22279c8b450e27f.tar.gz |
Update cyrus-imapd24 to 2.4.9.
while here, expunge old sites from MASTER_SITES, and add the http site in
release announcement.
Changes to the Cyrus IMAP Server since 2.4.8
* fixed crashes in seen handling
* Bug #3453 - fixed LSUB replication
* Bug #3442 - allow disabling PCRE if it's buggy at your site
* Bug #3443 - LSUB response fixes
* Bug #3448 - XFER error handling (murder)
* Bug #3437 - fixed regression: quotaroot wasn't being updated on
rename
* Bug #3456 - fixed crash on rename user.foo user.foo without
partition change
* config update: database paths for most databases are now
configurable in imapd.conf
* Bug #3303 - fixed index lock breaking on XFER (thanks Julien
Coloos)
* Bug #3457 - fixed ESEARCH parsing (was breaking iPhones)
* Bug #3188 - fixed XFER with unlimited quota (thanks again Julien
Coloos)
* Misc other quota fixes (there are still known bugs with the quota
system)
* Bug #3169 - fixed GETQUOTAROOT for domain quotaroots
* Bug #3465 - fixed compilation with Perl 5.14 (thanks
hsk@imb-jena.de, and also thanks to Ondrej Sury who reported it
separately)
* Bug #3464 - fix for sendmail exec failure. This was a nasty one,
Diffstat (limited to 'mail/cyrus-imapd24/patches/patch-aa')
-rw-r--r-- | mail/cyrus-imapd24/patches/patch-aa | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/mail/cyrus-imapd24/patches/patch-aa b/mail/cyrus-imapd24/patches/patch-aa index 5ea94521fe0..da39d489b8b 100644 --- a/mail/cyrus-imapd24/patches/patch-aa +++ b/mail/cyrus-imapd24/patches/patch-aa @@ -1,20 +1,20 @@ -$NetBSD: patch-aa,v 1.4 2011/05/15 12:04:24 obache Exp $ +$NetBSD: patch-aa,v 1.5 2011/06/22 01:05:37 obache Exp $ ---- configure.in.orig 2011-04-13 14:35:22.000000000 +0000 +--- configure.in.orig 2011-06-21 19:50:39.000000000 +0000 +++ configure.in -@@ -395,7 +395,7 @@ if test "$sievedir" != "no"; then - AC_CHECK_LIB(fl,main) +@@ -403,7 +403,7 @@ if test "$sievedir" != "no"; then - AC_CHECK_HEADER(pcreposix.h) -- if test "$ac_cv_header_pcreposix_h" == "yes"; then -+ if test "$ac_cv_header_pcreposix_h" = "yes"; then - AC_MSG_CHECKING(for utf8 enabled pcre) - AC_CACHE_VAL(cyrus_cv_pcre_utf8, AC_TRY_CPP([#include <pcreposix.h> + if test "$testpcre" != "no"; then + AC_CHECK_HEADER(pcreposix.h) +- if test "$ac_cv_header_pcreposix_h" == "yes"; then ++ if test "$ac_cv_header_pcreposix_h" = "yes"; then + AC_MSG_CHECKING(for utf8 enabled pcre) + AC_CACHE_VAL(cyrus_cv_pcre_utf8, AC_TRY_CPP([#include <pcreposix.h> #ifndef REG_UTF8 -@@ -405,13 +405,13 @@ if test "$sievedir" != "no"; then - else - cyrus_cv_pcre_utf8="no" +@@ -415,13 +415,13 @@ if test "$sievedir" != "no"; then + fi fi + - if test "$cyrus_cv_pcre_utf8" == "yes"; then + if test "$cyrus_cv_pcre_utf8" = "yes"; then LIBS="$LIBS -lpcre -lpcreposix"; @@ -27,7 +27,7 @@ $NetBSD: patch-aa,v 1.4 2011/05/15 12:04:24 obache Exp $ LIBS="$LIBS -lrx" AC_DEFINE(ENABLE_REGEX, [], [Do we have a regex library?]) -@@ -1161,7 +1161,7 @@ dnl add perl cccdlflags when building li +@@ -1171,7 +1171,7 @@ dnl add perl cccdlflags when building li dnl libraries will be compiled as PIC if perl requires PIC objects dnl -- this is needed on NetBSD and Linux, but seems to cause problems on atleast Solaris -- case "${target_os}" in |