aboutsummaryrefslogtreecommitdiffstats
path: root/community/zenity/zenity-2.32.1-libnotify-0.7.patch
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2015-11-16 14:04:05 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2015-11-16 14:04:05 +0000
commit6d609cbf93eb119011771914f80d435a39d524ad (patch)
treee7282c09a48c42ef3519bb74abf5fd80305ada76 /community/zenity/zenity-2.32.1-libnotify-0.7.patch
parent78f76330d65c03e779ac1f139780b90bdb58534c (diff)
downloadaports-6d609cbf93eb119011771914f80d435a39d524ad.tar.bz2
aports-6d609cbf93eb119011771914f80d435a39d524ad.tar.xz
community/zenity: move from main
Diffstat (limited to 'community/zenity/zenity-2.32.1-libnotify-0.7.patch')
-rw-r--r--community/zenity/zenity-2.32.1-libnotify-0.7.patch27
1 files changed, 27 insertions, 0 deletions
diff --git a/community/zenity/zenity-2.32.1-libnotify-0.7.patch b/community/zenity/zenity-2.32.1-libnotify-0.7.patch
new file mode 100644
index 0000000000..8b7fee738e
--- /dev/null
+++ b/community/zenity/zenity-2.32.1-libnotify-0.7.patch
@@ -0,0 +1,27 @@
+--- ./src/notification.c
++++ ./src/notification.c
+@@ -30,6 +30,9 @@
+
+ #ifdef HAVE_LIBNOTIFY
+ #include <libnotify/notify.h>
++#ifndef NOTIFY_CHECK_VERSION
++#define NOTIFY_CHECK_VERSION(x,y,z) 0
++#endif
+ #endif
+
+ #include "zenity.h"
+@@ -184,10 +187,14 @@
+ icon = freeme = g_filename_to_uri (icon_file, NULL, NULL);
+ }
+
++#if NOTIFY_CHECK_VERSION (0, 7, 0)
++ /* notify_notification_new_with_status_icon was removed */
++#else
+ notif = notify_notification_new_with_status_icon (
+ message[0] /* title */,
+ message[1] /* summary */,
+ icon, status_icon);
++#endif
+
+ g_strfreev (message);
+ g_free (freeme);