summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2022-07-10 12:07:06 +0200
committerSlávek Banko <slavek.banko@axis.cz>2022-07-10 12:08:41 +0200
commit159cf39b4d0b4530433757298a1a5ab400d4945b (patch)
tree6fd7ee1fa19d544365406f8ad8cc4bc31bcb7bf7
parenta23d65252e8d6277985558193573be5c7006a67f (diff)
downloadtderadio-159cf39b4d0b4530433757298a1a5ab400d4945b.tar.gz
tderadio-159cf39b4d0b4530433757298a1a5ab400d4945b.zip
CMake: Add lirc library and header detection if pkg-config file does not exist.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz> (cherry picked from commit 0dc685b82e3e2733cf3f15c5cb6a6bb9939e93aa)
-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 )