Received: by mail.netbsd.org (Postfix, from userid 605) id 42EC684CD3; Sun, 23 Dec 2018 23:29:30 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 56EAC84C85 for ; Sun, 23 Dec 2018 23:29:29 +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 PqBaPDv-P2YD for ; Sun, 23 Dec 2018 23:29:28 +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 6CF2C84C77 for ; Sun, 23 Dec 2018 23:29:28 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 5CC76FB16; Sun, 23 Dec 2018 23:29:28 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1545607768211520" MIME-Version: 1.0 Date: Sun, 23 Dec 2018 23:29:28 +0000 From: "Sevan Janiyan" Subject: CVS commit: pkgsrc/devel/bmake/files To: pkgsrc-changes@NetBSD.org Reply-To: sevan@netbsd.org X-Mailer: log_accum Message-Id: <20181223232928.5CC76FB16@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. --_----------=_1545607768211520 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: sevan Date: Sun Dec 23 23:29:28 UTC 2018 Modified Files: pkgsrc/devel/bmake/files: job.c Log Message: On Minix3 the call to read returns EAGAIN (-1) and causes the build to break. Skip punting on Minix3 as workaround for now, change via sjg@ To generate a diff of this commit: cvs rdiff -u -r1.17 -r1.18 pkgsrc/devel/bmake/files/job.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1545607768211520 Content-Disposition: inline Content-Length: 1297 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/bmake/files/job.c diff -u pkgsrc/devel/bmake/files/job.c:1.17 pkgsrc/devel/bmake/files/job.c:1.18 --- pkgsrc/devel/bmake/files/job.c:1.17 Mon Sep 10 10:16:58 2018 +++ pkgsrc/devel/bmake/files/job.c Sun Dec 23 23:29:28 2018 @@ -1,4 +1,4 @@ -/* $NetBSD: job.c,v 1.17 2018/09/10 10:16:58 schmonz Exp $ */ +/* $NetBSD: job.c,v 1.18 2018/12/23 23:29:28 sevan Exp $ */ /* * Copyright (c) 1988, 1989, 1990 The Regents of the University of California. @@ -70,14 +70,14 @@ */ #ifndef MAKE_NATIVE -static char rcsid[] = "$NetBSD: job.c,v 1.17 2018/09/10 10:16:58 schmonz Exp $"; +static char rcsid[] = "$NetBSD: job.c,v 1.18 2018/12/23 23:29:28 sevan Exp $"; #else #include #ifndef lint #if 0 static char sccsid[] = "@(#)job.c 8.2 (Berkeley) 3/19/94"; #else -__RCSID("$NetBSD: job.c,v 1.17 2018/09/10 10:16:58 schmonz Exp $"); +__RCSID("$NetBSD: job.c,v 1.18 2018/12/23 23:29:28 sevan Exp $"); #endif #endif /* not lint */ #endif @@ -2084,7 +2084,10 @@ Job_CatchOutput(void) case 0: Punt("unexpected eof on token pipe"); case -1: +#ifndef __minix Punt("token pipe read: %s", strerror(errno)); +#endif + break; case 1: if (token == DO_JOB_RESUME[0]) /* Complete relay requested from our SIGCONT handler */ --_----------=_1545607768211520--