diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2001-12-08 13:48:26 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2001-12-08 13:48:26 +0000 |
commit | 27c10a661bfa99b67f44fe6c6c5428bf14247c68 (patch) | |
tree | edc0a03e21eb595539e5ad6085b110ec977ba2f5 /src | |
parent | e942d45c59203d6ba59988910dc32ec46f830e8f (diff) | |
download | xine-lib-27c10a661bfa99b67f44fe6c6c5428bf14247c68.tar.gz xine-lib-27c10a661bfa99b67f44fe6c6c5428bf14247c68.tar.bz2 |
Turned altivec on by default. Made asf build optional.
CVS patchset: 1182
CVS date: 2001/12/08 13:48:26
Diffstat (limited to 'src')
-rw-r--r-- | src/demuxers/Makefile.am | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/demuxers/Makefile.am b/src/demuxers/Makefile.am index e1d311d88..fc121d011 100644 --- a/src/demuxers/Makefile.am +++ b/src/demuxers/Makefile.am @@ -13,16 +13,20 @@ if HAVE_ZLIB qt_modules = xineplug_dmx_qt.la endif +if BUILD_ASF +asf_module = xineplug_dmx_asf.la +endif + ## # IMPORTANT: # --------- # All of xine demuxer plugins should be named like the scheme "xineplug_dmx_" # -lib_LTLIBRARIES = $(ogg_module) $(qt_modules) xineplug_dmx_avi.la \ +lib_LTLIBRARIES = $(ogg_module) $(qt_modules) $(asf_module) xineplug_dmx_avi.la \ xineplug_dmx_mpeg_block.la xineplug_dmx_mpeg.la \ xineplug_dmx_mpeg_elem.la xineplug_dmx_mpeg_audio.la \ xineplug_dmx_mpeg_pes.la xineplug_dmx_mpeg_ts.la \ - xineplug_dmx_asf.la xineplug_dmx_cda.la + xineplug_dmx_cda.la xineplug_dmx_ogg_la_SOURCES = demux_ogg.c xineplug_dmx_ogg_la_LIBADD = @OGG_LIBS@ |