diff options
author | gdt <gdt@pkgsrc.org> | 2019-02-27 00:35:25 +0000 |
---|---|---|
committer | gdt <gdt@pkgsrc.org> | 2019-02-27 00:35:25 +0000 |
commit | 8d5ca36a9f1d941e1d32dd30bdf47adcccb1d569 (patch) | |
tree | 598e9baba1ea84f99f7a45a63dbec2c2f4aa90d9 /ham/uhd | |
parent | 5e71827bc15d7f4ab67b38cf1884ffc4f4d2fa34 (diff) | |
download | pkgsrc-8d5ca36a9f1d941e1d32dd30bdf47adcccb1d569.tar.gz |
ham/uhd: Add language rules from upstream bug report
c++11 and gcc 4.8 are required, per upstream.
Diffstat (limited to 'ham/uhd')
-rw-r--r-- | ham/uhd/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/ham/uhd/Makefile b/ham/uhd/Makefile index 3047474e2cc..cb9d798f100 100644 --- a/ham/uhd/Makefile +++ b/ham/uhd/Makefile @@ -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 37 # py-cheetah 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: |