diff options
Diffstat (limited to 'include/mod_gnutls.h.in')
-rw-r--r-- | include/mod_gnutls.h.in | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/mod_gnutls.h.in b/include/mod_gnutls.h.in index 234e23c..d9b989e 100644 --- a/include/mod_gnutls.h.in +++ b/include/mod_gnutls.h.in | |||
@@ -25,6 +25,7 @@ | |||
25 | #include "apr_buckets.h" | 25 | #include "apr_buckets.h" |
26 | #include "apr_strings.h" | 26 | #include "apr_strings.h" |
27 | #include "apr_tables.h" | 27 | #include "apr_tables.h" |
28 | #include "ap_release.h" | ||
28 | 29 | ||
29 | #ifndef __mod_gnutls_h_inc | 30 | #ifndef __mod_gnutls_h_inc |
30 | #define __mod_gnutls_h_inc | 31 | #define __mod_gnutls_h_inc |
@@ -46,6 +47,18 @@ module AP_MODULE_DECLARE_DATA gnutls_module; | |||
46 | 47 | ||
47 | #define MOD_GNUTLS_DEBUG @OOO_MAINTAIN@ | 48 | #define MOD_GNUTLS_DEBUG @OOO_MAINTAIN@ |
48 | 49 | ||
50 | /* Recent Versions of 2.1 renamed several hooks. This allows us to | ||
51 | compile on 2.0.xx */ | ||
52 | #if AP_SERVER_MINORVERSION_NUMBER >= 1 | ||
53 | #if AP_SERVER_PATCHLEVEL_NUMBER >= 3 | ||
54 | #define USING_2_1_RECENT 1 | ||
55 | #endif | ||
56 | #endif | ||
57 | |||
58 | #ifndef USING_2_1_RECENT | ||
59 | #define USING_2_1_RECENT 0 | ||
60 | #endif | ||
61 | |||
49 | typedef enum | 62 | typedef enum |
50 | { | 63 | { |
51 | mod_gnutls_cache_none, | 64 | mod_gnutls_cache_none, |