From 19b4c62883b9e441872de382a4f805316123e340 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A5ns=20Rullg=C3=A5rd?= Date: Mon, 13 Jul 2009 22:46:10 +0000 Subject: [PATCH] Set default flag filters before compiler detection This allows use of the add_*flags functions in the compiler detection section. Originally committed as revision 19428 to svn://svn.ffmpeg.org/ffmpeg/trunk --- configure | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/configure b/configure index e2d6523d64..5a914fbdec 100755 --- a/configure +++ b/configure @@ -1477,6 +1477,10 @@ EOF die "Sanity test failed." fi +filter_cflags=echo +filter_cppflags=echo +filter_asflags=echo + if $cc --version 2>/dev/null | grep -qi gcc; then cc_type=gcc elif $cc --version 2>/dev/null | grep -q Intel; then @@ -1508,10 +1512,6 @@ test -n "$cc_type" && enable $cc_type || echolog "Unknown C compiler $cc" : ${ld_default:=$cc} set_default as dep_cc ld -: ${filter_cflags:=echo} -: ${filter_cppflags:=echo} -: ${filter_asflags:=echo} - add_cflags $extra_cflags add_asflags $extra_cflags