diff options
author | Brian Behlendorf <[email protected]> | 2016-02-19 15:43:43 -0800 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2016-03-09 10:39:22 -0800 |
commit | 7d11e37e5502e4dc473a9fe073779823d6ca2495 (patch) | |
tree | e40580f53ba6d20d3e6b1d063fa59e0fe2956a66 /rpm | |
parent | 048bb5bd4950b9cb5368ed93d273f0f36e439122 (diff) |
Require libblkid
Historically libblkid support was detected as part of configure
and optionally enabled. This was done because at the time support
for detecting ZFS pool vdevs had just be added to libblkid and
those updated packages were not yet part of many distributions.
This is no longer the case and any reasonably current distribution
will ship a version of libblkid which can detect ZFS pool vdevs.
This patch makes libblkid mandatory at build time and libblkid
the preferred method of scanning for ZFS pools. For distributions
which include a modern version of libblkid there is no change in
behavior. Explicitly scanning the default search paths is still
supported and can be enabled with the '-s' command line option.
Additionally making libblkid mandatory means that the 'zpool create'
command can reliably detect if a specified device has an existing
non-ZFS filesystem (ext4, xfs) and print a warning.
Signed-off-by: Brian Behlendorf <[email protected]>
Closes #2448
Diffstat (limited to 'rpm')
-rw-r--r-- | rpm/generic/zfs.spec.in | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/rpm/generic/zfs.spec.in b/rpm/generic/zfs.spec.in index bac8048af..a7ca1a0b6 100644 --- a/rpm/generic/zfs.spec.in +++ b/rpm/generic/zfs.spec.in @@ -34,7 +34,6 @@ %endif %bcond_with debug -%bcond_with blkid %bcond_with systemd # Generic enable switch for systemd @@ -89,10 +88,8 @@ Conflicts: zfs-fuse %if 0%{?rhel}%{?fedora}%{?suse_version} BuildRequires: zlib-devel BuildRequires: libuuid-devel -%if %{with blkid} BuildRequires: libblkid-devel %endif -%endif %if 0%{?_systemd} Requires(post): systemd Requires(preun): systemd @@ -213,11 +210,6 @@ image which is ZFS aware. %else %define debug --disable-debug %endif -%if %{with blkid} - %define blkid --with-blkid -%else - %define blkid --without-blkid -%endif %if 0%{?_systemd} %define systemd --enable-systemd --with-systemdunitdir=%{_unitdir} --with-systemdpresetdir=%{_presetdir} --disable-sysvinit %else @@ -234,7 +226,6 @@ image which is ZFS aware. --with-dracutdir=%{_dracutdir} \ --disable-static \ %{debug} \ - %{blkid} \ %{systemd} make %{?_smp_mflags} |