diff options
Diffstat (limited to 'vips-upstream.patch')
-rw-r--r-- | vips-upstream.patch | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/vips-upstream.patch b/vips-upstream.patch new file mode 100644 index 0000000..22bc38c --- /dev/null +++ b/vips-upstream.patch @@ -0,0 +1,23 @@ +From e87c828aa541fa8b5501e5475463861456f237b7 Mon Sep 17 00:00:00 2001 +From: Kleis Auke Wolthuizen <github@kleisauke.nl> +Date: Mon, 5 Sep 2022 10:58:52 +0200 +Subject: [PATCH] dzsave: add missing include directive for errno/EEXIST + (#3025) + +Resolves: #3024. +--- + libvips/foreign/dzsave.c | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/libvips/foreign/dzsave.c b/libvips/foreign/dzsave.c +index e9e1137fa..618211204 100644 +--- a/libvips/foreign/dzsave.c ++++ b/libvips/foreign/dzsave.c +@@ -176,6 +176,7 @@ + #include <stdio.h> + #include <stdlib.h> + #include <string.h> ++#include <errno.h> + + #include <vips/vips.h> + #include <vips/internal.h> |