diff options
author | Robin Watts <robin.watts@artifex.com> | 2014-02-10 16:54:24 +0000 |
---|---|---|
committer | Robin Watts <robin.watts@artifex.com> | 2014-02-10 17:04:03 +0000 |
commit | a4a50269b2c62fddf34445140036e3f61b500d9e (patch) | |
tree | e5ab2bf4e75d0b96f0cced8f8e42dde3e564dc54 /platform/android | |
parent | 9b9438fa4210b29023f85bb98c73f8f58a7760d5 (diff) | |
download | mupdf-a4a50269b2c62fddf34445140036e3f61b500d9e.tar.xz |
Bug 695022: Add TIFF format handler
Patch from Thomas Fach-Pedersen. Many thanks!
Add a new format handler that copes with TIFF files. This replaces
the TIFF functionality within the image format handler, and is
better because this copes with multiple images (as one image per
page).
Diffstat (limited to 'platform/android')
-rw-r--r-- | platform/android/jni/Core.mk | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/platform/android/jni/Core.mk b/platform/android/jni/Core.mk index 336d82d9..58ac8477 100644 --- a/platform/android/jni/Core.mk +++ b/platform/android/jni/Core.mk @@ -31,6 +31,7 @@ LOCAL_C_INCLUDES := \ ../../source/xps \ ../../source/cbz \ ../../source/img \ + ../../source/tiff \ ../../scripts/freetype \ ../../scripts/jpeg \ ../../scripts/openjpeg \ @@ -51,7 +52,8 @@ LOCAL_SRC_FILES := \ $(wildcard $(MY_ROOT)/source/pdf/*.c) \ $(wildcard $(MY_ROOT)/source/xps/*.c) \ $(wildcard $(MY_ROOT)/source/cbz/*.c) \ - $(wildcard $(MY_ROOT)/source/img/*.c) + $(wildcard $(MY_ROOT)/source/img/*.c) \ + $(wildcard $(MY_ROOT)/source/tiff/*.c) ifdef MEMENTO LOCAL_SRC_FILES += $(MY_ROOT)/fitz/memento.c endif |