diff options
author | jperkin <jperkin@pkgsrc.org> | 2018-01-30 17:05:21 +0000 |
---|---|---|
committer | jperkin <jperkin@pkgsrc.org> | 2018-01-30 17:05:21 +0000 |
commit | 21ac59cc860b1c50cd25e56b226c9cb766fabc2a (patch) | |
tree | 61f3f7ce6f2ed5a470d407584bfa3012a5a31282 /lang/go | |
parent | 5d9f6fc78647af9ff2d11db582f3a01f7cdcfa77 (diff) | |
download | pkgsrc-21ac59cc860b1c50cd25e56b226c9cb766fabc2a.tar.gz |
go*: Disable SSP support completely.
It's not supported by the go linker, and can cause issues when building
third-party modules if the SSP libraries are handled by pkgsrc.
Diffstat (limited to 'lang/go')
-rw-r--r-- | lang/go/Makefile | 4 | ||||
-rw-r--r-- | lang/go/version.mk | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lang/go/Makefile b/lang/go/Makefile index f7f910285ea..c28ff0ec18d 100644 --- a/lang/go/Makefile +++ b/lang/go/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.60 2018/01/28 11:31:03 bsiegert Exp $ +# $NetBSD: Makefile,v 1.61 2018/01/30 17:05:21 jperkin Exp $ .include "version.mk" @@ -71,8 +71,6 @@ CHECK_RELRO_SKIP+= go/bin/gofmt CHECK_RELRO_SKIP+= go/pkg/bootstrap/bin/asm CHECK_RELRO_SKIP+= go/pkg/bootstrap/bin/compile CHECK_RELRO_SKIP+= go/pkg/bootstrap/bin/link -# also does not support SSP at this time -CHECK_SSP_SKIP= ${CHECK_RELRO_SKIP} # uses /bin/rc (for Plan 9) CHECK_INTERPRETER_SKIP+= go/include/plan9/mklibc.rc diff --git a/lang/go/version.mk b/lang/go/version.mk index 62f2e25ec45..2a3fa8fec88 100644 --- a/lang/go/version.mk +++ b/lang/go/version.mk @@ -1,4 +1,6 @@ -# $NetBSD: version.mk,v 1.32 2018/01/28 11:31:03 bsiegert Exp $ +# $NetBSD: version.mk,v 1.33 2018/01/30 17:05:21 jperkin Exp $ + +SSP_SUPPORTED= no .include "../../mk/bsd.prefs.mk" |