Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4F53F84EFA for ; Thu, 3 Aug 2023 21:06:47 +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 juJy-YMPwJMc for ; Thu, 3 Aug 2023 21:06:46 +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 C47AD84D01 for ; Thu, 3 Aug 2023 21:06:46 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id BDD6CFBDB; Thu, 3 Aug 2023 21:06:46 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1691096806126210" MIME-Version: 1.0 Date: Thu, 3 Aug 2023 21:06:46 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20230803210646.BDD6CFBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1691096806126210 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Thu Aug 3 21:06:46 UTC 2023 Modified Files: pkgsrc/www/w3m: Makefile.common pkgsrc/x11/gtk3: Makefile Log Message: Use gnu99 where required to get definitions for libc symbols. To generate a diff of this commit: cvs rdiff -u -r1.79 -r1.80 pkgsrc/www/w3m/Makefile.common cvs rdiff -u -r1.187 -r1.188 pkgsrc/x11/gtk3/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1691096806126210 Content-Disposition: inline Content-Length: 1475 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/w3m/Makefile.common diff -u pkgsrc/www/w3m/Makefile.common:1.79 pkgsrc/www/w3m/Makefile.common:1.80 --- pkgsrc/www/w3m/Makefile.common:1.79 Wed Aug 2 16:17:19 2023 +++ pkgsrc/www/w3m/Makefile.common Thu Aug 3 21:06:46 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.79 2023/08/02 16:17:19 nia Exp $ +# $NetBSD: Makefile.common,v 1.80 2023/08/03 21:06:46 nia Exp $ # # used by www/w3m/Makefile # used by www/w3m-img/Makefile @@ -22,7 +22,8 @@ USE_TOOLS+= msgfmt USE_PKGLOCALEDIR= yes # error: 'for' loop initial declarations are only allowed in C99 mode -FORCE_C_STD= c99 +# needs strcasecmp, ISO C unacceptable on illumos +FORCE_C_STD= gnu99 W3M_VERS= 0.5.3+git20230121 W3M_PKGVERS= ${W3M_VERS:S/+git/.0./} Index: pkgsrc/x11/gtk3/Makefile diff -u pkgsrc/x11/gtk3/Makefile:1.187 pkgsrc/x11/gtk3/Makefile:1.188 --- pkgsrc/x11/gtk3/Makefile:1.187 Wed Aug 2 16:17:19 2023 +++ pkgsrc/x11/gtk3/Makefile Thu Aug 3 21:06:46 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.187 2023/08/02 16:17:19 nia Exp $ +# $NetBSD: Makefile,v 1.188 2023/08/03 21:06:46 nia Exp $ DISTNAME= gtk+-3.24.38 PKGNAME= ${DISTNAME:S/gtk/gtk3/} @@ -20,7 +20,8 @@ USE_TOOLS+= bash gdbus-codegen ggrep ms PTHREAD_AUTO_VARS= yes # "error: 'for' loop initial declarations are only allowed in C99 mode" -FORCE_C_STD= c99 +# tests need M_PI, ISO C unacceptable on illumos +FORCE_C_STD= gnu99 MESON_ARGS+= -Dgtk_doc=true MESON_ARGS+= -Dman=true --_----------=_1691096806126210--