diff options
author | Don Seiler <rizzo@gentoo.org> | 2004-04-23 12:41:56 +0000 |
---|---|---|
committer | Don Seiler <rizzo@gentoo.org> | 2004-04-23 12:41:56 +0000 |
commit | 5f22992ece83e78c3a128f6e87ce04fb802020f1 (patch) | |
tree | ae3660be7466b77a8f31248955af251d51e7af51 /net-im/gaim | |
parent | stable on amd64 - security update (Manifest recommit) (diff) | |
download | gentoo-2-5f22992ece83e78c3a128f6e87ce04fb802020f1.tar.gz gentoo-2-5f22992ece83e78c3a128f6e87ce04fb802020f1.tar.bz2 gentoo-2-5f22992ece83e78c3a128f6e87ce04fb802020f1.zip |
Another patch to fix novell. I'll merge the two when I have time.
Diffstat (limited to 'net-im/gaim')
-rw-r--r-- | net-im/gaim/files/gaim-0.78cvs-novelltweaks5.patch | 22 | ||||
-rw-r--r-- | net-im/gaim/gaim-0.77.ebuild | 4 |
2 files changed, 25 insertions, 1 deletions
diff --git a/net-im/gaim/files/gaim-0.78cvs-novelltweaks5.patch b/net-im/gaim/files/gaim-0.78cvs-novelltweaks5.patch new file mode 100644 index 000000000000..2228efd649df --- /dev/null +++ b/net-im/gaim/files/gaim-0.78cvs-novelltweaks5.patch @@ -0,0 +1,22 @@ +Index: nmcontact.c +=================================================================== +RCS file: /cvsroot/gaim/gaim/src/protocols/novell/nmcontact.c,v +retrieving revision 1.3 +diff -u -p -u -r1.3 nmcontact.c +--- nmcontact.c 23 Apr 2004 06:14:15 -0000 1.3 ++++ nmcontact.c 23 Apr 2004 12:23:33 -0000 +@@ -701,11 +701,13 @@ nm_folder_add_folder_to_list(NMFolder * + void + nm_folder_remove_contact(NMFolder * folder, NMContact * contact) + { +- GSList *node = folder->contacts; ++ GSList *node; + + if (folder == NULL || contact == NULL) + return; + ++ node = folder->contacts; ++ + while (node) { + if (contact->id == ((NMContact *) (node->data))->id) { + folder->contacts = g_slist_remove(folder->contacts, node->data); diff --git a/net-im/gaim/gaim-0.77.ebuild b/net-im/gaim/gaim-0.77.ebuild index ee1a9a0d50e0..b5aa616ca51a 100644 --- a/net-im/gaim/gaim-0.77.ebuild +++ b/net-im/gaim/gaim-0.77.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/gaim/gaim-0.77.ebuild,v 1.1 2004/04/23 12:24:11 rizzo Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/gaim/gaim-0.77.ebuild,v 1.2 2004/04/23 12:41:56 rizzo Exp $ inherit flag-o-matic eutils gcc use debug && inherit debug @@ -55,6 +55,8 @@ src_unpack() { cd ${S} epatch ${FILESDIR}/gaim-0.77-c99.patch use cjk && epatch ${FILESDIR}/gaim-0.76-xinput.patch + cd src/protocols/novell + epatch ${FILESDIR}/gaim-0.78cvs-novelltweaks5.patch } src_compile() { |