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

(-)b/CMakeLists.txt (+21 lines)
Lines 413-419 Link Here
413
check_function_exists( getgroups HAVE_GETGROUPS )
413
check_function_exists( getgroups HAVE_GETGROUPS )
414
check_function_exists( getcwd HAVE_GETCWD )
414
check_function_exists( getcwd HAVE_GETCWD )
415
check_function_exists( dlerror HAVE_DLERROR )
415
check_function_exists( dlerror HAVE_DLERROR )
416
if( NOT HAVE_DLERROR )
417
  check_library_exists( dl dlerror "" HAVE_DLERROR_LIB )
418
  if( HAVE_DLERROR_LIB )
419
    set( HAVE_DLERROR 1 )
420
    set( DLERROR_LIBRARIES dl )
421
  endif( HAVE_DLERROR_LIB )
422
endif( NOT HAVE_DLERROR )
416
check_function_exists( crypt HAVE_CRYPT )
423
check_function_exists( crypt HAVE_CRYPT )
424
if( NOT HAVE_CRYPT )
425
  check_library_exists( crypt crypt "" HAVE_CRYPT_LIB )
426
  if( HAVE_CRYPT_LIB )
427
    set( HAVE_CRYPT 1 )
428
    set( CRYPT_LIBRARIES crypt )
429
  endif( HAVE_CRYPT_LIB )
430
endif( NOT HAVE_CRYPT )
431
if( NOT HAVE_CRYPT )
432
  check_library_exists( c crypt "" HAVE_CRYPT_LIBC )
433
  if( HAVE_CRYPT_LIBC )
434
    set( HAVE_CRYPT 1 )
435
    set( CRYPT_LIBRARIES c )
436
  endif( HAVE_CRYPT_LIBC )
437
endif( NOT HAVE_CRYPT )
417
check_function_exists( bcopy HAVE_BCOPY )
438
check_function_exists( bcopy HAVE_BCOPY )
418
check_function_exists( mmap HAVE_MMAP )
439
check_function_exists( mmap HAVE_MMAP )
419
check_function_exists( munmap HAVE_MUNMAP )
440
check_function_exists( munmap HAVE_MUNMAP )

Return to bug 654