svn commit: r512783 - in head/devel: ros-console_bridge ros-urdfdom

Mark Linimon linimon at FreeBSD.org
Wed Sep 25 11:57:54 UTC 2019


Author: linimon
Date: Wed Sep 25 11:57:53 2019
New Revision: 512783
URL: https://svnweb.freebsd.org/changeset/ports/512783

Log:
  Fix build on GCC-based systems:
  
    cc1plus: error: unrecognized command line option "-std=c++11"
  
  Approved by:	portmgr (tier-2 blanket)

Modified:
  head/devel/ros-console_bridge/Makefile
  head/devel/ros-urdfdom/Makefile

Modified: head/devel/ros-console_bridge/Makefile
==============================================================================
--- head/devel/ros-console_bridge/Makefile	Wed Sep 25 11:23:03 2019	(r512782)
+++ head/devel/ros-console_bridge/Makefile	Wed Sep 25 11:57:53 2019	(r512783)
@@ -9,7 +9,7 @@ COMMENT=	ROS-independent logging that pipes into ROS p
 
 LICENSE=	BSD3CLAUSE
 
-USES=		cmake
+USES=		cmake compiler:c++11-lang
 USE_GITHUB=	yes
 USE_LDCONFIG=	yes
 

Modified: head/devel/ros-urdfdom/Makefile
==============================================================================
--- head/devel/ros-urdfdom/Makefile	Wed Sep 25 11:23:03 2019	(r512782)
+++ head/devel/ros-urdfdom/Makefile	Wed Sep 25 11:57:53 2019	(r512783)
@@ -13,7 +13,7 @@ BUILD_DEPENDS=	${LOCALBASE}/lib/urdfdom_headers/cmake/
 LIB_DEPENDS=	libtinyxml.so:textproc/tinyxml \
 		libconsole_bridge.so:devel/ros-console_bridge
 
-USES=		cmake
+USES=		cmake compiler:c++11-lang
 USE_GITHUB=	yes
 USE_LDCONFIG=	yes
 


More information about the svn-ports-head mailing list