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

(-)a/ConfigureChecks.cmake (-2 / +12 lines)
Lines 237-249 if( WITH_OPENGL ) Link Here
237
      tde_message_fatal( "opengl is requested and found, but it doesn't provides glXChooseVisual() or GL/glx.h" )
237
      tde_message_fatal( "opengl is requested and found, but it doesn't provides glXChooseVisual() or GL/glx.h" )
238
    endif( )
238
    endif( )
239
  else( )
239
  else( )
240
    tde_message_fatal( "opengl is requested, but not found on your system" )
240
    check_library_exists( GL glXChooseVisual "" HAVE_GLXCHOOSEVISUAL )
241
    if( HAVE_GLXCHOOSEVISUAL )
242
      set( GL_LIBRARIES "GL" )
243
    else( HAVE_GLXCHOOSEVISUAL )
244
      tde_message_fatal( "opengl is requested, but not found on your system" )
245
    endif( HAVE_GLXCHOOSEVISUAL )
241
  endif( )
246
  endif( )
242
247
243
  if( BUILD_KCONTROL )
248
  if( BUILD_KCONTROL )
244
    pkg_search_module( GLU glu )
249
    pkg_search_module( GLU glu )
245
    if( NOT GLU_FOUND )
250
    if( NOT GLU_FOUND )
246
      tde_message_fatal( "glu is required, but not found on your system" )
251
      check_library_exists( GLU gluGetString "" HAVE_GLUGETSTRING )
252
      if( HAVE_GLUGETSTRING )
253
        set( GLU_LIBRARIES "GLU" )
254
      else( HAVE_GLUGETSTRING )
255
        tde_message_fatal( "glu is required, but not found on your system" )
256
      endif( HAVE_GLUGETSTRING )
247
    endif( )
257
    endif( )
248
  endif( BUILD_KCONTROL )
258
  endif( BUILD_KCONTROL )
249
259

Return to bug 2155