Received: by mail.netbsd.org (Postfix, from userid 605) id 84B1484F22; Fri, 18 Jan 2019 16:24:39 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D040F84DFD for ; Fri, 18 Jan 2019 16:24:38 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id 3OU9sH1GY7Dg for ; Fri, 18 Jan 2019 16:24:38 +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 2595884CCF for ; Fri, 18 Jan 2019 16:24:38 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 1824AFB16; Fri, 18 Jan 2019 16:24:38 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1547828678108930" MIME-Version: 1.0 Date: Fri, 18 Jan 2019 16:24:38 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/lang/nodejs To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20190118162438.1824AFB16@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. --_----------=_1547828678108930 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Fri Jan 18 16:24:38 UTC 2019 Modified Files: pkgsrc/lang/nodejs: Makefile.common Log Message: nodejs: Ensure largefile is enabled on SunOS. To generate a diff of this commit: cvs rdiff -u -r1.26 -r1.27 pkgsrc/lang/nodejs/Makefile.common Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1547828678108930 Content-Disposition: inline Content-Length: 840 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/nodejs/Makefile.common diff -u pkgsrc/lang/nodejs/Makefile.common:1.26 pkgsrc/lang/nodejs/Makefile.common:1.27 --- pkgsrc/lang/nodejs/Makefile.common:1.26 Thu Jan 10 13:02:41 2019 +++ pkgsrc/lang/nodejs/Makefile.common Fri Jan 18 16:24:37 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.26 2019/01/10 13:02:41 ryoon Exp $ +# $NetBSD: Makefile.common,v 1.27 2019/01/18 16:24:37 jperkin Exp $ # used by lang/nodejs/Makefile # used by lang/nodejs6/Makefile # used by lang/nodejs8/Makefile @@ -60,6 +60,9 @@ SUBST_FILES.mksnapshot+= out/deps/v8/gyp SUBST_SED.mksnapshot+= -e 's|call do_cmd,link)|call do_cmd,link)\${.newline} ${TOOLS_PLATFORM.paxctl} +m $$@|' .endif +CFLAGS.SunOS+= -D_FILE_OFFSET_BITS=64 +CXXFLAGS.SunOS+= -D_FILE_OFFSET_BITS=64 + pre-install: ${CHMOD} -R g-w ${WRKSRC} --_----------=_1547828678108930--