diff options
Diffstat (limited to 'externals/Makefile.am')
-rw-r--r-- | externals/Makefile.am | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/externals/Makefile.am b/externals/Makefile.am index 76f4c6759440..2f8fc56984c6 100644 --- a/externals/Makefile.am +++ b/externals/Makefile.am @@ -1,17 +1,16 @@ # Berkeley DB -DB = db-4.4.16.NC +DB = db-4.4.20.NC $(DB).tar.gz: @echo "Nix requires Berkeley DB to build." - @echo "Please download version 4.4.16 from" - @echo " http://downloads.sleepycat.com/db-4.4.16.NC.tar.gz" + @echo "Please download version 4.4.20 from" + @echo " http://downloads.sleepycat.com/db-4.4.20.NC.tar.gz" @echo "and place it in the externals/ directory." false $(DB): $(DB).tar.gz gunzip < $(DB).tar.gz | tar xvf - - cd $(DB) && patch -p1 < ../register.patch have-db: $(MAKE) $(DB) |