diff options
author | jmmv <jmmv> | 2004-10-20 09:27:33 +0000 |
---|---|---|
committer | jmmv <jmmv> | 2004-10-20 09:27:33 +0000 |
commit | b35566150305089c3336bf587bc97734478e5c07 (patch) | |
tree | 345ecd20d7e90f0ffd1bb28a94f5f43863d15dd0 /mail | |
parent | 705650b3e528be5c32f59f02b37a1e8f3ac0cc21 (diff) | |
download | pkgsrc-b35566150305089c3336bf587bc97734478e5c07.tar.gz |
Fix crash while shutting down Evolution. Bump PKGREVISION to 2.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/evolution/Makefile | 4 | ||||
-rw-r--r-- | mail/evolution/distinfo | 3 | ||||
-rw-r--r-- | mail/evolution/patches/patch-aa | 13 |
3 files changed, 17 insertions, 3 deletions
diff --git a/mail/evolution/Makefile b/mail/evolution/Makefile index 0871a63969d..3edd822dd5e 100644 --- a/mail/evolution/Makefile +++ b/mail/evolution/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.67 2004/10/19 20:17:54 jmmv Exp $ +# $NetBSD: Makefile,v 1.68 2004/10/20 09:27:33 jmmv Exp $ DISTNAME= evolution-2.0.2 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= mail time gnome MASTER_SITES= ftp://ftp.ximian.com/pub/source/evolution/ \ ${MASTER_SITE_GNOME:=sources/evolution/2.0/} diff --git a/mail/evolution/distinfo b/mail/evolution/distinfo index e0f400456bd..c70f39c1e52 100644 --- a/mail/evolution/distinfo +++ b/mail/evolution/distinfo @@ -1,4 +1,5 @@ -$NetBSD: distinfo,v 1.26 2004/10/15 21:31:51 jmmv Exp $ +$NetBSD: distinfo,v 1.27 2004/10/20 09:27:33 jmmv Exp $ SHA1 (evolution-2.0.2.tar.bz2) = cc2c5d4f9547f5b442487605d9addb29baf52866 Size (evolution-2.0.2.tar.bz2) = 15400311 bytes +SHA1 (patch-aa) = 736bef73496b360a8b0ce1901c2969c6d5ae29e1 diff --git a/mail/evolution/patches/patch-aa b/mail/evolution/patches/patch-aa new file mode 100644 index 00000000000..318cdb8d269 --- /dev/null +++ b/mail/evolution/patches/patch-aa @@ -0,0 +1,13 @@ +$NetBSD: patch-aa,v 1.16 2004/10/20 09:27:33 jmmv Exp $ + +--- camel/camel-operation.c.orig 2004-10-20 11:19:04.000000000 +0200 ++++ camel/camel-operation.c +@@ -112,7 +112,7 @@ camel_operation_init(void) + void + camel_operation_shutdown (void) + { +- pthread_key_delete (&operation_key); ++ pthread_key_delete (operation_key); + } + + /** |