guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: t4k-common: Add missing patch.


From: guix-commits
Subject: branch master updated: gnu: t4k-common: Add missing patch.
Date: Sun, 02 Feb 2020 11:47:20 -0500

This is an automated email from the git hooks/post-receive script.

ngz pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new e1026ba  gnu: t4k-common: Add missing patch.
e1026ba is described below

commit e1026ba70138f105ebc95281d22c09241feee9d5
Author: Nicolas Goaziou <address@hidden>
AuthorDate: Sun Feb 2 17:46:37 2020 +0100

    gnu: t4k-common: Add missing patch.
    
    * gnu/packages/patches/t4k-common-libpng16.patch: Add file.
    * gnu/local.mk (dist_patch_DATA): Reference it here.
---
 gnu/local.mk                                   |  1 +
 gnu/packages/patches/t4k-common-libpng16.patch | 26 ++++++++++++++++++++++++++
 2 files changed, 27 insertions(+)

diff --git a/gnu/local.mk b/gnu/local.mk
index 53d94ff..941b812 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -1412,6 +1412,7 @@ dist_patch_DATA =                                         
\
   %D%/packages/patches/t1lib-CVE-2010-2642.patch               \
   %D%/packages/patches/t1lib-CVE-2011-0764.patch               \
   %D%/packages/patches/t1lib-CVE-2011-1552+.patch              \
+  %D%/packages/patches/t4k-common-libpng16.png                 \
   %D%/packages/patches/tar-remove-wholesparse-check.patch      \
   %D%/packages/patches/tar-skip-unreliable-tests.patch         \
   %D%/packages/patches/tcc-boot-0.9.27.patch                   \
diff --git a/gnu/packages/patches/t4k-common-libpng16.patch 
b/gnu/packages/patches/t4k-common-libpng16.patch
new file mode 100644
index 0000000..1796777
--- /dev/null
+++ b/gnu/packages/patches/t4k-common-libpng16.patch
@@ -0,0 +1,26 @@
+Description: Fix for libpng 1.6
+Author: Programmer Nerd <address@hidden>
+Origin: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=743388#20
+Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=743388
+Reviewed-by: Tobias Frost <address@hidden>>
+Last-Update: 2016-04-07
+---
+This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
+--- a/src/t4k_loaders.c
++++ b/src/t4k_loaders.c
+@@ -1028,12 +1028,9 @@
+       {
+         png_init_io(png_ptr, fi);
+ 
+-        info_ptr->width = surf->w;
+-        info_ptr->height = surf->h;
+-        info_ptr->bit_depth = 8;
+-        info_ptr->color_type = PNG_COLOR_TYPE_RGB_ALPHA;
+-        info_ptr->interlace_type = 1;
+-        info_ptr->valid = 0;  /* will be updated by various png_set_FOO() 
functions */
++      png_set_IHDR(png_ptr, info_ptr, surf->w, surf->h, 8,
++              PNG_COLOR_TYPE_RGB_ALPHA,  PNG_INTERLACE_NONE,
++                PNG_COMPRESSION_TYPE_DEFAULT, PNG_FILTER_TYPE_DEFAULT);
+ 
+         png_set_sRGB_gAMA_and_cHRM(png_ptr, info_ptr,
+                        PNG_sRGB_INTENT_PERCEPTUAL);



reply via email to

[Prev in Thread] Current Thread [Next in Thread]