mirror of
https://github.com/bstansell/conserver.git
synced 2024-12-19 12:57:54 +00:00
Merge pull request #10 from neheb/n
Fix compilation without deprecated OpenSSL 1.1 APIs
This commit is contained in:
commit
b285f0a948
@ -535,7 +535,7 @@ AC_ARG_WITH(openssl,
|
||||
[LIBS="$LIBS -lssl -lcrypto"
|
||||
AC_MSG_CHECKING(for openssl libraries -lssl and -lcrypto)
|
||||
AC_TRY_LINK([#include <openssl/ssl.h>
|
||||
],[SSL_library_init()],
|
||||
],[SSL_CTX_new(NULL)],
|
||||
[AC_MSG_RESULT(yes)
|
||||
cons_with_openssl="YES"
|
||||
AC_DEFINE(HAVE_OPENSSL)
|
||||
|
@ -57,7 +57,9 @@ Bye(int status)
|
||||
{
|
||||
DestroyDataStructures();
|
||||
#if HAVE_OPENSSL
|
||||
# if OPENSSL_VERSION_NUMBER < 0x10100000L
|
||||
ERR_free_strings();
|
||||
# endif
|
||||
#endif
|
||||
exit(status);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user