* [gentoo-commits] gentoo-x86 commit in app-admin/collectd/files: collectd-4.10.2-libnotify-0.7.patch
@ 2011-02-06 12:25 Samuli Suominen (ssuominen)
0 siblings, 0 replies; only message in thread
From: Samuli Suominen (ssuominen) @ 2011-02-06 12:25 UTC (permalink / raw
To: gentoo-commits
ssuominen 11/02/06 12:25:42
Added: collectd-4.10.2-libnotify-0.7.patch
Log:
Fix building with x11-libs/libnotify >= 0.7.
(Portage version: 2.2.0_alpha20/cvs/Linux x86_64)
Revision Changes Path
1.1 app-admin/collectd/files/collectd-4.10.2-libnotify-0.7.patch
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/collectd/files/collectd-4.10.2-libnotify-0.7.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/collectd/files/collectd-4.10.2-libnotify-0.7.patch?rev=1.1&content-type=text/plain
Index: collectd-4.10.2-libnotify-0.7.patch
===================================================================
--- src/notify_desktop.c
+++ src/notify_desktop.c
@@ -31,6 +31,10 @@
#include <glib.h>
#include <libnotify/notify.h>
+#ifndef NOTIFY_CHECK_VERSION
+#define NOTIFY_CHECK_VERSION(x,y,z) 0
+#endif
+
#define log_info(...) INFO ("notify_desktop: " __VA_ARGS__)
#define log_warn(...) WARNING ("notify_desktop: " __VA_ARGS__)
#define log_err(...) ERROR ("notify_desktop: " __VA_ARGS__)
@@ -95,7 +99,12 @@
: (NOTIF_WARNING == n->severity) ? "WARNING"
: (NOTIF_OKAY == n->severity) ? "OKAY" : "UNKNOWN");
- notification = notify_notification_new (summary, n->message, NULL, NULL);
+ notification = notify_notification_new (summary, n->message, NULL
+#if NOTIFY_CHECK_VERSION (0, 7, 0)
+ );
+#else
+ , NULL);
+#endif
if (NULL == notification) {
log_err ("Failed to create a new notification.");
return -1;
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2011-02-06 12:25 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-02-06 12:25 [gentoo-commits] gentoo-x86 commit in app-admin/collectd/files: collectd-4.10.2-libnotify-0.7.patch Samuli Suominen (ssuominen)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox