> -----Original Message-----
> From: Marion & Christophe JAILLET 
> Sent: Montag, 10. August 2015 07:41
> To: [email protected]
> Subject: Re: svn commit: r1694950 - in /httpd/httpd/trunk:
> include/http_request.h modules/http/http_request.c
> 
> Hi,
> 
> doesn't it require a minor ap_mmn.h bump ?

I don't think so, since it only fixes a build issue on Windows and does not 
touch the API elsewhere.

Regards

Rüdiger

> 
> cj
> 
> Le 10/08/2015 05:30, [email protected] a écrit :
> > Author: gsmith
> > Date: Mon Aug 10 03:30:25 2015
> > New Revision: 1694950
> >
> > URL: http://svn.apache.org/r1694950
> > Log:
> > ap_process_request needs exportation for use in mod_h2 on Windows
> >
> > Modified:
> >      httpd/httpd/trunk/include/http_request.h
> >      httpd/httpd/trunk/modules/http/http_request.c
> >
> > Modified: httpd/httpd/trunk/include/http_request.h
> > URL:
> http://svn.apache.org/viewvc/httpd/httpd/trunk/include/http_request.h?rev=
> 1694950&r1=1694949&r2=1694950&view=diff
> >
> ==========================================================================
> ====
> > --- httpd/httpd/trunk/include/http_request.h (original)
> > +++ httpd/httpd/trunk/include/http_request.h Mon Aug 10 03:30:25 2015
> > @@ -316,7 +316,7 @@ AP_DECLARE(void) ap_allow_standard_metho
> >    * the response to the client
> >    * @param r The current request
> >    */
> > -void ap_process_request(request_rec *r);
> > +AP_DECLARE(void) ap_process_request(request_rec *r);
> >
> >   /* For post-processing after a handler has finished with a request.
> >    * (Commonly used after it was suspended)
> >
> > Modified: httpd/httpd/trunk/modules/http/http_request.c
> > URL:
> http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/http/http_request.c
> ?rev=1694950&r1=1694949&r2=1694950&view=diff
> >
> ==========================================================================
> ====
> > --- httpd/httpd/trunk/modules/http/http_request.c (original)
> > +++ httpd/httpd/trunk/modules/http/http_request.c Mon Aug 10 03:30:25
> 2015
> > @@ -363,7 +363,7 @@ void ap_process_async_request(request_re
> >       ap_process_request_after_handler(r);
> >   }
> >
> > -void ap_process_request(request_rec *r)
> > +AP_DECLARE(void) ap_process_request(request_rec *r)
> >   {
> >       apr_bucket_brigade *bb;
> >       apr_bucket *b;
> >

Reply via email to