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

(-)tdegraphics/ksvg/ConfigureChecks.cmake (+2 lines)
Lines 41-47 Link Here
41
# fribidi
41
# fribidi
42
pkg_search_module( FRIBIDI fribidi )
42
pkg_search_module( FRIBIDI fribidi )
43
if( FRIBIDI_FOUND )
43
if( FRIBIDI_FOUND )
44
  tde_save_and_set( CMAKE_REQUIRED_INCLUDES ${FRIBIDI_INCLUDE_DIRS} )
44
  check_include_file( fribidi/fribidi-types.h FRIBIDI_NEW_FILENAME )
45
  check_include_file( fribidi/fribidi-types.h FRIBIDI_NEW_FILENAME )
46
  tde_restore( CMAKE_REQUIRED_INCLUDES  )
45
else( )
47
else( )
46
  tde_message_fatal( "fribidi is required, but was not found on your system" )
48
  tde_message_fatal( "fribidi is required, but was not found on your system" )
47
endif( )
49
endif( )

Return to bug 1311