diff options
author | Stefan Holst <holstsn@users.sourceforge.net> | 2003-03-23 17:12:26 +0000 |
---|---|---|
committer | Stefan Holst <holstsn@users.sourceforge.net> | 2003-03-23 17:12:26 +0000 |
commit | a3d1eac9b0f3acac4a0bea2e31b2a26be7ae8c2f (patch) | |
tree | ccdcd2f2af05377d53c9e50054af018cf9b2f0c4 /src/demuxers/Makefile.am | |
parent | 7a43582b9692b0dca7b026553812373bf24d4db2 (diff) | |
download | xine-lib-a3d1eac9b0f3acac4a0bea2e31b2a26be7ae8c2f.tar.gz xine-lib-a3d1eac9b0f3acac4a0bea2e31b2a26be7ae8c2f.tar.bz2 |
png image support
CVS patchset: 4472
CVS date: 2003/03/23 17:12:26
Diffstat (limited to 'src/demuxers/Makefile.am')
-rw-r--r-- | src/demuxers/Makefile.am | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/demuxers/Makefile.am b/src/demuxers/Makefile.am index 27cf845ae..c709b8734 100644 --- a/src/demuxers/Makefile.am +++ b/src/demuxers/Makefile.am @@ -18,6 +18,10 @@ if HAVE_LIBMNG mng_module = xineplug_dmx_mng.la endif +if HAVE_LIBPNG +image_module = xineplug_dmx_image.la +endif + ## # IMPORTANT: # --------- @@ -25,7 +29,7 @@ endif XINELIB = $(top_builddir)/src/xine-engine/libxine.la -lib_LTLIBRARIES = $(ogg_module) $(asf_module) $(mng_module) \ +lib_LTLIBRARIES = $(ogg_module) $(asf_module) $(mng_module) $(image_module) \ xineplug_dmx_games.la \ xineplug_dmx_audio.la \ xineplug_dmx_mpeg_ts.la \ @@ -121,6 +125,9 @@ xineplug_dmx_yuv_frames_la_SOURCES = demux_yuv_frames.c xineplug_dmx_yuv_frames_la_LIBADD = $(XINELIB) xineplug_dmx_yuv_frames_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@ +xineplug_dmx_image_la_SOURCES = demux_image.c +xineplug_dmx_image_la_LIBADD = $(XINELIB) +xineplug_dmx_image_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@ include_HEADERS = demux.h noinst_HEADERS = asfheader.h qtpalette.h |