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

(-)kpowersave-nohal/ConfigureChecks.cmake (-13 lines)
Lines 9-27 Link Here
9
#
9
#
10
#################################################
10
#################################################
11
11
12
# check for hal
13
pkg_search_module( HAL hal )
14
if( HAL_FOUND )
15
  if( ${HAL_VERSION} VERSION_LESS "0.5.10" )
16
    tde_message_fatal( "your hal version is too old; at least 0.5.10 is required" )
17
  else( )
18
    set( HAVE_HAL_0_5_10 1 )
19
  endif( )
20
else( )
21
  tde_message_fatal( "hal are requested, but not found on your system" )
22
endif( )
23
24
25
# check for Xext
12
# check for Xext
26
pkg_search_module( XEXT xext )
13
pkg_search_module( XEXT xext )
27
if( NOT XEXT_FOUND )
14
if( NOT XEXT_FOUND )

Return to bug 1186