From 457d4ad99d569d26b037f0309c58f3e3ba45fdfe Mon Sep 17 00:00:00 2001 From: Matthias Bolte Date: Tue, 22 Dec 2009 03:06:57 +0100 Subject: [PATCH] Fix undefined reference to 'close_used_without_including_unistd_h' Found while trying to cross-compile libvirt on Fedora 12 for Windows. gnulib redefines 'close' to 'close_used_without_including_unistd_h' in sys/socket.h if winsock2.h is present and unistd.h has not been included before sys/socket.h. Reorder some includes to fix this. --- src/conf/network_conf.c | 2 +- src/remote/remote_driver.c | 10 +++++----- src/util/util.h | 1 + 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/src/conf/network_conf.c b/src/conf/network_conf.c index ab76f21dd7..a64adf95c3 100644 --- a/src/conf/network_conf.c +++ b/src/conf/network_conf.c @@ -25,10 +25,10 @@ #include +#include #include #include #include -#include #include #include #include diff --git a/src/remote/remote_driver.c b/src/remote/remote_driver.c index 23fd0e3264..be51366d4b 100644 --- a/src/remote/remote_driver.c +++ b/src/remote/remote_driver.c @@ -23,10 +23,6 @@ #include -/* Windows socket compatibility functions. */ -#include -#include - #include #include #include @@ -37,7 +33,11 @@ #include #include -#ifndef HAVE_WINSOCK2_H /* Unix & Cygwin. */ +/* Windows socket compatibility functions. */ +#include +#include + +#ifndef HAVE_WINSOCK2_H /* Unix & Cygwin. */ # include # include # include diff --git a/src/util/util.h b/src/util/util.h index 49b27f2cdd..d556daa414 100644 --- a/src/util/util.h +++ b/src/util/util.h @@ -27,6 +27,7 @@ #include "verify.h" #include "internal.h" +#include #include #include