From: Atsushi SAKAI Date: Mon, 30 Jun 2008 05:11:13 +0000 (+0000) Subject: Compilation fix for MinGW(w/ LXC) X-Git-Tag: LIBVIRT_0_4_6~219 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fa97486070b02ffd2a6331142774f5ba0e3370b0;p=thirdparty%2Flibvirt.git Compilation fix for MinGW(w/ LXC) --- diff --git a/ChangeLog b/ChangeLog index d91e5d1eaf..3104faa3c8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Mon Jun 30 14:07:56 JST 2008 Atsushi SAKAI + + Compilation fix for MinGW + * src/veth.c: add WITH_LXC ifdef + Thu Jun 26 19:51:19 JST 2008 Atsushi SAKAI fix make syntax-check diff --git a/src/veth.c b/src/veth.c index e5e986b614..c37f638df6 100644 --- a/src/veth.c +++ b/src/veth.c @@ -11,6 +11,8 @@ #include +#ifdef WITH_LXC + #include #include "veth.h" @@ -215,3 +217,4 @@ error_out: VIR_FREE(pid); return rc; } +#endif