diff options
author | Slávek Banko <[email protected]> | 2018-10-19 02:35:22 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2018-10-19 13:52:49 +0200 |
commit | 77d5afb6c56c05211f79fe1b1656837a854bc650 (patch) | |
tree | 9c61133876f51023c4b7b6a3dafcf618e8c007f3 /ConfigureChecks.cmake | |
parent | e8e56b0eb136e969c2fec43712d5b76811f48128 (diff) | |
download | kbiff-77d5afb6c56c05211f79fe1b1656837a854bc650.tar.gz kbiff-77d5afb6c56c05211f79fe1b1656837a854bc650.zip |
cmake: Add options WITH_SSL and WITH_MLED
Fix test for SSL => is not needed, because is used KSSL from tdelibs
Fix test for ASUS Mail LED support in ACPI
Signed-off-by: Slávek Banko <[email protected]>
(cherry picked from commit 3e2052d2d451a77852c362f6b8812f74f4648739)
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r-- | ConfigureChecks.cmake | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index 6f2c0d2..dcab462 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -37,10 +37,22 @@ check_include_file( "paths.h" HAVE_PATHS_H ) #### set USE_SSL -find_package(OpenSSL) -if( OPENSSL_FOUND ) - set( USE_SSL 1 ) -endif( OPENSSL_FOUND ) +if( WITH_SSL ) + # For SSL support is used KSSL in tdelibs. + # Therefore, there is no need for a direct dependence on the SSL library. + set( USE_SSL 1 ) +endif( WITH_SSL ) + + +#### check for ASUS Mail LED + +if( WITH_MLED ) + if( EXISTS "/proc/acpi/asus/mled" ) + set( HAVE_MLED 1 ) + else( ) + tde_mesage_fatal( "ASUS Mail LED support was requested but not found in ACPI" ) + endif( ) +endif( WITH_MLED ) ##### gettext |