diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2006-10-09 14:11:28 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2006-10-09 14:11:28 +0000 |
commit | 2a1a6b64a1d6c9b653dd70996dc5e6377c5a8dc2 (patch) | |
tree | 249ca836a5ffe31c27863d77fae4beacaad5fbbc /configure | |
parent | 441e8fe9c90c162462f47adf0785710fa86afda3 (diff) | |
download | ffmpeg-2a1a6b64a1d6c9b653dd70996dc5e6377c5a8dc2.tar.gz |
always add -fomit-frame-pointer if optimizations are enabled
Originally committed as revision 6601 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -1030,9 +1030,10 @@ if test $targetos = Darwin; then ;; esac fi - if test $optimize != "no"; then - add_cflags "-fomit-frame-pointer" - fi +fi + +if test $optimize != "no"; then + add_cflags "-fomit-frame-pointer" fi # Can only do AltiVec on PowerPC |