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/video_out/Makefile.am | |
| 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/video_out/Makefile.am')
| -rw-r--r-- | src/video_out/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/video_out/Makefile.am b/src/video_out/Makefile.am index 684ecd8ea..5c45a7a18 100644 --- a/src/video_out/Makefile.am +++ b/src/video_out/Makefile.am @@ -11,12 +11,13 @@ VIDIX_CFLAGS = -I$(top_builddir)/src/video_out/vidix \ AM_CFLAGS = $(X_CFLAGS) -DXINE_COMPILE \ $(SUNDGA_CFLAGS) $(SDL_CFLAGS) $(VIDIX_CFLAGS) \ $(AALIB_CFLAGS) $(MLIB_CFLAGS) $(LIBSTK_CFLAGS) \ - $(DIRECTFB_CFLAGS) $(CACA_CFLAGS) + $(DIRECTFB_CFLAGS) $(CACA_CFLAGS) $(X11OSD_STRICT_ALIASING) libdir = $(XINE_PLUGINDIR) if HAVE_X11 X11OSD = x11osd.c +X11OSD_STRICT_ALIASING = -fno-strict-aliasing xshm_module = xineplug_vo_out_xshm.la if HAVE_XV xv_module = xineplug_vo_out_xv.la |
