summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2010-01-17 19:05:53 +0000
committerMåns Rullgård <mans@mansr.com>2010-01-17 19:05:53 +0000
commitf855b7b9c9005e30c953fe41594b2b01a4f08d07 (patch)
treeb04686fa008b595b31223530198e8be50576bae9 /configure
parent2a194acd95d7a55fd91193bd1c3874e7b11ce421 (diff)
configure: pass extra flags to check_cpp from check_cpp_condition
Originally committed as revision 21265 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure b/configure
index 04d51aee92..268e9103eb 100755
--- a/configure
+++ b/configure
@@ -683,7 +683,8 @@ check_cpp_condition(){
log check_cpp_condition "$@"
header=$1
condition=$2
- check_cpp <<EOF
+ shift 2
+ check_cpp $($filter_cppflags "$@") <<EOF
#include <$header>
#if !($condition)
#error "unsatisfied condition: $condition"