diff options
author | 2016-10-02 14:28:28 +0200 | |
---|---|---|
committer | 2016-10-02 14:37:31 +0200 | |
commit | 53cd16d3743ac66027df3db6d1a3f131e38f5e0f (patch) | |
tree | 928cdb83f5ec947652696ca410c0b665fe7d2f7d /net-voip/ekiga/files | |
parent | x11-misc/x11vnc: Use zeroconf instead of avahi USE flag (#477620) (diff) | |
download | gentoo-53cd16d3743ac66027df3db6d1a3f131e38f5e0f.tar.gz gentoo-53cd16d3743ac66027df3db6d1a3f131e38f5e0f.tar.bz2 gentoo-53cd16d3743ac66027df3db6d1a3f131e38f5e0f.zip |
net-voip/ekiga: Disable all experimental stuff as upstream doesn't take care of it at all and is too buggy (and also obsolete, https://bugzilla.gnome.org/show_bug.cgi?id=689301), gconf support is needed always until next major version bump (#448698), this will need to be rebuilt with opal/plib major bumps (#464864), fix crashes on clear call history (#499208 by Philipp Leonhardt).
Package-Manager: portage-2.3.1
Diffstat (limited to 'net-voip/ekiga/files')
-rw-r--r-- | net-voip/ekiga/files/ekiga-4.0.1-crash-clear.patch | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/net-voip/ekiga/files/ekiga-4.0.1-crash-clear.patch b/net-voip/ekiga/files/ekiga-4.0.1-crash-clear.patch new file mode 100644 index 000000000000..9b9ca657895d --- /dev/null +++ b/net-voip/ekiga/files/ekiga-4.0.1-crash-clear.patch @@ -0,0 +1,36 @@ +From ebfdaa0690c2f65dfe90714b02ff4f9bc9a3fa6d Mon Sep 17 00:00:00 2001 +From: Julien Puydt <jpuydt@free.fr> +Date: Mon, 21 Jan 2013 15:54:38 +0100 +Subject: Made the call-history signal the changes first, then do some cleaning + later -- fixes a crash on clear + +--- + lib/engine/components/call-history/history-book.cpp | 5 ++++- + 1 file changed, 4 insertions(+), 1 deletion(-) + +diff --git a/lib/engine/components/call-history/history-book.cpp b/lib/engine/components/call-history/history-book.cpp +index b110d4d..4db92fa 100644 +--- a/lib/engine/components/call-history/history-book.cpp ++++ b/lib/engine/components/call-history/history-book.cpp +@@ -177,6 +177,10 @@ History::Book::clear () + + std::list<ContactPtr> old_contacts = ordered_contacts; + ordered_contacts.clear (); ++ ++ cleared (); ++ updated (); ++ + for (std::list<ContactPtr>::iterator iter = old_contacts.begin (); + iter != old_contacts.end(); + ++iter) +@@ -187,7 +191,6 @@ History::Book::clear () + xmlDocSetRootElement (doc.get (), root); + + save (); +- cleared (); + } + + void +-- +cgit v0.12 + |