changeset 50:e7b06c2bd4e1 trunk

[svn] flac output
author msameer
date Thu, 27 Oct 2005 12:15:53 -0700
parents 87f7ceb96ab5
children 82fa2e996291
files configure.ac
diffstat 1 files changed, 15 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/configure.ac	Thu Oct 27 12:02:46 2005 -0700
+++ b/configure.ac	Thu Oct 27 12:15:53 2005 -0700
@@ -354,6 +354,18 @@
 fi
 AM_CONDITIONAL(HAVE_MIKMOD,test "x$have_mikmod" = xyes)
 
+dnl *** flac
+AC_ARG_ENABLE( flc,
+[  --disable-flac        Disable flac input plugin [default=enabled]],,
+                enable_flac="yes")
+
+if test "x$enable_flac" = xyes; then
+        AM_PATH_LIBFLAC(have_flac=yes, have_flac=no)
+else
+        AC_MSG_RESULT([*** flac plugin disabled per user request ***])
+        have_flac=no
+fi
+AM_CONDITIONAL(HAVE_FLAC,test "x$have_flac" = xyes)
 
 dnl *** OSS output
 
@@ -657,6 +669,8 @@
         Input/vorbis/Makefile
         Input/cdaudio/Makefile
         Input/wav/Makefile
+	Input/flac/Makefile
+	Input/flac/plugin_common/Makefile
         Visualization/Makefile
         Visualization/blur_scope/Makefile
 	Visualization/libvisual-proxy/Makefile
@@ -708,6 +722,7 @@
 echo "  Microsoft WAV (wav):                    yes"
 echo "  Tone Generator:                         yes"
 echo "  Ogg Vorbis (vorbis):                    $have_oggvorbis"
+echo "  FLAC:                                   $enable_flac"
 echo ""
 echo "  Visualization"
 echo "  -------------"