[Mono-list] can't build mod_mono-1.1.14 with apache2.2

Nishio Futoshi fut_nis at yahoo.co.jp
Fri May 5 11:09:41 EDT 2006


Hello

I try to build mod_mono with apatch-2.2.2, but I can't build it.
The configure script checks apache version, then it guess version 1.3.

In configure.in
=======
AC_MSG_CHECKING([Apache version])
AC_TRY_COMPILE([
	#include <ap_release.h>
], [
	char *version = AP_SERVER_BASEREVISION;
], [
	APACHE_VER=2.0
], [
	APACHE_VER=1.3
])
=====
so,  APACHE_VER was set 1.3...

Now I try patch
=====
--- mod_mono-1.1.14/configure.in.old    2006-05-05 23:35:03.000000000 +0900
+++ mod_mono-1.1.14/configure.in        2006-05-05 23:35:19.000000000 +0900
@@ -184,7 +184,7 @@
 ], [
        APACHE_VER=2.0
 ], [
-       APACHE_VER=1.3
+       APACHE_VER=2.2
 ])

 # ensure we have apache 1.3
=====
but, this patch is not so good :-(
Please fix apache check script.

Thanks,
-- 
Nishio Futoshi <fut_nis at yahoo.co.jp>


More information about the Mono-list mailing list