diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2017-10-01 21:41:51 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2017-10-01 22:16:34 +0300 |
commit | 32906b0933bd225199b578106802962cf9126d16 (patch) | |
tree | 39ef10ee267878a9bae8f7d09d18c2c7415e142b /gnu/packages/patches/gd-fix-gd2-read-test.patch | |
parent | 8a1716fe3f69462eb0d436ff29bb8c17e799b0f5 (diff) | |
download | guix-32906b0933bd225199b578106802962cf9126d16.tar.gz |
gnu: gd: Update to 2.2.5.
* gnu/packages/gd.scm (gd): Update to 2.2.5. [replacement]: Remove field. [sources]: Remove two patches. (gd-2.2.5): Remove variable. * gnu/packages/patches/gd-fix-gd2-read-test.patch, gnu/packages/patches/gd-php-73968-Fix-109-XBM-reading.patch: Remove files. * gnu/local.mk (dist_patch_DATA): Remove them.
Diffstat (limited to 'gnu/packages/patches/gd-fix-gd2-read-test.patch')
-rw-r--r-- | gnu/packages/patches/gd-fix-gd2-read-test.patch | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/gnu/packages/patches/gd-fix-gd2-read-test.patch b/gnu/packages/patches/gd-fix-gd2-read-test.patch deleted file mode 100644 index 65f39e4426..0000000000 --- a/gnu/packages/patches/gd-fix-gd2-read-test.patch +++ /dev/null @@ -1,14 +0,0 @@ -Fix a 'maybe-uninitialized' warning (turned error) -which occurs on non-Intel platforms. - ---- libgd-2.2.3/tests/gd2/gd2_read.c 2016-07-21 01:21:16.000000000 -0400 -+++ libgd-2.2.3/tests/gd2/gd2_read.c 2016-07-29 15:52:03.806405312 -0400 -@@ -5,7 +5,7 @@ - - int main(int argc, char *argv[]) - { -- int error, i = 0; -+ int error = 0, i = 0; - gdImagePtr im, exp; - FILE *fp; - char *path[] = { |