lib: Augeas (client side) is not needed by the library.
authorRichard Jones <rjones@redhat.com>
Tue, 9 Nov 2010 14:50:23 +0000 (14:50 +0000)
committerRichard W.M. Jones <rjones@redhat.com>
Wed, 10 Nov 2010 10:34:48 +0000 (10:34 +0000)
However it is used by the daemon.

README
configure.ac
src/inspect.c

diff --git a/README b/README
index 07915e4..b6a7088 100644 (file)
--- a/README
+++ b/README
@@ -55,9 +55,9 @@ Requirements
 
 - libxml2
 
-- gperf
+- Augeas (http://augeas.net/) (optional)
 
-- Augeas (http://augeas.net/)
+- gperf
 
 - squashfs-tools (mksquashfs only)
 
index d6472a5..4458d49 100644 (file)
@@ -465,10 +465,6 @@ PKG_CHECK_MODULES([LIBXML2], [libxml-2.0])
 AC_SUBST([LIBXML2_CFLAGS])
 AC_SUBST([LIBXML2_LIBS])
 
-dnl Augeas (required)
-PKG_CHECK_MODULES([AUGEAS], [augeas])
-AC_SUBST([AUGEAS_CFLAGS])
-AC_SUBST([AUGEAS_LIBS])
 
 dnl hivex library (required)
 dnl This used to be a part of libguestfs, but was spun off into its
index b06c8f6..52b0b8c 100644 (file)
@@ -29,7 +29,6 @@
 #include <pcre.h>
 #include <magic.h>
 #include <hivex.h>
-#include <augeas.h>
 
 #include "c-ctype.h"
 #include "ignore-value.h"
@@ -841,7 +840,7 @@ check_linux_root (guestfs_h *g, struct inspect_fs *fs)
    * are mounted.
    * XXX What if !feature_available (g, "augeas")?
    */
-  if (guestfs_aug_init (g, "/", AUG_NO_LOAD|AUG_SAVE_NOOP) == -1)
+  if (guestfs_aug_init (g, "/", 16|32) == -1)
     return -1;
 
   /* Tell Augeas to only load /etc/fstab (thanks RaphaĆ«l Pinson). */