diff options
author | Mark H Weaver <mhw@netris.org> | 2016-07-18 12:32:19 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2016-07-18 12:36:01 -0400 |
commit | 273260646d90bbe78aaf2f07bc22723818201fe9 (patch) | |
tree | e8c212ce8ec13b8047323b3a9fe39757b53123b4 /gnu/packages/gd.scm | |
parent | 1d14bf9f5ff43ff9097f1c5e1e2d37528eb74971 (diff) | |
download | guix-273260646d90bbe78aaf2f07bc22723818201fe9.tar guix-273260646d90bbe78aaf2f07bc22723818201fe9.tar.gz |
gnu: gd: Fix failing test on i686.
* gnu/packages/patches/gd-fix-test-on-i686.patch: New file.
* gnu/local.mk (dist_PATCH_DATA): Add it.
* gnu/packages/gd.scm (gd)[source]: Add the patch.
Diffstat (limited to 'gnu/packages/gd.scm')
-rw-r--r-- | gnu/packages/gd.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/gd.scm b/gnu/packages/gd.scm index 700de33a7a..3313ee68f2 100644 --- a/gnu/packages/gd.scm +++ b/gnu/packages/gd.scm @@ -1,6 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2013, 2016 Ludovic Courtès <ludo@gnu.org> -;;; Copyright © 2015 Mark H Weaver <mhw@netris.org> +;;; Copyright © 2015, 2016 Mark H Weaver <mhw@netris.org> ;;; Copyright © 2015 Eric Bavier <bavier@member.fsf.org> ;;; Copyright © 2016 Leo Famulari <leo@famulari.name> ;;; @@ -47,7 +47,8 @@ (uri (string-append "https://github.com/libgd/libgd/releases/download/gd-" version "/libgd-" version ".tar.xz")) - (patches (search-patches "gd-CVE-2016-5766.patch" + (patches (search-patches "gd-fix-test-on-i686.patch" + "gd-CVE-2016-5766.patch" "gd-CVE-2016-6128.patch" "gd-CVE-2016-6132.patch" "gd-CVE-2016-6214.patch")) |