summaryrefslogtreecommitdiffstats
path: root/x11/gnome-screensaver/files
diff options
context:
space:
mode:
authormarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2009-03-19 04:43:55 +0800
committermarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2009-03-19 04:43:55 +0800
commitf5727cdd1693bb0f2c872a8fb00cec7cf6866bc6 (patch)
tree283d14b4c71da1acd300936d6e28c3176a416acc /x11/gnome-screensaver/files
parentea4c5488c1fc3b063d584a67a3004ab51fe69f2d (diff)
downloadmarcuscom-ports-f5727cdd1693bb0f2c872a8fb00cec7cf6866bc6.tar
marcuscom-ports-f5727cdd1693bb0f2c872a8fb00cec7cf6866bc6.tar.gz
marcuscom-ports-f5727cdd1693bb0f2c872a8fb00cec7cf6866bc6.tar.bz2
marcuscom-ports-f5727cdd1693bb0f2c872a8fb00cec7cf6866bc6.tar.lz
marcuscom-ports-f5727cdd1693bb0f2c872a8fb00cec7cf6866bc6.tar.xz
marcuscom-ports-f5727cdd1693bb0f2c872a8fb00cec7cf6866bc6.tar.zst
marcuscom-ports-f5727cdd1693bb0f2c872a8fb00cec7cf6866bc6.zip
Update to 2.26.0.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@12165 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'x11/gnome-screensaver/files')
-rw-r--r--x11/gnome-screensaver/files/patch-src_gs-idle-monitor.c33
1 files changed, 0 insertions, 33 deletions
diff --git a/x11/gnome-screensaver/files/patch-src_gs-idle-monitor.c b/x11/gnome-screensaver/files/patch-src_gs-idle-monitor.c
deleted file mode 100644
index 678fa7a70..000000000
--- a/x11/gnome-screensaver/files/patch-src_gs-idle-monitor.c
+++ /dev/null
@@ -1,33 +0,0 @@
---- src/gs-idle-monitor.c.orig 2009-03-07 21:35:19.000000000 -0500
-+++ src/gs-idle-monitor.c 2009-03-07 21:36:00.000000000 -0500
-@@ -271,13 +271,6 @@ init_xsync (GSIdleMonitor *monitor)
- return FALSE;
- }
-
-- /* select for sync events */
-- gdk_error_trap_push ();
-- XSelectInput (GDK_DISPLAY (), GDK_ROOT_WINDOW (), XSyncAlarmNotifyMask);
-- if (gdk_error_trap_pop ()) {
-- g_warning ("XSelectInput failed");
-- }
--
- gdk_window_add_filter (NULL, (GdkFilterFunc)xevent_filter, monitor);
-
- return TRUE;
-@@ -438,13 +431,15 @@ _xsync_alarm_set (GSIdleMonitor *mo
- | XSyncCAValueType
- | XSyncCATestType
- | XSyncCAValue
-- | XSyncCADelta;
-+ | XSyncCADelta
-+ | XSyncCAEvents;
-
- XSyncIntToValue (&delta, 0);
- attr.trigger.counter = monitor->priv->counter;
- attr.trigger.value_type = XSyncAbsolute;
- attr.trigger.wait_value = watch->interval;
- attr.delta = delta;
-+ attr.events = True;
-
- attr.trigger.test_type = XSyncPositiveTransition;
- if (watch->xalarm_positive != None) {