Displaying 3 results from an estimated 3 matches for "4a2becd".
2015 Sep 29
0
[PATCH 2/4] lib: Move <libintl.h> -> files that use it.
...a67ec9..a00b938 100644
--- a/src/launch-direct.c
+++ b/src/launch-direct.c
@@ -35,6 +35,7 @@
#include <grp.h>
#include <assert.h>
#include <string.h>
+#include <libintl.h>
#include <pcre.h>
diff --git a/src/launch-libvirt.c b/src/launch-libvirt.c
index d4c4c47..4a2becd 100644
--- a/src/launch-libvirt.c
+++ b/src/launch-libvirt.c
@@ -31,6 +31,7 @@
#include <sys/wait.h>
#include <assert.h>
#include <string.h>
+#include <libintl.h>
#ifdef HAVE_LIBVIRT
#include <libvirt/libvirt.h>
diff --git a/src/launch-uml.c b/src/launch-uml.c
i...
2015 Sep 29
8
[PATCH 1/4] lib: actions: Remove some unused header files.
---
generator/c.ml | 2 --
1 file changed, 2 deletions(-)
diff --git a/generator/c.ml b/generator/c.ml
index 055b683..963cf21 100644
--- a/generator/c.ml
+++ b/generator/c.ml
@@ -1213,9 +1213,7 @@ and generate_client_actions hash () =
#include <stdlib.h>
#include <stdint.h>
#include <inttypes.h>
-#include <sys/types.h>
#include <sys/stat.h>
-#include
2015 Sep 29
0
[PATCH 4/4] lib: Remove unused header files.
...6 @@
#include "guestfs.h"
#include "guestfs-internal.h"
-#include "guestfs-internal-actions.h"
#include "guestfs_protocol.h"
COMPILE_REGEXP (re_major_minor, "(\\d+)\\.(\\d+)", 0)
diff --git a/src/launch-libvirt.c b/src/launch-libvirt.c
index 4a2becd..8560aa3 100644
--- a/src/launch-libvirt.c
+++ b/src/launch-libvirt.c
@@ -23,12 +23,9 @@
#include <stdarg.h>
#include <stdbool.h>
#include <unistd.h>
-#include <fcntl.h>
-#include <limits.h>
#include <grp.h>
#include <sys/types.h>
#include <sys/sta...