]> xenbits.xensource.com Git - libvirt.git/commitdiff
Include "config.h".
authorJim Meyering <meyering@redhat.com>
Wed, 5 Dec 2007 21:40:15 +0000 (21:40 +0000)
committerJim Meyering <meyering@redhat.com>
Wed, 5 Dec 2007 21:40:15 +0000 (21:40 +0000)
* 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 <meyering@redhat.com>

12 files changed:
ChangeLog
qemud/event.c
src/buf.c
src/hash.c
src/nodeinfo.c
src/openvz_conf.c
src/proxy_internal.c
src/virterror.c
src/xmlrpc.c
src/xs_internal.c
tests/conftest.c
tests/xmlrpctest.c

index b26795e11d5ef7252f57fde4897ce2d1a9a0348c..4b3c266ab52d63738f29396fae64b7d7f093f567 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,19 @@
+Wed Dec  5 22:38:18 CET 2007 Jim Meyering <meyering@redhat.com>
+
+       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 <meyering@redhat.com>
 
        Add all of the files pulled in from gnulib by running ./bootstrap.
index 72d490e83a10a2ea5de9144b79ee57e0620ff707..1faeaf16c53025c4817f967fb1b48999cc1b4163 100644 (file)
@@ -21,6 +21,7 @@
  * Author: Daniel P. Berrange <berrange@redhat.com>
  */
 
+#include "config.h"
 
 #include <stdlib.h>
 #include <string.h>
index 02523575b42fc782d3f3743f800c63161d12e10b..5b7f15da919c2cb8c0cd70922f28086888648185 100644 (file)
--- a/src/buf.c
+++ b/src/buf.c
@@ -8,6 +8,8 @@
  * Daniel Veillard <veillard@redhat.com>
  */
 
+#include "config.h"
+
 #include "libvirt/libvirt.h"
 
 #include <stdio.h>
index 2b4b6ece6f355434a0847920ef5c662da129ca4d..b7962d990179678c9deb75f622d074b207ee60f9 100644 (file)
@@ -18,6 +18,8 @@
  *         Daniel Veillard <veillard@redhat.com>
  */
 
+#include "config.h"
+
 #include <string.h>
 #include <stdlib.h>
 #include <libxml/threads.h>
index 2ef49cb65578d5f9b8ece56f5e8bf6e23cc7a7c9..98e72e83abeecf0f2f87d32114e3b34da21b5f41 100644 (file)
@@ -21,6 +21,8 @@
  * Author: Daniel P. Berrange <berrange@redhat.com>
  */
 
+#include "config.h"
+
 #include <stdio.h>
 #include <string.h>
 #include <stdlib.h>
index 88491f7ae3e0e5c1b8aa57f85518892ced2a5c00..0502a1de81857b41416acd617afcfa6c624c5316 100644 (file)
@@ -27,6 +27,8 @@
 
 #ifdef WITH_OPENVZ
 
+#include "config.h"
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <unistd.h>
index 6f142c57a8177497670e6723cb164be1d89d0ae1..2b98c6114e0fe41a55594a834333efbc88f954f8 100644 (file)
@@ -8,6 +8,8 @@
  * Daniel Veillard <veillard@redhat.com>
  */
 
+#include "config.h"
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <unistd.h>
index 105d65f77668b14729ca0664271d9168bd531234..0c0423b01a8ed911fd51dd124f3033bd2b440829 100644 (file)
@@ -8,6 +8,8 @@
  * Author: Daniel Veillard <veillard@redhat.com>
  */
 
+#include "config.h"
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
index d58f88714c92ad9e80a3b465417e4f9030534954..d65a7a9bf574e7dad6a7af43e8287b82d7ed433b 100644 (file)
@@ -8,6 +8,8 @@
  * Anthony Liguori <aliguori@us.ibm.com>
  */
 
+#include "config.h"
+
 #include "xmlrpc.h"
 #include "internal.h"
 
index 391803e3cf96751e1a957b413d30fe1bdc8b6002..3995e3ebcfbdde153b97136589d00f5da3dfb69f 100644 (file)
@@ -9,6 +9,8 @@
  */
 
 #ifdef WITH_XEN
+#include "config.h"
+
 #include <stdio.h>
 #include <string.h>
 #include <unistd.h>
index 9c8e3a695868201039a97b5d9c8483024a6e97cf..abb68fdc2e8525456ffb1d17e02bbac595368350 100644 (file)
@@ -1,3 +1,5 @@
+#include "config.h"
+
 #include <unistd.h>
 #include <stdlib.h>
 #include <stdio.h>
index 64591e31ea15beba9c0dea717075c546194ee567..5fa937fd4ba795710e08387318fa3a7fae00978c 100644 (file)
@@ -10,6 +10,8 @@
  * $Id$
  */
 
+#include "config.h"
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <stdarg.h>