diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2006-02-01T14·52+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2006-02-01T14·52+0000 |
commit | 3eba483692f6c353dd20341b9d3fea144271ba69 (patch) | |
tree | a907a9aaae8cdbeb83c6692c8bebc1ff1cc87b62 /externals/Makefile.am | |
parent | 151f10dbc758a8bbc15bd941bd10bfdfe4c925a2 (diff) |
* Use Berkeley DB 4.4.20.
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) |