Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3F6DF84D39 for ; Sun, 9 Jul 2023 14:14:59 +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 NHfVYYWJRIRE for ; Sun, 9 Jul 2023 14:14:58 +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 86DE684D2D for ; Sun, 9 Jul 2023 14:14:58 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 7589FFBDB; Sun, 9 Jul 2023 14:14:58 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1688912098274030" MIME-Version: 1.0 Date: Sun, 9 Jul 2023 14:14:58 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/devel/libebml To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20230709141458.7589FFBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1688912098274030 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Sun Jul 9 14:14:58 UTC 2023 Modified Files: pkgsrc/devel/libebml: Makefile Log Message: libebml: Require a C++14 compiler properly. To generate a diff of this commit: cvs rdiff -u -r1.53 -r1.54 pkgsrc/devel/libebml/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1688912098274030 Content-Disposition: inline Content-Length: 799 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/libebml/Makefile diff -u pkgsrc/devel/libebml/Makefile:1.53 pkgsrc/devel/libebml/Makefile:1.54 --- pkgsrc/devel/libebml/Makefile:1.53 Tue Jan 24 18:36:23 2023 +++ pkgsrc/devel/libebml/Makefile Sun Jul 9 14:14:58 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.53 2023/01/24 18:36:23 wiz Exp $ +# $NetBSD: Makefile,v 1.54 2023/07/09 14:14:58 nia Exp $ DISTNAME= libebml-1.4.4 CATEGORIES= devel @@ -10,9 +10,12 @@ HOMEPAGE= https://matroska-org.github.io COMMENT= Extensible Binary Meta Language support library LICENSE= gnu-lgpl-v2.1 -USE_LANGUAGES= c c++14 +USE_LANGUAGES= c c++ CMAKE_ARGS+= -DBUILD_SHARED_LIBS=YES PKGCONFIG_OVERRIDE= libebml.pc.in +# C++14 +GCC_REQD+= 5 + .include "../../devel/cmake/build.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1688912098274030--