svn commit: r502162 - head/net/x2goclient

Piotr Kubaj pkubaj at FreeBSD.org
Mon May 20 20:11:18 UTC 2019


Author: pkubaj
Date: Mon May 20 20:11:17 2019
New Revision: 502162
URL: https://svnweb.freebsd.org/changeset/ports/502162

Log:
  net/x2goclient: fix build with GCC-based architectures
  
  Add USES=compiler:c++11-lang to fix:
  cc1plus: error: unrecognized command line option "-std=gnu++11"
  
  Approved by:	mentors (implicit approval)

Modified:
  head/net/x2goclient/Makefile

Modified: head/net/x2goclient/Makefile
==============================================================================
--- head/net/x2goclient/Makefile	Mon May 20 20:09:32 2019	(r502161)
+++ head/net/x2goclient/Makefile	Mon May 20 20:11:17 2019	(r502162)
@@ -20,7 +20,7 @@ LIB_DEPENDS=	libcups.so:print/cups \
 RUN_DEPENDS=	nxproxy:net/nxproxy \
 		x2goclient-cli:net/x2goclient-cli
 
-USES=		gl qmake qt:5
+USES=		compiler:c++11-lang gl qmake qt:5
 USE_GL=		gl
 USE_XORG=	x11 xpm
 USE_QT=		core gui network svg widgets x11extras  \


More information about the svn-ports-all mailing list