summary refs log tree commit diff
path: root/pkgs/applications/graphics/darktable/libpng-15.patch
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/graphics/darktable/libpng-15.patch')
-rw-r--r--pkgs/applications/graphics/darktable/libpng-15.patch22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/applications/graphics/darktable/libpng-15.patch b/pkgs/applications/graphics/darktable/libpng-15.patch
new file mode 100644
index 000000000000..f817a3264488
--- /dev/null
+++ b/pkgs/applications/graphics/darktable/libpng-15.patch
@@ -0,0 +1,22 @@
+commit 5803d31ae7704e0349821dcc20a94a1cddda69f1
+Author: Tim Harder <radhermit@gmail.com>
+Date:   Wed Sep 21 14:13:55 2011 -0700
+
+    Fix build with libpng-1.5
+    
+    Explicitly include the zlib.h header for the Z_BEST_COMPRESSION and
+    Z_DEFAULT_STRATEGY macros since >=libpng-1.5 doesn't pull it in anymore
+    via the png.h header.
+
+diff --git a/src/imageio/format/png.c b/src/imageio/format/png.c
+index 40c7d48..c7be566 100644
+--- a/src/imageio/format/png.c
++++ b/src/imageio/format/png.c
+@@ -28,6 +28,7 @@
+ #include <stdio.h>
+ #include <png.h>
+ #include <inttypes.h>
++#include <zlib.h>
+ 
+ DT_MODULE(1)
+