TLS_DISABLED also implies we do not have openssl

This commit is contained in:
Evan Tschannen 2020-02-20 17:20:48 -08:00
parent 41afeb245e
commit 3bef06dd47
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@
* compile-time configuration.
*/
#ifndef HAVE_OPENSSL
#if defined(HAVE_OPENSSL) && !defined(TLS_DISABLED)
#include <string.h>

View File

@ -23,7 +23,7 @@
* See md5.c for more information.
*/
#ifdef HAVE_OPENSSL
#if defined(HAVE_OPENSSL) && !defined(TLS_DISABLED)
#include <openssl/md5.h>
#elif !defined(_MD5_H)
#define _MD5_H