diff options
Diffstat (limited to 'externals/Makefile.am')
-rw-r--r-- | externals/Makefile.am | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/externals/Makefile.am b/externals/Makefile.am index 61122f4ab0f9..c74cb227eaa3 100644 --- a/externals/Makefile.am +++ b/externals/Makefile.am @@ -1,11 +1,11 @@ # Berkeley DB -DB = db-4.1.25 +DB = db-4.2.52 $(DB).tar.gz: @echo "Nix requires Berkeley DB to build." - @echo "Please download version 4.1.25 from" - @echo " http://www.sleepycat.com/update/snapshot/db-4.1.25.tar.gz" + @echo "Please download version 4.2.52 from" + @echo " http://www.sleepycat.com/update/snapshot/db-4.2.52.tar.gz" @echo "and place it in the externals/ directory." false @@ -20,8 +20,9 @@ build-db: have-db (pfx=`pwd` && \ cd $(DB)/build_unix && \ CC="$(CC)" CXX="$(CXX)" CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)" \ - ../dist/configure --prefix=$$pfx/inst \ - --enable-cxx --disable-shared && \ + ../dist/configure --prefix=$$pfx/inst \ + --enable-cxx --disable-shared --disable-cryptography \ + --disable-replication --disable-verify && \ make && \ make install) touch build-db |