r1419 - in /unstable/evolution-rss/debian: changelog patches/03_recv_feeds.patch
joss at users.alioth.debian.org
joss at users.alioth.debian.org
Fri Nov 20 11:32:58 UTC 2009
Author: joss
Date: Fri Nov 20 11:32:57 2009
New Revision: 1419
URL: http://svn.debian.org/wsvn/pkg-evolution/?sc=1&rev=1419
Log:
03_recv_feeds.patch: new patch from upstream. Fixes a bug causing
the feeds not to be updated. Closes: #551972.
Added:
unstable/evolution-rss/debian/patches/03_recv_feeds.patch
Modified:
unstable/evolution-rss/debian/changelog
Modified: unstable/evolution-rss/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-evolution/unstable/evolution-rss/debian/changelog?rev=1419&op=diff
==============================================================================
--- unstable/evolution-rss/debian/changelog (original)
+++ unstable/evolution-rss/debian/changelog Fri Nov 20 11:32:57 2009
@@ -1,3 +1,10 @@
+evolution-rss (0.1.4-5) unstable; urgency=low
+
+ * 03_recv_feeds.patch: new patch from upstream. Fixes a bug causing
+ the feeds not to be updated. Closes: #551972.
+
+ -- Josselin Mouette <joss at debian.org> Fri, 20 Nov 2009 12:32:52 +0100
+
evolution-rss (0.1.4-4) unstable; urgency=low
* Build-depend on libebook1.2-dev. Thanks Lucian Langa.
Added: unstable/evolution-rss/debian/patches/03_recv_feeds.patch
URL: http://svn.debian.org/wsvn/pkg-evolution/unstable/evolution-rss/debian/patches/03_recv_feeds.patch?rev=1419&op=file
==============================================================================
--- unstable/evolution-rss/debian/patches/03_recv_feeds.patch (added)
+++ unstable/evolution-rss/debian/patches/03_recv_feeds.patch Fri Nov 20 11:32:57 2009
@@ -1,0 +1,27 @@
+Debian #551972
+
+diff -Naur evolution-rss-0.1.4/src/rss.c evolution-rss-0.1.4-mod/src/rss.c
+--- evolution-rss-0.1.4/src/rss.c 2009-08-26 12:00:09.000000000 +0300
++++ evolution-rss-0.1.4-mod/src/rss.c 2009-10-26 19:30:55.000000000 +0200
+@@ -2812,7 +2812,11 @@
+ GMutex *lock;
+
+ /* states/data used during shutdown */
+- enum { MC_QUIT_START, MC_QUIT_SYNC, MC_QUIT_THREADS } quit_state;
++#if EVOLUTION_VERSION >= 22800
++ enum { MC_QUIT_NOT_START, MC_QUIT_START, MC_QUIT_SYNC, MC_QUIT_THREADS } quit_state;
++#else
++ enum { MC_QUIT_START, MC_QUIT_SYNC, MC_QUIT_THREADS } quit_state;
++#endif
+ };
+
+ void
+@@ -2829,7 +2833,7 @@
+ deleted = 1;
+
+ MailComponent *mc = mail_component_peek ();
+- if (mc->priv->quit_state != -1)
++ if (mc->priv->quit_state != MC_QUIT_NOT_START)
+ rf->cancel_all=1;
+
+ d(g_print("taskbar_op_finish() queue:%d\n", rf->feed_queue));
More information about the pkg-evolution-commits
mailing list