summaryrefslogtreecommitdiff
path: root/source/fitz
diff options
context:
space:
mode:
authorRobin Watts <robin.watts@artifex.com>2015-07-20 12:22:51 +0100
committerRobin Watts <robin.watts@artifex.com>2015-07-20 17:19:05 +0100
commite5642ac4d5692448c9b13eb6cecb2208f72ff525 (patch)
treee3bb4d0a0650ab834347fe0c24989c06d7c98831 /source/fitz
parentbf460079428bf678a73cdcbcd13b58f88e29f3a8 (diff)
downloadmupdf-e5642ac4d5692448c9b13eb6cecb2208f72ff525.tar.xz
Only include gproof document handler if SUPPORT_GPROOF is defined.
Diffstat (limited to 'source/fitz')
-rw-r--r--source/fitz/document-all.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/fitz/document-all.c b/source/fitz/document-all.c
index 8517e0ee..c958d072 100644
--- a/source/fitz/document-all.c
+++ b/source/fitz/document-all.c
@@ -9,5 +9,7 @@ void fz_register_document_handlers(fz_context *ctx)
fz_register_document_handler(ctx, &tiff_document_handler);
fz_register_document_handler(ctx, &html_document_handler);
fz_register_document_handler(ctx, &epub_document_handler);
+#ifdef SUPPORT_GPROOF
fz_register_document_handler(ctx, &gprf_document_handler);
+#endif
}