diff options
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 |