Description: Fix for libpng 1.6 Author: Programmer Nerd 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 > 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); a href='/guix/'>summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2022-03-23gnu: ed: Use cc-for-target....* gnu/packages/ed.scm (ed)[arguments]: Replace hardcoded gcc with cc-for-target. Efraim Flashner
2022-03-23gnu: ed: Update to 1.18....* gnu/packages/ed.scm (ed): Update to 1.18. [arguments]: Remove trailing #t. Efraim Flashner
2021-12-13gnu: Simplify package inputs....This commit was obtained by running: ./pre-inst-env guix style without any additional argument. Ludovic Courtès
2021-01-15gnu: ed: Update to 1.17....* gnu/packages/ed.scm (ed): Update to 1.17. Ludovic Courtès
2020-03-05gnu: ed: Update to 1.16....* gnu/packages/ed.scm (ed): Update to 1.16. Marius Bakke
2019-01-07gnu: ed: Update to 1.15....* gnu/packages/ed.scm (ed): Update to 1.15. Efraim Flashner