summaryrefslogtreecommitdiff
path: root/extensions
diff options
context:
space:
mode:
authorJan Holesovsky <kendy@collabora.com>2020-02-06 22:48:29 +0100
committerJan Holesovsky <kendy@collabora.com>2020-02-10 11:18:26 +0100
commitf2d67ee76778c27d56eb1d663f8c5cc09906da44 (patch)
tree608c187f3aee03cc4c4f21e5919a9bdd79459244 /extensions
parent2c6dd9cb2c89811497488172aa5874967210ebf8 (diff)
android hunspell: Turn on the hunspell build on Android...
...and try to register it for use - it's a bundled extension. The attempt to use the Android's native spell checking failed because the combination of gboard + google's spell checker makes every word in the app appear as if spelled correctly. I haven't found any easy way around that, so let's use hunspell instead; but for that, we need to make the bundled extensions work on Android. Change-Id: If6563e497f1d3085c26eda571567242b2c1f6181 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88217 Tested-by: Jan Holesovsky <kendy@collabora.com> Reviewed-by: Jan Holesovsky <kendy@collabora.com>
Diffstat (limited to 'extensions')
-rw-r--r--extensions/Module_extensions.mk7
1 files changed, 6 insertions, 1 deletions
diff --git a/extensions/Module_extensions.mk b/extensions/Module_extensions.mk
index e30a5c1593f1..be00bbc69800 100644
--- a/extensions/Module_extensions.mk
+++ b/extensions/Module_extensions.mk
@@ -17,7 +17,6 @@ ifneq ($(filter-out iOS ANDROID,$(OS)),)
$(eval $(call gb_Module_add_targets,extensions,\
Library_abp \
Library_ldapbe2 \
- Library_log \
Library_scn \
$(if $(filter WNT,$(OS)), \
Library_WinUserInfoBe \
@@ -28,6 +27,12 @@ $(eval $(call gb_Module_add_targets,extensions,\
))
endif
+ifneq ($(filter-out iOS,$(OS)),)
+$(eval $(call gb_Module_add_targets,extensions,\
+ Library_log \
+))
+endif
+
$(eval $(call gb_Module_add_targets,extensions,\
Library_bib \
))