diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2013-08-02 23:23:58 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2013-08-02 23:23:58 +0200 |
commit | 401f6a7126fe26eb486a0d99393485abd2ef5ade (patch) | |
tree | ea7d175795ce1c8a2d3f690fded83b2581fa7215 /configure | |
parent | 0553f2c6e5852842498e53026cae887246dd31ed (diff) | |
download | ffmpeg-401f6a7126fe26eb486a0d99393485abd2ef5ade.tar.gz |
Do not suggest to use gas-preprocessor if using it would break compilation.
gas-preprocessor does not work on ppc with pic and on ppc64.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -3865,7 +3865,9 @@ elif enabled ppc; then # AltiVec flags: The FSF version of GCC differs from the Apple version if enabled altivec; then - nogas=warn + if ! enabled_any pic ppc64; then + nogas=warn + fi check_cflags -maltivec -mabi=altivec && { check_header altivec.h && inc_altivec_h="#include <altivec.h>" ; } || check_cflags -faltivec |