1 *** gcc-3.4.3/gcc/configure.orig Mon May 4 08:48:35 2009 2 --- gcc-3.4.3/gcc/configure Mon May 4 08:59:16 2009 3 *************** 4 *** 10539,10547 **** 5 # arbitrary sections are supported and try the test. 6 as_ver=`$gcc_cv_as --version 2>/dev/null | sed 1q` 7 if echo "$as_ver" | grep GNU > /dev/null; then 8 ! as_ver=`echo $as_ver | sed -e 's/GNU assembler \([0-9.][0-9.]*\).*/\1/'` 9 ! as_major=`echo $as_ver | sed 's/\..*//'` 10 ! as_minor=`echo $as_ver | sed 's/[^.]*\.\([0-9]*\).*/\1/'` 11 if test $as_major -eq 2 && test $as_minor -lt 11 12 then : 13 else gcc_cv_as_leb128=yes 14 --- 10539,10548 ---- 15 # arbitrary sections are supported and try the test. 16 as_ver=`$gcc_cv_as --version 2>/dev/null | sed 1q` 17 if echo "$as_ver" | grep GNU > /dev/null; then 18 ! as_vers=`echo $as_ver | sed -n \ 19 ! -e 's,^.*[ ]\([0-9][0-9]*\.[0-9][0-9]*.*\)$,\1,p'` 20 ! as_major=`expr "$as_vers" : '\([0-9]*\)'` 21 ! as_minor=`expr "$as_vers" : '[0-9]*\.\([0-9]*\)'` 22 if test $as_major -eq 2 && test $as_minor -lt 11 23 then : 24 else gcc_cv_as_leb128=yes 25