summaryrefslogtreecommitdiff
path: root/mail
diff options
context:
space:
mode:
Diffstat (limited to 'mail')
-rw-r--r--mail/cyrus-imapd24/Makefile4
-rw-r--r--mail/cyrus-imapd24/distinfo9
-rw-r--r--mail/cyrus-imapd24/patches/patch-ap51
3 files changed, 6 insertions, 58 deletions
diff --git a/mail/cyrus-imapd24/Makefile b/mail/cyrus-imapd24/Makefile
index f8cb3377489..e271b620a21 100644
--- a/mail/cyrus-imapd24/Makefile
+++ b/mail/cyrus-imapd24/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.5 2010/12/20 14:05:32 obache Exp $
+# $NetBSD: Makefile,v 1.6 2011/03/31 01:28:37 obache Exp $
-DISTNAME= cyrus-imapd-2.4.6
+DISTNAME= cyrus-imapd-2.4.7
CATEGORIES= mail
MASTER_SITES= ftp://ftp.cyrusimap.org/cyrus-imapd/ \
ftp://ftp.cyrusimap.org/cyrus-imapd/OLD-VERSIONS/ \
diff --git a/mail/cyrus-imapd24/distinfo b/mail/cyrus-imapd24/distinfo
index 1c0571bc573..322b1a003cf 100644
--- a/mail/cyrus-imapd24/distinfo
+++ b/mail/cyrus-imapd24/distinfo
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.5 2010/12/20 14:05:32 obache Exp $
+$NetBSD: distinfo,v 1.6 2011/03/31 01:28:37 obache Exp $
-SHA1 (cyrus-imapd-2.4.6.tar.gz) = 2e28543c3ccaad79e2490b7a698630d92b756973
-RMD160 (cyrus-imapd-2.4.6.tar.gz) = 47f0eb0750f364b0fd6bbf970873bc1012ed2abf
-Size (cyrus-imapd-2.4.6.tar.gz) = 2377895 bytes
+SHA1 (cyrus-imapd-2.4.7.tar.gz) = 8a83395ccae4381347234d3112c81594b3615d69
+RMD160 (cyrus-imapd-2.4.7.tar.gz) = abb7d7e382475d69163490efb3ba0d43d3947c03
+Size (cyrus-imapd-2.4.7.tar.gz) = 2444382 bytes
SHA1 (patch-aa) = 68bc0f58dd6afd585dcfb1d38e4d131457cddb12
SHA1 (patch-ab) = f4762aaf7b8b929c28d63c666e6e8ea700681974
SHA1 (patch-ac) = d6b2e8c00a3605773bf7718d29ccfb0b82f59323
@@ -18,6 +18,5 @@ SHA1 (patch-al) = 0eaef55760e9a071802bba157a00bdacc84c1932
SHA1 (patch-am) = e100e13d5137116f5bd7674e954031b2615e5ab1
SHA1 (patch-an) = 31d008c732f71e0b6960f8e4206ce466a689c558
SHA1 (patch-ao) = c01c9d32b4d73cbc32d2ad8bfca8b8b021ca2474
-SHA1 (patch-ap) = c736e36f2bbe9e2026044a3ab0d13bec57d951a6
SHA1 (patch-aq) = 8afd83691256cfb32b8ae0370185635bcff90283
SHA1 (patch-ar) = 4ac95c029794afba0f4d398643f354b71efd9ac3
diff --git a/mail/cyrus-imapd24/patches/patch-ap b/mail/cyrus-imapd24/patches/patch-ap
deleted file mode 100644
index b157e682681..00000000000
--- a/mail/cyrus-imapd24/patches/patch-ap
+++ /dev/null
@@ -1,51 +0,0 @@
-$NetBSD: patch-ap,v 1.1.1.1 2010/10/30 12:12:35 obache Exp $
-
-Fix building with db5.
-
---- lib/cyrusdb_berkeley.c.orig 2010-10-19 03:08:28.000000000 +0000
-+++ lib/cyrusdb_berkeley.c
-@@ -108,7 +108,7 @@ static void db_panic(DB_ENV *dbenv __att
- exit(EC_TEMPFAIL);
- }
-
--#if (DB_VERSION_MAJOR == 4) && (DB_VERSION_MINOR >= 3)
-+#if (DB_VERSION_MAJOR > 4) || ((DB_VERSION_MAJOR == 4) && (DB_VERSION_MINOR >= 3))
- static void db_err(const DB_ENV *dbenv __attribute__((unused)),
- const char *db_prfx, const char *buffer)
- #else
-@@ -163,7 +163,7 @@ static int init(const char *dbdir, int m
- #endif
- }
-
--#if (DB_VERSION_MAJOR == 4) && (DB_VERSION_MINOR >= 3)
-+#if (DB_VERSION_MAJOR > 4) || ((DB_VERSION_MAJOR == 4) && (DB_VERSION_MINOR >= 3))
- dbenv->set_msgcall(dbenv, db_msg);
- #endif
- dbenv->set_errcall(dbenv, db_err);
-@@ -281,7 +281,7 @@ static int mysync(void)
-
- assert(dbinit);
-
--#if !(DB_VERSION_MAJOR == 4 && DB_VERSION_MINOR >= 1)
-+#if !((DB_VERSION_MAJOR > 4) || ((DB_VERSION_MAJOR == 4) && (DB_VERSION_MINOR >= 1)))
- do {
- #endif
- #if (DB_VERSION_MAJOR > 3) || ((DB_VERSION_MAJOR == 3) && (DB_VERSION_MINOR > 0))
-@@ -289,7 +289,7 @@ static int mysync(void)
- #else
- r = txn_checkpoint(dbenv, 0, 0);
- #endif
--#if !(DB_VERSION_MAJOR == 4 && DB_VERSION_MINOR >= 1)
-+#if !((DB_VERSION_MAJOR > 4) || (DB_VERSION_MAJOR == 4 && DB_VERSION_MINOR >= 1))
- } while (r == DB_INCOMPLETE); /* Never returned by BDB 4.1 */
- #endif
- if (r) {
-@@ -412,7 +412,7 @@ static int myopen(const char *fname, DBT
- /* xxx set comparator! */
- if (flags & CYRUSDB_MBOXSORT) db->set_bt_compare(db, mbox_compar);
-
--#if DB_VERSION_MAJOR == 4 && DB_VERSION_MINOR >= 1
-+#if (DB_VERSION_MAJOR > 4) || (DB_VERSION_MAJOR == 4 && DB_VERSION_MINOR >= 1)
- r = (db->open)(db, NULL, fname, NULL, type, dbflags | DB_AUTO_COMMIT, 0664);
- #else
- r = (db->open)(db, fname, NULL, type, dbflags, 0664);