Received: by mail.netbsd.org (Postfix, from userid 605) id 0315C84E8D; Tue, 14 Feb 2023 17:35:45 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 318D684E87 for ; Tue, 14 Feb 2023 17:35:44 +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 vTbSRB0LAZo2 for ; Tue, 14 Feb 2023 17:35:43 +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 870C984D40 for ; Tue, 14 Feb 2023 17:35:43 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 7AD50FA90; Tue, 14 Feb 2023 17:35:43 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1676396143266890" MIME-Version: 1.0 Date: Tue, 14 Feb 2023 17:35:43 +0000 From: "Havard Eidnes" Subject: CVS commit: pkgsrc/inputmethod/kimera To: pkgsrc-changes@NetBSD.org Reply-To: he@netbsd.org X-Mailer: log_accum Message-Id: <20230214173543.7AD50FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1676396143266890 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: he Date: Tue Feb 14 17:35:43 UTC 2023 Modified Files: pkgsrc/inputmethod/kimera: Makefile Log Message: inputmethod/kimera: USE_LANGUAGES+= gnu++03. Also remove -std=c++98, because this program uses alloca(). This makes it build again for NetBSD/macppc. To generate a diff of this commit: cvs rdiff -u -r1.32 -r1.33 pkgsrc/inputmethod/kimera/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1676396143266890 Content-Disposition: inline Content-Length: 694 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/inputmethod/kimera/Makefile diff -u pkgsrc/inputmethod/kimera/Makefile:1.32 pkgsrc/inputmethod/kimera/Makefile:1.33 --- pkgsrc/inputmethod/kimera/Makefile:1.32 Sun Jan 29 21:16:55 2023 +++ pkgsrc/inputmethod/kimera/Makefile Tue Feb 14 17:35:43 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.32 2023/01/29 21:16:55 ryoon Exp $ +# $NetBSD: Makefile,v 1.33 2023/02/14 17:35:43 he Exp $ # DISTNAME= kimera-2.11 @@ -11,7 +11,9 @@ HOMEPAGE= http://kimera.osdn.jp/ COMMENT= Kanji Input MEthod for RAgamuffins LICENSE= gnu-gpl-v3 -USE_LANGUAGES= c++ +USE_LANGUAGES= gnu++03 + +BUILDLINK_TRANSFORM+= rm:-std=c++98 INSTALL_MAKE_FLAGS+= INSTALL_ROOT=${DESTDIR} --_----------=_1676396143266890--