diff options
author | Martin Storsjö <martin@martin.st> | 2010-01-11 14:22:29 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-01-11 14:22:29 +0000 |
commit | ae550ce9ebfcfd1f9bfdb3a61ac5ddb9f0389899 (patch) | |
tree | 42e1ee5d5b38912d55e5281ff5845c78acad65a9 /configure | |
parent | eebece4641f224c8e1b7f9b764364237daf7b088 (diff) | |
download | ffmpeg-ae550ce9ebfcfd1f9bfdb3a61ac5ddb9f0389899.tar.gz |
configure: Make check_type handle type names containing spaces
Patch by Martin Storsjö <martin at martin st>
Originally committed as revision 21139 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -740,13 +740,13 @@ check_type(){ headers=$1 type=$2 shift 2 - disable $type + disable_safe "$type" incs="" for hdr in $headers; do incs="$incs #include <$hdr>" done - check_cc "$@" <<EOF && enable $type + check_cc "$@" <<EOF && enable_safe "$type" $incs $type v; EOF |