[FFmpeg-devel] [PATCH]Do not suggest gas-preprocessor if it would break compilation

Carl Eugen Hoyos cehoyos at ag.or.at
Thu Aug 1 15:56:20 CEST 2013


Hi!

Attached patch ensures that gas-preprocessor is not suggested by configure if 
using it would break compilation.

Please comment, Carl Eugen
-------------- next part --------------
diff --git a/configure b/configure
index e215a2a..f1ba054 100755
--- a/configure
+++ b/configure
@@ -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


More information about the ffmpeg-devel mailing list