summaryrefslogtreecommitdiff
path: root/fitz/fitz.h
diff options
context:
space:
mode:
authorRobin Watts <robin.watts@artifex.com>2011-08-09 15:55:30 +0700
committerRobin Watts <robin.watts@artifex.com>2011-09-14 17:41:30 +0100
commitcefb81f1886685580a40b17b5e495a8a8a1ebeaf (patch)
tree737c5f342474cc20464e9ae72a15af69e6bd6f4e /fitz/fitz.h
parent32ee8f594db8c6221db2c42949e0ee58cc47c176 (diff)
downloadmupdf-cefb81f1886685580a40b17b5e495a8a8a1ebeaf.tar.xz
Add Memento build option.
Import memento files. Update Makefile to support: make build=memento (like debug, but with memento too). Tiny tweak to cmapdump to avoid memento building that utility.
Diffstat (limited to 'fitz/fitz.h')
-rw-r--r--fitz/fitz.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/fitz/fitz.h b/fitz/fitz.h
index dff6b8d4..30b037e8 100644
--- a/fitz/fitz.h
+++ b/fitz/fitz.h
@@ -18,6 +18,8 @@
#include <float.h> /* FLT_EPSILON */
#include <fcntl.h> /* O_RDONLY & co */
+#include "memento.h"
+
#define nelem(x) (sizeof(x)/sizeof((x)[0]))
#define ABS(x) ( (x) < 0 ? -(x) : (x) )