blob: 4d5bf7447b5864c1d24210f6f7ffb83325dc4c19 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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);
|