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 624
Collapse All | Expand All

(-)kdebase.orig/config.h.cmake (+1 lines)
Lines 114-119 Link Here
114
#cmakedefine HAVE_SYSINFO 1
114
#cmakedefine HAVE_SYSINFO 1
115
#cmakedefine HAVE_STRNLEN 1
115
#cmakedefine HAVE_STRNLEN 1
116
#cmakedefine HAVE_GETIFADDRS 1
116
#cmakedefine HAVE_GETIFADDRS 1
117
#cmakedefine HAVE_CRYPT 1
117
118
118
#cmakedefine HAVE_SETUSERCONTEXT 1
119
#cmakedefine HAVE_SETUSERCONTEXT 1
119
#cmakedefine HAVE_GETUSERSHELL 1
120
#cmakedefine HAVE_GETUSERSHELL 1
(-)kdebase.orig/kdm/backend/CMakeLists.txt (-1 / +1 lines)
Lines 43-48 Link Here
43
    process.c protodpy.c reset.c resource.c rpcauth.c
43
    process.c protodpy.c reset.c resource.c rpcauth.c
44
    server.c session.c sessreg.c socket.c streams.c
44
    server.c session.c sessreg.c socket.c streams.c
45
    util.c xdmauth.c xdmcp.c
45
    util.c xdmauth.c xdmcp.c
46
  LINK X11 ${XAU_LIBRARIES} ${DBUS_TQT_LIBRARIES} ${PAM_LIBRARY} ${XDMCP_LIBRARIES}
46
  LINK X11 ${XAU_LIBRARIES} ${DBUS_TQT_LIBRARIES} ${CRYPT_LIBRARY} ${PAM_LIBRARY} ${XDMCP_LIBRARIES}
47
  DESTINATION ${BIN_INSTALL_DIR}
47
  DESTINATION ${BIN_INSTALL_DIR}
48
)
48
)
(-)kdebase.orig/kdm/ConfigureChecks.cmake (+10 lines)
Lines 27-32 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
30
check_include_file( lastlog.h HAVE_LASTLOG_H )
40
check_include_file( lastlog.h HAVE_LASTLOG_H )
31
check_include_file( termio.h HAVE_TERMIO_H )
41
check_include_file( termio.h HAVE_TERMIO_H )
32
42

Return to bug 624