diff options
author | Jan-Marek Glogowski <glogow@fbihome.de> | 2021-04-23 10:04:29 +0200 |
---|---|---|
committer | Thorsten Behrens <thorsten.behrens@allotropia.de> | 2021-05-05 21:14:30 +0200 |
commit | 013ddc4f5307df512767ca23b3922540b2b36d52 (patch) | |
tree | 2bff87fd1dcdcd8dc99358ba1ddaee606dd38b08 /Repository.mk | |
parent | 983c41278899674028040c70c6e6415574b701f1 (diff) |
Switch OPENSSL config var from negative to positive
- align with most of the rest of config_host
- rename DISABLE_OPENSSL to ENABLE_OPENSSL
- make this configurable
Change-Id: Ic3b41fcdda38db66134939f12265e0da24833d60
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/114564
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens <thorsten.behrens@allotropia.de>
Diffstat (limited to 'Repository.mk')
-rw-r--r-- | Repository.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Repository.mk b/Repository.mk index cafa89924a86..6af72d71058e 100644 --- a/Repository.mk +++ b/Repository.mk @@ -1127,7 +1127,7 @@ $(eval $(call gb_Helper_register_mos,\ vcl \ wiz \ wpt \ - $(if $(ENABLE_NSS),xsc) \ + $(if $(ENABLE_NSS)$(ENABLE_OPENSSL),xsc) \ )) # UI configuration @@ -1174,7 +1174,7 @@ $(eval $(call gb_Helper_register_uiconfigs,\ uui \ vcl \ writerperfect \ - $(if $(ENABLE_NSS),xmlsec) \ + $(if $(ENABLE_NSS)$(ENABLE_OPENSSL),xmlsec) \ )) ifeq ($(gb_GBUILDSELFTEST),t) |