diff --git a/devel/boost/Portfile b/devel/boost/Portfile
index 59fb944f24..05fe5e2e9c 100644
a
|
b
|
PortGroup mpi 1.0 |
7 | 7 | name boost |
8 | 8 | |
9 | 9 | version 1.66.0 |
10 | | revision 1 |
| 10 | revision 2 |
11 | 11 | checksums rmd160 ee5dafdfa49adf50a5333cef1f55dac4f70b4c14 \ |
12 | 12 | sha256 5721818253e6a0989583192f96782c4a98eb6204965316df9f5ad75819225ca9 \ |
13 | 13 | size 85995778 |
… |
… |
http://www.boost.org/doc/libs/${distver}/libs/regex/doc/html/boost_regex/ref/sub |
258 | 258 | } |
259 | 259 | } |
260 | 260 | |
| 261 | variant cxx11 description "Build using C++11 compliance" { |
| 262 | PortGroup cxx11 1.1 |
| 263 | configure.cxxflags-append -std=gnu++11 |
| 264 | } |
| 265 | |
| 266 | platform darwin { |
| 267 | # default to +cxx11 for 10.8 and prior |
| 268 | if {${os.major} <= 12} { |
| 269 | default_variants +cxx11 |
| 270 | } |
| 271 | } |
| 272 | |
261 | 273 | if {[mpi_variant_isset]} { |
262 | 274 | |
263 | 275 | # There is a conflict with debug support. |