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

(-)tdeioslave/ConfigureChecks.cmake.orig (+6 lines)
Lines 11-16 Link Here
11
11
12
if( WITH_SASL )
12
if( WITH_SASL )
13
  check_include_file( "sasl/sasl.h" HAVE_SASL_SASL_H )
13
  check_include_file( "sasl/sasl.h" HAVE_SASL_SASL_H )
14
  if( NOT HAVE_SASL_SASL_H )
15
    find_path( SASL_H_PATH "sasl/sasl.h" )
16
    if( SASL_H_PATH )
17
      set( HAVE_SASL_SASL_H "1" )
18
    endif( )
19
  endif( )
14
  check_library_exists( sasl2 sasl_client_init "" HAVE_LIBSASL2 )
20
  check_library_exists( sasl2 sasl_client_init "" HAVE_LIBSASL2 )
15
  if( HAVE_SASL_SASL_H AND HAVE_LIBSASL2 )
21
  if( HAVE_SASL_SASL_H AND HAVE_LIBSASL2 )
16
    set( SASL_LIBRARIES sasl2 )
22
    set( SASL_LIBRARIES sasl2 )

Return to bug 2110