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

(-)a/ConfigureChecks.cmake (-1 / +6 lines)
Lines 74-80 if( BUILD_NOATUN_PLUGINS ) Link Here
74
  if( WITH_SDL )
74
  if( WITH_SDL )
75
    pkg_search_module( SDL sdl )
75
    pkg_search_module( SDL sdl )
76
    if( NOT SDL_FOUND )
76
    if( NOT SDL_FOUND )
77
      tde_message_fatal( "SDL is requested, but was not found on your system" )
77
      check_include_file( SDL/SDL.h HAVE_SDL_H )
78
      if( NOT HAVE_SDL_H )
79
        tde_message_fatal( "SDL is requested, but was not found on your system" )
80
      endif ( )
81
      set ( SDL_INCLUDE_DIRS /usr/include/SDL )
82
      set ( SDL_LIBRARIES SDL pthread )
78
    endif( )
83
    endif( )
79
  endif( WITH_SDL )
84
  endif( WITH_SDL )
80
85

Return to bug 2488