mirror of
https://gitlab.com/CinnamonSlackBuilds/csb.git
synced 2024-12-26 21:59:28 +01:00
cinnamon-settings-daemon: Upgraded to 2.4.3.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackware-id.org>
This commit is contained in:
parent
1899c078fa
commit
b0b7bfafa4
3 changed files with 4 additions and 35 deletions
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
# Slackware build script for cinnamon-settings-daemon
|
# Slackware build script for cinnamon-settings-daemon
|
||||||
|
|
||||||
# Copyright 2014 Willy Sudiarto Raharjo <willysr@slackware-id.org>
|
# Copyright 2014-2015 Willy Sudiarto Raharjo <willysr@slackware-id.org>
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
# Redistribution and use of this script, with or without modification, is
|
# Redistribution and use of this script, with or without modification, is
|
||||||
|
@ -23,7 +23,7 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=cinnamon-settings-daemon
|
PRGNAM=cinnamon-settings-daemon
|
||||||
VERSION=${VERSION:-2.0.10}
|
VERSION=${VERSION:-2.4.3}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_csb}
|
TAG=${TAG:-_csb}
|
||||||
|
|
||||||
|
@ -69,9 +69,7 @@ find -L . \
|
||||||
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
|
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
|
||||||
-o -perm 511 \) -exec chmod 755 {} \; -o \
|
-o -perm 511 \) -exec chmod 755 {} \; -o \
|
||||||
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
|
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
|
||||||
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
||||||
|
|
||||||
patch -p1 < $CWD/dpms.patch
|
|
||||||
|
|
||||||
CFLAGS="$SLKCFLAGS" \
|
CFLAGS="$SLKCFLAGS" \
|
||||||
CXXFLAGS="$SLKCFLAGS" \
|
CXXFLAGS="$SLKCFLAGS" \
|
||||||
|
|
|
@ -1,29 +0,0 @@
|
||||||
--- a/plugins/power/csd-power-manager.c
|
|
||||||
+++ b/plugins/power/csd-power-manager.c
|
|
||||||
@@ -33,6 +33,8 @@
|
|
||||||
#include <libnotify/notify.h>
|
|
||||||
#include <canberra-gtk.h>
|
|
||||||
|
|
||||||
+#include <X11/extensions/dpms.h>
|
|
||||||
+
|
|
||||||
#define GNOME_DESKTOP_USE_UNSTABLE_API
|
|
||||||
#include <libcinnamon-desktop/gnome-rr.h>
|
|
||||||
|
|
||||||
@@ -3967,6 +3790,17 @@ csd_power_manager_start (CsdPowerManager
|
|
||||||
/* set the initial dim time that can adapt for the user */
|
|
||||||
refresh_idle_dim_settings (manager);
|
|
||||||
|
|
||||||
+ /* Make sure that Xorg's DPMS extension never gets in our way. The defaults seem to have changed in Xorg 1.14
|
|
||||||
+ * being "0" by default to being "600" by default
|
|
||||||
+ * https://bugzilla.gnome.org/show_bug.cgi?id=709114
|
|
||||||
+ */
|
|
||||||
+ gdk_error_trap_push ();
|
|
||||||
+ int dummy;
|
|
||||||
+ if (DPMSQueryExtension(GDK_DISPLAY_XDISPLAY (gdk_display_get_default ()), &dummy, &dummy)) {
|
|
||||||
+ DPMSSetTimeouts (GDK_DISPLAY_XDISPLAY (gdk_display_get_default ()), 0, 0, 0);
|
|
||||||
+ }
|
|
||||||
+ gdk_error_trap_pop_ignored ();
|
|
||||||
+
|
|
||||||
manager->priv->xscreensaver_watchdog_timer_id = g_timeout_add_seconds (XSCREENSAVER_WATCHDOG_TIMEOUT,
|
|
||||||
disable_builtin_screensaver,
|
|
||||||
NULL);
|
|
|
@ -69,7 +69,7 @@ find -L . \
|
||||||
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
|
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
|
||||||
-o -perm 511 \) -exec chmod 755 {} \; -o \
|
-o -perm 511 \) -exec chmod 755 {} \; -o \
|
||||||
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
|
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
|
||||||
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
||||||
|
|
||||||
CFLAGS="$SLKCFLAGS" \
|
CFLAGS="$SLKCFLAGS" \
|
||||||
CXXFLAGS="$SLKCFLAGS" \
|
CXXFLAGS="$SLKCFLAGS" \
|
||||||
|
|
Loading…
Reference in a new issue