[FFmpeg-cvslog] r21139 - trunk/configure
mru
subversion
Mon Jan 11 15:22:29 CET 2010
Author: mru
Date: Mon Jan 11 15:22:29 2010
New Revision: 21139
Log:
configure: Make check_type handle type names containing spaces
Patch by Martin Storsj? <martin at martin st>
Modified:
trunk/configure
Modified: trunk/configure
==============================================================================
--- trunk/configure Mon Jan 11 15:21:53 2010 (r21138)
+++ trunk/configure Mon Jan 11 15:22:29 2010 (r21139)
@@ -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
More information about the ffmpeg-cvslog
mailing list