svn commit: r495849 - head/emulators/aqemu

Mark Linimon linimon at FreeBSD.org
Sat Mar 16 07:51:29 UTC 2019


Author: linimon
Date: Sat Mar 16 07:51:28 2019
New Revision: 495849
URL: https://svnweb.freebsd.org/changeset/ports/495849

Log:
  Fix build on gcc-based architectures:
  
    The compiler feature "cxx_decltype" is not known to CXX compiler

Modified:
  head/emulators/aqemu/Makefile

Modified: head/emulators/aqemu/Makefile
==============================================================================
--- head/emulators/aqemu/Makefile	Sat Mar 16 07:48:03 2019	(r495848)
+++ head/emulators/aqemu/Makefile	Sat Mar 16 07:51:28 2019	(r495849)
@@ -14,7 +14,7 @@ LICENSE_FILE=	${WRKSRC}/COPYING
 
 LIB_DEPENDS=	libvncclient.so:net/libvncserver
 
-USES=		cmake:noninja qt:5
+USES=		cmake:noninja compiler:c++11-lang qt:5
 USE_QT=		buildtools_build linguisttools_build qmake_build \
 		core dbus gui network printsupport testlib widgets
 


More information about the svn-ports-all mailing list