summaryrefslogtreecommitdiffstats
path: root/ConfigureChecks.cmake
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2021-05-03 23:28:27 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2021-05-04 23:37:02 +0900
commit804f6a4d46fa519558a321c4f86c72fd11610759 (patch)
tree46b2b6409117d9daf8e4f6bae21cc4c2834686e8 /ConfigureChecks.cmake
parentcc51bb4eb48522433b14b1e584dd5dbdb9a0969e (diff)
downloadk3b-804f6a4d46fa519558a321c4f86c72fd11610759.tar.gz
k3b-804f6a4d46fa519558a321c4f86c72fd11610759.zip
Fixed FTBFS when building without tdehw lib but with HAL enabled.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r--ConfigureChecks.cmake10
1 files changed, 10 insertions, 0 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake
index 03eeb89..b3f7522 100644
--- a/ConfigureChecks.cmake
+++ b/ConfigureChecks.cmake
@@ -106,6 +106,16 @@ if( WITH_HAL )
pkg_search_module( HAL hal )
if( HAL_FOUND )
set ( HAVE_HAL 1 )
+ # search for dbus
+ pkg_search_module( DBUS dbus-1 )
+ if( NOT DBUS_FOUND )
+ tde_message_fatal( "dbus-1 is required, but was not found on your system" )
+ endif( )
+ # search for dbus-tqt
+ pkg_search_module( DBUS_TQT dbus-tqt )
+ if( NOT DBUS_TQT_FOUND )
+ tde_message_fatal( "dbus-tqt is required, but was not found on your system" )
+ endif()
else ( )
tde_message_fatal( "hal is required, but was not found on your system" )
endif( )