diff options
author | Matt Messier <mmessier@grapetv.org> | 2007-05-12 14:18:38 -0400 |
---|---|---|
committer | Matt Messier <mmessier@grapetv.org> | 2007-05-12 14:18:38 -0400 |
commit | aa6b402b7a240b6f55c063b021c5c211f46ec8bd (patch) | |
tree | a4c14e2633b549f8d2ffe3d1bef9363a4c771cb3 /src/libxineadec | |
parent | 67b0ebb21185cb8ea2972dead6870bab8306724e (diff) | |
download | xine-lib-aa6b402b7a240b6f55c063b021c5c211f46ec8bd.tar.gz xine-lib-aa6b402b7a240b6f55c063b021c5c211f46ec8bd.tar.bz2 |
More configure/Makefile cleanups
-- Make a pass at cleaning up contrib/ Makefile.am files
-- Rename many AM_CONDITIONALS for consistency and give them better names to
better indicate what they mean
-- Remove some dead input plugin tests
-- Clean up AM_PATH_DVDNAV
Diffstat (limited to 'src/libxineadec')
-rw-r--r-- | src/libxineadec/Makefile.am | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libxineadec/Makefile.am b/src/libxineadec/Makefile.am index e65024184..474dda1a1 100644 --- a/src/libxineadec/Makefile.am +++ b/src/libxineadec/Makefile.am @@ -7,19 +7,19 @@ SUBDIRS = gsm610 nosefart EXTRA_DIST = fooaudio.c -if HAVE_VORBIS +if ENABLE_VORBIS vorbis_module = xineplug_decode_vorbis.la endif -if HAVE_SPEEX +if ENABLE_SPEEX speex_module = xineplug_decode_speex.la endif -if MUSEPACK +if ENABLE_MUSEPACK musepack_module = xineplug_decode_mpc.la endif -if DTS +if ENABLE_DTS dts_module = xineplug_decode_dts.la endif |