From 51ff055d6ce9e93584818d5e80e42fa9cb1da0a3 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Wed, 11 Jan 2012 13:56:06 -0600 Subject: Fix KDM logins when PAM is not in use This closes Bug 624 --- kdm/ConfigureChecks.cmake | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'kdm/ConfigureChecks.cmake') diff --git a/kdm/ConfigureChecks.cmake b/kdm/ConfigureChecks.cmake index 162a8a6ba..ae7ea8b6c 100644 --- a/kdm/ConfigureChecks.cmake +++ b/kdm/ConfigureChecks.cmake @@ -27,6 +27,16 @@ 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 ) -- cgit v1.2.1