svn commit: r549087 - head/math/octomap

Piotr Kubaj pkubaj at FreeBSD.org
Sun Sep 20 06:16:07 UTC 2020


Author: pkubaj
Date: Sun Sep 20 06:16:06 2020
New Revision: 549087
URL: https://svnweb.freebsd.org/changeset/ports/549087

Log:
  math/octomap: fix build on GCC architectures
  
  Use C++11 compiler:
    The compiler feature "cxx_decltype" is not known to CXX compiler
  
    "GNU"
  
    version 4.2.1.

Modified:
  head/math/octomap/Makefile

Modified: head/math/octomap/Makefile
==============================================================================
--- head/math/octomap/Makefile	Sun Sep 20 04:51:43 2020	(r549086)
+++ head/math/octomap/Makefile	Sun Sep 20 06:16:06 2020	(r549087)
@@ -15,7 +15,7 @@ LICENSE_FILE_GPLv2=	${WRKSRC}/octovis/LICENSE.txt
 
 LIB_DEPENDS=	libQGLViewer-qt5.so:graphics/libQGLViewer
 
-USES=		cmake localbase:ldflags gl qt:5
+USES=		cmake compiler:c++11- lang localbase:ldflags gl qt:5
 USE_GITHUB=	yes
 GH_ACCOUNT=	OctoMap
 GH_TAGNAME=	a3f3809


More information about the svn-ports-all mailing list