Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 2 May 2013 22:21:25 +0000 (UTC)
From:      Mikhail Teterin <mi@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r317167 - head/devel/boost-all
Message-ID:  <201305022221.r42MLP9T054889@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mi
Date: Thu May  2 22:21:24 2013
New Revision: 317167
URL: http://svnweb.freebsd.org/changeset/ports/317167

Log:
  When BOOST_TOOLSET is "gcc", the actual compiler can be anything from g++ to g++48.
  
  Make sure, the ${CXX} specified is used by the port, rather than the default g++.
  
  Tested with:	g++48
  Approved by:	bapt

Modified:
  head/devel/boost-all/compiled.mk

Modified: head/devel/boost-all/compiled.mk
==============================================================================
--- head/devel/boost-all/compiled.mk	Thu May  2 22:17:24 2013	(r317166)
+++ head/devel/boost-all/compiled.mk	Thu May  2 22:21:24 2013	(r317167)
@@ -58,3 +58,6 @@ BJAM_ARGS+=	inlining=full
 post-patch:
 	@${REINPLACE_CMD} -e 's|${PORTVERSION}|${BOOST_SHARED_LIB_VER}|g' \
 		${WRKSRC}/Jamroot
+.if ${BOOST_TOOLSET} == gcc
+	@${ECHO} "using gcc : : ${CXX} ;" >> ${WRKSRC}/tools/build/v2/user-config.jam
+.endif



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