git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@749466
13f79535-47bb-0310-9956-
ffa450edef68
-*- coding: utf-8 -*-
Changes with Apache 2.3.2
+ *) mod_ssl: add support for type-safe STACK constructs in OpenSSL
+ development HEAD. [Kaspar Brand, Sander Temme]
+
*) ab: Fix maintenance of the pollset to resolve EALREADY errors
with kqueue (BSD/OS X) and excessive CPU with event ports (Solaris).
PR 44584. [Jeff Trawick]
return(X509_NAME_cmp((void*)*a, (void*)*b));
}
#else
-static int ssl_init_FindCAList_X509NameCmp(X509_NAME **a, X509_NAME **b)
+static int ssl_init_FindCAList_X509NameCmp(const X509_NAME * const *a,
+ const X509_NAME * const *b)
{
return(X509_NAME_cmp(*a, *b));
}
const char *optarg;
char c;
#ifdef USE_SSL
+#if OPENSSL_VERSION_NUMBER >= 0x00909000
const SSL_METHOD *meth = SSLv23_client_method();
+#else
+ SSL_METHOD *meth = SSLv23_client_method();
+#endif
#endif
/* table defaults */