0002-Fix-undefined-symbol-png_set_gray_1_2_4_to_8.patch 1009 B

1234567891011121314151617181920212223242526272829303132
  1. From 213e5749947fad08d985eda8d06839efedda78ef Mon Sep 17 00:00:00 2001
  2. From: Peter Seiderer <ps.report@gmx.net>
  3. Date: Thu, 5 Mar 2015 21:42:52 +0100
  4. Subject: [PATCH] Fix undefined symbol png_set_gray_1_2_4_to_8
  5. Since libpng-1.4.0 the function png_set_gray_1_2_4_to_8() was
  6. removed, the replacement function is called
  7. png_set_expand_gray_1_2_4_to_8() (see [1]).
  8. [1] http://libpng.sourceforge.net/ANNOUNCE-1.4.0.txt
  9. Signed-off-by: Peter Seiderer <ps.report@gmx.net>
  10. ---
  11. src/svg_image.c | 2 +-
  12. 1 file changed, 1 insertion(+), 1 deletion(-)
  13. diff --git a/src/svg_image.c b/src/svg_image.c
  14. index cd8a95a..f256943 100755
  15. --- a/src/svg_image.c
  16. +++ b/src/svg_image.c
  17. @@ -271,7 +271,7 @@ _svg_image_read_png (const char *filename,
  18. /* expand gray bit depth if needed */
  19. if (color_type == PNG_COLOR_TYPE_GRAY && depth < 8)
  20. - png_set_gray_1_2_4_to_8 (png);
  21. + png_set_expand_gray_1_2_4_to_8 (png);
  22. /* transform transparency to alpha */
  23. if (png_get_valid(png, info, PNG_INFO_tRNS))
  24. --
  25. 2.1.4