summaryrefslogtreecommitdiff
path: root/src/libxinevdec/Makefile.am
diff options
context:
space:
mode:
authorStefan Holst <holstsn@users.sourceforge.net>2003-03-23 17:12:26 +0000
committerStefan Holst <holstsn@users.sourceforge.net>2003-03-23 17:12:26 +0000
commita3d1eac9b0f3acac4a0bea2e31b2a26be7ae8c2f (patch)
treeccdcd2f2af05377d53c9e50054af018cf9b2f0c4 /src/libxinevdec/Makefile.am
parent7a43582b9692b0dca7b026553812373bf24d4db2 (diff)
downloadxine-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/libxinevdec/Makefile.am')
-rw-r--r--src/libxinevdec/Makefile.am11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/libxinevdec/Makefile.am b/src/libxinevdec/Makefile.am
index 5e6e2e256..3598a0145 100644
--- a/src/libxinevdec/Makefile.am
+++ b/src/libxinevdec/Makefile.am
@@ -2,9 +2,14 @@ EXTRA_DIST = foovideo.c
LIBTOOL = $(SHELL) $(top_builddir)/libtool-nofpic
+if HAVE_LIBPNG
+image_module = xineplug_decode_image.la
+endif
+
libdir = $(XINE_PLUGINDIR)
XINE_LIB = $(top_builddir)/src/xine-engine/libxine.la
-lib_LTLIBRARIES = \
+
+lib_LTLIBRARIES = $(image_module) \
xineplug_decode_cinepak.la \
xineplug_decode_cyuv.la \
xineplug_decode_fli.la \
@@ -86,6 +91,10 @@ xineplug_decode_yuv_frames_la_SOURCES = yuv_frames.c
xineplug_decode_yuv_frames_la_LIBADD = $(XINE_LIB)
xineplug_decode_yuv_frames_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@
+xineplug_decode_image_la_SOURCES = image.c
+xineplug_decode_image_la_LIBADD = $(XINE_LIB) $(DYNAMIC_LD_LIBS) $(PNG_LIBS)
+xineplug_decode_image_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@
+
noinst_HEADERS = svq1_codebooks.h
$(XINE_LIB):