Replace uses of HAVE_SSL with HAVE_LIBSSL

autoconf's AC_CHECK_LIB automatically sets HAVE_LIBSSL, whereas HAVE_SSL has to be set manually.

This prepares us to remove some code from configure.
This commit is contained in:
Kevin Easton
2017-03-17 00:07:38 +11:00
parent 1fbafddc59
commit 2fa0bf818a
8 changed files with 44 additions and 44 deletions

View File

@@ -97,7 +97,7 @@ typedef struct
void (*func_write) (int);
void (*cleanup) (int);
void *info;
#if defined(HAVE_SSL) && !defined(IN_MODULE)
#if defined(HAVE_LIBSSL) && !defined(IN_MODULE)
SSL_CTX* ctx;
int ssl_error;
SSL* ssl_fd;