diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2021-05-17 18:10:38 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2021-05-18 14:07:41 +0200 |
commit | 225ddaa3667808031fe65763d7f533437484486c (patch) | |
tree | e9d7f1883f85f355d8772c5d918d3efa578a76c5 /tdeioslave/media/medianotifier/notificationdialog.cpp | |
parent | 9bdd3a0e4724a591f0cdc6dd8bdd60dc794354e4 (diff) | |
download | tdebase-225ddaa3.tar.gz tdebase-225ddaa3.zip |
Respect build option WITH_TDEHWLIB, otherwise it can lead to FTBFS in special cases.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit e031e12d06c77e0a05ad0c30c21f3afea94764af)
Diffstat (limited to 'tdeioslave/media/medianotifier/notificationdialog.cpp')
-rw-r--r-- | tdeioslave/media/medianotifier/notificationdialog.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tdeioslave/media/medianotifier/notificationdialog.cpp b/tdeioslave/media/medianotifier/notificationdialog.cpp index 7e4004e8c..392fbad94 100644 --- a/tdeioslave/media/medianotifier/notificationdialog.cpp +++ b/tdeioslave/media/medianotifier/notificationdialog.cpp @@ -17,6 +17,10 @@ Boston, MA 02110-1301, USA. */ +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + #include "notificationdialog.h" #include <tqlayout.h> @@ -28,7 +32,7 @@ #include <tqlabel.h> #include <tqcheckbox.h> #include <tqpushbutton.h> -#ifdef __TDE_HAVE_TDEHWLIB +#ifdef WITH_TDEHWLIB #include <tdehardwaredevices.h> #endif |