diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2014-10-18 14:01:26 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2014-10-18 14:29:18 +0200 |
commit | 71fb8e0e115daa047a514df546d13d294f376840 (patch) | |
tree | 5e869f077f943737a080468d9d0b1f4744a110a7 /tdm | |
parent | a679541fd738df5118cdddca997bf9b9531fdfcf (diff) | |
download | tdebase-71fb8e0e115daa047a514df546d13d294f376840.tar.gz tdebase-71fb8e0e115daa047a514df546d13d294f376840.zip |
Fix crypt library detection in CMake
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'tdm')
-rw-r--r-- | tdm/ConfigureChecks.cmake | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/tdm/ConfigureChecks.cmake b/tdm/ConfigureChecks.cmake index ae7ea8b6c..162a8a6ba 100644 --- a/tdm/ConfigureChecks.cmake +++ b/tdm/ConfigureChecks.cmake @@ -27,16 +27,6 @@ check_function_exists( login_getclass HAVE_LOGIN_GETCLASS ) check_function_exists( auth_timeok HAVE_AUTH_TIMEOK ) tde_restore( CMAKE_REQUIRED_LIBRARIES ) -check_function_exists( crypt LIBC_HAVE_CRYPT ) -if( LIBC_HAVE_CRYPT ) - set( HAVE_CRYPT 1 CACHE INTERNAL "" FORCE ) -else( ) - check_library_exists( crypt crypt "" HAVE_CRYPT ) - if( HAVE_CRYPT ) - set( CRYPT_LIBRARY crypt ) - endif( ) -endif( ) - check_include_file( lastlog.h HAVE_LASTLOG_H ) check_include_file( termio.h HAVE_TERMIO_H ) |