Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 866AD84E75 for ; Wed, 12 Jul 2023 20:06:52 +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 UAQVzqF20uvL for ; Wed, 12 Jul 2023 20:06:52 +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 DAFC884D57 for ; Wed, 12 Jul 2023 20:06:51 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id D2E69FBDB; Wed, 12 Jul 2023 20:06:51 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1689192411191950" MIME-Version: 1.0 Date: Wed, 12 Jul 2023 20:06:51 +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: <20230712200651.D2E69FBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1689192411191950 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Wed Jul 12 20:06:51 UTC 2023 Modified Files: pkgsrc/net/libmicrodns: Makefile Log Message: libmicrodns: Assumes compiler defaults to c99. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 pkgsrc/net/libmicrodns/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1689192411191950 Content-Disposition: inline Content-Length: 773 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.4 pkgsrc/net/libmicrodns/Makefile:1.5 --- pkgsrc/net/libmicrodns/Makefile:1.4 Mon Jul 25 11:12:27 2022 +++ pkgsrc/net/libmicrodns/Makefile Wed Jul 12 20:06:51 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2022/07/25 11:12:27 wiz Exp $ +# $NetBSD: Makefile,v 1.5 2023/07/12 20:06:51 nia Exp $ DISTNAME= microdns-0.2.0 PKGNAME= ${DISTNAME:S/microdns/libmicrodns/} @@ -13,6 +13,9 @@ HOMEPAGE= https://github.com/videolabs/l COMMENT= Minimal mDNS resolver (and announcer) cross-platform library LICENSE= gnu-lgpl-v2.1 +# error: 'for' loop initial declarations are only allowed in C99 mode +USE_LANGUAGES= c99 + LDFLAGS.SunOS+= -lsocket PYTHON_FOR_BUILD_ONLY= tool --_----------=_1689192411191950--