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

(-)CMakeLists.txt.orig (+21 lines)
Lines 36-41 Link Here
36
option( WITH_MAD "Enable MAD mp3 decoder support" ON )
36
option( WITH_MAD "Enable MAD mp3 decoder support" ON )
37
option( WITH_ESOUND "Enable ESOUND support" ${WITH_ALL_OPTIONS} )
37
option( WITH_ESOUND "Enable ESOUND support" ${WITH_ALL_OPTIONS} )
38
option( WITH_JACK "Enable JACK support" ${WITH_ALL_OPTIONS} )
38
option( WITH_JACK "Enable JACK support" ${WITH_ALL_OPTIONS} )
39
option( WITH_SNDIO "Enable SNDIO support" OFF )
39
option( WITH_GCC_VISIBILITY "Enable fvisibility and fvisibility-inlines-hidden" ${WITH_ALL_OPTIONS} )
40
option( WITH_GCC_VISIBILITY "Enable fvisibility and fvisibility-inlines-hidden" ${WITH_ALL_OPTIONS} )
40
41
41
42
Lines 100-105 Link Here
100
set( CMAKE_REQUIRED_LIBRARIES ${bak_CMAKE_REQUIRED_LIBRARIES} )
101
set( CMAKE_REQUIRED_LIBRARIES ${bak_CMAKE_REQUIRED_LIBRARIES} )
101
unset( bak_CMAKE_REQUIRED_LIBRARIES )
102
unset( bak_CMAKE_REQUIRED_LIBRARIES )
102
103
104
if( NOT HAVE_LIBDL )
105
  check_function_exists( dlopen HAVE_DLOPEN )
106
  if( HAVE_DLOPEN )
107
    set( HAVE_LIBDL 1 )
108
  endif( HAVE_DLOPEN )
109
endif( NOT HAVE_LIBDL )
103
110
104
##### check for modules #########################
111
##### check for modules #########################
105
112
Lines 182-187 Link Here
182
    message(FATAL_ERROR "\nJACK support is requested, but `jack.pc` was not found" )
189
    message(FATAL_ERROR "\nJACK support is requested, but `jack.pc` was not found" )
183
  endif( LIBJACK_FOUND )
190
  endif( LIBJACK_FOUND )
184
endif( WITH_JACK )
191
endif( WITH_JACK )
192
193
194
##### check for SNDIO ###########################
195
196
set( HAVE_LIBSNDIO 0 )
197
if( WITH_SNDIO )
198
  check_include_file( "sndio.h" HAVE_SNDIO_H )
199
  if( HAVE_SNDIO_H )
200
    set( HAVE_LIBSNDIO 1 )
201
    set( LIBSNDIO_LIBRARIES "sndio" )
202
  else( HAVE_SNDIO_H )
203
    message(FATAL_ERROR "\nSNDIO support is requested, but `sndio.h` was not found" )
204
  endif( HAVE_SNDIO_H )
205
endif( WITH_SNDIO )
185
206
186
207
187
##### check for glib/gthread modules ############
208
##### check for glib/gthread modules ############

Return to bug 2108