summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2018-10-10 12:52:28 +0200
committerTor Andersson <tor.andersson@artifex.com>2018-10-23 17:23:59 +0200
commit631eb78ceae1b15a27aac4be87ea06ad5ad0875b (patch)
treeeb0a8cbb5d16ef4d08380944ca57ef0294fe0d7b /include
parente7719b15d0f72000835a38754c00598fbc841598 (diff)
downloadmupdf-631eb78ceae1b15a27aac4be87ea06ad5ad0875b.tar.xz
Fix FZ_ENABLE_SPOT_RENDERING config.h ifdeffery.
Diffstat (limited to 'include')
-rw-r--r--include/mupdf/fitz/config.h6
1 files changed, 5 insertions, 1 deletions
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 */