diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-01-24 04:57:26 +0000 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-01-24 04:57:26 +0000 |
commit | 36b6f72e271737a87464c34e5a123d22f1ed09be (patch) | |
tree | 38171e87d42bffe00ecba1e6d003b3e83771f36f /configure.ac | |
parent | 5b037e760306c6f4c90aa133a083cacbcd38c2d5 (diff) | |
download | xine-lib-36b6f72e271737a87464c34e5a123d22f1ed09be.tar.gz xine-lib-36b6f72e271737a87464c34e5a123d22f1ed09be.tar.bz2 |
Create a new wavpack plugin with both the old demuxer and a new decoder. To simplify categorising, I've created a new combined directory to put plugins like wavpack (or libflac) that carries both a demuxer and a decoder in a single bundle -- I expect it being used more in the future.
CVS patchset: 8551
CVS date: 2007/01/24 04:57:26
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 41155d370..9d7c568d8 100644 --- a/configure.ac +++ b/configure.ac @@ -2601,6 +2601,7 @@ misc/xine-lib.spec po/Makefile.in src/Makefile src/audio_out/Makefile +src/combined/Makefile src/demuxers/Makefile src/dxr3/Makefile src/input/Makefile @@ -2773,7 +2774,7 @@ if test "x$have_libflac" = "xyes"; then echo " - FLAC (with libFLAC)" fi if test "x$have_wavpack" = "xyes"; then - echo " - wavpack" + echo " - WavPack" fi if test "x$enable_a52dec" = "xyes"; then if test "x$have_a52" = "xyes"; then @@ -2889,6 +2890,9 @@ if test "x$enable_musepack" != "xno"; then echo " - MusePack (internal library)" fi fi +if test "x$have_wavpack" = "xyes"; then + echo " - WavPack" +fi echo "" dnl spu decoders |