gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [gnurl] 89/256: metalink: allow compiling with multiple SSL


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 89/256: metalink: allow compiling with multiple SSL backends
Date: Fri, 06 Oct 2017 19:43:00 +0200

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to branch master
in repository gnurl.

commit b180a273fab64b601e7f44a36a0ec8bd5363e8e1
Author: Johannes Schindelin <address@hidden>
AuthorDate: Fri Aug 18 07:53:33 2017 +0200

    metalink: allow compiling with multiple SSL backends
    
    Previously, the code assumed that at most one of the SSL backends would
    be compiled in, emulating OpenSSL's functions if the configured backend
    was not OpenSSL itself.
    
    However, now we allow building with multiple SSL backends and choosing
    one at runtime. Therefore, metalink needs to be adjusted to handle this
    scenario, too.
    
    Signed-off-by: Johannes Schindelin <address@hidden>
---
 src/tool_metalink.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/src/tool_metalink.c b/src/tool_metalink.c
index 4713a911b..a20aec14e 100644
--- a/src/tool_metalink.c
+++ b/src/tool_metalink.c
@@ -117,7 +117,9 @@ struct win32_crypto_hash {
     return PARAM_NO_MEM; \
 } WHILE_FALSE
 
-#ifdef USE_GNUTLS_NETTLE
+#if defined(USE_OPENSSL)
+/* Functions are already defined */
+#elif defined(USE_GNUTLS_NETTLE)
 
 static int MD5_Init(MD5_CTX *ctx)
 {
@@ -375,7 +377,7 @@ static void SHA256_Final(unsigned char digest[32], 
SHA256_CTX *ctx)
   sha256_finish(ctx, digest);
 }
 
-#elif defined(_WIN32) && !defined(USE_OPENSSL)
+#elif defined(_WIN32)
 
 static void win32_crypto_final(struct win32_crypto_hash *ctx,
                                unsigned char *digest,

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]