Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 17 Apr 2020 10:50:39 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r531919 - branches/2020Q2/comms/openzwave-devel
Message-ID:  <202004171050.03HAodGL041451@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Fri Apr 17 10:50:39 2020
New Revision: 531919
URL: https://svnweb.freebsd.org/changeset/ports/531919

Log:
  MFH: r531918
  
  comms/openzwave-devel: fix build on GCC architectures
  
  Use C++11 compiler:
  cc1plus: error: unrecognized command line option "-std=c++11"
  
  Adding MAKE_ARGS+= CXX="${CXX}" is necessary because CXX is set up in Makefile.
  
  Approved by:	portmgr (fix build blanket)

Modified:
  branches/2020Q2/comms/openzwave-devel/Makefile
Directory Properties:
  branches/2020Q2/   (props changed)

Modified: branches/2020Q2/comms/openzwave-devel/Makefile
==============================================================================
--- branches/2020Q2/comms/openzwave-devel/Makefile	Fri Apr 17 10:47:15 2020	(r531918)
+++ branches/2020Q2/comms/openzwave-devel/Makefile	Fri Apr 17 10:50:39 2020	(r531919)
@@ -23,7 +23,7 @@ USE_GITHUB=	yes
 GH_ACCOUNT=	OpenZWave
 GH_PROJECT=	open-zwave
 GH_TAGNAME=	1e2d123c
-MAKE_ARGS=	VERSION_REV=${VERSION_REV} LIBDIR=${WRKSRC} docdir=${DOCSDIR}
+MAKE_ARGS=	VERSION_REV=${VERSION_REV} LIBDIR=${WRKSRC} docdir=${DOCSDIR} CXX=${CXX}
 
 OPTIONS_DEFINE=	DOCS DOXYGEN
 OPTIONS_SUB=	yes



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202004171050.03HAodGL041451>