X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Fnotify_desktop.c;h=3f3c6dfc9bf62c3ac0dc356295f0e68faf5879a8;hb=e6bfb0e87a4751459ff1920bb57acfcfd5661454;hp=839bc61027180599d67f6d70600f42fb2465e7c6;hpb=7297b3b6ea2149ec4a384b90d14166f228db4de3;p=collectd.git diff --git a/src/notify_desktop.c b/src/notify_desktop.c index 839bc610..3f3c6dfc 100644 --- a/src/notify_desktop.c +++ b/src/notify_desktop.c @@ -31,6 +31,10 @@ #include #include +#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 @@ static int c_notify (const notification_t *n, : (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;