diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2006-06-17 15:20:56 +0000 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2006-06-17 15:20:56 +0000 |
commit | 31eee779c6802eb127e5a529410a61b719a30694 (patch) | |
tree | 3931a34996327771da82b654163d285e311848e0 /src/libspucc | |
parent | c036faa947dd1a4362ca796f4240835ea404a654 (diff) | |
download | xine-lib-31eee779c6802eb127e5a529410a61b719a30694.tar.gz xine-lib-31eee779c6802eb127e5a529410a61b719a30694.tar.bz2 |
Fix strict aliasing rules breakages where possible, enable -fno-strict-aliasing where the breakage is unresolvable, and not enable it globally (decreases performances).
CVS patchset: 8048
CVS date: 2006/06/17 15:20:56
Diffstat (limited to 'src/libspucc')
-rw-r--r-- | src/libspucc/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libspucc/Makefile.am b/src/libspucc/Makefile.am index fb746bd41..c2985eb53 100644 --- a/src/libspucc/Makefile.am +++ b/src/libspucc/Makefile.am @@ -5,6 +5,7 @@ libdir = $(XINE_PLUGINDIR) lib_LTLIBRARIES = xineplug_decode_spucc.la xineplug_decode_spucc_la_SOURCES = cc_decoder.c xine_decoder.c +xineplug_decode_spucc_la_CFLAGS = $(AM_CFLAGS) -fno-strict-aliasing xineplug_decode_spucc_la_LIBADD = $(XINE_LIB) xineplug_decode_spucc_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@ |