From 87396257fc1cb852e103a5a0947e824504b800cb Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Wed, 5 Dec 2007 21:40:15 +0000 Subject: [PATCH] Include "config.h". * qemud/event.c: Likewise. * src/buf.c: Likewise. * src/hash.c: Likewise. * src/nodeinfo.c: Likewise. * src/openvz_conf.c: Likewise. * src/proxy_internal.c: Likewise. * src/virterror.c: Likewise. * src/xmlrpc.c: Likewise. * src/xs_internal.c: Likewise. * tests/conftest.c: Likewise. * tests/xmlrpctest.c: Likewise. This fixes a mingw build failure reported by Rich Jones. Author: Jim Meyering --- ChangeLog | 16 ++++++++++++++++ qemud/event.c | 1 + src/buf.c | 2 ++ src/hash.c | 2 ++ src/nodeinfo.c | 2 ++ src/openvz_conf.c | 2 ++ src/proxy_internal.c | 2 ++ src/virterror.c | 2 ++ src/xmlrpc.c | 2 ++ src/xs_internal.c | 2 ++ tests/conftest.c | 2 ++ tests/xmlrpctest.c | 2 ++ 12 files changed, 37 insertions(+) diff --git a/ChangeLog b/ChangeLog index b26795e11d..4b3c266ab5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,19 @@ +Wed Dec 5 22:38:18 CET 2007 Jim Meyering + + Include "config.h". + * qemud/event.c: Likewise. + * src/buf.c: Likewise. + * src/hash.c: Likewise. + * src/nodeinfo.c: Likewise. + * src/openvz_conf.c: Likewise. + * src/proxy_internal.c: Likewise. + * src/virterror.c: Likewise. + * src/xmlrpc.c: Likewise. + * src/xs_internal.c: Likewise. + * tests/conftest.c: Likewise. + * tests/xmlrpctest.c: Likewise. + This fixes a mingw build failure reported by Rich Jones. + Wed Dec 5 22:34:27 CET 2007 Jim Meyering Add all of the files pulled in from gnulib by running ./bootstrap. diff --git a/qemud/event.c b/qemud/event.c index 72d490e83a..1faeaf16c5 100644 --- a/qemud/event.c +++ b/qemud/event.c @@ -21,6 +21,7 @@ * Author: Daniel P. Berrange */ +#include "config.h" #include #include diff --git a/src/buf.c b/src/buf.c index 02523575b4..5b7f15da91 100644 --- a/src/buf.c +++ b/src/buf.c @@ -8,6 +8,8 @@ * Daniel Veillard */ +#include "config.h" + #include "libvirt/libvirt.h" #include diff --git a/src/hash.c b/src/hash.c index 2b4b6ece6f..b7962d9901 100644 --- a/src/hash.c +++ b/src/hash.c @@ -18,6 +18,8 @@ * Daniel Veillard */ +#include "config.h" + #include #include #include diff --git a/src/nodeinfo.c b/src/nodeinfo.c index 2ef49cb655..98e72e83ab 100644 --- a/src/nodeinfo.c +++ b/src/nodeinfo.c @@ -21,6 +21,8 @@ * Author: Daniel P. Berrange */ +#include "config.h" + #include #include #include diff --git a/src/openvz_conf.c b/src/openvz_conf.c index 88491f7ae3..0502a1de81 100644 --- a/src/openvz_conf.c +++ b/src/openvz_conf.c @@ -27,6 +27,8 @@ #ifdef WITH_OPENVZ +#include "config.h" + #include #include #include diff --git a/src/proxy_internal.c b/src/proxy_internal.c index 6f142c57a8..2b98c6114e 100644 --- a/src/proxy_internal.c +++ b/src/proxy_internal.c @@ -8,6 +8,8 @@ * Daniel Veillard */ +#include "config.h" + #include #include #include diff --git a/src/virterror.c b/src/virterror.c index 105d65f776..0c0423b01a 100644 --- a/src/virterror.c +++ b/src/virterror.c @@ -8,6 +8,8 @@ * Author: Daniel Veillard */ +#include "config.h" + #include #include #include diff --git a/src/xmlrpc.c b/src/xmlrpc.c index d58f88714c..d65a7a9bf5 100644 --- a/src/xmlrpc.c +++ b/src/xmlrpc.c @@ -8,6 +8,8 @@ * Anthony Liguori */ +#include "config.h" + #include "xmlrpc.h" #include "internal.h" diff --git a/src/xs_internal.c b/src/xs_internal.c index 391803e3cf..3995e3ebcf 100644 --- a/src/xs_internal.c +++ b/src/xs_internal.c @@ -9,6 +9,8 @@ */ #ifdef WITH_XEN +#include "config.h" + #include #include #include diff --git a/tests/conftest.c b/tests/conftest.c index 9c8e3a6958..abb68fdc2e 100644 --- a/tests/conftest.c +++ b/tests/conftest.c @@ -1,3 +1,5 @@ +#include "config.h" + #include #include #include diff --git a/tests/xmlrpctest.c b/tests/xmlrpctest.c index 64591e31ea..5fa937fd4b 100644 --- a/tests/xmlrpctest.c +++ b/tests/xmlrpctest.c @@ -10,6 +10,8 @@ * $Id$ */ +#include "config.h" + #include #include #include