diff options
author | Michael Stahl <michael.stahl@allotropia.de> | 2022-11-08 14:28:26 +0100 |
---|---|---|
committer | Michael Stahl <michael.stahl@allotropia.de> | 2022-11-28 15:32:47 +0100 |
commit | ab01462192ac5b11c91e898e4af475ea088042f3 (patch) | |
tree | 7aa2df1179f6ff59ede625ff55797a9134b06916 /linguistic | |
parent | 7ea19dd9086c9afe1a044716ca7f9643442a846c (diff) |
WASM linguistic,sw: disable curl-using deepl code
Curl is currently not built - not sure if possible at all.
So disable new feature added in commit
e20d2de7836da52dbf9e528d1043b1e188097bfd
Change-Id: Idb5d97792d59c850bc1d38a08b79d1be8cb92cdb
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/143388
Tested-by: Jenkins
Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
Diffstat (limited to 'linguistic')
-rw-r--r-- | linguistic/Library_lng.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linguistic/Library_lng.mk b/linguistic/Library_lng.mk index 6ac44d7770b8..49c37b807685 100644 --- a/linguistic/Library_lng.mk +++ b/linguistic/Library_lng.mk @@ -51,7 +51,7 @@ $(eval $(call gb_Library_use_externals,lng,\ boost_headers \ icuuc \ icu_headers \ - curl \ + $(if $(ENABLE_CURL),curl) \ )) $(eval $(call gb_Library_add_exception_objects,lng,\ @@ -73,7 +73,7 @@ $(eval $(call gb_Library_add_exception_objects,lng,\ linguistic/source/spelldsp \ linguistic/source/spelldta \ linguistic/source/thesdsp \ - linguistic/source/translate \ + $(if $(ENABLE_CURL),linguistic/source/translate) \ )) # vim: set noet sw=4 ts=4: |