diff options
| author | Mark H Weaver <mhw@netris.org> | 2016-07-29 15:58:06 -0400 |
|---|---|---|
| committer | Mark H Weaver <mhw@netris.org> | 2016-07-29 16:06:43 -0400 |
| commit | ce290354ec4e97003be5f56042e55b36831818c1 (patch) | |
| tree | 08deef478685ebac409d76ad4d68f3cef61d779a /gnu | |
| parent | 814572aff53ced7a4c92192f5e7e682d1900de51 (diff) | |
gnu: gd: Add fix for gd2_read test.
* gnu/packages/patches/gd-fix-gd2-read-test.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/gd.scm (gd)[source]: Add patch.
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/local.mk | 1 | ||||
| -rw-r--r-- | gnu/packages/gd.scm | 3 | ||||
| -rw-r--r-- | gnu/packages/patches/gd-fix-gd2-read-test.patch | 14 |
3 files changed, 17 insertions, 1 deletions
diff --git a/gnu/local.mk b/gnu/local.mk index a0d9b8fe119..473197078de 100644 --- a/gnu/local.mk +++ b/gnu/local.mk | |||
| @@ -514,6 +514,7 @@ dist_patch_DATA = \ | |||
| 514 | %D%/packages/patches/gcc-cross-environment-variables.patch \ | 514 | %D%/packages/patches/gcc-cross-environment-variables.patch \ |
| 515 | %D%/packages/patches/gcc-libvtv-runpath.patch \ | 515 | %D%/packages/patches/gcc-libvtv-runpath.patch \ |
| 516 | %D%/packages/patches/gcc-5.0-libvtv-runpath.patch \ | 516 | %D%/packages/patches/gcc-5.0-libvtv-runpath.patch \ |
| 517 | %D%/packages/patches/gd-fix-gd2-read-test.patch \ | ||
| 517 | %D%/packages/patches/gd-fix-tests-on-i686.patch \ | 518 | %D%/packages/patches/gd-fix-tests-on-i686.patch \ |
| 518 | %D%/packages/patches/gegl-CVE-2012-4433.patch \ | 519 | %D%/packages/patches/gegl-CVE-2012-4433.patch \ |
| 519 | %D%/packages/patches/geoclue-config.patch \ | 520 | %D%/packages/patches/geoclue-config.patch \ |
diff --git a/gnu/packages/gd.scm b/gnu/packages/gd.scm index 153e1c7f8b6..b1bbc22cd71 100644 --- a/gnu/packages/gd.scm +++ b/gnu/packages/gd.scm | |||
| @@ -50,7 +50,8 @@ | |||
| 50 | (sha256 | 50 | (sha256 |
| 51 | (base32 | 51 | (base32 |
| 52 | "0g3xz8jpz1pl2zzmssglrpa9nxiaa7rmcmvgpbrjz8k9cyynqsvl")) | 52 | "0g3xz8jpz1pl2zzmssglrpa9nxiaa7rmcmvgpbrjz8k9cyynqsvl")) |
| 53 | (patches (search-patches "gd-fix-tests-on-i686.patch")))) | 53 | (patches (search-patches "gd-fix-gd2-read-test.patch" |
| 54 | "gd-fix-tests-on-i686.patch")))) | ||
| 54 | (build-system gnu-build-system) | 55 | (build-system gnu-build-system) |
| 55 | (native-inputs | 56 | (native-inputs |
| 56 | `(("pkg-config" ,pkg-config))) | 57 | `(("pkg-config" ,pkg-config))) |
diff --git a/gnu/packages/patches/gd-fix-gd2-read-test.patch b/gnu/packages/patches/gd-fix-gd2-read-test.patch new file mode 100644 index 00000000000..65f39e44260 --- /dev/null +++ b/gnu/packages/patches/gd-fix-gd2-read-test.patch | |||
| @@ -0,0 +1,14 @@ | |||
| 1 | Fix a 'maybe-uninitialized' warning (turned error) | ||
| 2 | which occurs on non-Intel platforms. | ||
| 3 | |||
| 4 | --- libgd-2.2.3/tests/gd2/gd2_read.c 2016-07-21 01:21:16.000000000 -0400 | ||
| 5 | +++ libgd-2.2.3/tests/gd2/gd2_read.c 2016-07-29 15:52:03.806405312 -0400 | ||
| 6 | @@ -5,7 +5,7 @@ | ||
| 7 | |||
| 8 | int main(int argc, char *argv[]) | ||
| 9 | { | ||
| 10 | - int error, i = 0; | ||
| 11 | + int error = 0, i = 0; | ||
| 12 | gdImagePtr im, exp; | ||
| 13 | FILE *fp; | ||
| 14 | char *path[] = { | ||
