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

(-)a/ConfigureChecks.cmake (+9 lines)
Lines 83-88 if( WITH_XRENDER OR BUILD_KDESKTOP OR BUILD_KONSOLE OR BUILD_KCONTROL OR BUILD_K Link Here
83
endif( )
83
endif( )
84
84
85
85
86
# xrender (kcontrol, twin)
87
if( WITH_XRANDR )
88
  pkg_search_module( XRANDR xrandr )
89
  if( NOT XRANDR_FOUND )
90
    tde_message_fatal( "xrandr are requested, but not found on your system" )
91
  endif( )
92
endif( )
93
94
86
# xcursor (tdeioslave, kcontrol)
95
# xcursor (tdeioslave, kcontrol)
87
if( WITH_XCURSOR )
96
if( WITH_XCURSOR )
88
  pkg_search_module( XCURSOR xcursor )
97
  pkg_search_module( XCURSOR xcursor )
(-)a/kcontrol/ConfigureChecks.cmake (-11 lines)
Lines 45-60 else( ) Link Here
45
endif( )
45
endif( )
46
46
47
47
48
##### check for Xrandr ##########################
49
50
if( WITH_XRANDR )
51
  pkg_search_module( XRANDR xrandr )
52
  if( NOT XRANDR_FOUND )
53
    tde_message_fatal( "xrandr are requested, but not found on your system" )
54
  endif( )
55
endif( )
56
57
58
##### check for libusb ##########################
48
##### check for libusb ##########################
59
49
60
if( WITH_LIBUSB )
50
if( WITH_LIBUSB )
61
- 

Return to bug 2028