pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/x11/xfce4-session xfce4-session: fix compilation on !L...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/de2407af7bf2
branches:  trunk
changeset: 412233:de2407af7bf2
user:      gutteridge <gutteridge%pkgsrc.org@localhost>
date:      Sun Mar 01 19:47:22 2020 +0000

description:
xfce4-session: fix compilation on !Linux !*BSD

More work would be required should someone want suspension or
hibernation to function in this case, this is simply a build fix.

diffstat:

 x11/xfce4-session/Makefile                                             |   3 +-
 x11/xfce4-session/distinfo                                             |   3 +-
 x11/xfce4-session/patches/patch-xfce4-session_xfsm-shutdown-fallback.c |  44 ++++++++++
 3 files changed, 48 insertions(+), 2 deletions(-)

diffs (77 lines):

diff -r 763ce1253a58 -r de2407af7bf2 x11/xfce4-session/Makefile
--- a/x11/xfce4-session/Makefile        Sun Mar 01 18:20:33 2020 +0000
+++ b/x11/xfce4-session/Makefile        Sun Mar 01 19:47:22 2020 +0000
@@ -1,8 +1,9 @@
-# $NetBSD: Makefile,v 1.80 2020/01/29 04:56:19 gutteridge Exp $
+# $NetBSD: Makefile,v 1.81 2020/03/01 19:47:22 gutteridge Exp $
 
 .include "../../meta-pkgs/xfce4/Makefile.common"
 
 DISTNAME=              xfce4-session-4.14.1
+PKGREVISION=           1
 CATEGORIES=            x11
 MASTER_SITES+=         https://archive.xfce.org/src/xfce/xfce4-session/4.14/
 
diff -r 763ce1253a58 -r de2407af7bf2 x11/xfce4-session/distinfo
--- a/x11/xfce4-session/distinfo        Sun Mar 01 18:20:33 2020 +0000
+++ b/x11/xfce4-session/distinfo        Sun Mar 01 19:47:22 2020 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.27 2020/01/29 04:45:19 gutteridge Exp $
+$NetBSD: distinfo,v 1.28 2020/03/01 19:47:22 gutteridge Exp $
 
 SHA1 (xfce4-session-4.14.1.tar.bz2) = 1e44eb63a87fa797dbd80fc0a956ebc7a585c3cc
 RMD160 (xfce4-session-4.14.1.tar.bz2) = 896b9cc17947a1fa21b05c85c710266dc4e722fe
@@ -10,4 +10,5 @@
 SHA1 (patch-libxfsm_xfsm-shutdown-common.h) = da51714e0924a0ab28f7da1b161659763dff81d2
 SHA1 (patch-scripts_Makefile.in) = 042c3d9c632a57f9acfc8dab43aa6bca8ec69097
 SHA1 (patch-settings_xfce4-session.xml) = 7e990e73d8dab022f3ebd2d4daa24ebc8dcf95a1
+SHA1 (patch-xfce4-session_xfsm-shutdown-fallback.c) = b57375c63b282624b9196b18ea59d98c63fdc326
 SHA1 (patch-xfsm-shutdown-helper_main.c) = db2dc4a7ce729b72092fa2777fd178cb3b7be258
diff -r 763ce1253a58 -r de2407af7bf2 x11/xfce4-session/patches/patch-xfce4-session_xfsm-shutdown-fallback.c
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/x11/xfce4-session/patches/patch-xfce4-session_xfsm-shutdown-fallback.c    Sun Mar 01 19:47:22 2020 +0000
@@ -0,0 +1,44 @@
+$NetBSD: patch-xfce4-session_xfsm-shutdown-fallback.c,v 1.1 2020/03/01 19:47:23 gutteridge Exp $
+
+Fix compilation on OSes other than Linux and the *BSDs.
+
+--- xfce4-session/xfsm-shutdown-fallback.c.orig        2019-05-17 12:46:28.000000000 +0000
++++ xfce4-session/xfsm-shutdown-fallback.c
+@@ -371,7 +371,9 @@ xfsm_shutdown_fallback_try_action (XfsmS
+                                    GError           **error)
+ {
+   const gchar *xfsm_helper_action;
++#ifdef __BACKEND_TYPE_BSD__
+   const gchar *cmd __attribute__((unused));
++#endif
+   gboolean ret = FALSE;
+   gint exit_status = 0;
+ #ifdef HAVE_POLKIT
+@@ -390,21 +392,27 @@ xfsm_shutdown_fallback_try_action (XfsmS
+       break;
+     case XFSM_SHUTDOWN_SUSPEND:
+       xfsm_helper_action = "suspend";
++#ifdef __BACKEND_TYPE_BSD__
+       cmd = UP_BACKEND_SUSPEND_COMMAND;
++#endif
+       /* On suspend we try to lock the screen */
+       if (!lock_screen (error))
+         return FALSE;
+       break;
+     case XFSM_SHUTDOWN_HIBERNATE:
+       xfsm_helper_action = "hibernate";
++#ifdef __BACKEND_TYPE_BSD__
+       cmd = UP_BACKEND_HIBERNATE_COMMAND;
++#endif
+       /* On hibernate we try to lock the screen */
+       if (!lock_screen (error))
+         return FALSE;
+       break;
+     case XFSM_SHUTDOWN_HYBRID_SLEEP:
+       xfsm_helper_action = "hybrid-sleep";
++#ifdef __BACKEND_TYPE_BSD__
+       cmd = UP_BACKEND_HIBERNATE_COMMAND;
++#endif
+       /* On hybrid sleep we try to lock the screen */
+       if (!lock_screen (error))
+         return FALSE;



Home | Main Index | Thread Index | Old Index