From 63a17d4bd5e0a9c0f896221017ab518a6cc4c79b Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 23 Sep 2009 18:52:18 +0000 Subject: [PATCH] * 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). --- release.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/release.nix b/release.nix index ada0d3421b..70e8187e36 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} ''; };