summaryrefslogtreecommitdiff
path: root/src/libxineadec/Makefile.am
diff options
context:
space:
mode:
authorDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2007-04-04 22:05:54 +0200
committerDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2007-04-04 22:05:54 +0200
commitcbcc2cc3c185b5799f34a7918b44b743a70decab (patch)
tree84477501c7f749c2ba2557ffd3962535be33237a /src/libxineadec/Makefile.am
parent39bf7da5d0ec2e6b6a6b96e97689dd29445b7810 (diff)
downloadxine-lib-cbcc2cc3c185b5799f34a7918b44b743a70decab.tar.gz
xine-lib-cbcc2cc3c185b5799f34a7918b44b743a70decab.tar.bz2
Move the Vorbis decoder from libvorbis to libxineadec, as it's a single file.
--HG-- rename : src/libvorbis/xine_decoder.c => src/libxineadec/xine_vorbis_decoder.c
Diffstat (limited to 'src/libxineadec/Makefile.am')
-rw-r--r--src/libxineadec/Makefile.am11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/libxineadec/Makefile.am b/src/libxineadec/Makefile.am
index 373347aaa..f2e3b4aa0 100644
--- a/src/libxineadec/Makefile.am
+++ b/src/libxineadec/Makefile.am
@@ -6,10 +6,15 @@ SUBDIRS = gsm610 nosefart
AM_LDFLAGS = $(xineplug_ldflags)
+if HAVE_VORBIS
+vorbis_module = xineplug_decode_vorbis.la
+endif
+
xineplug_LTLIBRARIES = \
xineplug_decode_gsm610.la \
xineplug_decode_nsf.la \
- xineplug_decode_lpcm.la
+ xineplug_decode_lpcm.la \
+ $(vorbis_module)
xineplug_decode_gsm610_la_SOURCES = gsm610.c
xineplug_decode_gsm610_la_CFLAGS = $(VISIBILITY_FLAG)
@@ -22,3 +27,7 @@ xineplug_decode_nsf_la_LIBADD = $(XINE_LIB) -lm nosefart/libnosefart.la
xineplug_decode_lpcm_la_SOURCES = xine_lpcm_decoder.c
xineplug_decode_lpcm_la_CFLAGS = $(VISIBILITY_FLAG)
xineplug_decode_lpcm_la_LIBADD = $(XINE_LIB)
+
+xineplug_decode_vorbis_la_SOURCES = xine_vorbis_decoder.c
+xineplug_decode_vorbis_la_LIBADD = $(XINE_LIB) $(VORBIS_LIBS) $(OGG_LIBS)
+xineplug_decode_vorbis_la_CFLAGS = $(VISIBILITY_FLAG) $(VORBIS_CFLAGS)