diff --git a/src/misc.cpp b/src/misc.cpp index faf847883..19b533cf0 100644 --- a/src/misc.cpp +++ b/src/misc.cpp @@ -70,10 +70,12 @@ const int UNLEN = 256; #include #endif +#ifndef DISABLE_GUI #ifdef Q_WS_X11 #include #include #endif +#endif // DISABLE_GUI using namespace libtorrent; @@ -208,6 +210,7 @@ void suspendComputer() { #endif } +#ifndef DISABLE_GUI void misc::shutdownComputer(bool sleep) { #ifdef Q_WS_X11 // Use dbus to power off the system @@ -325,6 +328,7 @@ QString misc::truncateRootFolder(boost::intrusive_ptr t) { } return root_folder; } +#endif // DISABLE_GUI QString misc::truncateRootFolder(libtorrent::torrent_handle h) { torrent_info t = h.get_torrent_info(); diff --git a/src/misc.h b/src/misc.h index 5d3072dd2..919431d5f 100644 --- a/src/misc.h +++ b/src/misc.h @@ -110,7 +110,9 @@ public: return extension; } +#ifndef DISABLE_GUI static void shutdownComputer(bool sleep=false); +#endif static bool safeRemove(QString file_path) { QFile MyFile(file_path);