The defined __sun is there, because inside_daemon is used in xenUnifiedOpen
if __sun is defined. Also initialize it to 0.
---
src/xen/xen_driver.c | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/src/xen/xen_driver.c b/src/xen/xen_driver.c
index 5ab169d..b16a16a 100644
--- a/src/xen/xen_driver.c
+++ b/src/xen/xen_driver.c
@@ -70,7 +70,9 @@ static struct xenUnifiedDriver const * const
drivers[XEN_UNIFIED_NR_DRIVERS] = {
#endif
};
-static int inside_daemon;
+#if defined WITH_LIBVIRTD || defined __sun
+static int inside_daemon = 0;
+#endif
#define xenUnifiedError(code, ...) \
virReportErrorHelper(NULL, VIR_FROM_XEN, code, __FILE__, \
--
1.6.3.3