pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/ham/uhd



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.

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:



Home | Main Index | Thread Index | Old Index