summaryrefslogtreecommitdiff
path: root/community/handbrake/libnotify-0.7.patch
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2012-01-09 13:47:51 +0000
committerParabola <dev@list.parabolagnulinux.org>2012-01-09 13:47:51 +0000
commit7a3611f5caa5e34c1f2b582640f97b733110ae63 (patch)
tree5b0baf1ad1b36444ffbf73707a377b15fc67692f /community/handbrake/libnotify-0.7.patch
parent46783b68621b6ad45cdd9ed64cfa8cdcfbc6f318 (diff)
Mon Jan 9 13:47:49 UTC 2012
Diffstat (limited to 'community/handbrake/libnotify-0.7.patch')
-rw-r--r--community/handbrake/libnotify-0.7.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/community/handbrake/libnotify-0.7.patch b/community/handbrake/libnotify-0.7.patch
deleted file mode 100644
index 0def15254..000000000
--- a/community/handbrake/libnotify-0.7.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-diff -Nur HandBrake-0.9.5.orig/gtk/src/callbacks.c HandBrake-0.9.5/gtk/src/callbacks.c
---- HandBrake-0.9.5.orig/gtk/src/callbacks.c 2011-03-07 13:06:20.333338164 -0800
-+++ HandBrake-0.9.5/gtk/src/callbacks.c 2011-03-07 13:21:32.973338933 -0800
-@@ -39,6 +39,10 @@
- #endif
-
- #include <libnotify/notify.h>
-+#ifndef NOTIFY_CHECK_VERSION
-+#define NOTIFY_CHECK_VERSION(x,y,z) 0
-+#endif
-+
- #include <gdk/gdkx.h>
- #else
- #define WINVER 0x0500
-@@ -4889,9 +4893,13 @@
- notification = notify_notification_new(
- "Encode Complete",
- "Put down that cocktail, Your HandBrake queue is done!",
-- "hb-icon",
-- NULL);
-+ "hb-icon"
-+#if NOTIFY_CHECK_VERSION (0, 7, 0)
-+ );
-+#else
-+ ,NULL);
- notify_notification_attach_to_status_icon(notification, si);
-+#endif
- g_signal_connect(notification, "closed", (GCallback)notify_closed_cb, ud);
- notify_notification_show(notification, NULL);
- #endif