Respect build option WITH_TDEHWLIB, otherwise it can lead to FTBFS in special cases.

Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
pull/209/head
Slávek Banko 3 years ago
parent 1389e29696
commit e031e12d06
No known key found for this signature in database
GPG Key ID: 608F5293A04BE668

@ -36,7 +36,7 @@
#include <tdemessagebox.h> #include <tdemessagebox.h>
#include <tdelocale.h> #include <tdelocale.h>
#include <tdetempfile.h> #include <tdetempfile.h>
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
#include <tdehardwaredevices.h> #include <tdehardwaredevices.h>
#endif #endif
@ -358,7 +358,7 @@ void BackTrace::processBacktrace()
} }
#endif // HAVE_ELFICON #endif // HAVE_ELFICON
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
// Append potentially important hardware information // Append potentially important hardware information
m_strBt.append("\n==== (tdehwlib) hardware information ====\n"); m_strBt.append("\n==== (tdehwlib) hardware information ====\n");
TDEHardwareDevices *hwdevices = TDEGlobal::hardwareDevices(); TDEHardwareDevices *hwdevices = TDEGlobal::hardwareDevices();

@ -18,6 +18,10 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/ */
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <tqcheckbox.h> #include <tqcheckbox.h>
#include <tqlabel.h> #include <tqlabel.h>
#include <tqlayout.h> #include <tqlayout.h>
@ -744,7 +748,7 @@ void KDisplayConfig::setRealResolutionSliderValue(int index) {
KDisplayConfig::KDisplayConfig(TQWidget *parent, const char *name, const TQStringList &) KDisplayConfig::KDisplayConfig(TQWidget *parent, const char *name, const TQStringList &)
: TDECModule(KDisplayCFactory::instance(), parent, name), iccTab(0), numberOfProfiles(0), numberOfScreens(0), m_randrsimple(0), activeProfileName(""), m_gammaApplyTimer(0) : TDECModule(KDisplayCFactory::instance(), parent, name), iccTab(0), numberOfProfiles(0), numberOfScreens(0), m_randrsimple(0), activeProfileName(""), m_gammaApplyTimer(0)
{ {
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
TDEHardwareDevices *hwdevices = TDEGlobal::hardwareDevices(); TDEHardwareDevices *hwdevices = TDEGlobal::hardwareDevices();
connect(hwdevices, TQT_SIGNAL(hardwareUpdated(TDEGenericDevice*)), this, TQT_SLOT(deviceChanged(TDEGenericDevice*))); connect(hwdevices, TQT_SIGNAL(hardwareUpdated(TDEGenericDevice*)), this, TQT_SLOT(deviceChanged(TDEGenericDevice*)));
#endif #endif
@ -863,7 +867,7 @@ KDisplayConfig::~KDisplayConfig()
} }
void KDisplayConfig::deviceChanged (TDEGenericDevice* device) { void KDisplayConfig::deviceChanged (TDEGenericDevice* device) {
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
if (device->type() == TDEGenericDeviceType::Monitor) { if (device->type() == TDEGenericDeviceType::Monitor) {
if (base->rescanHardware->isEnabled()) { if (base->rescanHardware->isEnabled()) {
base->rescanHardware->setEnabled(false); base->rescanHardware->setEnabled(false);

@ -21,10 +21,6 @@
#ifndef _KCM_DisplayCONFIG_H #ifndef _KCM_DisplayCONFIG_H
#define _KCM_DisplayCONFIG_H #define _KCM_DisplayCONFIG_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <tqptrlist.h> #include <tqptrlist.h>
#include <tqslider.h> #include <tqslider.h>
#include <tqworkspace.h> #include <tqworkspace.h>
@ -34,7 +30,7 @@
#include <dcopobject.h> #include <dcopobject.h>
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
#include <tdehardwaredevices.h> #include <tdehardwaredevices.h>
#else #else
#define TDEGenericDevice void #define TDEGenericDevice void

@ -17,6 +17,10 @@
* License along with cryptocardwatcher. If not, see http://www.gnu.org/licenses/. * License along with cryptocardwatcher. If not, see http://www.gnu.org/licenses/.
*/ */
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <tqtimer.h> #include <tqtimer.h>
#include <tqimage.h> #include <tqimage.h>
#include <tqtooltip.h> #include <tqtooltip.h>
@ -84,7 +88,7 @@ HwDeviceSystemTray::HwDeviceSystemTray(TQWidget* parent, const char *name)
new TDEActionMenu(i18n("Eject"), SmallIcon("player_eject", TQIconSet::Automatic), actionCollection(), "eject_menu"); new TDEActionMenu(i18n("Eject"), SmallIcon("player_eject", TQIconSet::Automatic), actionCollection(), "eject_menu");
new TDEActionMenu(i18n("Properties"), SmallIcon("edit", TQIconSet::Automatic), actionCollection(), "properties_menu"); new TDEActionMenu(i18n("Properties"), SmallIcon("edit", TQIconSet::Automatic), actionCollection(), "properties_menu");
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
TDEHardwareDevices *hwdevices = TDEGlobal::hardwareDevices(); TDEHardwareDevices *hwdevices = TDEGlobal::hardwareDevices();
connect(hwdevices, TQT_SIGNAL(hardwareAdded(TDEGenericDevice*)), this, TQT_SLOT(deviceAdded(TDEGenericDevice*))); connect(hwdevices, TQT_SIGNAL(hardwareAdded(TDEGenericDevice*)), this, TQT_SLOT(deviceAdded(TDEGenericDevice*)));
connect(hwdevices, TQT_SIGNAL(hardwareRemoved(TDEGenericDevice*)), this, TQT_SLOT(deviceRemoved(TDEGenericDevice*))); connect(hwdevices, TQT_SIGNAL(hardwareRemoved(TDEGenericDevice*)), this, TQT_SLOT(deviceRemoved(TDEGenericDevice*)));
@ -636,7 +640,7 @@ void HwDeviceSystemTray::slotEditShortcutKeys() {
} }
void HwDeviceSystemTray::deviceAdded(TDEGenericDevice* device) { void HwDeviceSystemTray::deviceAdded(TDEGenericDevice* device) {
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
TDEConfig config("mediamanagerrc"); TDEConfig config("mediamanagerrc");
config.setGroup("Global"); config.setGroup("Global");
if (config.readBoolEntry("DeviceMonitorPopupsEnabled", true)) if (config.readBoolEntry("DeviceMonitorPopupsEnabled", true))
@ -662,7 +666,7 @@ void HwDeviceSystemTray::deviceAdded(TDEGenericDevice* device) {
} }
void HwDeviceSystemTray::deviceRemoved(TDEGenericDevice* device) { void HwDeviceSystemTray::deviceRemoved(TDEGenericDevice* device) {
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
TDEConfig config("mediamanagerrc"); TDEConfig config("mediamanagerrc");
config.setGroup("Global"); config.setGroup("Global");
if (config.readBoolEntry("DeviceMonitorPopupsEnabled", true)) if (config.readBoolEntry("DeviceMonitorPopupsEnabled", true))
@ -688,7 +692,7 @@ void HwDeviceSystemTray::deviceRemoved(TDEGenericDevice* device) {
} }
void HwDeviceSystemTray::deviceChanged(TDEGenericDevice* device) { void HwDeviceSystemTray::deviceChanged(TDEGenericDevice* device) {
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
TDEConfig config("mediamanagerrc"); TDEConfig config("mediamanagerrc");
config.setGroup("Global"); config.setGroup("Global");
if (config.readBoolEntry("DeviceMonitorPopupsEnabled", true)) if (config.readBoolEntry("DeviceMonitorPopupsEnabled", true))

@ -27,7 +27,7 @@
#include <ksimpleconfig.h> #include <ksimpleconfig.h>
#include <tdepassivepopupstack.h> #include <tdepassivepopupstack.h>
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
#include <tdehardwaredevices.h> #include <tdehardwaredevices.h>
#else #else
#define TDEGenericDevice void #define TDEGenericDevice void

@ -17,6 +17,10 @@
* License along with cryptocardwatcher. If not, see http://www.gnu.org/licenses/. * License along with cryptocardwatcher. If not, see http://www.gnu.org/licenses/.
*/ */
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <kdebug.h> #include <kdebug.h>
#include "hwdevicetray_app.h" #include "hwdevicetray_app.h"

@ -11,6 +11,7 @@
include_directories( include_directories(
${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_BINARY_DIR}
${TDE_INCLUDE_DIR} ${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS} ${TQT_INCLUDE_DIRS}
) )

@ -16,6 +16,10 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/ */
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <tqtimer.h> #include <tqtimer.h>
#include <tqimage.h> #include <tqimage.h>
#include <tqtooltip.h> #include <tqtooltip.h>
@ -92,7 +96,7 @@ KRandRSystemTray::KRandRSystemTray(TQWidget* parent, const char *name)
applyIccConfiguration(cur_profile, NULL); applyIccConfiguration(cur_profile, NULL);
} }
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
TDEHardwareDevices *hwdevices = TDEGlobal::hardwareDevices(); TDEHardwareDevices *hwdevices = TDEGlobal::hardwareDevices();
connect(hwdevices, TQT_SIGNAL(hardwareUpdated(TDEGenericDevice*)), this, TQT_SLOT(deviceChanged(TDEGenericDevice*))); connect(hwdevices, TQT_SIGNAL(hardwareUpdated(TDEGenericDevice*)), this, TQT_SLOT(deviceChanged(TDEGenericDevice*)));
#endif #endif
@ -888,7 +892,7 @@ void KRandRSystemTray::slotOutputChanged(int parameter)
} }
void KRandRSystemTray::deviceChanged (TDEGenericDevice* device) { void KRandRSystemTray::deviceChanged (TDEGenericDevice* device) {
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
if (device->type() == TDEGenericDeviceType::Monitor) { if (device->type() == TDEGenericDeviceType::Monitor) {
KRandrPassivePopup::message( KRandrPassivePopup::message(
i18n("New display output options are available!"), i18n("New display output options are available!"),

@ -24,7 +24,7 @@
#include <ksystemtray.h> #include <ksystemtray.h>
#include <kglobalaccel.h> #include <kglobalaccel.h>
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
#include <tdehardwaredevices.h> #include <tdehardwaredevices.h>
#else #else
#define TDEGenericDevice void #define TDEGenericDevice void

@ -44,7 +44,7 @@
#include <tqlistview.h> #include <tqlistview.h>
#include <tqheader.h> #include <tqheader.h>
#include <tqcheckbox.h> #include <tqcheckbox.h>
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
#include <tqfile.h> #include <tqfile.h>
#include <tdecryptographiccarddevice.h> #include <tdecryptographiccarddevice.h>
#endif #endif
@ -481,7 +481,7 @@ void PasswordDlg::reapVerify()
switch (WEXITSTATUS(status)) { switch (WEXITSTATUS(status)) {
case AuthOk: case AuthOk:
{ {
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
KUser userinfo; KUser userinfo;
TQString fileName = userinfo.homeDir() + "/.tde_card_login_state"; TQString fileName = userinfo.homeDir() + "/.tde_card_login_state";
TQFile flagFile(fileName); TQFile flagFile(fileName);
@ -559,7 +559,7 @@ void PasswordDlg::handleVerify()
setFixedSize( sizeHint().width(), sizeHint().height() + 1 ); setFixedSize( sizeHint().width(), sizeHint().height() + 1 );
setFixedSize( sizeHint() ); setFixedSize( sizeHint() );
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
// Check if cryptographic card login is being used // Check if cryptographic card login is being used
if (mCardLoginInProgress) { if (mCardLoginInProgress) {
// Attempt authentication if configured // Attempt authentication if configured
@ -980,7 +980,7 @@ void PasswordDlg::capsLocked()
} }
void PasswordDlg::attemptCardLogin() { void PasswordDlg::attemptCardLogin() {
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
#ifndef HAVE_KRB5 #ifndef HAVE_KRB5
// Don't enable card-based logins if Kerberos integration was disabled // Don't enable card-based logins if Kerberos integration was disabled
return; return;
@ -1020,7 +1020,7 @@ void PasswordDlg::attemptCardLogin() {
} }
void PasswordDlg::resetCardLogin() { void PasswordDlg::resetCardLogin() {
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
validUserCardInserted = false; validUserCardInserted = false;
greet->abort(); greet->abort();
greet->clear(); greet->clear();

@ -19,7 +19,7 @@
#include <config.h> #include <config.h>
#include <tdeglobal.h> #include <tdeglobal.h>
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
#include <ksslcertificate.h> #include <ksslcertificate.h>
#include <kuser.h> #include <kuser.h>
#include <tdehardwaredevices.h> #include <tdehardwaredevices.h>
@ -298,7 +298,7 @@ LockProcess::LockProcess()
} }
} }
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
// Initialize SmartCard readers // Initialize SmartCard readers
TDEGenericDevice *hwdevice; TDEGenericDevice *hwdevice;
TDEHardwareDevices *hwdevices = TDEGlobal::hardwareDevices(); TDEHardwareDevices *hwdevices = TDEGlobal::hardwareDevices();
@ -2832,7 +2832,7 @@ void LockProcess::processInputPipeCommand(TQString inputcommand) {
} }
void LockProcess::cryptographicCardInserted(TDECryptographicCardDevice* cdevice) { void LockProcess::cryptographicCardInserted(TDECryptographicCardDevice* cdevice) {
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
TQString login_name = TQString::null; TQString login_name = TQString::null;
X509CertificatePtrList certList = cdevice->cardX509Certificates(); X509CertificatePtrList certList = cdevice->cardX509Certificates();
if (certList.count() > 0) { if (certList.count() > 0) {
@ -2870,7 +2870,7 @@ void LockProcess::cryptographicCardInserted(TDECryptographicCardDevice* cdevice)
} }
void LockProcess::cryptographicCardRemoved(TDECryptographicCardDevice* cdevice) { void LockProcess::cryptographicCardRemoved(TDECryptographicCardDevice* cdevice) {
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
PasswordDlg* passDlg = dynamic_cast<PasswordDlg*>(currentDialog); PasswordDlg* passDlg = dynamic_cast<PasswordDlg*>(currentDialog);
if (passDlg) { if (passDlg) {
passDlg->resetCardLogin(); passDlg->resetCardLogin();
@ -2884,7 +2884,7 @@ void LockProcess::cryptographicCardRemoved(TDECryptographicCardDevice* cdevice)
void LockProcess::signalPassDlgToAttemptCardLogin() void LockProcess::signalPassDlgToAttemptCardLogin()
{ {
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
PasswordDlg* passDlg = dynamic_cast<PasswordDlg*>(currentDialog); PasswordDlg* passDlg = dynamic_cast<PasswordDlg*>(currentDialog);
if (passDlg && m_loginCardDevice) { if (passDlg && m_loginCardDevice) {
passDlg->attemptCardLogin(); passDlg->attemptCardLogin();
@ -2900,7 +2900,7 @@ void LockProcess::signalPassDlgToAttemptCardLogin()
void LockProcess::signalPassDlgToAttemptCardAbort() void LockProcess::signalPassDlgToAttemptCardAbort()
{ {
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
PasswordDlg* passDlg = dynamic_cast<PasswordDlg*>(currentDialog); PasswordDlg* passDlg = dynamic_cast<PasswordDlg*>(currentDialog);
if (passDlg) { if (passDlg) {
passDlg->resetCardLogin(); passDlg->resetCardLogin();
@ -2916,7 +2916,7 @@ void LockProcess::signalPassDlgToAttemptCardAbort()
void LockProcess::cryptographicCardPinRequested(TQString prompt, TDECryptographicCardDevice* cdevice) void LockProcess::cryptographicCardPinRequested(TQString prompt, TDECryptographicCardDevice* cdevice)
{ {
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
TQCString password; TQCString password;
TQString pin_entry; TQString pin_entry;
@ -2937,7 +2937,7 @@ void LockProcess::cryptographicCardPinRequested(TQString prompt, TDECryptographi
TDECryptographicCardDevice* LockProcess::cryptographicCardDevice() TDECryptographicCardDevice* LockProcess::cryptographicCardDevice()
{ {
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
return m_loginCardDevice; return m_loginCardDevice;
#else #else
return NULL; return NULL;

@ -29,7 +29,7 @@ class KLibrary;
class KWinModule; class KWinModule;
class KSMModalDialog; class KSMModalDialog;
class LockProcess; class LockProcess;
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
class TDECryptographicCardDevice; class TDECryptographicCardDevice;
#else #else
#define TDECryptographicCardDevice void #define TDECryptographicCardDevice void

@ -13,7 +13,7 @@
#include <sys/stat.h> #include <sys/stat.h>
#include <tdeglobal.h> #include <tdeglobal.h>
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
#include <ksslcertificate.h> #include <ksslcertificate.h>
#include <kuser.h> #include <kuser.h>
#include <tdehardwaredevices.h> #include <tdehardwaredevices.h>
@ -200,7 +200,7 @@ SaverEngine::SaverEngine()
delete config; delete config;
config = NULL; config = NULL;
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
// Initialize SmartCard readers // Initialize SmartCard readers
TDEGenericDevice *hwdevice; TDEGenericDevice *hwdevice;
TDEHardwareDevices *hwdevices = TDEGlobal::hardwareDevices(); TDEHardwareDevices *hwdevices = TDEGlobal::hardwareDevices();
@ -265,7 +265,7 @@ void SaverEngine::cardStartupTimeout() {
} }
void SaverEngine::cryptographicCardInserted(TDECryptographicCardDevice* cdevice) { void SaverEngine::cryptographicCardInserted(TDECryptographicCardDevice* cdevice) {
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
TQString login_name = TQString::null; TQString login_name = TQString::null;
X509CertificatePtrList certList = cdevice->cardX509Certificates(); X509CertificatePtrList certList = cdevice->cardX509Certificates();
if (certList.count() > 0) { if (certList.count() > 0) {
@ -291,7 +291,7 @@ void SaverEngine::cryptographicCardInserted(TDECryptographicCardDevice* cdevice)
} }
void SaverEngine::cryptographicCardRemoved(TDECryptographicCardDevice* cdevice) { void SaverEngine::cryptographicCardRemoved(TDECryptographicCardDevice* cdevice) {
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
if (mValidCryptoCardInserted) { if (mValidCryptoCardInserted) {
mValidCryptoCardInserted = false; mValidCryptoCardInserted = false;

@ -18,7 +18,7 @@
#include <tqdbusconnection.h> #include <tqdbusconnection.h>
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
class TDECryptographicCardDevice; class TDECryptographicCardDevice;
#else #else
#define TDECryptographicCardDevice void #define TDECryptographicCardDevice void

@ -21,6 +21,10 @@
******************************************************************/ ******************************************************************/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdlib.h> #include <stdlib.h>
#include <sys/types.h> #include <sys/types.h>
#include <unistd.h> #include <unistd.h>
@ -52,7 +56,7 @@
#include <kdebug.h> #include <kdebug.h>
#include <tdeglobal.h> #include <tdeglobal.h>
#include <tdeglobalsettings.h> #include <tdeglobalsettings.h>
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
#include <tdehardwaredevices.h> #include <tdehardwaredevices.h>
#endif #endif
#include <kiconloader.h> #include <kiconloader.h>
@ -1377,7 +1381,7 @@ void KMenu::insertStaticExitItems()
#if defined(COMPILE_HALBACKEND) #if defined(COMPILE_HALBACKEND)
if (ksmserver.readBoolEntry( "offerShutdown", true ) && DM().canShutdown()) if (ksmserver.readBoolEntry( "offerShutdown", true ) && DM().canShutdown())
maysd = true; maysd = true;
#elif defined(__TDE_HAVE_TDEHWLIB) #elif defined(WITH_TDEHWLIB)
TDERootSystemDevice* rootDevice = TDEGlobal::hardwareDevices()->rootSystemDevice(); TDERootSystemDevice* rootDevice = TDEGlobal::hardwareDevices()->rootSystemDevice();
if( rootDevice ) { if( rootDevice ) {
maysd = rootDevice->canPowerOff(); maysd = rootDevice->canPowerOff();
@ -3810,7 +3814,7 @@ void KMenu::insertSuspendOption( int &nId, int &index )
"/org/freedesktop/Hal/devices/computer", "/org/freedesktop/Hal/devices/computer",
"power_management.can_suspend_hybrid", "power_management.can_suspend_hybrid",
NULL); NULL);
#elif defined(__TDE_HAVE_TDEHWLIB) // COMPILE_HALBACKEND #elif defined(WITH_TDEHWLIB) // COMPILE_HALBACKEND
TDERootSystemDevice* rootDevice = TDEGlobal::hardwareDevices()->rootSystemDevice(); TDERootSystemDevice* rootDevice = TDEGlobal::hardwareDevices()->rootSystemDevice();
if (rootDevice) { if (rootDevice) {
suspend_ram = rootDevice->canSuspend(); suspend_ram = rootDevice->canSuspend();
@ -3924,7 +3928,7 @@ void KMenu::slotSuspend(int id)
} }
dbus_message_unref(msg); dbus_message_unref(msg);
} }
#elif defined(__TDE_HAVE_TDEHWLIB) // COMPILE_HALBACKEND #elif defined(WITH_TDEHWLIB) // COMPILE_HALBACKEND
TDERootSystemDevice* rootDevice = TDEGlobal::hardwareDevices()->rootSystemDevice(); TDERootSystemDevice* rootDevice = TDEGlobal::hardwareDevices()->rootSystemDevice();
if (rootDevice) { if (rootDevice) {
if (id == SuspendType::Freeze) { if (id == SuspendType::Freeze) {

@ -599,7 +599,7 @@ KSMServer::KSMServer( const TQString& windowManager, const TQString& windowManag
clientInteracting = 0; clientInteracting = 0;
xonCommand = config->readEntry( "xonCommand", "xon" ); xonCommand = config->readEntry( "xonCommand", "xon" );
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
hwDevices = TDEGlobal::hardwareDevices(); hwDevices = TDEGlobal::hardwareDevices();
#endif #endif
@ -723,7 +723,7 @@ void KSMServer::cleanUp()
DM().shutdown( shutdownType, shutdownMode, bootOption ); DM().shutdown( shutdownType, shutdownMode, bootOption );
} }
else { else {
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
TDERootSystemDevice* rootDevice = hwDevices->rootSystemDevice(); TDERootSystemDevice* rootDevice = hwDevices->rootSystemDevice();
if (rootDevice) { if (rootDevice) {
if (shutdownType == TDEApplication::ShutdownTypeHalt) { if (shutdownType == TDEApplication::ShutdownTypeHalt) {

@ -21,7 +21,7 @@ Copyright (C) 2000 Matthias Ettrich <ettrich@kde.org>
#include <tqtimer.h> #include <tqtimer.h>
#include <dcopobject.h> #include <dcopobject.h>
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
#include <tdehardwaredevices.h> #include <tdehardwaredevices.h>
#endif #endif
@ -253,7 +253,7 @@ private:
WindowMap legacyWindows; WindowMap legacyWindows;
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
TDEHardwareDevices* hwDevices; TDEHardwareDevices* hwDevices;
#endif #endif
int initialClientCount; int initialClientCount;

@ -152,7 +152,7 @@ bool KSMServer::checkStatus( bool &logoutConfirmed, bool &maysd, bool &mayrb,
mayrb = true; mayrb = true;
} }
else { else {
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
TDERootSystemDevice* rootDevice = hwDevices->rootSystemDevice(); TDERootSystemDevice* rootDevice = hwDevices->rootSystemDevice();
if (rootDevice) { if (rootDevice) {
if (rootDevice->canPowerOff()) { if (rootDevice->canPowerOff()) {
@ -241,7 +241,7 @@ void KSMServer::shutdownInternal( TDEApplication::ShutdownConfirm confirm,
// If this is not done the desktop of the locked session will be shown after suspend/hibernate until the lock fully engages! // If this is not done the desktop of the locked session will be shown after suspend/hibernate until the lock fully engages!
kapp->dcopClient()->call("kdesktop", "KScreensaverIface", "lock()", TQCString(""), replyType, replyData); kapp->dcopClient()->call("kdesktop", "KScreensaverIface", "lock()", TQCString(""), replyType, replyData);
} }
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
TDERootSystemDevice* rootDevice = hwDevices->rootSystemDevice(); TDERootSystemDevice* rootDevice = hwDevices->rootSystemDevice();
if (rootDevice) { if (rootDevice) {
switch (selection) { switch (selection) {

@ -6,6 +6,10 @@ Copyright (C) 2010 Timothy Pearson <kb9vqf@pearsoncomputing.net>
Copyright (C) 2000 Matthias Ettrich <ettrich@kde.org> Copyright (C) 2000 Matthias Ettrich <ettrich@kde.org>
******************************************************************/ ******************************************************************/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "shutdowndlg.h" #include "shutdowndlg.h"
#include <tqapplication.h> #include <tqapplication.h>
@ -33,7 +37,7 @@ Copyright (C) 2000 Matthias Ettrich <ettrich@kde.org>
#include <tdelocale.h> #include <tdelocale.h>
#include <tdeconfig.h> #include <tdeconfig.h>
#include <tdeapplication.h> #include <tdeapplication.h>
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
#include <tdehardwaredevices.h> #include <tdehardwaredevices.h>
#endif #endif
#include <kdebug.h> #include <kdebug.h>
@ -874,7 +878,7 @@ KSMShutdownDlg::KSMShutdownDlg( TQWidget* parent,
canHybridSuspend = true; canHybridSuspend = true;
} }
} }
#elif defined(__TDE_HAVE_TDEHWLIB) // COMPILE_HALBACKEND #elif defined(WITH_TDEHWLIB) // COMPILE_HALBACKEND
TDERootSystemDevice* rootDevice = TDEGlobal::hardwareDevices()->rootSystemDevice(); TDERootSystemDevice* rootDevice = TDEGlobal::hardwareDevices()->rootSystemDevice();
if (rootDevice) { if (rootDevice) {
canFreeze = rootDevice->canFreeze(); canFreeze = rootDevice->canFreeze();

@ -14,6 +14,7 @@ include_directories(
${CMAKE_BINARY_DIR}/tdeioslave/media/libmediacommon ${CMAKE_BINARY_DIR}/tdeioslave/media/libmediacommon
${CMAKE_SOURCE_DIR}/tdeioslave/media/libmediacommon ${CMAKE_SOURCE_DIR}/tdeioslave/media/libmediacommon
${CMAKE_SOURCE_DIR}/tdmlib ${CMAKE_SOURCE_DIR}/tdmlib
${CMAKE_BINARY_DIR}
${TDE_INCLUDE_DIR} ${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS} ${TQT_INCLUDE_DIRS}
) )

@ -17,6 +17,10 @@
Boston, MA 02110-1301, USA. Boston, MA 02110-1301, USA.
*/ */
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "notificationdialog.h" #include "notificationdialog.h"
#include <tqlayout.h> #include <tqlayout.h>
@ -28,7 +32,7 @@
#include <tqlabel.h> #include <tqlabel.h>
#include <tqcheckbox.h> #include <tqcheckbox.h>
#include <tqpushbutton.h> #include <tqpushbutton.h>
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
#include <tdehardwaredevices.h> #include <tdehardwaredevices.h>
#endif #endif

@ -12,6 +12,7 @@
include_directories( include_directories(
${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_SOURCE_DIR}/tdeioslave/media/libmediacommon ${CMAKE_SOURCE_DIR}/tdeioslave/media/libmediacommon
${CMAKE_BINARY_DIR}
${TDE_INCLUDE_DIR} ${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS} ${TQT_INCLUDE_DIRS}
) )

@ -19,6 +19,10 @@
Boston, MA 02110-1301, USA. Boston, MA 02110-1301, USA.
*/ */
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <tdecmdlineargs.h> #include <tdecmdlineargs.h>
#include <tdelocale.h> #include <tdelocale.h>
#include <tdeapplication.h> #include <tdeapplication.h>
@ -32,7 +36,7 @@
#include <kprocess.h> #include <kprocess.h>
#include <tdestartupinfo.h> #include <tdestartupinfo.h>
#include <kmimetype.h> #include <kmimetype.h>
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
#include <tdehardwaredevices.h> #include <tdehardwaredevices.h>
#endif #endif
@ -173,7 +177,7 @@ void MountHelper::lock(const Medium &medium)
void MountHelper::eject(const TQString &device, bool quiet) void MountHelper::eject(const TQString &device, bool quiet)
{ {
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
// Try TDE HW library eject first... // Try TDE HW library eject first...
TDEHardwareDevices *hwdevices = TDEGlobal::hardwareDevices(); TDEHardwareDevices *hwdevices = TDEGlobal::hardwareDevices();
TDEGenericDevice *hwdevice = hwdevices->findByDeviceNode(device); TDEGenericDevice *hwdevice = hwdevices->findByDeviceNode(device);
@ -203,7 +207,7 @@ void MountHelper::eject(const TQString &device, bool quiet)
void MountHelper::releaseHolders(const Medium &medium, bool handleThis) void MountHelper::releaseHolders(const Medium &medium, bool handleThis)
{ {
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
if (medium.id().isEmpty()) if (medium.id().isEmpty())
{ {
m_errorStr = i18n("Try to release holders from an unknown medium."); m_errorStr = i18n("Try to release holders from an unknown medium.");

@ -124,14 +124,14 @@ void GreeterApp::init()
startTimer( pingInterval * 60000 ); startTimer( pingInterval * 60000 );
} }
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
TDEHardwareDevices *hwdevices = TDEGlobal::hardwareDevices(); TDEHardwareDevices *hwdevices = TDEGlobal::hardwareDevices();
connect(hwdevices, TQT_SIGNAL(hardwareUpdated(TDEGenericDevice*)), this, TQT_SLOT(deviceChanged(TDEGenericDevice*))); connect(hwdevices, TQT_SIGNAL(hardwareUpdated(TDEGenericDevice*)), this, TQT_SLOT(deviceChanged(TDEGenericDevice*)));
#endif #endif
} }
void GreeterApp::deviceChanged(TDEGenericDevice* device) { void GreeterApp::deviceChanged(TDEGenericDevice* device) {
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
#ifdef WITH_XRANDR #ifdef WITH_XRANDR
if (device->type() == TDEGenericDeviceType::Monitor) { if (device->type() == TDEGenericDeviceType::Monitor) {
KRandrSimpleAPI *randrsimple = new KRandrSimpleAPI(); KRandrSimpleAPI *randrsimple = new KRandrSimpleAPI();
@ -139,7 +139,7 @@ void GreeterApp::deviceChanged(TDEGenericDevice* device) {
delete randrsimple; delete randrsimple;
} }
#endif // WITH_XRANDR #endif // WITH_XRANDR
#endif // __TDE_HAVE_TDEHWLIB #endif // WITH_TDEHWLIB
} }
void void

@ -27,7 +27,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#define KGAPP_H #define KGAPP_H
#include <tdeapplication.h> #include <tdeapplication.h>
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
#include <tdehardwaredevices.h> #include <tdehardwaredevices.h>
#else #else
#define TDEGenericDevice void #define TDEGenericDevice void

@ -22,6 +22,10 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/ */
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "kgreeter.h" #include "kgreeter.h"
#include "kconsole.h" #include "kconsole.h"
#include "tdmconfig.h" #include "tdmconfig.h"
@ -35,7 +39,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#include <dmctl.h> #include <dmctl.h>
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
#include <ksslcertificate.h> #include <ksslcertificate.h>
#include <tdehardwaredevices.h> #include <tdehardwaredevices.h>
#include <tdecryptographiccarddevice.h> #include <tdecryptographiccarddevice.h>
@ -247,7 +251,7 @@ KGreeter::~KGreeter()
void KGreeter::cryptographicCardWatcherSetup() { void KGreeter::cryptographicCardWatcherSetup() {
cardLoginUser = TQString::null; cardLoginUser = TQString::null;
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
// Initialize SmartCard readers // Initialize SmartCard readers
TDEGenericDevice *hwdevice; TDEGenericDevice *hwdevice;
TDEHardwareDevices *hwdevices = TDEGlobal::hardwareDevices(); TDEHardwareDevices *hwdevices = TDEGlobal::hardwareDevices();
@ -861,7 +865,7 @@ KGreeter::verifySetUser( const TQString &user )
} }
void KGreeter::cryptographicCardInserted(TDECryptographicCardDevice* cdevice) { void KGreeter::cryptographicCardInserted(TDECryptographicCardDevice* cdevice) {
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
#ifndef HAVE_KRB5 #ifndef HAVE_KRB5
// Don't enable card-based logins if Kerberos integration was disabled // Don't enable card-based logins if Kerberos integration was disabled
return; return;
@ -945,7 +949,7 @@ void KGreeter::cryptographicCardInserted(TDECryptographicCardDevice* cdevice) {
} }
void KGreeter::cryptographicCardRemoved(TDECryptographicCardDevice* cdevice) { void KGreeter::cryptographicCardRemoved(TDECryptographicCardDevice* cdevice) {
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
cardLoginUser = TQString::null; cardLoginUser = TQString::null;
userView->setEnabled(false); userView->setEnabled(false);
verify->lockUserEntry(false); verify->lockUserEntry(false);
@ -1338,7 +1342,7 @@ KThemedGreeter::updateStatus( bool fail, bool caps, int timedleft )
} }
} }
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
if (cardLoginUser != TQString::null) { if (cardLoginUser != TQString::null) {
verify->setPasswordPrompt(i18n("PIN:")); verify->setPasswordPrompt(i18n("PIN:"));
} }

@ -33,7 +33,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#include "themer/tdmlabel.h" #include "themer/tdmlabel.h"
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
#include <ksslcertificate.h> #include <ksslcertificate.h>
#include <tdehardwaredevices.h> #include <tdehardwaredevices.h>
#include <tdecryptographiccarddevice.h> #include <tdecryptographiccarddevice.h>
@ -100,7 +100,7 @@ KGVerify::KGVerify(KGVerifyHandler *_handler, KdmThemer *_themer,
, isClear(true) , isClear(true)
, inGreeterPlugin(false) , inGreeterPlugin(false)
, abortRequested(false) , abortRequested(false)
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
, cardLoginInProgress(false) , cardLoginInProgress(false)
, cardLoginDevice(NULL) , cardLoginDevice(NULL)
#endif #endif
@ -329,7 +329,7 @@ KGVerify::start()
return; return;
} }
else else
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
if (!cardLoginInProgress) if (!cardLoginInProgress)
#endif #endif
{ {
@ -672,7 +672,7 @@ KGVerify::handleVerify()
greet->textPrompt(msg, echo, ndelay); greet->textPrompt(msg, echo, ndelay);
inGreeterPlugin = !ndelay; inGreeterPlugin = !ndelay;
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
if (cardLoginInProgress) { if (cardLoginInProgress) {
TQString autoPIN = cardLoginDevice->autoPIN(); TQString autoPIN = cardLoginDevice->autoPIN();
if (autoPIN != TQString::null) { if (autoPIN != TQString::null) {

@ -77,7 +77,7 @@ class TQPopupMenu;
class TQTimer; class TQTimer;
class KPushButton; class KPushButton;
class KLibrary; class KLibrary;
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
class TDECryptographicCardDevice; class TDECryptographicCardDevice;
#endif #endif
@ -184,7 +184,7 @@ class KGVerify : public TQObject, public KGreeterPluginHandler {
static TQVariant getConf( void *ctx, const char *key, const TQVariant &dflt ); static TQVariant getConf( void *ctx, const char *key, const TQVariant &dflt );
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
bool cardLoginInProgress; bool cardLoginInProgress;
TDECryptographicCardDevice* cardLoginDevice; TDECryptographicCardDevice* cardLoginDevice;
#endif #endif

@ -10,7 +10,7 @@
#include <dmctl.h> #include <dmctl.h>
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
#include <ksslcertificate.h> #include <ksslcertificate.h>
#include <tdehardwaredevices.h> #include <tdehardwaredevices.h>
#include <tdecryptographiccarddevice.h> #include <tdecryptographiccarddevice.h>
@ -136,7 +136,7 @@ SAKDlg::SAKDlg(TQWidget *parent)
connect(mSAKProcess, TQT_SIGNAL(processExited(TDEProcess*)), this, TQT_SLOT(slotSAKProcessExited())); connect(mSAKProcess, TQT_SIGNAL(processExited(TDEProcess*)), this, TQT_SLOT(slotSAKProcessExited()));
mSAKProcess->start(); mSAKProcess->start();
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
// Initialize SmartCard readers // Initialize SmartCard readers
TDEGenericDevice *hwdevice; TDEGenericDevice *hwdevice;
TDEHardwareDevices *hwdevices = TDEGlobal::hardwareDevices(); TDEHardwareDevices *hwdevices = TDEGlobal::hardwareDevices();
@ -175,7 +175,7 @@ void SAKDlg::processInputPipeCommand(TQString command) {
} }
void SAKDlg::cryptographicCardInserted(TDECryptographicCardDevice* cdevice) { void SAKDlg::cryptographicCardInserted(TDECryptographicCardDevice* cdevice) {
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
TQString login_name = TQString::null; TQString login_name = TQString::null;
X509CertificatePtrList certList = cdevice->cardX509Certificates(); X509CertificatePtrList certList = cdevice->cardX509Certificates();
if (certList.count() > 0) { if (certList.count() > 0) {
@ -221,7 +221,7 @@ void SAKDlg::cryptographicCardInserted(TDECryptographicCardDevice* cdevice) {
} }
void SAKDlg::cryptographicCardRemoved(TDECryptographicCardDevice* cdevice) { void SAKDlg::cryptographicCardRemoved(TDECryptographicCardDevice* cdevice) {
#ifdef __TDE_HAVE_TDEHWLIB #ifdef WITH_TDEHWLIB
// //
#endif #endif
} }

Loading…
Cancel
Save