Received: by mail.netbsd.org (Postfix, from userid 605) id 10EDF84D63; Sat, 25 Apr 2020 11:27:37 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8BE9D84D3C for ; Sat, 25 Apr 2020 11:27:36 +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 oIaT9p_X-LoX for ; Sat, 25 Apr 2020 11:27:36 +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 DF6E384C8B for ; Sat, 25 Apr 2020 11:27:35 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id CF117FB27; Sat, 25 Apr 2020 11:27:35 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1587814055282200" MIME-Version: 1.0 Date: Sat, 25 Apr 2020 11:27:35 +0000 From: "Jonathan Schleifer" Subject: CVS commit: pkgsrc/graphics/giflib To: pkgsrc-changes@NetBSD.org Reply-To: js@netbsd.org X-Mailer: log_accum Message-Id: <20200425112735.CF117FB27@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. --_----------=_1587814055282200 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: js Date: Sat Apr 25 11:27:35 UTC 2020 Modified Files: pkgsrc/graphics/giflib: Makefile Log Message: Fix graphics/giflib build At least on macOS, it does not build in parallel. To generate a diff of this commit: cvs rdiff -u -r1.53 -r1.54 pkgsrc/graphics/giflib/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1587814055282200 Content-Disposition: inline Content-Length: 733 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/giflib/Makefile diff -u pkgsrc/graphics/giflib/Makefile:1.53 pkgsrc/graphics/giflib/Makefile:1.54 --- pkgsrc/graphics/giflib/Makefile:1.53 Thu Mar 19 23:58:33 2020 +++ pkgsrc/graphics/giflib/Makefile Sat Apr 25 11:27:35 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.53 2020/03/19 23:58:33 joerg Exp $ +# $NetBSD: Makefile,v 1.54 2020/04/25 11:27:35 js Exp $ .include "Makefile.common" PKGREVISION= 2 @@ -7,6 +7,10 @@ COMMENT= GIF image format library CONFLICTS+= libungif-[0-9]* +# clang: error: no such file or directory: 'dgif_lib.o' +# clang: error: no such file or directory: 'egif_lib.o' +MAKE_JOBS_SAFE= no + INSTALL_TARGET= install-include INSTALL_TARGET+= install-lib --_----------=_1587814055282200--