mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-25 01:34:11 +03:00
eeccee1870
Usage of AC_REQUIRE will mess with order how LIBVIRT_CHECK_* macros are composed into configure.ac. This ensures that the output of configure --help is properly ordered and grouped into sections. Signed-off-by: Pavel Hrdina <phrdina@redhat.com>
14 lines
271 B
Plaintext
14 lines
271 B
Plaintext
dnl The libattr.so library
|
|
|
|
AC_DEFUN([LIBVIRT_ARG_ATTR],[
|
|
LIBVIRT_ARG_WITH([ATTR], [attr], [check])
|
|
])
|
|
|
|
AC_DEFUN([LIBVIRT_CHECK_ATTR],[
|
|
LIBVIRT_CHECK_LIB([ATTR], [attr], [getxattr], [attr/xattr.h])
|
|
])
|
|
|
|
AC_DEFUN([LIBVIRT_RESULT_ATTR],[
|
|
LIBVIRT_RESULT_LIB([ATTR])
|
|
])
|