diff options
author | Darren Salt <devspam@moreofthesa.me.uk> | 2013-09-18 13:16:40 +0100 |
---|---|---|
committer | Darren Salt <devspam@moreofthesa.me.uk> | 2013-09-18 13:16:40 +0100 |
commit | 4c6876c9ebbaa7e793219d20a8528d939149563d (patch) | |
tree | 36be983a925bbec61943f3dcbce7d128ce6b2154 /src/demuxers | |
parent | 6ae7122ab3014b296f066aefbbc7aab2051fcf53 (diff) | |
download | xine-lib-4c6876c9ebbaa7e793219d20a8528d939149563d.tar.gz xine-lib-4c6876c9ebbaa7e793219d20a8528d939149563d.tar.bz2 |
Avoid using deprecated autoconf & automake features.
asfheader.c is used in two places: same compiler flags, so is safe.
Diffstat (limited to 'src/demuxers')
-rw-r--r-- | src/demuxers/Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/demuxers/Makefile.am b/src/demuxers/Makefile.am index 32b5616f7..1f7948fdb 100644 --- a/src/demuxers/Makefile.am +++ b/src/demuxers/Makefile.am @@ -84,6 +84,8 @@ xineplug_dmx_qt_la_SOURCES = demux_qt.c xineplug_dmx_qt_la_LIBADD = $(XINE_LIB) $(LTLIBINTL) $(ZLIB_LIBS) xineplug_dmx_qt_la_CPPFLAGS = $(AM_CPPFLAGS) $(ZLIB_CPPFLAGS) +# note: asfheader.c also used from ../input +# is safe given same compiler options xineplug_dmx_asf_la_SOURCES = demux_asf.c asfheader.c xineplug_dmx_asf_la_LIBADD = $(XINE_LIB) $(LTLIBINTL) $(LTLIBICONV) xineplug_dmx_asf_la_CFLAGS = $(AM_CFLAGS) -fno-strict-aliasing |