summaryrefslogtreecommitdiff
path: root/platform/java
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2017-08-17 11:42:48 +0200
committerTor Andersson <tor.andersson@artifex.com>2017-08-17 16:09:07 +0200
commit90cdd8103c39d0568dd233beae0846e8656c745c (patch)
treeac9498781861be861c819267c9deec7ac2dc05da /platform/java
parenta7082a9f106dae35d4b47aa1c9e35af219a216d9 (diff)
downloadmupdf-90cdd8103c39d0568dd233beae0846e8656c745c.tar.xz
Fix Android java build: harfbuzz memory callbacks.
Diffstat (limited to 'platform/java')
-rw-r--r--platform/java/Android.mk8
1 files changed, 4 insertions, 4 deletions
diff --git a/platform/java/Android.mk b/platform/java/Android.mk
index ae5c3914..465bd57b 100644
--- a/platform/java/Android.mk
+++ b/platform/java/Android.mk
@@ -101,10 +101,10 @@ LOCAL_CPPFLAGS := \
-ffunction-sections -fdata-sections \
-fno-rtti -fno-exceptions -fvisibility-inlines-hidden --std=c++0x \
-DHAVE_OT -DHAVE_UCDN -DHB_NO_MT \
- -Dhb_malloc_impl=hb_malloc \
- -Dhb_calloc_impl=hb_calloc \
- -Dhb_realloc_impl=hb_realloc \
- -Dhb_free_impl=hb_free \
+ -Dhb_malloc_impl=fz_hb_malloc \
+ -Dhb_calloc_impl=fz_hb_calloc \
+ -Dhb_realloc_impl=fz_hb_realloc \
+ -Dhb_free_impl=fz_hb_free \
LOCAL_SRC_FILES += \
$(MUPDF_PATH)/thirdparty/freetype/src/base/ftbase.c \