diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2009-08-31 02:06:01 +0100 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2009-08-31 02:06:01 +0100 |
commit | 55e15562a270c865b65866698bcc4a2a90f9d52b (patch) | |
tree | 8401893190030ce24d360c645433968ecc89dbab | |
parent | 577025283cdbfc7588c093c4530a5394f19d9f5b (diff) | |
download | xine-lib-55e15562a270c865b65866698bcc4a2a90f9d52b.tar.gz xine-lib-55e15562a270c865b65866698bcc4a2a90f9d52b.tar.bz2 |
Connect up the BluRay subtitles decoder.
--HG--
rename : src/libspudvb/Makefile.am => src/libspuhdmv/Makefile.am
-rw-r--r-- | configure.ac | 1 | ||||
-rw-r--r-- | src/Makefile.am | 1 | ||||
-rw-r--r-- | src/libspuhdmv/Makefile.am | 9 |
3 files changed, 11 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 5e87d63e0..c9a8557df 100644 --- a/configure.ac +++ b/configure.ac @@ -2783,6 +2783,7 @@ src/libspudec/Makefile src/libspucc/Makefile src/libspucmml/Makefile src/libspudvb/Makefile +src/libspuhdmv/Makefile src/libsputext/Makefile src/libw32dll/Makefile src/libw32dll/wine/Makefile diff --git a/src/Makefile.am b/src/Makefile.am index 249bbc2b6..5d21a97eb 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -17,6 +17,7 @@ SUBDIRS = \ libspucc \ libspucmml \ libspudvb \ + libspuhdmv \ libsputext \ libdts \ libmad \ diff --git a/src/libspuhdmv/Makefile.am b/src/libspuhdmv/Makefile.am new file mode 100644 index 000000000..15a029f8a --- /dev/null +++ b/src/libspuhdmv/Makefile.am @@ -0,0 +1,9 @@ +include $(top_builddir)/misc/Makefile.plugins +include $(top_srcdir)/misc/Makefile.common + +xineplug_LTLIBRARIES = xineplug_decode_spuhdmv.la + +xineplug_decode_spuhdmv_la_SOURCES = xine_hdmv_decoder.c +xineplug_decode_spuhdmv_la_LIBADD = $(XINE_LIB) $(PTHREAD_LIBS) $(LTLIBINTL) +xineplug_decode_spuhdmv_la_CFLAGS = $(VISIBILITY_FLAG) +xineplug_decode_spuhdmv_la_LDFLAGS = $(xineplug_ldflags) |