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

(-)tdm/ConfigureChecks.cmake.orig (-1 / +3 lines)
Lines 34-39 Link Here
34
  check_library_exists( crypt crypt "" HAVE_CRYPT )
34
  check_library_exists( crypt crypt "" HAVE_CRYPT )
35
  if( HAVE_CRYPT )
35
  if( HAVE_CRYPT )
36
    set( CRYPT_LIBRARY crypt )
36
    set( CRYPT_LIBRARY crypt )
37
  else( )
38
    set( CRYPT_LIBRARY "" )
37
  endif( )
39
  endif( )
38
endif( )
40
endif( )
39
41
Lines 95-101 Link Here
95
if( NOT HAVE_UTMPX )
97
if( NOT HAVE_UTMPX )
96
    check_function_exists( getutent have_getutent )
98
    check_function_exists( getutent have_getutent )
97
    if( NOT have_getutent )
99
    if( NOT have_getutent )
98
        set( BSD_UTMP 1 )
100
        set( BSD_UTMP 1 CACHE INTERNAL "" FORCE )
99
    endif( )
101
    endif( )
100
endif( )
102
endif( )
101
103

Return to bug 2110