diff options
author | Robin Watts <robin.watts@artifex.com> | 2018-09-20 12:05:26 +0100 |
---|---|---|
committer | Robin Watts <robin.watts@artifex.com> | 2018-09-20 12:24:17 +0100 |
commit | 14f0dd1c64500c1cf12dcb47d14620afa3416d9f (patch) | |
tree | eec9685f2a91259e71bb4f1da1236af301b72663 /include | |
parent | 94d6166428a679baa5a34fc5faa18a2aa26cee4a (diff) | |
download | mupdf-14f0dd1c64500c1cf12dcb47d14620afa3416d9f.tar.xz |
Be consistent in use of #if FZ_ENABLE_...
Using #ifdef FZ_ENABLE_ means we build code in, even if we have
defined FZ_ENABLE_WHATEVER to be 0 (as we do in config.h).
Diffstat (limited to 'include')
-rw-r--r-- | include/mupdf/fitz/config.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mupdf/fitz/config.h b/include/mupdf/fitz/config.h index de2cba82..e5a19ed4 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 +#define FZ_ENABLE_SPOT_RENDERING 1 /* Choose which plotters we need. |