configure to only test Go 1.2 and later

Go 1.1 does not seem to work with the -cgo option which is turned on during testing
and 'make check'
This commit is contained in:
William S Fulton 2016-05-28 19:01:11 +01:00
commit 2fdd4e10ad

View file

@ -2520,8 +2520,8 @@ else
esac
AC_MSG_CHECKING([whether go version is too old])
case $go_version in
go1.0* | go1 )
AC_MSG_RESULT([yes - minimum version is 1.1])
go1.1* | go1.0* | go1 )
AC_MSG_RESULT([yes - minimum version is 1.2])
GO=
GOOPT="-intgosize 32"
;;