diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2017-03-22 14:45:44 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2017-03-22 14:45:44 +0100 |
commit | dc8a34ed46f58397b5a53c99ec5f718c6d0e4fef (patch) | |
tree | e48263a8fde1093337a3b59da551c23d55848179 /gnu/packages/image.scm | |
parent | d553cd6015d9e99226b5d89266edbc6df4c838b3 (diff) | |
download | guix-dc8a34ed46f58397b5a53c99ec5f718c6d0e4fef.tar guix-dc8a34ed46f58397b5a53c99ec5f718c6d0e4fef.tar.gz |
gnu: freeimage: Fix build with GCC 5.
* gnu/packages/patches/freeimage-fix-build-with-gcc-5.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/image.scm (freeimage)[source]: Add patch.
Diffstat (limited to 'gnu/packages/image.scm')
-rw-r--r-- | gnu/packages/image.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/image.scm b/gnu/packages/image.scm index fb6536b8c0..51c465a0cc 100644 --- a/gnu/packages/image.scm +++ b/gnu/packages/image.scm @@ -679,7 +679,8 @@ supplies a generic doubly-linked list and some string functions.") (base32 "12bz57asdcfsz3zr9i9nska0fb6h3z2aizy412qjqkixkginbz7v")) (patches (search-patches "freeimage-CVE-2015-0852.patch" - "freeimage-CVE-2016-5684.patch")))) + "freeimage-CVE-2016-5684.patch" + "freeimage-fix-build-with-gcc-5.patch")))) (build-system gnu-build-system) (arguments '(#:phases |