Le 01/03/2013 17:21, [email protected] a écrit :
Author: jim
Date: Fri Mar 1 16:21:49 2013
New Revision: 1451633
URL: http://svn.apache.org/r1451633
Log:
Add in rough uds support (Bugx 54101) from Blaise Tarr <[email protected]>
Modified:
httpd/httpd/trunk/include/ap_mmn.h
httpd/httpd/trunk/modules/proxy/mod_proxy.h
httpd/httpd/trunk/modules/proxy/proxy_util.c
Modified: httpd/httpd/trunk/modules/proxy/proxy_util.c
URL:
http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/proxy/proxy_util.c?rev=1451633&r1=1451632&r2=1451633&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/proxy/proxy_util.c (original)
+++ httpd/httpd/trunk/modules/proxy/proxy_util.c Fri Mar 1 16:21:49 2013
@@ -31,6 +31,11 @@
#define apr_socket_create apr_socket_create_ex
#endif
+#if APR_HAVE_SYS_UN_H
+#include <sys/un.h>
+#endif
+#include "apr_support.h" /* for apr_wait_for_io_or_timeout() */
+
APLOG_USE_MODULE(proxy);
This break build with APR trunk with :
proxy_util.c:37:71: fatal error: apr_support.h: No such file or
directory
because, on APR trunk, apr_support.h is in "include/private"
Not an issue for now, one should not use APR trunk for building, but
could become one in the future.
Best regards,
CJ