Changeset 0499540 in mod_gnutls
- Timestamp:
- Jun 30, 2010, 2:16:35 PM (13 years ago)
- Branches:
- asyncio, debian/master, debian/stretch-backports, jessie-backports, master, msva, proxy-ticket, upstream
- Children:
- f10ab4f
- Parents:
- 4deda6d
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
include/mod_gnutls.h.in
r4deda6d r0499540 28 28 #include "ap_release.h" 29 29 30 #include <gcrypt.h>31 30 #include <gnutls/gnutls.h> 32 31 #include <gnutls/extra.h> -
src/gnutls_hooks.c
r4deda6d r0499540 21 21 #include "ap_mpm.h" 22 22 23 #if GNUTLS_VERSION_MAJOR <= 2 && GNUTLS_VERSION_MINOR < 11 24 #include <gcrypt.h> 25 #endif 26 23 27 #if !USING_2_1_RECENT 24 28 extern server_rec *ap_server_conf; … … 84 88 #if APR_HAS_THREADS 85 89 ap_mpm_query(AP_MPMQ_IS_THREADED, &mpm_is_threaded); 90 #if (GNUTLS_VERSION_MAJOR == 2 && GNUTLS_VERSION_MINOR < 11) || GNUTLS_VERSION_MAJOR < 2 86 91 if (mpm_is_threaded) { 87 92 gcry_control(GCRYCTL_SET_THREAD_CBS, &gcry_threads_pthread); 88 93 } 94 #endif 89 95 #else 90 96 mpm_is_threaded = 0; 91 97 #endif 98 92 99 93 100 if (gnutls_check_version(LIBGNUTLS_VERSION)==NULL) {
Note: See TracChangeset
for help on using the changeset viewer.