diff options
author | Robin KAY <komadori@users.sourceforge.net> | 2002-12-20 01:35:49 +0000 |
---|---|---|
committer | Robin KAY <komadori@users.sourceforge.net> | 2002-12-20 01:35:49 +0000 |
commit | e497eb1f9172f0e620e807a99b3379b7348d6410 (patch) | |
tree | 40567861b773c17641df8fed551032382a59c42c /src/demuxers | |
parent | 217ed50549e44bf3f6d0e4d812629833b4d13d88 (diff) | |
download | xine-lib-e497eb1f9172f0e620e807a99b3379b7348d6410.tar.gz xine-lib-e497eb1f9172f0e620e807a99b3379b7348d6410.tar.bz2 |
MNG demuxer added
CVS patchset: 3591
CVS date: 2002/12/20 01:35:49
Diffstat (limited to 'src/demuxers')
-rw-r--r-- | src/demuxers/Makefile.am | 33 |
1 files changed, 13 insertions, 20 deletions
diff --git a/src/demuxers/Makefile.am b/src/demuxers/Makefile.am index f8cca61fb..fd7ed203b 100644 --- a/src/demuxers/Makefile.am +++ b/src/demuxers/Makefile.am @@ -10,34 +10,23 @@ if HAVE_VORBIS ogg_module = xineplug_dmx_ogg.la endif -#if HAVE_ZLIB -#qt_modules = xineplug_dmx_qt.la -#endif - if BUILD_ASF asf_module = xineplug_dmx_asf.la endif +if HAVE_LIBMNG +mng_module = xineplug_dmx_mng.la +endif + ## # IMPORTANT: # --------- # All of xine demuxer plugins should be named like the scheme "xineplug_dmx_" -#lib_LTLIBRARIES = $(ogg_module) $(asf_module) $(qt_modules) 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_cda.la xineplug_dmx_film.la \ -# xineplug_dmx_roq.la xineplug_dmx_fli.la \ -# xineplug_dmx_smjpeg.la xineplug_dmx_wav.la \ -# xineplug_dmx_idcin.la xineplug_dmx_wc3movie.la \ -# xineplug_dmx_vqa.la xineplug_dmx_voc.la \ -# xineplug_dmx_aiff.la xineplug_dmx_snd.la \ -# xineplug_dmx_yuv4mpeg2.la xineplug_dmx_real.la -# xineplug_dmx_mpeg_pes.la xineplug_dmx_mpeg_ts.la - XINELIB = $(top_builddir)/src/xine-engine/libxine.la -lib_LTLIBRARIES = $(ogg_module) $(asf_module) xineplug_dmx_avi.la\ +lib_LTLIBRARIES = $(ogg_module) $(asf_module) $(mng_module) \ + xineplug_dmx_avi.la\ xineplug_dmx_mpeg_block.la \ xineplug_dmx_mpeg.la \ xineplug_dmx_mpeg_audio.la \ @@ -59,11 +48,11 @@ lib_LTLIBRARIES = $(ogg_module) $(asf_module) xineplug_dmx_avi.la\ xineplug_dmx_real.la \ xineplug_dmx_realaudio.la \ xineplug_dmx_eawve.la \ - xineplug_dmx_mpeg_ts.la + xineplug_dmx_mpeg_ts.la \ + xineplug_dmx_mng.la xineplug_dmx_ogg_la_SOURCES = demux_ogg.c -xineplug_dmx_ogg_la_LIBADD = $(OGG_LIBS) $(VORBIS_LIBS)\ - $(XINELIB) +xineplug_dmx_ogg_la_LIBADD = $(OGG_LIBS) $(VORBIS_LIBS) $(XINELIB) xineplug_dmx_ogg_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@ xineplug_dmx_avi_la_SOURCES = demux_avi.c @@ -166,6 +155,10 @@ xineplug_dmx_eawve_la_SOURCES = demux_eawve.c xineplug_dmx_eawve_la_LIBADD = $(XINELIB) xineplug_dmx_eawve_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@ +xineplug_dmx_mng_la_SOURCES = demux_mng.c +xineplug_dmx_mng_la_LIBADD = $(XINELIB) $(ZLIB_LIBS) $(MNG_LIBS) +xineplug_dmx_mng_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@ + include_HEADERS = demux.h noinst_HEADERS = asfheader.h qtpalette.h |