summaryrefslogtreecommitdiff
path: root/extra/gnome-bluetooth/gnome-bluetooth-2.32.0-libnotify-0.7.patch
blob: 72a72652186eebd76b8cf7dabebe0b3f0b7c9316 (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
--- applet/notify.c
+++ applet/notify.c
@@ -31,6 +31,10 @@
 #include <libnotify/notify.h>
 #include "notify.h"
 
+#ifndef NOTIFY_CHECK_VERSION
+#define NOTIFY_CHECK_VERSION(x,y,z) 0
+#endif
+
 static GtkStatusIcon *statusicon = NULL;
 static char *icon_name = NULL;
 static char *tooltip = NULL;
@@ -71,7 +75,12 @@
 		notify_notification_close(notify, NULL);
 	}
 
-	notify = notify_notification_new(summary, message, icon_name, NULL);
+	notify = notify_notification_new(summary, message, icon_name
+#if NOTIFY_CHECK_VERSION (0, 7, 0)
+	);
+#else
+	, NULL);
+#endif
 
 	notify_notification_set_timeout(notify, timeout);