Fix libblkid support
libblkid support is dormant because the autotools check is broken and
liblkid identifies ZFS vdevs as "zfs_member", not "zfs". We fix that
with a few changes:
First, we fix the libblkid autotools check to do a few things:
- Make a 64MB file, which is the minimum size ZFS permits.
- Make 4 fake uberblock entries to make libblkid's check succeed.
- Return 0 upon success to make autotools use the success case.
- Include stdlib.h to avoid implicit declration of free().
- Check for "zfs_member", not "zfs"
- Make --with-blkid disable autotools check (avoids Gentoo sandbox violation)
- Pass '-lblkid' correctly using LIBS not LDFLAGS.
Second, we change the libblkid support to scan for "zfs_member", not
"zfs".
This makes --with-blkid work on Gentoo.
Signed-off-by: Richard Yao <ryao@gentoo.org>
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Issue #1751