diff options
author | Carlo Bramini <carlo.bramix@libero.it> | 2008-09-17 10:57:35 +0100 |
---|---|---|
committer | Carlo Bramini <carlo.bramix@libero.it> | 2008-09-17 10:57:35 +0100 |
commit | 7bc49187618a5383e48b35e99f2a6f1e1be32d63 (patch) | |
tree | a39386dc827cced3cd7400e6f5e9c88d05effda0 /src/demuxers | |
parent | cad00d49e3344adbc7e8a67e3082dd8d35752a37 (diff) | |
download | xine-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/demuxers')
-rw-r--r-- | src/demuxers/Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/demuxers/Makefile.am b/src/demuxers/Makefile.am index 2c4b38e4a..f5b0befbe 100644 --- a/src/demuxers/Makefile.am +++ b/src/demuxers/Makefile.am @@ -70,10 +70,10 @@ xineplug_dmx_mpeg_pes_la_SOURCES = demux_mpeg_pes.c xineplug_dmx_mpeg_pes_la_LIBADD = $(XINE_LIB) $(LTLIBINTL) xineplug_dmx_mpeg_ts_la_SOURCES = demux_ts.c -xineplug_dmx_mpeg_ts_la_LIBADD = $(XINE_LIB) +xineplug_dmx_mpeg_ts_la_LIBADD = $(XINE_LIB) $(LTLIBINTL) xineplug_dmx_qt_la_SOURCES = demux_qt.c -xineplug_dmx_qt_la_LIBADD = $(XINE_LIB) $(ZLIB_LIBS) +xineplug_dmx_qt_la_LIBADD = $(XINE_LIB) $(ZLIB_LIBS) $(LTLIBINTL) xineplug_dmx_qt_la_CPPFLAGS = $(ZLIB_CPPFLAGS) xineplug_dmx_asf_la_SOURCES = demux_asf.c asfheader.c @@ -130,7 +130,7 @@ xineplug_dmx_nsv_la_SOURCES = demux_nsv.c xineplug_dmx_nsv_la_LIBADD = $(XINE_LIB) xineplug_dmx_matroska_la_SOURCES = demux_matroska.c ebml.c -xineplug_dmx_matroska_la_LIBADD = $(XINE_LIB) $(ZLIB_LIBS) +xineplug_dmx_matroska_la_LIBADD = $(XINE_LIB) $(ZLIB_LIBS) $(LTLIBINTL) xineplug_dmx_matroska_la_CPPFLAGS = $(ZLIB_CPPFLAGS) xineplug_dmx_matroska_la_CFLAGS = $(AM_CFLAGS) -fno-strict-aliasing |