* Glibc updated to 2.3.4.
svn path=/nixpkgs/trunk/; revision=2260
This commit is contained in:
parent
c5ee6019d8
commit
350268458c
@ -14,6 +14,15 @@ export LD_LIBRARY_PATH=$glibc/lib
|
|||||||
export PWD_P=$(type -tP pwd)
|
export PWD_P=$(type -tP pwd)
|
||||||
|
|
||||||
|
|
||||||
|
postUnpack=postUnpack
|
||||||
|
postUnpack() {
|
||||||
|
cd $sourceRoot
|
||||||
|
unpackFile $linuxthreadsSrc
|
||||||
|
rm -rf nptl
|
||||||
|
cd ..
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
preConfigure=preConfigure
|
preConfigure=preConfigure
|
||||||
preConfigure() {
|
preConfigure() {
|
||||||
|
|
||||||
|
@ -1,13 +1,18 @@
|
|||||||
{stdenv, fetchurl, kernelHeaders, installLocales ? true}:
|
{stdenv, fetchurl, kernelHeaders, installLocales ? true}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "glibc-2.3.3";
|
name = "glibc-2.3.4";
|
||||||
builder = ./builder.sh;
|
builder = ./builder.sh;
|
||||||
substitute = ../../../build-support/substitute/substitute.sh;
|
substitute = ../../../build-support/substitute/substitute.sh;
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = ftp://sources.redhat.com/pub/glibc/snapshots/glibc-20050110.tar.bz2;
|
url = http://ftp.gnu.org/gnu/glibc/glibc-2.3.4.tar.bz2;
|
||||||
md5 = "1171587e4802f43fdda315910adc1854";
|
md5 = "174ac5ed4f2851fcc866a3bac1e4a6a5";
|
||||||
|
};
|
||||||
|
|
||||||
|
linuxthreadsSrc = fetchurl {
|
||||||
|
url = http://ftp.gnu.org/gnu/glibc/glibc-linuxthreads-2.3.4.tar.bz2;
|
||||||
|
md5 = "7a199cd4965eb5622163756ae64358fe";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [ ./glibc-pwd.patch ];
|
patches = [ ./glibc-pwd.patch ];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user