pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/lang/go
Module Name: pkgsrc
Committed By: dbj
Date: Tue Sep 17 04:39:20 UTC 2019
Modified Files:
pkgsrc/lang/go: version.mk
Log Message:
lang/go: on osx 10.9 and earlier, use go110
go 1.11 removed support for osx 10.8 and 10.9
https://github.com/golang/go/issues/23122
To generate a diff of this commit:
cvs rdiff -u -r1.67 -r1.68 pkgsrc/lang/go/version.mk
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/lang/go/version.mk
diff -u pkgsrc/lang/go/version.mk:1.67 pkgsrc/lang/go/version.mk:1.68
--- pkgsrc/lang/go/version.mk:1.67 Wed Aug 14 15:42:52 2019
+++ pkgsrc/lang/go/version.mk Tue Sep 17 04:39:20 2019
@@ -1,4 +1,4 @@
-# $NetBSD: version.mk,v 1.67 2019/08/14 15:42:52 bsiegert Exp $
+# $NetBSD: version.mk,v 1.68 2019/09/17 04:39:20 dbj Exp $
CTF_SUPPORTED= no
SSP_SUPPORTED= no
@@ -16,6 +16,11 @@ GO_VERSION= ${GO110_VERSION}
.if ${OPSYS} == "NetBSD" && ${OS_VERSION:M6.*}
# 1.9 is the last Go version to support NetBSD 6
GO_VERSION_DEFAULT?= 19
+.elif ${OPSYS} == "Darwin" && ${OS_VERSION:R} < 14
+# go 1.11 removed support for osx 10.8 and 10.9
+# https://github.com/golang/go/issues/23122
+# darwin version 13.4 is osx 10.9.5
+GO_VERSION_DEFAULT?= 110
.else
GO_VERSION_DEFAULT?= 112
.endif
Home |
Main Index |
Thread Index |
Old Index