Re: [PATCH] mod_proxy -- enable using 2.1-HEAD on 2.0-HEAD

2004-08-02 Thread William A. Rowe, Jr.
At 05:10 AM 8/1/2004, you wrote: >--On Sunday, August 1, 2004 11:26 AM +0200 Mladen Turk <[EMAIL PROTECTED]> wrote: > >>-if ((rv = apr_socket_create(newsock, backend_addr->family, >>+#if (APR_VERSION_MAJOR > 0) >>+if ((rv = apr_socket_create( >>+#else >>+if ((rv = apr_socket

RE: [PATCH] mod_proxy -- enable using 2.1-HEAD on 2.0-HEAD

2004-08-01 Thread Mladen Turk
Justin Erenkrantz wrote: > > -if ((rv = apr_socket_create(newsock, backend_addr->family, > > +#if (APR_VERSION_MAJOR > 0) > > +if ((rv = apr_socket_create( > > +#else > > +if ((rv = apr_socket_create_ex( #endif > > +newsock, backend_ad

Re: [PATCH] mod_proxy -- enable using 2.1-HEAD on 2.0-HEAD

2004-08-01 Thread Justin Erenkrantz
--On Sunday, August 1, 2004 11:26 AM +0200 Mladen Turk <[EMAIL PROTECTED]> wrote: -if ((rv = apr_socket_create(newsock, backend_addr->family, +#if (APR_VERSION_MAJOR > 0) +if ((rv = apr_socket_create( +#else +if ((rv = apr_socket_create_ex( +#endif +

[PATCH] mod_proxy -- enable using 2.1-HEAD on 2.0-HEAD

2004-08-01 Thread Mladen Turk
Oops... gone trough different email, so reposting. Hi, Not a very 'critical' patch, but enables building mod_proxy on 2.0-HEAD (if someone finds that usefull). Since 2.1 has some nice features (will have more hopefully) here is the patch that enables that. Index: proxy_util.c =