svn commit: r506916 - head/comms/cubicsdr

Piotr Kubaj pkubaj at FreeBSD.org
Fri Jul 19 08:56:43 UTC 2019


Author: pkubaj
Date: Fri Jul 19 08:56:42 2019
New Revision: 506916
URL: https://svnweb.freebsd.org/changeset/ports/506916

Log:
  comms/cubicsdr: fix build on GCC architectures
  
  Needs C++0x compiler:
  cc1plus: error: unrecognized command line option "-std=c++0x"
  
  Approved by:	mentors (implicit approval)

Modified:
  head/comms/cubicsdr/Makefile

Modified: head/comms/cubicsdr/Makefile
==============================================================================
--- head/comms/cubicsdr/Makefile	Fri Jul 19 08:54:47 2019	(r506915)
+++ head/comms/cubicsdr/Makefile	Fri Jul 19 08:56:42 2019	(r506916)
@@ -21,7 +21,7 @@ LIB_DEPENDS=	libSoapySDR.so:misc/soapysdr \
 		libEGL.so:graphics/mesa-libs \
 		libwx_gtk3u_core-3.1.so:x11-toolkits/wxgtk31
 
-USES=		cmake gl python
+USES=		cmake compiler:c++0x gl python
 USE_GL+=	glu
 
 OPTIONS_DEFINE=	HAMLIB


More information about the svn-ports-head mailing list