By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 2110
Collapse All | Expand All

(-)a/ConfigureChecks.cmake (+12 lines)
Lines 54-59 if( WITH_PAM AND (BUILD_KCHECKPASS OR BUILD_TDM) ) Link Here
54
endif( )
54
endif( )
55
55
56
56
57
# crypt
58
set( CRYPT_LIBRARY crypt )
59
check_library_exists( ${CRYPT_LIBRARY} crypt "" HAVE_CRYPT )
60
if( NOT HAVE_CRYPT )
61
  unset( CRYPT_LIBRARY )
62
  check_function_exists( crypt LIBC_HAVE_CRYPT )
63
  if( LIBC_HAVE_CRYPT )
64
    set( HAVE_CRYPT 1 CACHE INTERNAL "" FORCE )
65
  endif( LIBC_HAVE_CRYPT )
66
endif( NOT HAVE_CRYPT )
67
68
57
# hal (ksmserver, tdeioslaves)
69
# hal (ksmserver, tdeioslaves)
58
if( WITH_HAL )
70
if( WITH_HAL )
59
  pkg_search_module( HAL hal )
71
  pkg_search_module( HAL hal )
(-)a/kcheckpass/ConfigureChecks.cmake (-2 lines)
Lines 9-16 Link Here
9
#
9
#
10
#################################################
10
#################################################
11
11
12
find_library( CRYPT_LIBRARY crypt )
13
14
if( WITH_PAM AND (NOT DEFINED KCHECKPASS_PAM_SERVICE) )
12
if( WITH_PAM AND (NOT DEFINED KCHECKPASS_PAM_SERVICE) )
15
  set( KCHECKPASS_PAM_SERVICE "kde" CACHE INTERNAL "" )
13
  set( KCHECKPASS_PAM_SERVICE "kde" CACHE INTERNAL "" )
16
endif( )
14
endif( )
(-)a/tdm/ConfigureChecks.cmake (-11 / +1 lines)
Lines 27-42 check_function_exists( login_getclass HAVE_LOGIN_GETCLASS ) Link Here
27
check_function_exists( auth_timeok HAVE_AUTH_TIMEOK )
27
check_function_exists( auth_timeok HAVE_AUTH_TIMEOK )
28
tde_restore( CMAKE_REQUIRED_LIBRARIES )
28
tde_restore( CMAKE_REQUIRED_LIBRARIES )
29
29
30
check_function_exists( crypt LIBC_HAVE_CRYPT )
31
if( LIBC_HAVE_CRYPT )
32
  set( HAVE_CRYPT 1 CACHE INTERNAL "" FORCE )
33
else( )
34
  check_library_exists( crypt crypt "" HAVE_CRYPT )
35
  if( HAVE_CRYPT )
36
    set( CRYPT_LIBRARY crypt )
37
  endif( )
38
endif( )
39
40
check_include_file( lastlog.h HAVE_LASTLOG_H )
30
check_include_file( lastlog.h HAVE_LASTLOG_H )
41
check_include_file( termio.h HAVE_TERMIO_H )
31
check_include_file( termio.h HAVE_TERMIO_H )
42
32
Lines 95-101 unset( BSD_UTMP ) Link Here
95
if( NOT HAVE_UTMPX )
85
if( NOT HAVE_UTMPX )
96
    check_function_exists( getutent have_getutent )
86
    check_function_exists( getutent have_getutent )
97
    if( NOT have_getutent )
87
    if( NOT have_getutent )
98
        set( BSD_UTMP 1 )
88
        set( BSD_UTMP 1 CACHE INTERNAL "" FORCE )
99
    endif( )
89
    endif( )
100
endif( )
90
endif( )
101
91

Return to bug 2110