Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 519B984D65 for ; Wed, 28 Jun 2023 13:45:24 +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 51ZnqmjBeOkb for ; Wed, 28 Jun 2023 13:45:23 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id A019384D5E for ; Wed, 28 Jun 2023 13:45:23 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 99195FA89; Wed, 28 Jun 2023 13:45:23 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1687959923145130" MIME-Version: 1.0 Date: Wed, 28 Jun 2023 13:45:23 +0000 From: "Taylor R Campbell" Subject: CVS commit: pkgsrc/devel/libuv To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: riastradh@netbsd.org X-Mailer: log_accum Message-Id: <20230628134523.99195FA89@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1687959923145130 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: riastradh Date: Wed Jun 28 13:45:23 UTC 2023 Modified Files: pkgsrc/devel/libuv: Makefile Log Message: libuv: Note c11 requirement for stdatomic.h. I don't think mk/compiler.mk knows that gcc49 is needed for c11, though, so add GCC_REQD+=4.9 for now, and leave an XXX comment on the subject. Let's see if this unblocks the centos7 builds. To generate a diff of this commit: cvs rdiff -u -r1.76 -r1.77 pkgsrc/devel/libuv/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1687959923145130 Content-Disposition: inline Content-Length: 775 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/libuv/Makefile diff -u pkgsrc/devel/libuv/Makefile:1.76 pkgsrc/devel/libuv/Makefile:1.77 --- pkgsrc/devel/libuv/Makefile:1.76 Fri May 19 20:35:47 2023 +++ pkgsrc/devel/libuv/Makefile Wed Jun 28 13:45:23 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.76 2023/05/19 20:35:47 adam Exp $ +# $NetBSD: Makefile,v 1.77 2023/06/28 13:45:23 riastradh Exp $ DISTNAME= libuv-1.45.0 CATEGORIES= devel @@ -10,6 +10,9 @@ HOMEPAGE= https://github.com/libuv/libuv COMMENT= Cross-platform asychronous I/O LICENSE= mit AND 2-clause-bsd AND isc AND modified-bsd +USE_LANGUAGES+= c11 # stdatomic.h +GCC_REQD+= 4.9 # XXX until USE_LANGUAGES knows about c11/gcc49 + USE_LIBTOOL= yes USE_TOOLS+= autoconf automake pkg-config USE_FEATURES+= strnlen --_----------=_1687959923145130--