diff options
author | Tor Lillqvist <tml@collabora.com> | 2019-03-25 14:23:38 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2019-03-25 15:01:03 +0200 |
commit | 2e28b198007b525ee66b9864677acdd8ff0d85c7 (patch) | |
tree | 20a2d5feab8ac1946fd9dd0ee871282f78d833ee /solenv | |
parent | 7afb8ab90f29068c63f2920a52c4df172631b59d (diff) |
tdf#124172: Use the MacOSXSpell library on iOS, too
The code needed just a small amount of ifdefs to use UITextChecker on
iOS instead of NSSpellChecker.
Change-Id: I19edfffd3cc317a79beacc0b94668a6fd5ea3b32
Diffstat (limited to 'solenv')
-rwxr-xr-x | solenv/bin/native-code.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/solenv/bin/native-code.py b/solenv/bin/native-code.py index 0a47b8c38061..1848e68dcbdb 100755 --- a/solenv/bin/native-code.py +++ b/solenv/bin/native-code.py @@ -62,7 +62,8 @@ core_factory_list = [ ("libpdffilterlo.a", "pdffilter_component_getFactory"), ("libsvgiolo.a", "svgio_component_getFactory"), ("libsvtlo.a", "svt_component_getFactory"), - ("libctllo.a", "ctl_component_getFactory") + ("libctllo.a", "ctl_component_getFactory"), + ("libMacOSXSpelllo.a", "MacOSXSpell_component_getFactory", "#ifdef IOS"), ] core_constructor_list = [ |