summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Schlemmer <azarah@gentoo.org>2002-12-09 20:11:25 +0000
committerMartin Schlemmer <azarah@gentoo.org>2002-12-09 20:11:25 +0000
commit9cc966e55c9e2632225dc9a5ce7034e5f23c32fd (patch)
treedcdfdf899d5cfce84e203d5c903e72cc5823e9f9 /net-mail/evolution/files
parentfix in progress (diff)
downloadhistorical-9cc966e55c9e2632225dc9a5ce7034e5f23c32fd.tar.gz
historical-9cc966e55c9e2632225dc9a5ce7034e5f23c32fd.tar.bz2
historical-9cc966e55c9e2632225dc9a5ce7034e5f23c32fd.zip
add some patches
Diffstat (limited to 'net-mail/evolution/files')
-rw-r--r--net-mail/evolution/files/digest-evolution-1.2.0-r12
-rw-r--r--net-mail/evolution/files/evolution-1.1.90-sharedldap.patch11
-rw-r--r--net-mail/evolution/files/evolution-1.2.0-settingscrash.patch18
3 files changed, 31 insertions, 0 deletions
diff --git a/net-mail/evolution/files/digest-evolution-1.2.0-r1 b/net-mail/evolution/files/digest-evolution-1.2.0-r1
new file mode 100644
index 000000000000..ae6db4b9e9b4
--- /dev/null
+++ b/net-mail/evolution/files/digest-evolution-1.2.0-r1
@@ -0,0 +1,2 @@
+MD5 949c31941e869606ab808ce42f3a8e98 evolution-1.2.0.tar.bz2 12129466
+MD5 5baeb94fb934d0bf783ea42117c400be db-3.1.17.tar.gz 1954117
diff --git a/net-mail/evolution/files/evolution-1.1.90-sharedldap.patch b/net-mail/evolution/files/evolution-1.1.90-sharedldap.patch
new file mode 100644
index 000000000000..6784aa343848
--- /dev/null
+++ b/net-mail/evolution/files/evolution-1.1.90-sharedldap.patch
@@ -0,0 +1,11 @@
+--- evolution-1.1.90/acinclude.m4.orig 2002-09-04 22:28:05.000000000 +0200
++++ evolution-1.1.90/acinclude.m4 2002-11-07 14:03:12.000000000 +0100
+@@ -107,7 +107,7 @@
+
+ case $with_static_ldap in
+ no|"")
+- if test -f $with_openldap/lib/libldap.la; then
++ if test ! -f $with_openldap/lib/libldap.la; then
+ with_static_ldap=yes
+ else
+ with_static_ldap=no
diff --git a/net-mail/evolution/files/evolution-1.2.0-settingscrash.patch b/net-mail/evolution/files/evolution-1.2.0-settingscrash.patch
new file mode 100644
index 000000000000..7420a5c336fa
--- /dev/null
+++ b/net-mail/evolution/files/evolution-1.2.0-settingscrash.patch
@@ -0,0 +1,18 @@
+RCS file: /cvs/gnome/evolution/mail/mail-composer-prefs.c,v
+diff -u -r1.38 -r1.39
+--- evolution/mail/mail-composer-prefs.c 2002/11/15 17:31:52 1.38
++++ evolution/mail/mail-composer-prefs.c 2002/11/18 17:05:59 1.39
+@@ -746,8 +746,13 @@
+
+ CORBA_exception_init (&ev);
+ prefs->language_seq = GNOME_Spell_Dictionary_getLanguages (dict, &ev);
++ if (ev._major != CORBA_NO_EXCEPTION)
++ prefs->language_seq = NULL;
+ CORBA_exception_free (&ev);
+
++ if (prefs->language_seq == NULL)
++ return FALSE;
++
+ gconf_client_add_dir (prefs->gconf, GNOME_SPELL_GCONF_DIR, GCONF_CLIENT_PRELOAD_NONE, NULL);
+
+ spell_setup (prefs);