changeset 560:7b4b37819c9d trunk

[svn] made null always build
author kiyoshi
date Sun, 28 Jan 2007 17:41:50 -0800
parents d5782f3bd760
children 914c96de3244
files ChangeLog configure.ac
diffstat 2 files changed, 26 insertions(+), 18 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Sun Jan 28 17:02:41 2007 -0800
+++ b/ChangeLog	Sun Jan 28 17:41:50 2007 -0800
@@ -1,3 +1,27 @@
+2007-01-29 01:02:41 +0000  Daniel Barkalow <barkalow@iabervon.org>
+  revision [1204]
+  Update plugins to the new input plugin API
+  
+  trunk/src/aac/src/libmp4.c             |   22 +++++-----
+  trunk/src/adplug/adplug-xmms.cc        |   24 ++++++-----
+  trunk/src/alac/plugin.c                |   16 +++++--
+  trunk/src/amidi-plug/amidi-plug.c      |   12 ++---
+  trunk/src/amidi-plug/amidi-plug.h      |   10 ++--
+  trunk/src/cdaudio/cdaudio.c            |   28 ++++++------
+  trunk/src/console/Audacious_Driver.cxx |   11 ++---
+  trunk/src/cue/cuesheet.c               |   72 ++++++++++++++++++---------------
+  trunk/src/metronom/metronom.c          |    9 ++--
+  trunk/src/modplug/plugin.cxx           |   11 ++---
+  trunk/src/mpg123/mpg123.c              |   11 ++---
+  trunk/src/sexypsf/xmms.c               |   11 ++---
+  trunk/src/tonegen/tonegen.c            |    8 +--
+  trunk/src/vorbis/vorbis.c              |   21 +++++----
+  trunk/src/wav/wav.c                    |   11 ++---
+  trunk/src/wav/wav.h                    |   10 ++--
+  trunk/src/wma/wma.c                    |   23 +++++-----
+  17 files changed, 170 insertions(+), 140 deletions(-)
+
+
 2007-01-28 22:37:17 +0000  William Pitcock <nenolod@sacredspiral.co.uk>
   revision [1202]
   - fix vorbis fileinfo stuff
--- a/configure.ac	Sun Jan 28 17:02:41 2007 -0800
+++ b/configure.ac	Sun Jan 28 17:41:50 2007 -0800
@@ -94,7 +94,7 @@
 dnl These plugins are always built.
 
 INPUT_PLUGINS="tonegen console sexypsf wav cue alac metronom"
-OUTPUT_PLUGINS="disk_writer"
+OUTPUT_PLUGINS="disk_writer null"
 EFFECT_PLUGINS="audiocompress ladspa voice_removal stereo_plugin echo_plugin"
 GENERAL_PLUGINS="song_change alarm"
 VISUALIZATION_PLUGINS="blur_scope spectrum"
@@ -277,22 +277,6 @@
 	have_coreaudio=no
 fi
 
-dnl *** Null Audio
-
-AC_ARG_ENABLE(null,
-    [  --disable-null          disable Null Audio output plugin (default=enabled)],
-    [enable_null=$enableval],
-    [enable_null="yes"]
-)
-
-if test "$enable_null" = "yes"; then
-	have_null=yes
-	OUTPUT_PLUGINS="$OUTPUT_PLUGINS null"
-else
-	AC_MSG_RESULT([*** Null Audio output plugin disabled per user request ***])
-	have_null=no
-fi
-
 dnl *** AltiVec
 
 AC_CHECK_HEADERS(altivec.h,
@@ -1180,7 +1164,7 @@
 echo "  BSD/SUN audio output (sun):             $have_sun"
 echo "  PulseAudio sound server (pulse_audio):  $have_pulse"
 echo "  Mac OS X sound support (CoreAudio):     $have_coreaudio"
-echo "  Null Audio output (null):               $have_null"
+echo "  Null Audio output (null):               yes"
 echo
 echo "  Input Plugins"
 echo "  -------------"