pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/lang



Module Name:    pkgsrc
Committed By:   jperkin
Date:           Wed Oct  4 10:03:53 UTC 2017

Modified Files:
        pkgsrc/lang/go: Makefile
        pkgsrc/lang/go14: Makefile

Log Message:
go*: Disable SSP checks for similar reasons as RELRO.


To generate a diff of this commit:
cvs rdiff -u -r1.56 -r1.57 pkgsrc/lang/go/Makefile
cvs rdiff -u -r1.13 -r1.14 pkgsrc/lang/go14/Makefile

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/Makefile
diff -u pkgsrc/lang/go/Makefile:1.56 pkgsrc/lang/go/Makefile:1.57
--- pkgsrc/lang/go/Makefile:1.56        Sun Sep  3 16:49:52 2017
+++ pkgsrc/lang/go/Makefile     Wed Oct  4 10:03:53 2017
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.56 2017/09/03 16:49:52 tron Exp $
+# $NetBSD: Makefile,v 1.57 2017/10/04 10:03:53 jperkin Exp $
 
 .include "version.mk"
 
@@ -72,6 +72,8 @@ 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

Index: pkgsrc/lang/go14/Makefile
diff -u pkgsrc/lang/go14/Makefile:1.13 pkgsrc/lang/go14/Makefile:1.14
--- pkgsrc/lang/go14/Makefile:1.13      Sat Sep  2 17:15:00 2017
+++ pkgsrc/lang/go14/Makefile   Wed Oct  4 10:03:53 2017
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.13 2017/09/02 17:15:00 bsiegert Exp $
+# $NetBSD: Makefile,v 1.14 2017/10/04 10:03:53 jperkin Exp $
 
 .include "../../lang/go/version.mk"
 
@@ -70,6 +70,8 @@ REPLACE_PERL+=        test/errchk
 # uses its own linker which does not support relro in 1.4.x
 CHECK_RELRO_SKIP=      go14/bin/go
 CHECK_RELRO_SKIP+=     go14/bin/gofmt
+# also does not support SSP at this time
+CHECK_SSP_SKIP=                ${CHECK_RELRO_SKIP}
 
 # uses /bin/rc (for Plan 9)
 CHECK_INTERPRETER_SKIP+=       go14/include/plan9/mklibc.rc



Home | Main Index | Thread Index | Old Index