Fix the non-developer build with OpenSSL 1.0.2

In non-developer build, a wrong condition prevented the
isc__tls_malloc_ex, isc__tls_realloc_ex and isc__tls_free_ex to be
defined.  This was causing FTBFS on platforms with OpenSSL 1.0.2.
This commit is contained in:
Ondřej Surý 2022-10-19 14:13:26 +02:00
parent a08a84695a
commit dfaae53b9a
No known key found for this signature in database
GPG key ID: 2820F37E873DEA41

View file

@ -112,7 +112,7 @@ isc__tls_free_ex(void *ptr, const char *file, int line) {
isc__mem_free(isc__tls_mctx, ptr, 0, file, (unsigned int)line);
}
#elif OPENSSL_VERSION_NUMBER >= 0x10100000L
#else /* ISC_MEM_TRACKLINES */
static void *
isc__tls_malloc_ex(size_t size, const char *file, int line) {