mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 07:31:20 +00:00
* The "static" flag is no longer used it seems. And static builds can
probably be done using the makeStaticBinaries stdenv adapter. svn path=/nixpkgs/trunk/; revision=17595
This commit is contained in:
parent
4041f93fbf
commit
aa6c9ba04e
|
@ -8,7 +8,6 @@
|
|||
, javahlBindings ? false
|
||||
, stdenv, fetchurl, apr, aprutil, neon, zlib, sqlite
|
||||
, httpd ? null, expat, swig ? null, jdk ? null, python ? null, perl ? null
|
||||
, static ? false
|
||||
}:
|
||||
|
||||
assert bdbSupport -> aprutil.bdbSupport;
|
||||
|
@ -37,7 +36,6 @@ stdenv.mkDerivation rec {
|
|||
|
||||
configureFlags = ''
|
||||
--disable-keychain
|
||||
${if static then "--disable-shared --enable-all-static" else ""}
|
||||
${if bdbSupport then "--with-berkeley-db" else "--without-berkeley-db"}
|
||||
${if httpServer then "--with-apxs=${httpd}/bin/apxs" else "--without-apxs"}
|
||||
${if pythonBindings || perlBindings then "--with-swig=${swig}" else "--without-swig"}
|
||||
|
|
Loading…
Reference in a new issue