diff options
author | DeHackEd <[email protected]> | 2018-03-27 19:51:33 -0400 |
---|---|---|
committer | Tony Hutter <[email protected]> | 2018-05-07 17:19:57 -0700 |
commit | 2deb4526ee9994736451220ebe3870d258f699b4 (patch) | |
tree | 2cb47844c225cee6422f2286c0cf81c249f2cc89 /config | |
parent | a1662ffcaa82d15fe62efd8e266e54809d9ca204 (diff) |
Remove libattr requirement
RHEL/CentOS 6 supports sys/xattr.h eliminating the need for
libattr-devel as a dependency.
Reviewed-by: Giuseppe Di Natale <[email protected]>
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: DHE <[email protected]>
Closes #7344
Closes #7351
Diffstat (limited to 'config')
-rw-r--r-- | config/user-libattr.m4 | 12 | ||||
-rw-r--r-- | config/user.m4 | 1 |
2 files changed, 0 insertions, 13 deletions
diff --git a/config/user-libattr.m4 b/config/user-libattr.m4 deleted file mode 100644 index 3298fd491..000000000 --- a/config/user-libattr.m4 +++ /dev/null @@ -1,12 +0,0 @@ -dnl # -dnl # Check for libattr -dnl # -AC_DEFUN([ZFS_AC_CONFIG_USER_LIBATTR], [ - LIBATTR= - - AC_CHECK_HEADER([attr/xattr.h], [], [AC_MSG_FAILURE([ - *** attr/xattr.h missing, libattr-devel package required])]) - - AC_SUBST([LIBATTR], ["-lattr"]) - AC_DEFINE([HAVE_LIBATTR], 1, [Define if you have libattr]) -]) diff --git a/config/user.m4 b/config/user.m4 index 21ff7143a..3d725195d 100644 --- a/config/user.m4 +++ b/config/user.m4 @@ -11,7 +11,6 @@ AC_DEFUN([ZFS_AC_CONFIG_USER], [ ZFS_AC_CONFIG_USER_LIBUUID ZFS_AC_CONFIG_USER_LIBTIRPC ZFS_AC_CONFIG_USER_LIBBLKID - ZFS_AC_CONFIG_USER_LIBATTR ZFS_AC_CONFIG_USER_LIBUDEV ZFS_AC_CONFIG_USER_FRAME_LARGER_THAN ZFS_AC_CONFIG_USER_RUNSTATEDIR |