* Use Linux 2.6.10 headers. 2.6.9 gives parse errors in some

applications (e.g.,
  `...glibc-2.3.4/include/linux/byteorder/little_endian.h:43: error:
  parse error before "__cpu_to_le64p"').

svn path=/nixpkgs/trunk/; revision=2289
This commit is contained in:
Eelco Dolstra 2005-02-23 14:13:27 +00:00
parent e52ae5eab0
commit 25ab1079f9

View File

@ -3,10 +3,10 @@
assert stdenv.system == "i686-linux"; assert stdenv.system == "i686-linux";
stdenv.mkDerivation { stdenv.mkDerivation {
name = "linux-headers-2.6.9-i386"; name = "linux-headers-2.6.10-i386";
builder = ./builder.sh; builder = ./builder.sh;
src = fetchurl { src = fetchurl {
url = ftp://ftp.nluug.nl/pub/os/Linux/system/kernel/v2.6/linux-2.6.9.tar.bz2; url = ftp://ftp.nluug.nl/pub/os/Linux/system/kernel/v2.6/linux-2.6.10.tar.bz2;
md5 = "e921200f074ca97184e150ef5a4af825"; md5 = "cffcd2919d9c8ef793ce1ac07a440eda";
}; };
} }