diff options
author | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2002-09-18 06:52:10 +0000 |
---|---|---|
committer | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2002-09-18 06:52:10 +0000 |
commit | 81e538693a2453d879328478443a26cc8786d8f4 (patch) | |
tree | dbde5a33fcbb243cd188804514de9bc0876b6934 /src | |
parent | 8532d86f1dba2ee204dc63bfdef97170625898d7 (diff) | |
download | xine-lib-81e538693a2453d879328478443a26cc8786d8f4.tar.gz xine-lib-81e538693a2453d879328478443a26cc8786d8f4.tar.bz2 |
OGG/VORBIS etc. checking is broken in ./cvscompile.sh.
Disable OGG/VORBIS etc. until ./cvscompile.sh works.
Problem is that ./cvscompile.sh responds with OGG/VORBIS not present every time.
CVS patchset: 2683
CVS date: 2002/09/18 06:52:10
Diffstat (limited to 'src')
-rw-r--r-- | src/demuxers/Makefile.am | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/demuxers/Makefile.am b/src/demuxers/Makefile.am index f083fb5fe..99c5375a4 100644 --- a/src/demuxers/Makefile.am +++ b/src/demuxers/Makefile.am @@ -4,18 +4,19 @@ LIBTOOL = $(SHELL) $(top_builddir)/libtool-nofpic libdir = $(XINE_PLUGINDIR) +# Sensing of OGG/VORBIS, ZLIB and ASF is broken in cvscompile.sh. -#if HAVE_VORBIS +if HAVE_VORBIS ogg_module = xineplug_dmx_ogg.la -#endif +endif -#if HAVE_ZLIB +if HAVE_ZLIB qt_modules = xineplug_dmx_qt.la -#endif +endif -#if BUILD_ASF +if BUILD_ASF asf_module = xineplug_dmx_asf.la -#endif +endif ## # IMPORTANT: |