1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-25 23:20:55 +00:00

Switch to glibc 2.11 and hope for the best.

svn path=/nixpkgs/branches/stdenv-updates/; revision=18578
This commit is contained in:
Ludovic Courtès 2009-11-23 23:35:59 +00:00
parent eadcd4462d
commit 807655e1f9

View file

@ -3411,7 +3411,7 @@ let
let haveRedHatKernel = system == "i686-linux" || system == "x86_64-linux";
haveBrokenRedHatKernel = haveRedHatKernel && getConfig ["brokenRedHatKernel"] false;
in
useFromStdenv "glibc" (if haveBrokenRedHatKernel then glibc25 else glibc29);
useFromStdenv "glibc" (if haveBrokenRedHatKernel then glibc25 else glibc211);
glibc25 = import ../development/libraries/glibc-2.5 {
inherit fetchurl stdenv kernelHeaders;