diff options
Diffstat (limited to 'src/video_dec/Makefile.am')
-rw-r--r-- | src/video_dec/Makefile.am | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/video_dec/Makefile.am b/src/video_dec/Makefile.am index f20a88bad..10c6b18eb 100644 --- a/src/video_dec/Makefile.am +++ b/src/video_dec/Makefile.am @@ -20,8 +20,13 @@ if ENABLE_GDK_PIXBUF gdkpixbuf_module = xineplug_decode_gdk_pixbuf.la endif +if ENABLE_LIBJPEG +libjpeg_module = xineplug_decode_libjpeg.la +endif + xineplug_LTLIBRARIES = $(image_module) \ $(gdkpixbuf_module) \ + $(libjpeg_module) \ $(theora_module) \ xineplug_decode_bitplane.la \ xineplug_decode_rgb.la \ @@ -43,3 +48,7 @@ xineplug_decode_image_la_CFLAGS = $(AM_CFLAGS) $(WAND_CFLAGS) xineplug_decode_gdk_pixbuf_la_SOURCES = gdkpixbuf.c xineplug_decode_gdk_pixbuf_la_LIBADD = $(XINE_LIB) $(DYNAMIC_LD_LIBS) $(GDK_PIXBUF_LIBS) xineplug_decode_gdk_pixbuf_la_CFLAGS = $(AM_CFLAGS) $(GDK_PIXBUF_CFLAGS) + +xineplug_decode_libjpeg_la_SOURCES = libjpeg.c +xineplug_decode_libjpeg_la_LIBADD = $(XINE_LIB) $(JPEG_LIBS) +xineplug_decode_libjpeg_la_CFLAGS = $(AM_CFLAGS) $(JPEG_CFLAGS) |