Fix build of apr on darwin

svn path=/nixpkgs/trunk/; revision=34374
This commit is contained in:
Marco Maggesi
2012-06-06 21:44:20 +00:00
parent cadc02cb2b
commit 93f41f5ad3
2 changed files with 23 additions and 0 deletions
@@ -1,5 +1,9 @@
{ stdenv, fetchurl }:
let
inherit (stdenv.lib) optionals;
in
stdenv.mkDerivation rec {
name = "apr-1.4.6";
@@ -8,6 +12,8 @@ stdenv.mkDerivation rec {
md5 = "ffee70a111fd07372982b0550bbb14b7";
};
patches = optionals stdenv.isDarwin [ ./darwin_fix_configure.patch ];
configureFlags =
# Don't use accept4 because it's only supported on Linux >= 2.6.28.
[ "apr_cv_accept4=no" ]