[libvirt] [PATCH] Conditionally include termios.h

Daniel P. Berrange berrange at redhat.com
Wed Oct 13 10:34:20 UTC 2010


The configure.ac file checks for termios.h, but its use is
not protected by HAVE_TERMIOS_H. This breaks the build on
mingw32

* src/util/util.c: Conditionally include termios.h
---
 src/util/util.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/src/util/util.c b/src/util/util.c
index 586baee..b6b9712 100644
--- a/src/util/util.c
+++ b/src/util/util.c
@@ -43,7 +43,9 @@
 #endif
 #include <string.h>
 #include <signal.h>
-#include <termios.h>
+#if HAVE_TERMIOS_H
+# include <termios.h>
+#endif
 #include "c-ctype.h"
 
 #ifdef HAVE_PATHS_H
-- 
1.7.2.3




More information about the libvir-list mailing list