]> git.pld-linux.org Git - packages/icedove.git/blob - icedove-libnotify.patch
- fix build with libnotify 0.7
[packages/icedove.git] / icedove-libnotify.patch
1 --- mozilla/mozilla/toolkit/system/gnome/nsAlertsIconListener.cpp~      2011-03-03 12:42:51.000000000 +0100
2 +++ mozilla/mozilla/toolkit/system/gnome/nsAlertsIconListener.cpp       2011-04-06 18:10:55.850586553 +0200
3 @@ -204,7 +204,11 @@
4  {
5    NotifyNotification* notify = notify_notification_new(mAlertTitle.get(),
6                                                         mAlertText.get(),
7 -                                                       NULL, NULL);
8 +                                                       NULL
9 +#if !defined(NOTIFY_VERSION_MINOR) || (NOTIFY_VERSION_MAJOR == 0 && NOTIFY_VERSION_MINOR < 7)
10 +                                                      , NULL
11 +#endif
12 +                                                      );
13    if (!notify)
14      return NS_ERROR_OUT_OF_MEMORY;
15  
This page took 0.031717 seconds and 4 git commands to generate.