Include the autoconf generated config.h in all qemud code.
Signed-off-by: Mark McLoughlin <markmc(a)redhat.com>
Index: libvirt/qemud/conf.c
===================================================================
--- libvirt.orig/qemud/conf.c
+++ libvirt/qemud/conf.c
@@ -21,6 +21,8 @@
* Author: Daniel P. Berrange <berrange(a)redhat.com>
*/
+#include <config.h>
+
#include <dirent.h>
#include <string.h>
#include <limits.h>
Index: libvirt/qemud/dispatch.c
===================================================================
--- libvirt.orig/qemud/dispatch.c
+++ libvirt/qemud/dispatch.c
@@ -21,6 +21,8 @@
* Author: Daniel P. Berrange <berrange(a)redhat.com>
*/
+#include <config.h>
+
#include <limits.h>
#include <string.h>
#include <stdlib.h>
Index: libvirt/qemud/driver.c
===================================================================
--- libvirt.orig/qemud/driver.c
+++ libvirt/qemud/driver.c
@@ -21,6 +21,8 @@
* Author: Daniel P. Berrange <berrange(a)redhat.com>
*/
+#include <config.h>
+
#include <sys/types.h>
#include <sys/poll.h>
#include <dirent.h>
Index: libvirt/qemud/qemud.c
===================================================================
--- libvirt.orig/qemud/qemud.c
+++ libvirt/qemud/qemud.c
@@ -21,6 +21,8 @@
* Author: Daniel P. Berrange <berrange(a)redhat.com>
*/
+#include <config.h>
+
#include <sys/types.h>
#include <sys/wait.h>
#include <sys/stat.h>
--