Received: by mail.netbsd.org (Postfix, from userid 605) id 77CCE84D5E; Thu, 19 Oct 2017 14:29:02 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 023E184D3B for ; Thu, 19 Oct 2017 14:29:02 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id b7EWEA2G7wiJ for ; Thu, 19 Oct 2017 14:29:01 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 8213184CDC for ; Thu, 19 Oct 2017 14:29:01 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 7D682FBC7; Thu, 19 Oct 2017 14:29:01 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1508423341186240" MIME-Version: 1.0 Date: Thu, 19 Oct 2017 14:29:01 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/lang/go14 To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20171019142901.7D682FBC7@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1508423341186240 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Thu Oct 19 14:29:01 UTC 2017 Modified Files: pkgsrc/lang/go14: distinfo Added Files: pkgsrc/lang/go14/patches: patch-include_u.h Log Message: go14: Don't set broken _XOPEN_SOURCE on SunOS. To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 pkgsrc/lang/go14/distinfo cvs rdiff -u -r0 -r1.1 pkgsrc/lang/go14/patches/patch-include_u.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1508423341186240 Content-Disposition: inline Content-Length: 1902 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/go14/distinfo diff -u pkgsrc/lang/go14/distinfo:1.7 pkgsrc/lang/go14/distinfo:1.8 --- pkgsrc/lang/go14/distinfo:1.7 Tue Oct 4 18:45:22 2016 +++ pkgsrc/lang/go14/distinfo Thu Oct 19 14:29:01 2017 @@ -1,10 +1,11 @@ -$NetBSD: distinfo,v 1.7 2016/10/04 18:45:22 bsiegert Exp $ +$NetBSD: distinfo,v 1.8 2017/10/19 14:29:01 jperkin Exp $ SHA1 (go1.4.3.src.tar.gz) = 486db10dc571a55c8d795365070f66d343458c48 RMD160 (go1.4.3.src.tar.gz) = b1fbb2805a777c8107e7c946f36a881303ac5e35 SHA512 (go1.4.3.src.tar.gz) = 12bade4bce9aa4b34e2b9495ae65a1fc6a2449b3a43bc4de85c8b87ba223c2f999b2f37c1e2fe1188d8521118b5e5357d27afb8b85c0b8ebb4503d4125d25273 Size (go1.4.3.src.tar.gz) = 10875170 bytes SHA1 (patch-doc_progs_run) = 5a29fe4f91defb2e20d192850601df7cbabdac7c +SHA1 (patch-include_u.h) = 383edac7075b0824de496a45cdecaf57fc68b282 SHA1 (patch-misc_cgo_test_cthread__unix.c) = a63f08f07713bd32e279315cca21235101ce9cd3 SHA1 (patch-misc_cgo_testso_cgoso.go) = ef782a6f173c814656eac0df640aedaa1a923bbc SHA1 (patch-misc_cgo_testso_cgoso__unix.go) = 58e221e1ce123428a3fe6ecededf0590cbfb81ca Added files: Index: pkgsrc/lang/go14/patches/patch-include_u.h diff -u /dev/null pkgsrc/lang/go14/patches/patch-include_u.h:1.1 --- /dev/null Thu Oct 19 14:29:01 2017 +++ pkgsrc/lang/go14/patches/patch-include_u.h Thu Oct 19 14:29:01 2017 @@ -0,0 +1,15 @@ +$NetBSD: patch-include_u.h,v 1.1 2017/10/19 14:29:01 jperkin Exp $ + +Don't set broken _XOPEN_SOURCE on SunOS. + +--- include/u.h.orig 2015-09-23 04:37:36.000000000 +0000 ++++ include/u.h +@@ -42,7 +42,7 @@ extern "C" { + #define _NETBSD_SOURCE 1 /* NetBSD */ + #define _DEFAULT_SOURCE 1 /* glibc > 2.19 */ + #define _SVID_SOURCE 1 +-#if !defined(__APPLE__) && !defined(__OpenBSD__) ++#if !defined(__APPLE__) && !defined(__OpenBSD__) && !defined(__sun) + # define _XOPEN_SOURCE 1000 + # define _XOPEN_SOURCE_EXTENDED 1 + #endif --_----------=_1508423341186240--