Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id EA54084DBD for ; Fri, 1 Sep 2023 10:51:52 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id xWMtsYVYdOO2 for ; Fri, 1 Sep 2023 10:51:52 +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 4C1E684D15 for ; Fri, 1 Sep 2023 10:51:52 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 48E61FBDB; Fri, 1 Sep 2023 10:51:52 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1693565512299090" MIME-Version: 1.0 Date: Fri, 1 Sep 2023 10:51:52 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/ham/py-soapy-sdr To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20230901105152.48E61FBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1693565512299090 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Fri Sep 1 10:51:52 UTC 2023 Modified Files: pkgsrc/ham/py-soapy-sdr: Makefile Log Message: py-soapy-sdr: Assumes compiler defaults to C++11. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 pkgsrc/ham/py-soapy-sdr/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1693565512299090 Content-Disposition: inline Content-Length: 745 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/ham/py-soapy-sdr/Makefile diff -u pkgsrc/ham/py-soapy-sdr/Makefile:1.4 pkgsrc/ham/py-soapy-sdr/Makefile:1.5 --- pkgsrc/ham/py-soapy-sdr/Makefile:1.4 Sat Aug 12 12:44:00 2023 +++ pkgsrc/ham/py-soapy-sdr/Makefile Fri Sep 1 10:51:52 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2023/08/12 12:44:00 mef Exp $ +# $NetBSD: Makefile,v 1.5 2023/09/01 10:51:52 nia Exp $ DISTNAME= soapy-sdr-0.8.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -23,6 +23,9 @@ CMAKE_ARGS+= -DPYTHON_CONFIG_EXECUTABLE= CMAKE_ARGS+= -DSWIG_EXECUTABLE=${PREFIX:Q}/bin/swig3.0 WRKSRC= ${WRKDIR}/SoapySDR-${DISTNAME}/python +FORCE_CXX_STD= c++11 +USE_CXX_FEATURES+= c++11 + PY_PATCHPLIST= yes .include "../../lang/python/extension.mk" --_----------=_1693565512299090--