summaryrefslogtreecommitdiff
path: root/src/libxinevdec/Makefile.am
diff options
context:
space:
mode:
authorBastien Nocera <hadess@users.sourceforge.net>2006-02-02 20:39:32 +0000
committerBastien Nocera <hadess@users.sourceforge.net>2006-02-02 20:39:32 +0000
commitd19164dd9ef4540c331ea552fc767f96c6591f1a (patch)
tree2a75baaa736b5c0521e8728f4dd48670e1e7fad3 /src/libxinevdec/Makefile.am
parent1b617775b4285d96f2eac4c6da7d12a93168b0b5 (diff)
downloadxine-lib-d19164dd9ef4540c331ea552fc767f96c6591f1a.tar.gz
xine-lib-d19164dd9ef4540c331ea552fc767f96c6591f1a.tar.bz2
Add an gdk-pixbuf image decoder, faster than the ImageMagick one...
CVS patchset: 7862 CVS date: 2006/02/02 20:39:32
Diffstat (limited to 'src/libxinevdec/Makefile.am')
-rw-r--r--src/libxinevdec/Makefile.am11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/libxinevdec/Makefile.am b/src/libxinevdec/Makefile.am
index e0d4acf2b..bf1ae1d68 100644
--- a/src/libxinevdec/Makefile.am
+++ b/src/libxinevdec/Makefile.am
@@ -6,9 +6,14 @@ if HAVE_WAND
image_module = xineplug_decode_image.la
endif
+if HAVE_GDK_PIXBUF
+gdkpixbuf_module = xineplug_decode_gdk_pixbuf.la
+endif
+
libdir = $(XINE_PLUGINDIR)
lib_LTLIBRARIES = $(image_module) \
+ $(gdkpixbuf_module) \
xineplug_decode_bitplane.la \
xineplug_decode_rgb.la \
xineplug_decode_yuv.la
@@ -29,3 +34,9 @@ xineplug_decode_image_la_SOURCES = image.c
xineplug_decode_image_la_CFLAGS = $(WAND_CFLAGS)
xineplug_decode_image_la_LIBADD = $(XINE_LIB) $(DYNAMIC_LD_LIBS) $(WAND_LIBS)
xineplug_decode_image_la_LDFLAGS = $(WAND_LDFLAGS) -avoid-version -module @XINE_PLUGIN_MIN_SYMS@
+
+xineplug_decode_gdk_pixbuf_la_SOURCES = gdkpixbuf.c
+xineplug_decode_gdk_pixbuf_la_CFLAGS = $(GDK_PIXBUF_CFLAGS)
+xineplug_decode_gdk_pixbuf_la_LIBADD = $(XINE_LIB) $(DYNAMIC_LD_LIBS) $(GDK_PIXBUF_LIBS)
+xineplug_decode_gdk_pixbuf_la_LDFLAGS = $(GDK_PIXBUF_LDFLAGS) -avoid-version -module @XINE_PLUGIN_MIN_SYMS@
+