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

(-)a/CMakeLists.txt (+4 lines)
Lines 694-700 endif( ) Link Here
694
if( WITH_CRYPTSETUP )
694
if( WITH_CRYPTSETUP )
695
  pkg_search_module( LIBCRYPTSETUP libcryptsetup )
695
  pkg_search_module( LIBCRYPTSETUP libcryptsetup )
696
  if( NOT LIBCRYPTSETUP_FOUND )
696
  if( NOT LIBCRYPTSETUP_FOUND )
697
    find_library( LIBCRYPTSETUP_LIBRARY cryptsetup )
698
    if( NOT LIBCRYPTSETUP_LIBRARY )
697
      message(FATAL_ERROR "\ncryptsetup support was requested, but libcryptsetup was not found on your system" )
699
      message(FATAL_ERROR "\ncryptsetup support was requested, but libcryptsetup was not found on your system" )
700
    endif ( NOT LIBCRYPTSETUP_LIBRARY )
701
    set( LIBCRYPTSETUP_LIBRARIES ${LIBCRYPTSETUP_LIBRARY} )
698
  endif( NOT LIBCRYPTSETUP_FOUND )
702
  endif( NOT LIBCRYPTSETUP_FOUND )
699
  set( HAVE_CRYPTSETUP 1 )
703
  set( HAVE_CRYPTSETUP 1 )
700
  if ( HAVE_CRYPTSETUP )
704
  if ( HAVE_CRYPTSETUP )

Return to bug 2651