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

(-)a/kioslave/svn/ConfigureChecks.cmake (-2 / +7 lines)
Lines 20-30 endif( ) Link Here
20
# check for subversion library
20
# check for subversion library
21
21
22
check_library_exists( "svn_client-1" "svn_pool_create_ex" "${SVN_LIBRARY_DIR}" HAVE_SVN_POOL_CREATE_EX )
22
check_library_exists( "svn_client-1" "svn_pool_create_ex" "${SVN_LIBRARY_DIR}" HAVE_SVN_POOL_CREATE_EX )
23
24
if( HAVE_SVN_POOL_CREATE_EX )
23
if( HAVE_SVN_POOL_CREATE_EX )
25
  set( SVN_LIBRARIES "svn_client-1;svn_subr-1;svn_ra-1" )
24
  set( SVN_LIBRARIES "svn_client-1;svn_subr-1;svn_ra-1" )
26
else( )
25
else( )
27
  tde_message_fatal( "svn_client-1 library was not found on your system.\n Subversion is installed?\n Try to set SVN_LIBRARY_DIR to subversion library directory." )
26
  set( HAVE_SVN_POOL_CREATE_EX )
27
  check_library_exists( "svn_subr-1" "svn_pool_create_ex" "${SVN_LIBRARY_DIR}" HAVE_SVN_POOL_CREATE_EX )
28
  if( HAVE_SVN_POOL_CREATE_EX )
29
    set( SVN_LIBRARIES "svn_client-1;svn_subr-1;svn_ra-1" )
30
  else( )
31
    tde_message_fatal( "svn_client-1 library was not found on your system.\n Subversion is installed?\n Try to set SVN_LIBRARY_DIR to subversion library directory." )
32
  endif( )
28
endif( )
33
endif( )
29
34
30
35

Return to bug 872