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

(-)arts.ORI/CMakeLists.txt (+14 lines)
Lines 34-39 Link Here
34
option( WITH_VORBIS "Enable Ogg/Vorbis support" ON )
34
option( WITH_VORBIS "Enable Ogg/Vorbis support" ON )
35
option( WITH_MAD "Enable MAD mp3 decoder support" ON )
35
option( WITH_MAD "Enable MAD mp3 decoder support" ON )
36
option( WITH_ESOUND "Enable ESOUND support" OFF )
36
option( WITH_ESOUND "Enable ESOUND support" OFF )
37
option( WITH_JACK "Enable JACK support" OFF )
37
38
38
39
39
##### paths setup ###############################
40
##### paths setup ###############################
Lines 163-168 Link Here
163
endif( WITH_ESOUND )
164
endif( WITH_ESOUND )
164
165
165
166
167
##### check for JACK ############################
168
169
set( HAVE_LIBJACK 0 )
170
if( WITH_JACK )
171
  pkg_search_module( LIBJACK jack )
172
  if( LIBJACK_FOUND )
173
    set( HAVE_LIBJACK 1 )
174
  else( LIBJACK_FOUND )
175
    message(FATAL_ERROR "\nJACK support is requested, but `jack.pc` was not found" )
176
  endif( LIBJACK_FOUND )
177
endif( WITH_JACK )
178
179
166
##### check for glib/gthread modules ############
180
##### check for glib/gthread modules ############
167
181
168
pkg_search_module( GLIB2 glib-2.0 )
182
pkg_search_module( GLIB2 glib-2.0 )
(-)arts.ORI/config.h.cmake (+2 lines)
Lines 34-36 Link Here
34
#cmakedefine HAVE_SYS_SOUNDCARD_H 1
34
#cmakedefine HAVE_SYS_SOUNDCARD_H 1
35
#cmakedefine HAVE_LIBPTHREAD 1
35
#cmakedefine HAVE_LIBPTHREAD 1
36
#define HAVE_IOCTL_INT_ULONGINT_DOTS 3
36
#define HAVE_IOCTL_INT_ULONGINT_DOTS 3
37
38
#cmakedefine HAVE_LIBJACK 1
(-)arts.ORI/flow/CMakeLists.txt (-1 / +1 lines)
Lines 66-72 Link Here
66
tde_add_library( ${target} SHARED
66
tde_add_library( ${target} SHARED
67
  SOURCES ${${target}_SRCS}
67
  SOURCES ${${target}_SRCS}
68
  VERSION 1.0.0
68
  VERSION 1.0.0
69
  LINK artsgsl-static artsgslpp-static artsflow_idl-shared ${AUDIOFILE_LIBRARIES}
69
  LINK artsgsl-static artsgslpp-static artsflow_idl-shared ${AUDIOFILE_LIBRARIES} ${LIBJACK_LIBRARIES}
70
  DESTINATION ${LIB_INSTALL_DIR}
70
  DESTINATION ${LIB_INSTALL_DIR}
71
)
71
)
72
72

Return to bug 747