diff options
author | Tor Lillqvist <tml@collabora.com> | 2020-01-03 13:55:24 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2020-01-03 17:53:00 +0100 |
commit | 50b5f0a3cb864f5e58429946098a80235fa528fa (patch) | |
tree | b988baaea8303923eedc9a0675b69ff745e23a0e /solenv | |
parent | 3f5a4c8cf2e24f5da8319ff43d0b7da431ef6cc0 (diff) |
Use only the 'MacOSXSpell' component on iOS, not the 'spell' one
Using only the system spell checker (through MacOSXSpell) is what we
have been doing anyway.
Do not build the hunspell or mythes externals for iOS. Do not build
the lnth or spell components for iOS.
Change-Id: I2e2abc268d7719e540072e5daff3f7960e04ed27
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86172
Reviewed-by: Tor Lillqvist <tml@collabora.com>
Tested-by: Tor Lillqvist <tml@collabora.com>
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86174
Tested-by: Jenkins
Diffstat (limited to 'solenv')
-rwxr-xr-x | solenv/bin/native-code.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/solenv/bin/native-code.py b/solenv/bin/native-code.py index 91c7df2d1403..344a08f195a4 100755 --- a/solenv/bin/native-code.py +++ b/solenv/bin/native-code.py @@ -33,7 +33,7 @@ core_factory_list = [ ("libi18nsearchlo.a", "i18nsearch_component_getFactory"), ("libinvocadaptlo.a", "invocadapt_component_getFactory"), ("liblnglo.a", "lng_component_getFactory"), - ("liblnthlo.a", "lnth_component_getFactory"), + ("liblnthlo.a", "lnth_component_getFactory", "#ifndef IOS"), ("liblocalebe1lo.a", "localebe1_component_getFactory"), ("libpackage2.a", "package2_component_getFactory"), ("libsmlo.a", "sm_component_getFactory"), @@ -57,7 +57,7 @@ core_factory_list = [ ("libxmlscriptlo.a", "xmlscript_component_getFactory"), ("libmcnttype.a", "mcnttype_component_getFactory"), ("libvcllo.a", "vcl_component_getFactory"), - ("libspelllo.a", "spell_component_getFactory"), + ("libspelllo.a", "spell_component_getFactory", "#ifndef IOS"), ("libpdffilterlo.a", "pdffilter_component_getFactory"), ("libsvgiolo.a", "svgio_component_getFactory"), ("libsvtlo.a", "svt_component_getFactory"), |