[libvirt] [PATCH] Fix build of portallocator on mingw

2014-02-20 Thread Ján Tomko
IN6ADDR_ANY_INIT does not seem to be working as expected on MinGW: error: missing braces around initializer [-Werror=missing-braces] .sin6_addr = IN6ADDR_ANY_INIT, Use the in6addr_any variable instead. Reported by Daniel P. Berrange. --- Pushed as a build breaker.

Re: [libvirt] [PATCH] Fix build of portallocator on mingw

2014-02-20 Thread Eric Blake
On 02/20/2014 05:38 AM, Eric Blake wrote: [adding gnulib] On 02/20/2014 02:39 AM, Ján Tomko wrote: IN6ADDR_ANY_INIT does not seem to be working as expected on MinGW: error: missing braces around initializer [-Werror=missing-braces] .sin6_addr = IN6ADDR_ANY_INIT, Use the