summaryrefslogtreecommitdiff
path: root/src/libspudec
diff options
context:
space:
mode:
authorCarlo Bramini <carlo.bramix@libero.it>2008-09-17 10:57:35 +0100
committerCarlo Bramini <carlo.bramix@libero.it>2008-09-17 10:57:35 +0100
commit7bc49187618a5383e48b35e99f2a6f1e1be32d63 (patch)
treea39386dc827cced3cd7400e6f5e9c88d05effda0 /src/libspudec
parentcad00d49e3344adbc7e8a67e3082dd8d35752a37 (diff)
downloadxine-lib-7bc49187618a5383e48b35e99f2a6f1e1be32d63.tar.gz
xine-lib-7bc49187618a5383e48b35e99f2a6f1e1be32d63.tar.bz2
Mingw+MSys: NLS support, --enable-stdcall-fixup
It was not possible to compile some parts of XINE-LIB with NLS enabled. It's also a good idea to explicitely enable --enable-stdcall-fixup for solving a huge amount of warnings. Attached patch fixes these problems.
Diffstat (limited to 'src/libspudec')
-rw-r--r--src/libspudec/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libspudec/Makefile.am b/src/libspudec/Makefile.am
index 208d994f5..7c0dcd78d 100644
--- a/src/libspudec/Makefile.am
+++ b/src/libspudec/Makefile.am
@@ -7,7 +7,7 @@ if HAVE_DVDNAV
xineplug_decode_spu_la_SOURCES = \
spu.c \
xine_spu_decoder.c
-xineplug_decode_spu_la_LIBADD = $(XINE_LIB) $(DVDNAV_LIBS) $(PTHREAD_LIBS)
+xineplug_decode_spu_la_LIBADD = $(XINE_LIB) $(DVDNAV_LIBS) $(PTHREAD_LIBS) $(LTLIBINTL)
else
@@ -16,7 +16,7 @@ xineplug_decode_spu_la_SOURCES = \
spu.c \
xine_spu_decoder.c
AM_CPPFLAGS = -I$(top_srcdir)/src/input/libdvdnav
-xineplug_decode_spu_la_LIBADD = $(XINE_LIB) $(PTHREAD_LIBS)
+xineplug_decode_spu_la_LIBADD = $(XINE_LIB) $(PTHREAD_LIBS) $(LTLIBINTL)
endif