File tree Expand file tree Collapse file tree 3 files changed +8
-6
lines changed
Expand file tree Collapse file tree 3 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -4074,9 +4074,9 @@ if test -z "$CFLAGS"; then
40744074 test " $GCC " = yes && CFLAGS=" -O2 -fno-strength-reduce -Wall"
40754075fi
40764076if test " $GCC " = yes; then
4077- gccversion=` " $CC " -dumpversion`
4077+ gccversion=` $CC -dumpversion`
40784078 if test " x$gccversion " = " x" ; then
4079- gccversion=` " $CC " --version | sed -e ' 2,$d' -e ' s/darwin.//' -e ' s/^[^0-9]*\([0-9]\.[0-9.]*\).*$/\1/g' `
4079+ gccversion=` $CC --version | sed -e ' 2,$d' -e ' s/darwin.//' -e ' s/^[^0-9]*\([0-9]\.[0-9.]*\).*$/\1/g' `
40804080 fi
40814081 if test " $gccversion " = " 3.0.1" -o " $gccversion " = " 3.0.2" -o " $gccversion " = " 4.0.1" ; then
40824082 echo ' GCC [34].0.[12] has a bug in the optimizer, disabling "-O#"'
40914091
40924092{ $as_echo " $as_me :${as_lineno-$LINENO } : checking for recent clang version" >&5
40934093$as_echo_n " checking for recent clang version... " >&6 ; }
4094- CLANG_VERSION_STRING=` " $CC " --version 2> /dev/null | sed -n -e ' s/^.*clang.*\([0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\).*$/\1/p' `
4094+ CLANG_VERSION_STRING=` $CC --version 2> /dev/null | sed -n -e ' s/^.*clang.*\([0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\).*$/\1/p' `
40954095if test x" $CLANG_VERSION_STRING " ! = x" " ; then
40964096 CLANG_MAJOR=` echo " $CLANG_VERSION_STRING " | sed -n -e ' s/\([0-9][0-9]*\)\.[0-9][0-9]*\.[0-9][0-9]*/\1/p' `
40974097 CLANG_MINOR=` echo " $CLANG_VERSION_STRING " | sed -n -e ' s/[0-9][0-9]*\.\([0-9][0-9]*\)\.[0-9][0-9]*/\1/p' `
Original file line number Diff line number Diff line change @@ -46,10 +46,10 @@ if test -z "$CFLAGS"; then
4646fi
4747if test "$GCC" = yes; then
4848 dnl method that should work for nearly all versions
49- gccversion=`" $CC" -dumpversion`
49+ gccversion=`$CC -dumpversion`
5050 if test "x$gccversion" = "x"; then
5151 dnl old method; fall-back for when -dumpversion doesn't work
52- gccversion=`" $CC" --version | sed -e '2,$d' -e 's/darwin.//' -e 's/^[[^0-9]]*\([[0-9]]\.[[0-9.]]*\).*$/\1/g'`
52+ gccversion=`$CC --version | sed -e '2,$d' -e 's/darwin.//' -e 's/^[[^0-9]]*\([[0-9]]\.[[0-9.]]*\).*$/\1/g'`
5353 fi
5454 dnl version 4.0.1 was reported to cause trouble on Macintosh by Marcin Dalecki
5555 if test "$gccversion" = "3.0.1" -o "$gccversion" = "3.0.2" -o "$gccversion" = "4.0.1"; then
@@ -68,7 +68,7 @@ dnl warning when that flag is passed to. Accordingly, adjust CFLAGS based on
6868dnl the version number of the clang in use.
6969dnl Note that this does not work to get the version of clang 3.1 or 3.2.
7070AC_MSG_CHECKING(for recent clang version)
71- CLANG_VERSION_STRING=`" $CC" --version 2>/dev/null | sed -n -e 's/^.*clang.*\([[0-9]][[0-9]]*\.[[0-9]][[0-9]]*\.[[0-9]][[0-9]]*\).*$/\1/p'`
71+ CLANG_VERSION_STRING=`$CC --version 2>/dev/null | sed -n -e 's/^.*clang.*\([[0-9]][[0-9]]*\.[[0-9]][[0-9]]*\.[[0-9]][[0-9]]*\).*$/\1/p'`
7272if test x"$CLANG_VERSION_STRING" != x"" ; then
7373 CLANG_MAJOR=`echo "$CLANG_VERSION_STRING" | sed -n -e 's/\([[0-9]][[0-9]]*\)\.[[0-9]][[0-9]]*\.[[0-9]][[0-9]]*/\1/p'`
7474 CLANG_MINOR=`echo "$CLANG_VERSION_STRING" | sed -n -e 's/[[0-9]][[0-9]]*\.\([[0-9]][[0-9]]*\)\.[[0-9]][[0-9]]*/\1/p'`
Original file line number Diff line number Diff line change @@ -734,6 +734,8 @@ static char *(features[]) =
734734
735735static int included_patches [] =
736736{ /* Add new patch number below this line */
737+ /**/
738+ 258 ,
737739/**/
738740 257 ,
739741/**/
You can’t perform that action at this time.
0 commit comments