diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-02-11 14:11:14 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-02-11 14:11:14 +0100 |
commit | fdaae613712077f9325141024da395ef315db130 (patch) | |
tree | 8fd6bd552a948274004298252fe479abd7e7a34e /gnu/packages/base.scm | |
parent | f6408bc584bd3c01713e7703b052e966ee616209 (diff) | |
download | guix-fdaae613712077f9325141024da395ef315db130.tar guix-fdaae613712077f9325141024da395ef315db130.tar.gz |
gnu: glibc: Update to 2.21.
* gnu/packages/base.scm (glibc): Update to 2.21. Remove 3 patches no
longer needed.
* gnu/packages/patches/glibc-CVE-2012-3406.patch,
gnu/packages/patches/glibc-CVE-2014-7817.patch,
gnu/packages/patches/glibc-mips-dangling-vfork-ref.patch: Remove.
* gnu-system.am (dist_patch_DATA): Adjust accordingly.
Diffstat (limited to 'gnu/packages/base.scm')
-rw-r--r-- | gnu/packages/base.scm | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm index 7306f2842f..cb6269a11e 100644 --- a/gnu/packages/base.scm +++ b/gnu/packages/base.scm @@ -357,14 +357,14 @@ included.") (define-public glibc (package (name "glibc") - (version "2.20") + (version "2.21") (source (origin (method url-fetch) (uri (string-append "mirror://gnu/glibc/glibc-" version ".tar.xz")) (sha256 (base32 - "19bbyfc2gcxr9rihrkkbd3p362i608yhlyrr7icqsa6cmr16sjzq")) + "1f135546j34s9bfkydmx2nhh9vwxlx60jldi80zmsnln6wj3dsxf")) (snippet ;; Disable 'ldconfig' and /etc/ld.so.cache. The latter is ;; required on LFS distros to avoid loading the distro's libc.so @@ -373,10 +373,7 @@ included.") (("use_ldconfig=yes") "use_ldconfig=no"))) (modules '((guix build utils))) - (patches (list (search-patch "glibc-CVE-2014-7817.patch") - (search-patch "glibc-CVE-2012-3406.patch") - (search-patch "glibc-mips-dangling-vfork-ref.patch") - (search-patch "glibc-ldd-x86_64.patch"))))) + (patches (list (search-patch "glibc-ldd-x86_64.patch"))))) (build-system gnu-build-system) ;; Glibc's <limits.h> refers to <linux/limit.h>, for instance, so glibc @@ -409,7 +406,7 @@ included.") (assoc-ref %build-inputs "linux-headers") "/include") - ;; This is the default for most architectures as of GNU libc 2.20, + ;; This is the default for most architectures as of GNU libc 2.21, ;; but we specify it explicitly for clarity and consistency. See ;; "kernel-features.h" in the GNU libc for details. "--enable-kernel=2.6.32" |