Lines 1-6
Link Here
|
1 |
--- mod_lisp2.c.orig 2008-06-17 17:51:40.000000000 +0200 |
1 |
--- mod_lisp2.c.orig 2007-07-17 09:11:05.000000000 -0400 |
2 |
+++ mod_lisp2.c 2008-06-17 17:53:20.000000000 +0200 |
2 |
+++ mod_lisp2.c 2009-02-13 10:30:48.000000000 -0500 |
3 |
@@ -153,7 +153,7 @@ |
3 |
@@ -153,11 +153,11 @@ |
4 |
#include <stdlib.h> |
4 |
#include <stdlib.h> |
5 |
#include <string.h> |
5 |
#include <string.h> |
6 |
|
6 |
|
Lines 9-14
Link Here
|
9 |
/* Work out the version of the apache portable runtime (APR) we're |
9 |
/* Work out the version of the apache portable runtime (APR) we're |
10 |
* compiling against... with version 1.2.2 some of the interfaces |
10 |
* compiling against... with version 1.2.2 some of the interfaces |
11 |
* changed a bit. */ |
11 |
* changed a bit. */ |
|
|
12 |
-#if (APR_MAJOR_VERSION==1 && APR_MINOR_VERSION==2 && APR_PATCH_VERSION>=2) |
13 |
+#if (APR_MAJOR_VERSION==1 && ((APR_MINOR_VERSION==2 && APR_PATCH_VERSION>=2) || APR_MINOR_VERSION>=3)) |
14 |
#define HAVE_APR_1_2_2 1 |
15 |
#endif |
16 |
|
12 |
@@ -576,7 +576,7 @@ |
17 |
@@ -576,7 +576,7 @@ |
13 |
lisp_handler (request_rec * r) |
18 |
lisp_handler (request_rec * r) |
14 |
{ |
19 |
{ |