mirror of https://gitee.com/openkylin/libvirt.git
configure: Adding XFS library/headers check.
This commit checks for xfs.h library to use XFS_IOC_CLONE which is defined into that library file. So, after that it is possible to use thie macro to create reflinks. Signed-off-by: Julio Faracco <jcfaracco@gmail.com>
This commit is contained in:
parent
1bc1a7e320
commit
2e11298f93
|
@ -625,6 +625,13 @@ if test "$with_linux" = "yes"; then
|
|||
AC_CHECK_HEADERS([linux/btrfs.h])
|
||||
fi
|
||||
|
||||
dnl
|
||||
dnl check for xfs dev headers required by xfs ioctl
|
||||
dnl
|
||||
if test "$with_linux" = "yes"; then
|
||||
AC_CHECK_HEADERS([xfs/xfs.h])
|
||||
fi
|
||||
|
||||
dnl
|
||||
dnl check for DEVLINK_CMD_ESWITCH_GET
|
||||
dnl
|
||||
|
|
Loading…
Reference in New Issue