Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4A06684CEA for ; Thu, 6 Jul 2023 07:24:40 +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 clql1hwIWpt8 for ; Thu, 6 Jul 2023 07:24:27 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 3638584CD8 for ; Thu, 6 Jul 2023 07:24:27 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 27BEDFBDB; Thu, 6 Jul 2023 07:24:27 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_168862826725380" MIME-Version: 1.0 Date: Thu, 6 Jul 2023 07:24:27 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/textproc To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20230706072427.27BEDFBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_168862826725380 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Thu Jul 6 07:24:27 UTC 2023 Modified Files: pkgsrc/textproc/enchant: Makefile pkgsrc/textproc/enchant2: Makefile Log Message: enchant[2]: assumes compiler defaults to c++11 (esp. when including hunspell headers) To generate a diff of this commit: cvs rdiff -u -r1.44 -r1.45 pkgsrc/textproc/enchant/Makefile cvs rdiff -u -r1.25 -r1.26 pkgsrc/textproc/enchant2/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_168862826725380 Content-Disposition: inline Content-Length: 1395 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/enchant/Makefile diff -u pkgsrc/textproc/enchant/Makefile:1.44 pkgsrc/textproc/enchant/Makefile:1.45 --- pkgsrc/textproc/enchant/Makefile:1.44 Wed Dec 8 16:02:41 2021 +++ pkgsrc/textproc/enchant/Makefile Thu Jul 6 07:24:26 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.44 2021/12/08 16:02:41 adam Exp $ +# $NetBSD: Makefile,v 1.45 2023/07/06 07:24:26 nia Exp $ # DISTNAME= enchant-1.6.0 @@ -12,7 +12,7 @@ COMMENT= Generic spell checking library LICENSE= gnu-lgpl-v2.1 USE_TOOLS+= pkg-config autoconf -USE_LANGUAGES= c c++ +USE_LANGUAGES= c c++11 USE_PKGLOCALEDIR= yes USE_LIBTOOL= yes PKGCONFIG_OVERRIDE+= enchant.pc.in Index: pkgsrc/textproc/enchant2/Makefile diff -u pkgsrc/textproc/enchant2/Makefile:1.25 pkgsrc/textproc/enchant2/Makefile:1.26 --- pkgsrc/textproc/enchant2/Makefile:1.25 Tue Jun 6 07:55:24 2023 +++ pkgsrc/textproc/enchant2/Makefile Thu Jul 6 07:24:26 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.25 2023/06/06 07:55:24 wiz Exp $ +# $NetBSD: Makefile,v 1.26 2023/07/06 07:24:26 nia Exp $ DISTNAME= enchant-2.5.0 PKGNAME= ${DISTNAME:S/enchant/enchant2/} @@ -13,7 +13,7 @@ COMMENT= Generic spell checking library LICENSE= gnu-lgpl-v2.1 USE_TOOLS+= autoconf groff pkg-config -USE_LANGUAGES= c c++ +USE_LANGUAGES= c c++11 USE_PKGLOCALEDIR= yes USE_LIBTOOL= yes PKGCONFIG_OVERRIDE+= enchant.pc.in --_----------=_168862826725380--