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

(-)ConfigureChecks.cmake.ORI (-2 / +7 lines)
Lines 88-94 Link Here
88
88
89
  pkg_search_module( SDL sdl )
89
  pkg_search_module( SDL sdl )
90
  if( NOT SDL_FOUND )
90
  if( NOT SDL_FOUND )
91
    tde_message_fatal( "SDL are required, but not found on your system" )
91
    check_include_file( SDL/SDL.h HAVE_SDL_H )
92
    if( NOT HAVE_SDL_H )
93
      tde_message_fatal( "SDL are required, but not found on your system" )
94
    endif ( )
95
    set ( SDL_INCLUDE_DIRS /usr/include/SDL )
96
    set ( SDL_LIBRARIES SDL pthread )
92
  endif( )
97
  endif( )
93
98
94
  pkg_search_module( LIBVISUAL libvisual-0.4 )
99
  pkg_search_module( LIBVISUAL libvisual-0.4 )
Lines 163-169 Link Here
163
  set( CMAKE_REQUIRED_DEFINITIONS ${TQT_CFLAGS_OTHER} )
168
  set( CMAKE_REQUIRED_DEFINITIONS ${TQT_CFLAGS_OTHER} )
164
  set( CMAKE_REQUIRED_INCLUDES ${TDE_INCLUDE_DIR};${TQT_INCLUDE_DIRS};${CMAKE_INCLUDE_PATH} )
169
  set( CMAKE_REQUIRED_INCLUDES ${TDE_INCLUDE_DIR};${TQT_INCLUDE_DIRS};${CMAKE_INCLUDE_PATH} )
165
  set( CMAKE_REQUIRED_FLAGS "-include tqt.h" )
170
  set( CMAKE_REQUIRED_FLAGS "-include tqt.h" )
166
  set( CMAKE_REQUIRED_LIBRARIES -L${TQT_LIBRARY_DIRS} ${TQT_LIBRARIES} )
171
  set( CMAKE_REQUIRED_LIBRARIES -L${TQT_LIBRARY_DIRS} -L${QT_LIBRARY_DIRS} ${TQT_LIBRARIES} )
167
  check_cxx_source_compiles("
172
  check_cxx_source_compiles("
168
    #include <konqsidebarplugin.h>
173
    #include <konqsidebarplugin.h>
169
    int main(int, char**) { return 0; } "
174
    int main(int, char**) { return 0; } "

Return to bug 984