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

(-) (-3 / +8 lines)
Line  Link Here
-- tdegraphics/libkscan/ConfigureChecks.cmake
Lines 39-46 Link Here
39
  string( REGEX REPLACE "(^| )-I" ";" SANE_INCLUDE_DIRS "${SANE_INCLUDE_DIRS}" )
39
  string( REGEX REPLACE "(^| )-I" ";" SANE_INCLUDE_DIRS "${SANE_INCLUDE_DIRS}" )
40
endif( )
40
endif( )
41
if( SANE_LIBRARIES )
41
if( SANE_LIBRARIES )
42
  string( REGEX REPLACE "(^| )-l" ";" SANE_LIBRARIES "${SANE_LIBRARIES}" )
42
  ## remove all spaces and replace whitespace with ';'
43
  string( REPLACE " " "" SANE_LIBRARIES "${SANE_LIBRARIES}" )
43
  string( REGEX REPLACE "[ ]+" ";" SANE_LIBRARIES "${SANE_LIBRARIES}" )
44
  ## remove all non-library information
45
  string( REGEX REPLACE ";[-][^l]([^ ;])+" "" SANE_LIBRARIES "${SANE_LIBRARIES}" )
46
  ## remove multiple ';'
47
  string( REGEX REPLACE "[;]+" ";" SANE_LIBRARIES "${SANE_LIBRARIES}" )
48
  ## remove '-l'
49
  string( REGEX REPLACE "-l" "" SANE_LIBRARIES "${SANE_LIBRARIES}" )
44
endif( )
50
endif( )
45
51
46
if( NOT HAVE_SANE )
52
if( NOT HAVE_SANE )

Return to bug 901