diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2017-04-21 05:38:21 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2017-04-21 22:43:54 +0200 |
commit | b7324ecbf36aae49627d5a5ff250a94de3abc4aa (patch) | |
tree | 94cb3e6ac31996431dbb25223c6c477b2a2e1ffd /comphelper/Library_comphelper.mk | |
parent | 6c8fd43cd1f671ff064072c04a3443921af2c90b (diff) |
add generic digest class
Change-Id: Ic5d2d8fbb0bb4edc4c966e185be81f6ca673950e
Reviewed-on: https://gerrit.libreoffice.org/36790
Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Tested-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Diffstat (limited to 'comphelper/Library_comphelper.mk')
-rw-r--r-- | comphelper/Library_comphelper.mk | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/comphelper/Library_comphelper.mk b/comphelper/Library_comphelper.mk index 0cdd3f935e78..03c8a61b5a47 100644 --- a/comphelper/Library_comphelper.mk +++ b/comphelper/Library_comphelper.mk @@ -43,6 +43,20 @@ $(eval $(call gb_Library_use_externals,comphelper,\ zlib \ )) +ifeq ($(TLS),NSS) +$(eval $(call gb_Library_use_externals,comphelper,\ + plc4 \ + nss3 \ +)) +else +ifeq ($(TLS),OPENSSL) +$(eval $(call gb_Library_use_externals,comphelper,\ + openssl \ + openssl_headers \ +)) +endif +endif + $(eval $(call gb_Library_use_libraries,comphelper,\ cppu \ cppuhelper \ @@ -91,6 +105,7 @@ $(eval $(call gb_Library_add_exception_objects,comphelper,\ comphelper/source/misc/evtmethodhelper \ comphelper/source/misc/fileurl \ comphelper/source/misc/getexpandeduri \ + comphelper/source/misc/hash \ comphelper/source/misc/instancelocker \ comphelper/source/misc/interaction \ comphelper/source/misc/listenernotification \ |