diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2009-09-23T18·52+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2009-09-23T18·52+0000 |
commit | 63a17d4bd5e0a9c0f896221017ab518a6cc4c79b (patch) | |
tree | 11baae041723621a0ac20807da7c4b10c855cb29 /release.nix | |
parent | 676e07902e175666208b5c644ed8427f7684d3d9 (diff) |
* Don't build against BDB on Cygwin, it's been broken for unknown
reasons for a while (e.g. http://hydra.nixos.org/build/79164).
Diffstat (limited to 'release.nix')
-rw-r--r-- | release.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/release.nix b/release.nix index ada0d3421bef..70e8187e36be 100644 --- a/release.nix +++ b/release.nix @@ -91,7 +91,8 @@ let configureFlags = '' --disable-init-state - --with-bdb=${db45} --with-aterm=${aterm242fixes} --with-bzip2=${bzip2} + ${if system == "i686-cygwin" then "--disable-old-db-compat" else "--with-bdb=${db45}"} + --with-aterm=${aterm242fixes} --with-bzip2=${bzip2} ''; }; |