3
0
Fork 0
forked from mirrors/nixpkgs

glibc: Require Linux 2.6.32 instead of 2.6.35

By popular demand.  For instance, many widely used RHEL systems are
still on 2.6.32.
This commit is contained in:
Eelco Dolstra 2013-05-09 13:52:05 +02:00
parent cc17e70374
commit 0f53a2e9f3

View file

@ -81,7 +81,7 @@ stdenv.mkDerivation ({
then "--enable-profile"
else "--disable-profile")
] ++ stdenv.lib.optionals (cross == null && kernelHeaders != null) [
"--enable-kernel=2.6.35"
"--enable-kernel=2.6.32"
] ++ stdenv.lib.optionals (cross != null) [
(if cross.withTLS then "--with-tls" else "--without-tls")
(if cross.float == "soft" then "--without-fp" else "--with-fp")