Received: by mail.netbsd.org (Postfix, from userid 605) id 64B4684D85; Fri, 9 Apr 2021 21:22:31 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9E74884D79 for ; Fri, 9 Apr 2021 21:22:30 +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 RqTPMkB-KSBo for ; Fri, 9 Apr 2021 21:22:30 +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 010DF84D6A for ; Fri, 9 Apr 2021 21:22:29 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id EF0E0FA95; Fri, 9 Apr 2021 21:22:29 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1618003349170610" MIME-Version: 1.0 Date: Fri, 9 Apr 2021 21:22:29 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/x11/gtk3 To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20210409212229.EF0E0FA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1618003349170610 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Fri Apr 9 21:22:29 UTC 2021 Modified Files: pkgsrc/x11/gtk3: Makefile Log Message: gtk3: now assumes compiler defaults to c99 To generate a diff of this commit: cvs rdiff -u -r1.160 -r1.161 pkgsrc/x11/gtk3/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1618003349170610 Content-Disposition: inline Content-Length: 1024 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/x11/gtk3/Makefile diff -u pkgsrc/x11/gtk3/Makefile:1.160 pkgsrc/x11/gtk3/Makefile:1.161 --- pkgsrc/x11/gtk3/Makefile:1.160 Thu Apr 1 07:02:23 2021 +++ pkgsrc/x11/gtk3/Makefile Fri Apr 9 21:22:29 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.160 2021/04/01 07:02:23 adam Exp $ +# $NetBSD: Makefile,v 1.161 2021/04/09 21:22:29 nia Exp $ DISTNAME= gtk+-3.24.28 PKGNAME= ${DISTNAME:S/gtk/gtk3/} @@ -11,6 +11,7 @@ HOMEPAGE= https://www.gtk.org/ COMMENT= GIMP Toolkit v3 - libraries for building X11 user interfaces LICENSE= gnu-lgpl-v2.1 +# "error: 'for' loop initial declarations are only allowed in C99 mode" USE_LANGUAGES= c c++ USE_LIBTOOL= yes USE_PKGLOCALEDIR= yes @@ -52,7 +53,8 @@ BUILD_DIRS= . demos/gtk-demo CONFIGURE_ENV.DragonFly+= ac_cv_func_isinf=yes CONFIGURE_ENV.DragonFly+= ac_cv_func_isnan=yes -CFLAGS.SunOS+= -std=gnu99 +# "error: 'for' loop initial declarations are only allowed in C99 mode" +CFLAGS+= -std=gnu99 CPPFLAGS+= -DPREFIX="\"${PREFIX}\"" --_----------=_1618003349170610--