summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2016-05-28 19:01:11 +0100
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2016-05-28 19:01:11 +0100
commit2fdd4e10adbe68063f5d329781bb346510943215 (patch)
treef0ee813d3e617c8e3ba865a4dcf66d4175be0caa /configure.ac
parent550da9f7efc2f2abd8d7ed2f7a9e95a1c6ce4881 (diff)
downloadswig-2fdd4e10adbe68063f5d329781bb346510943215.tar.gz
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'
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 808ff21be..1fbbdb84d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -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"
;;