diff options
author | Juergen Keil <jkeil@users.sourceforge.net> | 2001-10-08 11:15:44 +0000 |
---|---|---|
committer | Juergen Keil <jkeil@users.sourceforge.net> | 2001-10-08 11:15:44 +0000 |
commit | 9792be69d58f41b023102764f1c998a538230b95 (patch) | |
tree | 995917a3f6c7eadbec5729a02be65919ea92326b | |
parent | 84cde428e0b93a511d7a29858af8bb27a59102f5 (diff) | |
download | xine-lib-9792be69d58f41b023102764f1c998a538230b95.tar.gz xine-lib-9792be69d58f41b023102764f1c998a538230b95.tar.bz2 |
Conditional compilation of the 'ogg' demuxer; don't compile it when ogg/vorbis
stuff is not available on the system
CVS patchset: 766
CVS date: 2001/10/08 11:15:44
-rw-r--r-- | src/demuxers/Makefile.am | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/demuxers/Makefile.am b/src/demuxers/Makefile.am index 227b268e6..4de7bbfd6 100644 --- a/src/demuxers/Makefile.am +++ b/src/demuxers/Makefile.am @@ -4,12 +4,17 @@ LIBTOOL = $(SHELL) $(top_builddir)/libtool-nofpic libdir = $(XINE_PLUGINDIR) + +if HAVE_VORBIS +ogg_module = xineplug_dmx_ogg.la +endif + ## # IMPORTANT: # --------- # All of xine demuxer plugins should be named like the scheme "xineplug_dmx_" # -lib_LTLIBRARIES = xineplug_dmx_ogg.la xineplug_dmx_avi.la \ +lib_LTLIBRARIES = $(ogg_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 \ |