diff -uNr nall-1.0.old/configure.ac nall-1.0/configure.ac --- nall-1.0.old/configure.ac 2010-04-06 22:58:01.000000000 +0200 +++ nall-1.0/configure.ac 2010-11-06 17:39:27.000000000 +0100 @@ -35,7 +35,7 @@ # Check for libnotify if test "x$enable_notifications" = "xyes"; then - PKG_CHECK_MODULES(LIBNOTIFY, libnotify >= 0.3.2, + PKG_CHECK_MODULES(LIBNOTIFY, libnotify >= 0.7.0, [ AC_DEFINE(HAVE_LIBNOTIFY, 1, [Define to 1 if libnotify has been found.]) ], [ AC_MSG_ERROR([libnotify headers not found. Use --disable-notifications to disable desktop notifications.]) ] diff -uNr nall-1.0.old/src/notify.c nall-1.0/src/notify.c --- nall-1.0.old/src/notify.c 2010-04-06 22:41:06.000000000 +0200 +++ nall-1.0/src/notify.c 2010-11-06 17:39:34.000000000 +0100 @@ -12,7 +12,7 @@ void nall_notify(run_data_t* s) { - NotifyNotification* notification = notify_notification_new(s->name, s->buf, NULL, NULL); + NotifyNotification* notification = notify_notification_new(s->name, s->buf, NULL); if (s->status == 0) notify_notification_set_urgency(notification, NOTIFY_URGENCY_NORMAL); else