From ae550ce9ebfcfd1f9bfdb3a61ac5ddb9f0389899 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Storsj=C3=B6?= Date: Mon, 11 Jan 2010 14:22:29 +0000 Subject: configure: Make check_type handle type names containing spaces MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Patch by Martin Storsjö Originally committed as revision 21139 to svn://svn.ffmpeg.org/ffmpeg/trunk --- configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'configure') diff --git a/configure b/configure index b595496d3a..eb31d8d6da 100755 --- a/configure +++ b/configure @@ -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 "$@" <