diff options
author | Pacho Ramos <pacho@gentoo.org> | 2012-12-24 21:06:46 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2012-12-24 21:06:46 +0000 |
commit | d9cac4436df09e0e1f49c866d9835acbc105cf1d (patch) | |
tree | 43979950542b28abf5fe5a5b1c924b81a10cdec5 /mail-client/balsa/files | |
parent | Version bump, drop old (diff) | |
download | gentoo-2-d9cac4436df09e0e1f49c866d9835acbc105cf1d.tar.gz gentoo-2-d9cac4436df09e0e1f49c866d9835acbc105cf1d.tar.bz2 gentoo-2-d9cac4436df09e0e1f49c866d9835acbc105cf1d.zip |
Version bump, drop old
(Portage version: 2.1.11.37/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'mail-client/balsa/files')
-rw-r--r-- | mail-client/balsa/files/balsa-2.4.8-libnotify-0.7.patch | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/mail-client/balsa/files/balsa-2.4.8-libnotify-0.7.patch b/mail-client/balsa/files/balsa-2.4.8-libnotify-0.7.patch deleted file mode 100644 index 0cef7f54ac8f..000000000000 --- a/mail-client/balsa/files/balsa-2.4.8-libnotify-0.7.patch +++ /dev/null @@ -1,51 +0,0 @@ ---- libbalsa/information.c -+++ libbalsa/information.c -@@ -27,6 +27,9 @@ - - #ifdef HAVE_NOTIFY - #include <libnotify/notify.h> -+#ifndef NOTIFY_CHECK_VERSION -+#define NOTIFY_CHECK_VERSION(x,y,z) 0 -+#endif - #include <gtk/gtk.h> - #endif - #include <string.h> -@@ -122,7 +125,11 @@ - g_free(msg); - - note = -+#if NOTIFY_CHECK_VERSION (0, 7, 0) -+ notify_notification_new("Balsa", escaped->str, icon_str); -+#else - notify_notification_new("Balsa", escaped->str, icon_str, NULL); -+#endif - g_string_free(escaped, TRUE); - - notify_notification_set_timeout(note, 7000); /* 7 seconds */ ---- src/main-window.c -+++ src/main-window.c -@@ -85,6 +85,12 @@ - - #define MAILBOX_DATA "mailbox_data" - -+#ifdef HAVE_NOTIFY -+#ifndef NOTIFY_CHECK_VERSION -+#define NOTIFY_CHECK_VERSION(x,y,z) 0 -+#endif -+#endif -+ - enum { - OPEN_MAILBOX_NODE, - CLOSE_MAILBOX_NODE, -@@ -3406,7 +3412,11 @@ - } else { - num_total = num_new; - balsa_app.main_window->new_mail_note = -+#if NOTIFY_CHECK_VERSION (0, 7, 0) -+ notify_notification_new("Balsa", NULL, NULL); -+#else - notify_notification_new("Balsa", NULL, NULL, NULL); -+#endif - g_object_add_weak_pointer(G_OBJECT(balsa_app.main_window-> - new_mail_note), - (gpointer) & balsa_app.main_window-> |