Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 96B7B84D74 for ; Sat, 5 Aug 2023 07:29:39 +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 oUxYwiWw_Mow for ; Sat, 5 Aug 2023 07:29:39 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id DD1BA84C2C for ; Sat, 5 Aug 2023 07:29:38 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A473AFBDB; Sat, 5 Aug 2023 07:29:38 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_169122057892000" MIME-Version: 1.0 Date: Sat, 5 Aug 2023 07:29:38 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/net/libmicrodns To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20230805072938.A473AFBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_169122057892000 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Sat Aug 5 07:29:38 UTC 2023 Modified Files: pkgsrc/net/libmicrodns: Makefile Log Message: libmicrodns: strict ISO C mode unsuitable on certain platforms To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 pkgsrc/net/libmicrodns/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_169122057892000 Content-Disposition: inline Content-Length: 750 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/libmicrodns/Makefile diff -u pkgsrc/net/libmicrodns/Makefile:1.6 pkgsrc/net/libmicrodns/Makefile:1.7 --- pkgsrc/net/libmicrodns/Makefile:1.6 Wed Aug 2 16:17:18 2023 +++ pkgsrc/net/libmicrodns/Makefile Sat Aug 5 07:29:38 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2023/08/02 16:17:18 nia Exp $ +# $NetBSD: Makefile,v 1.7 2023/08/05 07:29:38 nia Exp $ DISTNAME= microdns-0.2.0 PKGNAME= ${DISTNAME:S/microdns/libmicrodns/} @@ -14,7 +14,8 @@ COMMENT= Minimal mDNS resolver (and anno LICENSE= gnu-lgpl-v2.1 # error: 'for' loop initial declarations are only allowed in C99 mode -FORCE_C_STD= c99 +# strict ISO C mode unsuitable for illumos; strerror_r... +FORCE_C_STD= gnu99 LDFLAGS.SunOS+= -lsocket --_----------=_169122057892000--