diff options
Diffstat (limited to 'redhat/tdebase/kdebase-3.5.13.2-add_ck_shutdown.patch')
-rw-r--r-- | redhat/tdebase/kdebase-3.5.13.2-add_ck_shutdown.patch | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/redhat/tdebase/kdebase-3.5.13.2-add_ck_shutdown.patch b/redhat/tdebase/kdebase-3.5.13.2-add_ck_shutdown.patch new file mode 100644 index 000000000..b862f00ca --- /dev/null +++ b/redhat/tdebase/kdebase-3.5.13.2-add_ck_shutdown.patch @@ -0,0 +1,15 @@ +--- trinity-tdebase-3.5.13.2/kdmlib/dmctl.cpp.ORI 2013-02-15 22:22:05.217381830 +0100 ++++ trinity-tdebase-3.5.13.2/kdmlib/dmctl.cpp 2013-02-15 22:52:06.635823349 +0100 +@@ -180,7 +180,12 @@ + if (DMType == GDM) + return exec( "QUERY_LOGOUT_ACTION\n", re ) && re.find("HALT") >= 0; + ++#ifdef WITH_CONSOLE_KIT ++ // Use consolekit to check if we can shutdown the computer ++ return exec( "dbus-send --system --print-reply --dest=org.freedesktop.ConsoleKit /org/freedesktop/ConsoleKit/Manager org.freedesktop.ConsoleKit.Manager.CanStop\n", re ) && re.find("boolean true") >= 0; ++#else + return exec( "caps\n", re ) && re.find( "\tshutdown" ) >= 0; ++#endif + } + + void |