ledger: depend on boost with c++11 support

Closes Homebrew/homebrew#29908.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
master
Jack Nagel 2014-06-05 11:42:27 -05:00
parent 25235277a3
commit 9a3c6722bd
1 changed files with 4 additions and 5 deletions

View File

@ -25,11 +25,10 @@ class Ledger < Formula
depends_on "gmp"
depends_on :python => :optional
if build.with? "python"
depends_on "boost" => "with-python"
else
depends_on "boost"
end
boost_opts = []
boost_opts << "with-python" if build.with? "python"
boost_opts << "c++11" if MacOS.version < "10.9"
depends_on "boost" => boost_opts
needs :cxx11