File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -113,9 +113,10 @@ AC_ARG_WITH(git,
113113{
114114 test x"$HAVE_GIT" = xyes &&
115115 command -v "$GIT" > /dev/null &&
116- # see Dependencies in doc/contributing/building_ruby.md
116+ # `git -C`: 1.8.5
117+ # `git log --no-show-signature`: 2.10.0
117118 AS_CASE ( [ `$GIT -C . --version 2> /dev/null | sed 's/.* //'`] ,
118- [ 0.*|1.*|2.@<:@ 0-9@:>@ .*|2. @<:@ 12 @:>@@<:@ 0-9 @:>@ .*|2.3 @<:@ 01 @:>@ .* ] , [ false] ,
119+ [ 0.*|1.*|2.@<:@ 0-9@:>@ .*] , [ false] ,
119120 [ true] )
120121} || HAVE_GIT=no GIT=never-use
121122AC_SUBST ( GIT )
Original file line number Diff line number Diff line change @@ -526,7 +526,7 @@ HAVE_GIT = no
526526!else if [for /f "tokens=3" %I in ('git --version') do @(\
527527 for /f "delims=. tokens=1-2" %I in ("%I") do @(\
528528 if %I lss 2 (exit 1) else if %I gtr 2 (exit 0) \
529- else if %J lss 32 (exit 1) else (exit 0)\
529+ else if %J lss 10 (exit 1) else (exit 0)\
530530 )\
531531 )]
532532HAVE_GIT = no
You can’t perform that action at this time.
0 commit comments