diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-04-11 18:02:28 +0200 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-04-11 18:02:28 +0200 |
commit | 15bec9c12fac932ab58bca4b9290739adfbad2d4 (patch) | |
tree | 101816e08a9eb174006f2e11eef551096a6d496f /src/post | |
parent | 7f681f2a62b500846ff337d5e75e915507d1751f (diff) | |
parent | 926542d8abcb138208a175ca09ef12e6a9f468f4 (diff) | |
download | xine-lib-15bec9c12fac932ab58bca4b9290739adfbad2d4.tar.gz xine-lib-15bec9c12fac932ab58bca4b9290739adfbad2d4.tar.bz2 |
Merge changes from 1.1 branch (where they still make sense).
Diffstat (limited to 'src/post')
-rw-r--r-- | src/post/goom/Makefile.am | 3 | ||||
-rw-r--r-- | src/post/planar/Makefile.am | 5 |
2 files changed, 8 insertions, 0 deletions
diff --git a/src/post/goom/Makefile.am b/src/post/goom/Makefile.am index e6bae3374..53a806a7a 100644 --- a/src/post/goom/Makefile.am +++ b/src/post/goom/Makefile.am @@ -8,6 +8,9 @@ EXTRA_DIST = mmx.c xmmx.c ppc_drawings.s ppc_zoom_ultimate.s diff_against_releas #CFLAGS = `echo @CFLAGS@ | sed -e 's/-fomit-frame-pointer//g;s/-Os/-O2/g'` CFLAGS = `echo @CFLAGS@ | sed -e 's/-Os/-O2/g'` +# Avoid errors with -O0 +xineplug_post_goom_la-xmmx.o xineplug_post_goom_la-xmmx.lo: CFLAGS=`echo @CFLAGS@ | sed -e 's/-O0\?\s/-Os /g'` + xinepost_LTLIBRARIES = xineplug_post_goom.la ## doesn't work diff --git a/src/post/planar/Makefile.am b/src/post/planar/Makefile.am index e75f6e63e..6d239202b 100644 --- a/src/post/planar/Makefile.am +++ b/src/post/planar/Makefile.am @@ -17,6 +17,11 @@ endif # work, but at least it compiles. AM_CFLAGS = $(ff_cflags) -fomit-frame-pointer +# Avoid errors with -O0 +xineplug_post_planar_la-eq.o xineplug_post_planar_la-eq.lo: CFLAGS=`echo @CFLAGS@ | sed -e 's/-O0\?\s/-Os /g'` +xineplug_post_planar_la-eq2.o xineplug_post_planar_la-eq2.lo: CFLAGS=`echo @CFLAGS@ | sed -e 's/-O0\?\s/-Os /g'` +xineplug_post_planar_la-noise.o xineplug_post_planar_la-noise.lo: CFLAGS=`echo @CFLAGS@ | sed -e 's/-O0\?\s/-Os /g'` + xinepost_LTLIBRARIES = xineplug_post_planar.la xineplug_post_planar_la_SOURCES = planar.c invert.c expand.c fill.c boxblur.c \ |