Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2B66C84CFA for ; Thu, 17 Aug 2023 10:05:01 +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 ap_47CknosqL for ; Thu, 17 Aug 2023 10:05:00 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 7916684CEE for ; Thu, 17 Aug 2023 10:05:00 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 76441FBDB; Thu, 17 Aug 2023 10:05:00 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_16922667008930" MIME-Version: 1.0 Date: Thu, 17 Aug 2023 10:05:00 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/sysutils/coreutils To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20230817100500.76441FBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_16922667008930 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Thu Aug 17 10:05:00 UTC 2023 Modified Files: pkgsrc/sysutils/coreutils: Makefile.common Log Message: coreutils: Ignore y2038 requirement on SunOS/i386. This platform will be dead by then, 32-bit binaries are currently only required for PAM modules. For now we just want software to build. To generate a diff of this commit: cvs rdiff -u -r1.28 -r1.29 pkgsrc/sysutils/coreutils/Makefile.common Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_16922667008930 Content-Disposition: inline Content-Length: 922 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/sysutils/coreutils/Makefile.common diff -u pkgsrc/sysutils/coreutils/Makefile.common:1.28 pkgsrc/sysutils/coreutils/Makefile.common:1.29 --- pkgsrc/sysutils/coreutils/Makefile.common:1.28 Tue Aug 1 11:13:27 2023 +++ pkgsrc/sysutils/coreutils/Makefile.common Thu Aug 17 10:05:00 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.28 2023/08/01 11:13:27 adam Exp $ +# $NetBSD: Makefile.common,v 1.29 2023/08/17 10:05:00 jperkin Exp $ # # used by sysutils/coreutils/Makefile # used by misc/gnuls/Makefile @@ -52,6 +52,11 @@ CONFIGURE_ENV.SunOS+= ac_cv_func_inotify CONFIGURE_ENV+= gl_cv_host_operating_system=illumos .endif +# Ignore required y2038 support +.if ${MACHINE_PLATFORM:MSunOS-*-i386} +CONFIGURE_ENV+= ac_cv_sys_year2038_opts="none needed" +.endif + .if ${MACHINE_PLATFORM:MDarwin-[9].*-*} CONFIGURE_ENV+= ac_cv_header_sys_acl_h=no jm_cv_func_svid_putenv=yes .endif --_----------=_16922667008930--