mongodb: Support boost 1.57

This commit is contained in:
William A. Kennington III 2015-02-25 11:28:42 -08:00
parent 9788cbb2de
commit 961ea0f492
2 changed files with 3 additions and 1 deletions

View file

@ -41,6 +41,9 @@ in stdenv.mkDerivation rec {
# bug #482576
sed -i -e "/-Werror/d" src/third_party/v8/SConscript
# fix inclusion of std::swap
sed -i '1i #include <algorithm>' src/mongo/shell/linenoise_utf8.h
# fix environment variable reading
substituteInPlace SConstruct \
--replace "Environment( BUILD_DIR" "Environment( ENV = os.environ, BUILD_DIR"

View file

@ -8153,7 +8153,6 @@ let
mariadb = callPackage ../servers/sql/mariadb {};
mongodb = callPackage ../servers/nosql/mongodb {
boost = boost156;
sasl = cyrus_sasl;
};