summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorKarel Zak2009-02-17 01:01:35 +0100
committerKarel Zak2009-02-17 01:18:22 +0100
commit17f29d7bac86dc6e42c8ea728a2b7d1dc873b3dc (patch)
tree60261cb64ad167a98e193f43e7e9f23de2319349 /configure.ac
parentblkid: add Christoph's note about libdisk to TODO (diff)
downloadkernel-qcow2-util-linux-17f29d7bac86dc6e42c8ea728a2b7d1dc873b3dc.tar.gz
kernel-qcow2-util-linux-17f29d7bac86dc6e42c8ea728a2b7d1dc873b3dc.tar.xz
kernel-qcow2-util-linux-17f29d7bac86dc6e42c8ea728a2b7d1dc873b3dc.zip
mount: generic blkid/volume_id wrapper, use blkid_evaluate_*
* moves the generic libblkid/libvolume_id wrapper (fsprobe.c) from mount/ to lib/. We'll use the wrapper in cfdisk and fsck. The wrapper supports: - obsolete volume_id (udev) - obsolete libblkid (e2fsprogs) - libblkid (util-linux-ng) * mount, umount and swapon when linked against the new libblkid use - low-level probing code to read LABEL, UUID or FSTYPE from a device - high-level blkid_evaluate_spec() to convert LABEL/UUID to devname Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac1
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 04c1f6111..3952e83f9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -190,6 +190,7 @@ elif test "x$with_fsprobe" = xvolume_id; then
elif test "x$with_fsprobe" = xbuiltin; then
have_blkid=yes
AC_DEFINE(HAVE_LIBBLKID,1,[Define to 1 if you have the -lblkid.])
+ AC_DEFINE(HAVE_BLKID_EVALUATE_SPEC,1,[Define to 1 if you have the blkid_evaluate_spec().])
AM_CONDITIONAL(HAVE_BLKID, true)
AM_CONDITIONAL(BUILD_LIBBLKID, true)
fi