diff options
author | Måns Rullgård <mans@mansr.com> | 2010-01-17 19:05:53 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-01-17 19:05:53 +0000 |
commit | f855b7b9c9005e30c953fe41594b2b01a4f08d07 (patch) | |
tree | b04686fa008b595b31223530198e8be50576bae9 /configure | |
parent | 2a194acd95d7a55fd91193bd1c3874e7b11ce421 (diff) | |
download | ffmpeg-f855b7b9c9005e30c953fe41594b2b01a4f08d07.tar.gz |
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-x | configure | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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" |