]> err.no Git - sope/commitdiff
fixed compilation for Apache 2.2.x
authorznek <znek@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Fri, 6 Jul 2007 08:43:53 +0000 (08:43 +0000)
committerznek <znek@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Fri, 6 Jul 2007 08:43:53 +0000 (08:43 +0000)
git-svn-id: http://svn.opengroupware.org/SOPE/trunk@1505 e4a50df8-12e2-0310-a44c-efbce7f8a7e3

sope-appserver/mod_ngobjweb/ChangeLog
sope-appserver/mod_ngobjweb/handler.c

index 7da12613b19808230a6186252411e088378d1ad6..367884b53234f0344515c155c4bc4abbe14fd68e 100644 (file)
@@ -1,3 +1,9 @@
+2007-07-06  Marcus Mueller  <znek@mulle-kybernetik.com>
+
+       * handler.c: fixed compilation for Apache 2.2.x. No heavy testing has
+         gone into using mod_ngobjweb with Apache 2.2 currently, but first
+         tests indicate that it just works.
+
 2007-01-15  Helge Hess  <helge@perform>
 
        * added ngobjweb.load configuration file for Apache2 setups which
index ab9a4aed2d0b639126e7d22107f663e1011d6581..418d6fe7436679a46c9122d7456caa8b9a2bbdb4 100644 (file)
 
 #define BUFSIZE   2048
 
+/* ap_http_method is deprecated in Apache 2.2.x */
+#if MODULE_MAGIC_NUMBER_MAJOR >= 20051115
+#define ap_http_method ap_http_scheme
+#endif
+
 extern int HEAVY_LOG;
 
 #if WITH_LOGGING