* Glibc updated to 2.3.5.

* GCC 3.4.4 and 3.3.6.
* Other stdenv packages updated.

svn path=/nixpkgs/trunk/; revision=3188
This commit is contained in:
Eelco Dolstra
2005-06-17 10:30:13 +00:00
parent b691c30aa7
commit a450978f26
13 changed files with 41 additions and 60 deletions

View File

@@ -5,11 +5,11 @@
assert langC;
stdenv.mkDerivation {
name = "gcc-3.3.3";
name = "gcc-3.3.6";
builder = ./builder.sh;
src = fetchurl {
url = http://catamaran.labs.cs.uu.nl/dist/tarballs/gcc-3.3.3.tar.bz2;
md5 = "3c6cfd9fcd180481063b4058cf6faff2";
url = http://ftp.gnu.org/gnu/gcc/gcc-3.3.6/gcc-3.3.6.tar.bz2;
md5 = "6936616a967da5a0b46f1e7424a06414";
};
inherit noSysDirs langC langCC langF77;
}

View File

@@ -6,11 +6,11 @@
assert langC;
stdenv.mkDerivation {
name = "gcc-3.4.3";
name = "gcc-3.4.4";
builder = ./builder.sh;
src = fetchurl {
url = http://catamaran.labs.cs.uu.nl/dist/tarballs/gcc-3.4.3.tar.bz2;
md5 = "e744b30c834360fccac41eb7269a3011";
url = http://ftp.gnu.org/gnu/gcc/gcc-3.4.4/gcc-3.4.4.tar.bz2;
md5 = "b594ff4ea4fbef4ba9220887de713dfe";
};
# !!! apply only if noSysDirs is set
patches = [./no-sys-dirs.patch];