diff options
author | Christian Ruppert <idl0r@gentoo.org> | 2011-10-15 22:11:45 +0200 |
---|---|---|
committer | Christian Ruppert <idl0r@gentoo.org> | 2011-10-15 22:11:45 +0200 |
commit | 0f53dcaa8cae2d37e886fff0d7a44ed6e679aeb4 (patch) | |
tree | 2e5b0d44f15508054a6469d50cf367f4e6b0fede /src/post | |
parent | b258a7d9c8f71669df3273127c076e722573f707 (diff) | |
download | xine-lib-0f53dcaa8cae2d37e886fff0d7a44ed6e679aeb4.tar.gz xine-lib-0f53dcaa8cae2d37e886fff0d7a44ed6e679aeb4.tar.bz2 |
Disable strict-aliasing where it caused compiler warnings
Diffstat (limited to 'src/post')
-rw-r--r-- | src/post/audio/Makefile.am | 1 | ||||
-rw-r--r-- | src/post/deinterlace/Makefile.am | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/post/audio/Makefile.am b/src/post/audio/Makefile.am index eabe5cb4f..a359310e6 100644 --- a/src/post/audio/Makefile.am +++ b/src/post/audio/Makefile.am @@ -11,4 +11,5 @@ xinepost_LTLIBRARIES = xineplug_post_audio_filters.la xineplug_post_audio_filters_la_SOURCES = \ upmix.c upmix_mono.c filter.c window.c stretch.c volnorm.c audio_filters.c +xineplug_post_audio_filters_la_CFLAGS = $(AM_CFLAGS) -fno-strict-aliasing xineplug_post_audio_filters_la_LIBADD = $(XINE_LIB) $(PTHREAD_LIBS) -lm diff --git a/src/post/deinterlace/Makefile.am b/src/post/deinterlace/Makefile.am index 4d58d2457..cde794988 100644 --- a/src/post/deinterlace/Makefile.am +++ b/src/post/deinterlace/Makefile.am @@ -11,6 +11,7 @@ xinepost_LTLIBRARIES = xineplug_post_tvtime.la xineplug_post_tvtime_la_SOURCES = xine_plugin.c \ deinterlace.c pulldown.c speedy.c tvtime.c +xineplug_post_tvtime_la_CFLAGS = $(AM_CFLAGS) -fno-strict-aliasing xineplug_post_tvtime_la_LIBADD = $(XINE_LIB) $(LTLIBINTL) $(PTHREAD_LIBS) \ $(top_builddir)/src/post/deinterlace/plugins/libdeinterlaceplugins.la |