aboutsummaryrefslogtreecommitdiff
path: root/fiv-io.c
diff options
context:
space:
mode:
authorPřemysl Eric Janouch <p@janouch.name>2022-12-23 17:17:22 +0100
committerPřemysl Eric Janouch <p@janouch.name>2022-12-23 17:17:33 +0100
commit62d82f38c811ce63d5b01dad97930c3f9ca02867 (patch)
treef7b8e09de59fccb47355e567d5d60101d03c6112 /fiv-io.c
parentc063d93dc7037578a475ae559478bd302358472f (diff)
downloadfiv-62d82f38c811ce63d5b01dad97930c3f9ca02867.tar.gz
fiv-62d82f38c811ce63d5b01dad97930c3f9ca02867.tar.xz
fiv-62d82f38c811ce63d5b01dad97930c3f9ca02867.zip
Fix LibRaw 0.21.0 build
Diffstat (limited to 'fiv-io.c')
-rw-r--r--fiv-io.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/fiv-io.c b/fiv-io.c
index c17abca..0c4d0e5 100644
--- a/fiv-io.c
+++ b/fiv-io.c
@@ -43,6 +43,9 @@
#ifdef HAVE_LIBRAW
#include <libraw.h>
+#if LIBRAW_VERSION >= LIBRAW_MAKE_VERSION(0, 21, 0)
+#define LIBRAW_OPIONS_NO_MEMERR_CALLBACK 0
+#endif
#endif // HAVE_LIBRAW
#ifdef HAVE_RESVG
#include <resvg.h>
@@ -1697,11 +1700,6 @@ fail:
#ifdef HAVE_LIBRAW // ---------------------------------------------------------
-// LibRaw 0.21.0 compatibility.
-#ifndef LIBRAW_OPIONS_NO_MEMERR_CALLBACK
-#define LIBRAW_OPIONS_NO_MEMERR_CALLBACK 0
-#endif
-
static cairo_surface_t *
open_libraw(const char *data, gsize len, GError **error)
{