Revision: 110446 https://trac.macports.org/changeset/110446 Author: jeremyhu@macports.org Date: 2013-08-30 22:15:05 -0700 (Fri, 30 Aug 2013) Log Message: ----------- boost: Pass configure.cxxflags to the frontend when linking C++ code Modified Paths: -------------- trunk/dports/devel/boost/Portfile Modified: trunk/dports/devel/boost/Portfile =================================================================== --- trunk/dports/devel/boost/Portfile 2013-08-31 04:44:05 UTC (rev 110445) +++ trunk/dports/devel/boost/Portfile 2013-08-31 05:15:05 UTC (rev 110446) @@ -94,7 +94,7 @@ set compileflags "" if {[string length ${configure.sdkroot}] != 0} { set compileflags "<compileflags>\"-isysroot ${configure.sdkroot}\"" } - write_jam "using darwin : : ${configure.cxx} : <cxxflags>\"${configure.cxxflags}\" ${compileflags} <linkflags>\"${configure.ldflags}\" : ;" + write_jam "using darwin : : ${configure.cxx} : <cxxflags>\"${configure.cxxflags}\" ${compileflags} <linkflags>\"${configure.ldflags} ${configure.cxxflags}\" : ;" }