Re: rpcrt4: Compile in RPC over HTTP support even if HAVE_SOCKETPAIR is not defined.
Rob Shearman <robertshearman(a)gmail.com> writes:
socketpair is only needed for the server functions for ncacn_ip_tcp. The tower implementation that ncacn_http and ncacn_ip_tcp share doesn't depend on it.
It doesn't need socketpair, but it needs getaddrinfo and friends so it still won't build on Mingw, that's why I disabled the whole thing. We could put that part inside a #ifdef HAVE_GETADDRINFO instead, but the end result would be the same. -- Alexandre Julliard julliard(a)winehq.org
2009/3/30 Alexandre Julliard <julliard(a)winehq.org>:
Rob Shearman <robertshearman(a)gmail.com> writes:
socketpair is only needed for the server functions for ncacn_ip_tcp. The tower implementation that ncacn_http and ncacn_ip_tcp share doesn't depend on it.
It doesn't need socketpair, but it needs getaddrinfo and friends so it still won't build on Mingw, that's why I disabled the whole thing. We could put that part inside a #ifdef HAVE_GETADDRINFO instead, but the end result would be the same.
Ok, thanks for the clarification. I'll test building with Mingw before I submit any further patches along the same theme. -- Rob Shearman
participants (2)
-
Alexandre Julliard -
Rob Shearman