comparison configure.ac @ 560:7b4b37819c9d trunk

[svn] made null always build
author kiyoshi
date Sun, 28 Jan 2007 17:41:50 -0800
parents fe2c60ca8c98
children 550c9e382cf8
comparison
equal deleted inserted replaced
559:d5782f3bd760 560:7b4b37819c9d
92 ) 92 )
93 93
94 dnl These plugins are always built. 94 dnl These plugins are always built.
95 95
96 INPUT_PLUGINS="tonegen console sexypsf wav cue alac metronom" 96 INPUT_PLUGINS="tonegen console sexypsf wav cue alac metronom"
97 OUTPUT_PLUGINS="disk_writer" 97 OUTPUT_PLUGINS="disk_writer null"
98 EFFECT_PLUGINS="audiocompress ladspa voice_removal stereo_plugin echo_plugin" 98 EFFECT_PLUGINS="audiocompress ladspa voice_removal stereo_plugin echo_plugin"
99 GENERAL_PLUGINS="song_change alarm" 99 GENERAL_PLUGINS="song_change alarm"
100 VISUALIZATION_PLUGINS="blur_scope spectrum" 100 VISUALIZATION_PLUGINS="blur_scope spectrum"
101 CONTAINER_PLUGINS="m3u pls stdio" 101 CONTAINER_PLUGINS="m3u pls stdio"
102 102
273 OUTPUT_PLUGINS="$OUTPUT_PLUGINS CoreAudio"], 273 OUTPUT_PLUGINS="$OUTPUT_PLUGINS CoreAudio"],
274 [have_coreaudio=no]) 274 [have_coreaudio=no])
275 else 275 else
276 AC_MSG_RESULT([*** CoreAudio output plugin disabled per user request ***]) 276 AC_MSG_RESULT([*** CoreAudio output plugin disabled per user request ***])
277 have_coreaudio=no 277 have_coreaudio=no
278 fi
279
280 dnl *** Null Audio
281
282 AC_ARG_ENABLE(null,
283 [ --disable-null disable Null Audio output plugin (default=enabled)],
284 [enable_null=$enableval],
285 [enable_null="yes"]
286 )
287
288 if test "$enable_null" = "yes"; then
289 have_null=yes
290 OUTPUT_PLUGINS="$OUTPUT_PLUGINS null"
291 else
292 AC_MSG_RESULT([*** Null Audio output plugin disabled per user request ***])
293 have_null=no
294 fi 278 fi
295 279
296 dnl *** AltiVec 280 dnl *** AltiVec
297 281
298 AC_CHECK_HEADERS(altivec.h, 282 AC_CHECK_HEADERS(altivec.h,
1178 echo " Jack Audio Connection Kit (jack): $have_jack" 1162 echo " Jack Audio Connection Kit (jack): $have_jack"
1179 echo " Analog Realtime Synthesizer (arts): $have_arts" 1163 echo " Analog Realtime Synthesizer (arts): $have_arts"
1180 echo " BSD/SUN audio output (sun): $have_sun" 1164 echo " BSD/SUN audio output (sun): $have_sun"
1181 echo " PulseAudio sound server (pulse_audio): $have_pulse" 1165 echo " PulseAudio sound server (pulse_audio): $have_pulse"
1182 echo " Mac OS X sound support (CoreAudio): $have_coreaudio" 1166 echo " Mac OS X sound support (CoreAudio): $have_coreaudio"
1183 echo " Null Audio output (null): $have_null" 1167 echo " Null Audio output (null): yes"
1184 echo 1168 echo
1185 echo " Input Plugins" 1169 echo " Input Plugins"
1186 echo " -------------" 1170 echo " -------------"
1187 echo " MPEG 1/2/3 (mpg123): $enable_mp3" 1171 echo " MPEG 1/2/3 (mpg123): $enable_mp3"
1188 echo " MPEG 4 Audio (AAC): $enable_aac" 1172 echo " MPEG 4 Audio (AAC): $enable_aac"