From: Marcin Banasiak Date: Thu, 7 Apr 2011 12:57:21 +0000 (+0000) Subject: - fixes build with libnotify 0.7 X-Git-Tag: auto/th/liferea-1_6_5-3~2 X-Git-Url: http://git.pld-linux.org/?p=packages%2Fliferea.git;a=commitdiff_plain;h=3630a8bdbcb5c79d3090779aa10de67303acb77f - fixes build with libnotify 0.7 Changed files: liferea-libnotify-0.7.patch -> 1.1 --- diff --git a/liferea-libnotify-0.7.patch b/liferea-libnotify-0.7.patch new file mode 100644 index 0000000..31b3af1 --- /dev/null +++ b/liferea-libnotify-0.7.patch @@ -0,0 +1,21 @@ +diff -up liferea-1.6.5/src/notification/libnotify.c.bak liferea-1.6.5/src/notification/libnotify.c +--- liferea-1.6.5/src/notification/libnotify.c.bak 2009-06-20 20:33:19.000000000 +0200 ++++ liferea-1.6.5/src/notification/libnotify.c 2010-11-16 15:53:17.000000000 +0100 +@@ -150,7 +150,7 @@ static void notif_libnotify_callback_sho + // notify_notification_update ( n, node_get_title(node_p), labelText_now_p, NULL); + // notify_notification_clear_actions(n); + +- n = notify_notification_new (node_get_title(node_p), labelText_now_p, NULL, NULL); ++ n = notify_notification_new (node_get_title(node_p), labelText_now_p, NULL); + + notify_notification_set_icon_from_pixbuf (n,node_get_icon(node_p)); + +@@ -244,7 +244,7 @@ notif_libnotify_node_has_new_items (node + + labelSummary_p = g_strdup_printf (ngettext ("%s has %d new / updated headline\n", "%s has %d new / updated headlines\n", item_count), + node_get_title (node), item_count); +- n = notify_notification_new ( _("Feed Update"), labelSummary_p, NULL, NULL); ++ n = notify_notification_new ( _("Feed Update"), labelSummary_p, NULL); + g_free(labelSummary_p); + + notify_notification_set_icon_from_pixbuf (n, node_get_icon (node));