diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2009-11-06T01·15+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2009-11-06T01·15+0000 |
commit | 327a232c85de3faa56f9a6117c86e1aa22f88bd6 (patch) | |
tree | a664640621fd3d6806683e08beebc142b634b4fc /release.nix | |
parent | c60d796f04f81b17330fbfc1e438ed207b1047f4 (diff) |
* Remove support for old (before Nix 0.12pre12020) databases.
Diffstat (limited to 'release.nix')
-rw-r--r-- | release.nix | 21 |
1 files changed, 3 insertions, 18 deletions
diff --git a/release.nix b/release.nix index 089035b0ced6..4d0e2b8c8e39 100644 --- a/release.nix +++ b/release.nix @@ -29,22 +29,8 @@ let --with-xml-flags=--nonet ''; - # Include the BDB, ATerm and Bzip2 tarballs in the distribution. + # Include the ATerm and Bzip2 tarballs in the distribution. preConfigure = '' - stripHash ${db45.src} - # Remove unnecessary stuff from the Berkeley DB tarball. - ( mkdir bdb-temp - cd bdb-temp - tar xfz ${db45.src} - cd * - rm -rf docs test tcl perl libdb_java java rpc_server build_vxworks \ - examples_java examples_c examples_cxx dist/tags - mkdir test - touch test/include.tcl - cd .. - tar cvfz ../externals/$strippedName * - ) - stripHash ${aterm242fixes.src} cp -pv ${aterm242fixes.src} externals/$strippedName @@ -91,7 +77,6 @@ let configureFlags = '' --disable-init-state - ${if system == "i686-cygwin" then "--disable-old-db-compat" else "--with-bdb=${db45}"} --with-aterm=${aterm242fixes} --with-bzip2=${bzip2} ''; }; @@ -113,7 +98,7 @@ let configureFlags = '' --disable-init-state - --disable-old-db-compat --with-aterm=${aterm242fixes} --with-bzip2=${bzip2} + --with-aterm=${aterm242fixes} --with-bzip2=${bzip2} --enable-static-nix ''; }; @@ -138,7 +123,7 @@ let configureFlags = '' --disable-init-state --disable-shared - --with-bdb=${db45} --with-aterm=${aterm242fixes} --with-bzip2=${bzip2} + --with-aterm=${aterm242fixes} --with-bzip2=${bzip2} ''; lcovFilter = ["*/boost/*" "*-tab.*"]; |