Date: Sun, 20 Sep 2020 06:16:06 +0000 (UTC) From: Piotr Kubaj <pkubaj@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r549087 - head/math/octomap Message-ID: <202009200616.08K6G6ti032451@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202009200616.08K6G6ti032451>