summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ConfigureChecks.cmake12
1 files changed, 12 insertions, 0 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake
index 5a14d7f..4750658 100644
--- a/ConfigureChecks.cmake
+++ b/ConfigureChecks.cmake
@@ -56,6 +56,18 @@ endif( WITH_LAME )
if( BUILD_LIRC_PLUGIN )
pkg_search_module( LIRC lirc )
+
+ if( NOT LIRC_FOUND )
+ check_library_exists( lirc_client lirc_init "" HAVE_LIRC )
+ if( HAVE_LIRC )
+ check_include_file( lirc/lirc_client.h HAVE_LIRC_CLIENT_H )
+ if( HAVE_LIRC_CLIENT_H )
+ set( LIRC_FOUND 1 )
+ set( LIRC_LIBRARIES "lirc_client" )
+ endif()
+ endif()
+ endif( NOT LIRC_FOUND )
+
if( NOT LIRC_FOUND )
tde_message_fatal( "lirc support is requested, but was not found on your system" )
endif( NOT LIRC_FOUND )