]> git.ipfire.org Git - thirdparty/libvirt.git/commit
build: fix mingw build
authorEric Blake <eblake@redhat.com>
Tue, 28 Jun 2011 21:13:20 +0000 (15:13 -0600)
committerEric Blake <eblake@redhat.com>
Tue, 28 Jun 2011 21:13:20 +0000 (15:13 -0600)
commitf05759e0b5eebee6762ad426ba787e64b149fe91
tree06d50e588a31edf98df989b4424da96bd7922496
parentc8eaba64913f9d752e0b275b4d1fc09fe82cae8e
build: fix mingw build

./autobuild.sh died on several messages resembling:

../../src/rpc/virnetsocket.c: In function 'virNetSocketNewListenTCP':
../../src/rpc/virnetsocket.c:231:9: error: implicit declaration of function 'bind_used_without_requesting_gnulib_module_bind' [-Wimplicit-function-declaration]
../../src/rpc/virnetsocket.c:231:9: error: nested extern declaration of 'bind_used_without_requesting_gnulib_module_bind' [-Wnested-externs]

Basically, gnulib socket fds are not safe to pass to mingw socket
functions unless we pull in those gnulib modules.

* bootstrap.conf (gnulib_modules): Add modules to handle socket
functions on mingw.
bootstrap.conf