Displaying 1 result from an estimated 1 matches for "e1d3da".
Did you mean:
e1d3dae
2017 Feb 27
1
[PATCH] lib: Require libmagic.
...abled if hivex is not available.
=item libmagic
-Optional. This is the library used by the L<file(1)> command.
+I<Required>. This is the library used by the L<file(1)> command.
=item libvirt E<ge> 0.10.2
diff --git a/lib/filearch.c b/lib/filearch.c
index 2c75425..e1d3dae 100644
--- a/lib/filearch.c
+++ b/lib/filearch.c
@@ -27,9 +27,7 @@
#include <sys/wait.h>
#include <libintl.h>
-#ifdef HAVE_LIBMAGIC
#include <magic.h>
-#endif
#include "ignore-value.h"
@@ -37,8 +35,6 @@
#include "guestfs-internal.h"
#include "...