Skip to content

Commit

Permalink
add scons check for boost_locale for windows
Browse files Browse the repository at this point in the history
TODO: maybe the file scons/boost.py should also be changed?
  • Loading branch information
gfgtdf committed Oct 18, 2014
1 parent 441343a commit 782c36d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion SConstruct
Expand Up @@ -369,7 +369,8 @@ if env["prereqs"]:
conf.CheckBoostIostreamsBZip2() & \
conf.CheckBoost("smart_ptr", header_only = True) & \
conf.CheckBoost("system") & \
((not env["boostfilesystem"]) or (conf.CheckBoost("filesystem", require_version = "1.44.0"))) \
((not env["boostfilesystem"]) or (conf.CheckBoost("filesystem", require_version = "1.44.0"))) & \
((not env["PLATFORM"] == "win32") or (not env["boostfilesystem"]) or (conf.CheckBoost("locale"))) \
and Info("GOOD: Base prerequisites are met")) \
or Warning("WARN: Base prerequisites are not met")

Expand Down

0 comments on commit 782c36d

Please sign in to comment.