Received: by mail.netbsd.org (Postfix, from userid 605) id 77B8484D54; Wed, 27 Feb 2019 00:35:26 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0050F84D53 for ; Wed, 27 Feb 2019 00:35:26 +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 8Ast5I6GJixf for ; Wed, 27 Feb 2019 00:35:25 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 58ADF84CD6 for ; Wed, 27 Feb 2019 00:35:25 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 5242BFB16; Wed, 27 Feb 2019 00:35:25 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1551227725141500" MIME-Version: 1.0 Date: Wed, 27 Feb 2019 00:35:25 +0000 From: "Greg Troxel" Subject: CVS commit: pkgsrc/ham/uhd To: pkgsrc-changes@NetBSD.org Reply-To: gdt@netbsd.org X-Mailer: log_accum Message-Id: <20190227003525.5242BFB16@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1551227725141500 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gdt Date: Wed Feb 27 00:35:25 UTC 2019 Modified Files: pkgsrc/ham/uhd: Makefile Log Message: ham/uhd: Add language rules from upstream bug report c++11 and gcc 4.8 are required, per upstream. To generate a diff of this commit: cvs rdiff -u -r1.41 -r1.42 pkgsrc/ham/uhd/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1551227725141500 Content-Disposition: inline Content-Length: 986 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/ham/uhd/Makefile diff -u pkgsrc/ham/uhd/Makefile:1.41 pkgsrc/ham/uhd/Makefile:1.42 --- pkgsrc/ham/uhd/Makefile:1.41 Sun Feb 24 21:41:11 2019 +++ pkgsrc/ham/uhd/Makefile Wed Feb 27 00:35:25 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.41 2019/02/24 21:41:11 mef Exp $ +# $NetBSD: Makefile,v 1.42 2019/02/27 00:35:25 gdt Exp $ # 3.13.0.1 is missing *_firmware_burner, and it's not clear that is correct. DISTNAME= uhd-3.11.1.0 @@ -21,7 +21,12 @@ PYTHON_VERSIONS_INCOMPATIBLE= 34 35 36 3 CMAKE_ARGS+= -DRST2HTML_EXECUTABLE=${PREFIX}/bin/rst2html-${PYVERSSUFFIX}.py CMAKE_ARGS+= -Wno-dev -USE_LANGUAGES= c c++ +# Upstream says C++11 is required, even though it is not documented. +# It is documented that gcc 4.8 is required, when using gcc. +# https://github.com/EttusResearch/uhd/issues/236 +USE_LANGUAGES= c c++11 +# c++11 +GCC_REQD+= 4.8 USE_TOOLS= cmake pkg-config USE_CMAKE= yes # extra pax_global_header exists, and to avoid that: --_----------=_1551227725141500--