From 631eb78ceae1b15a27aac4be87ea06ad5ad0875b Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Wed, 10 Oct 2018 12:52:28 +0200 Subject: Fix FZ_ENABLE_SPOT_RENDERING config.h ifdeffery. --- include/mupdf/fitz/config.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'include') diff --git a/include/mupdf/fitz/config.h b/include/mupdf/fitz/config.h index e5a19ed4..3beb3b58 100644 --- a/include/mupdf/fitz/config.h +++ b/include/mupdf/fitz/config.h @@ -6,7 +6,7 @@ Enable the following for spot (and hence overprint/overprint simulation) capable rendering. This forces FZ_PLOTTERS_N on. */ -#define FZ_ENABLE_SPOT_RENDERING 1 +/* #define FZ_ENABLE_SPOT_RENDERING 1 */ /* Choose which plotters we need. @@ -89,6 +89,10 @@ /* ---------- DO NOT EDIT ANYTHING UNDER THIS LINE ---------- */ #ifndef FZ_ENABLE_SPOT_RENDERING +#define FZ_ENABLE_SPOT_RENDERING 1 +#endif + +#if FZ_ENABLE_SPOT_RENDERING #undef FZ_PLOTTERS_N #define FZ_PLOTTERS_N 1 #endif /* FZ_ENABLE_SPOT_RENDERING */ -- cgit v1.2.3