diff options
author | Miguel Gomez <magomez@igalia.com> | 2013-04-02 15:36:12 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@suse.cz> | 2013-04-10 08:36:51 +0000 |
commit | 4be242ce6b91dd23ffa8075bb4eeb05e8bb3d01c (patch) | |
tree | b8f3c8b5d4555d41b002a1ef6ddd22329f079bf0 /oox/Library_oox.mk | |
parent | 7bcba4c910fa7eecf256a05a1f274f7b253e5fc5 (diff) |
Allow selecting the tls backend to use in oox from configure
Change-Id: Ie82afb1f22caa0b02ddac256e2a0c2a49f19bb15
Reviewed-on: https://gerrit.libreoffice.org/3173
Reviewed-by: Miklos Vajna <vmiklos@suse.cz>
Tested-by: Miklos Vajna <vmiklos@suse.cz>
Diffstat (limited to 'oox/Library_oox.mk')
-rw-r--r-- | oox/Library_oox.mk | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/oox/Library_oox.mk b/oox/Library_oox.mk index 5cc52aeef036..8d07153cc437 100644 --- a/oox/Library_oox.mk +++ b/oox/Library_oox.mk @@ -81,11 +81,21 @@ $(eval $(call gb_Library_use_libraries,oox,\ $(gb_UWINAPI) \ )) +ifeq ($(TLS),OPENSSL) $(eval $(call gb_Library_use_externals,oox,\ boost_headers \ openssl \ openssl_headers \ )) +else +ifeq ($(TLS),NSS) +$(eval $(call gb_Library_use_externals,oox,\ + boost_headers \ + plc4 \ + nss3 \ +)) +endif +endif $(eval $(call gb_Library_set_componentfile,oox,oox/util/oox)) |