Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 19D831A9239 for ; Sun, 20 Feb 2022 10:46:13 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 6445684E8A; Sun, 20 Feb 2022 10:46:12 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9EA8184D50 for ; Sun, 20 Feb 2022 10:46:11 +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 gFVbTQAiKFlf for ; Sun, 20 Feb 2022 10:46:11 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id E8D5F84CDF for ; Sun, 20 Feb 2022 10:46:10 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id E09D4FB24; Sun, 20 Feb 2022 10:46:10 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1645353970265740" MIME-Version: 1.0 Date: Sun, 20 Feb 2022 10:46:10 +0000 From: "Makoto Fujiwara" Subject: CVS commit: pkgsrc/ham/gnuradio-core To: pkgsrc-changes@NetBSD.org Reply-To: mef@netbsd.org X-Mailer: log_accum Message-Id: <20220220104610.E09D4FB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1645353970265740 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: mef Date: Sun Feb 20 10:46:10 UTC 2022 Modified Files: pkgsrc/ham/gnuradio-core: Makefile.common Log Message: (ham/gnuradio-core) Add GCC_REQD = 8 [ 12%] Building CXX object gnuradio-runtime/lib/CMakeFiles/gnuradio-runtime.dir/basic_block.cc.o In file included from /usr/pkg/include/boost/dll/runtime_symbol_info.hpp:11:0, from /tmp/ham/gnuradio-core/work/gnuradio-3.10.0.0/build/gnuradio-runtime/lib/constants.cc:16: /usr/pkg/include/boost/dll/config.hpp:47:22: error: 'filesystem' is not a namespace-name using namespace std::filesystem; ^~~~~~~~~~ /usr/pkg/include/boost/dll/config.hpp:47:32: error: expected namespace-name before ';' token using namespace std::filesystem; ^ To generate a diff of this commit: cvs rdiff -u -r1.37 -r1.38 pkgsrc/ham/gnuradio-core/Makefile.common Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1645353970265740 Content-Disposition: inline Content-Length: 875 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/ham/gnuradio-core/Makefile.common diff -u pkgsrc/ham/gnuradio-core/Makefile.common:1.37 pkgsrc/ham/gnuradio-core/Makefile.common:1.38 --- pkgsrc/ham/gnuradio-core/Makefile.common:1.37 Tue Jan 25 04:39:53 2022 +++ pkgsrc/ham/gnuradio-core/Makefile.common Sun Feb 20 10:46:10 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.37 2022/01/25 04:39:53 mef Exp $ +# $NetBSD: Makefile.common,v 1.38 2022/02/20 10:46:10 mef Exp $ # This Makefile fragment is included in the package Makefiles for # GNU Radio distributed packages (they all share common configure and build # settings). @@ -40,6 +40,8 @@ USE_LANGUAGES= c c++ USE_TOOLS= perl gmake cmake pkg-config USE_CMAKE= yes +GCC_REQD= 8 + DEPENDS+= ${PYPKGPREFIX}-scipy-[0-9]*:../../math/py-scipy DEPENDS+= ${PYPKGPREFIX}-packaging-[0-9]*:../../devel/py-packaging # for companion --_----------=_1645353970265740--