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

(-)a/ConfigureChecks.cmake (-2 / +5 lines)
Lines 53-61 if( NOT LIBXML_FOUND ) Link Here
53
  tde_message_fatal( "libxml at least 2.6.0 is required, but not found on your system" )
53
  tde_message_fatal( "libxml at least 2.6.0 is required, but not found on your system" )
54
endif( NOT LIBXML_FOUND )
54
endif( NOT LIBXML_FOUND )
55
55
56
pkg_search_module( LIBXSLT libxslt>=1.0.19 )
56
pkg_search_module( LIBXSLT libexslt>=0.8.0 )
57
if( NOT LIBXSLT_FOUND )
57
if( NOT LIBXSLT_FOUND )
58
  tde_message_fatal( "libxslt at least 1.0.19 is required, but not found on your system" )
58
  pkg_search_module( LIBXSLT libxslt>=1.0.19 )
59
  if( NOT LIBXSLT_FOUND )
60
    tde_message_fatal( "libxslt at least 1.0.19 is required, but not found on your system" )
61
  endif( )
59
endif( NOT LIBXSLT_FOUND )
62
endif( NOT LIBXSLT_FOUND )
60
63
61
pkg_search_module( TAGLIB taglib )
64
pkg_search_module( TAGLIB taglib )

Return to bug 2701