|
|
|
@ -35,6 +35,7 @@ option( WITH_AUDIOFILE "Enable audiofile (wav) support" ON )
|
|
|
|
|
option( WITH_VORBIS "Enable Ogg/Vorbis support" ON )
|
|
|
|
|
option( WITH_MAD "Enable MAD mp3 decoder support" ON )
|
|
|
|
|
option( WITH_ESOUND "Enable ESOUND support" ${WITH_ALL_OPTIONS} )
|
|
|
|
|
option( WITH_JACK "Enable JACK support" ${WITH_ALL_OPTIONS} )
|
|
|
|
|
option( WITH_GCC_VISIBILITY "Enable fvisibility and fvisibility-inlines-hidden" ${WITH_ALL_OPTIONS} )
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -165,6 +166,19 @@ if( WITH_ESOUND )
|
|
|
|
|
endif( WITH_ESOUND )
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
##### check for JACK ############################
|
|
|
|
|
|
|
|
|
|
set( HAVE_LIBJACK 0 )
|
|
|
|
|
if( WITH_JACK )
|
|
|
|
|
pkg_search_module( LIBJACK jack )
|
|
|
|
|
if( LIBJACK_FOUND )
|
|
|
|
|
set( HAVE_LIBJACK 1 )
|
|
|
|
|
else( LIBJACK_FOUND )
|
|
|
|
|
message(FATAL_ERROR "\nJACK support is requested, but `jack.pc` was not found" )
|
|
|
|
|
endif( LIBJACK_FOUND )
|
|
|
|
|
endif( WITH_JACK )
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
##### check for glib/gthread modules ############
|
|
|
|
|
|
|
|
|
|
pkg_search_module( GLIB2 glib-2.0 )
|
|
|
|
|