svn commit: r532141 - head/comms/gnuradio

Piotr Kubaj pkubaj at FreeBSD.org
Sun Apr 19 18:21:12 UTC 2020


Author: pkubaj
Date: Sun Apr 19 18:21:12 2020
New Revision: 532141
URL: https://svnweb.freebsd.org/changeset/ports/532141

Log:
  comms/gnuradio: fix build on GCC architectures
  
  Use C++11 compiler:
  cc1plus: error: unrecognized command line option "-std=c++11"

Modified:
  head/comms/gnuradio/Makefile

Modified: head/comms/gnuradio/Makefile
==============================================================================
--- head/comms/gnuradio/Makefile	Sun Apr 19 17:51:34 2020	(r532140)
+++ head/comms/gnuradio/Makefile	Sun Apr 19 18:21:12 2020	(r532141)
@@ -48,8 +48,9 @@ LIB_DEPENDS=	libcodec2.so:audio/codec2 \
 		libzmq.so:net/libzmq4
 RUN_DEPENDS:=	${BUILD_DEPENDS}
 
-USES=		cmake desktop-file-utils fortran gnome iconv \
-		perl5 pkgconfig pyqt:5 python:3.5+ qt:5 shared-mime-info shebangfix
+USES=		cmake compiler:c++11-lang desktop-file-utils fortran gnome \
+		iconv perl5 pkgconfig pyqt:5 python:3.5+ qt:5 shared-mime-info \
+		shebangfix
 
 USE_GITHUB=	yes
 GH_ACCOUNT=	gnuradio


More information about the svn-ports-all mailing list