1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-25 19:51:00 +01:00

* Configure option --disable-old-db-compat to build without Berkeley

DB, which is only needed for converting old databases.
This commit is contained in:
Eelco Dolstra 2008-03-09 20:30:34 +00:00
parent 341b2de643
commit bcc3862331
7 changed files with 38 additions and 8 deletions

View file

@ -2,6 +2,8 @@
DB = db-4.5.20
if OLD_DB_COMPAT
$(DB).tar.gz:
@echo "Nix requires Berkeley DB to build."
@echo "Please download version 4.5.20 from"
@ -32,6 +34,12 @@ build-db: have-db
touch build-db
endif
else
build-db:
endif
# CWI ATerm