mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-25 01:34:11 +03:00
e03d43714a
Following patch will update LIBVIRT_CHECK_(LIB|LIB_ALT|PKG) macros in a way that you will be able to call a another macro as a fallback if the first one fails. To allow that, we need to move the LIBVIRT_ARG_WITH out of those macro to not have two or more same lines in output of "configure --help". Signed-off-by: Pavel Hrdina <phrdina@redhat.com>
11 lines
237 B
Plaintext
11 lines
237 B
Plaintext
dnl The libattr.so library
|
|
|
|
AC_DEFUN([LIBVIRT_CHECK_ATTR],[
|
|
LIBVIRT_ARG_WITH([ATTR], [attr], [check])
|
|
LIBVIRT_CHECK_LIB([ATTR], [attr], [getxattr], [attr/xattr.h])
|
|
])
|
|
|
|
AC_DEFUN([LIBVIRT_RESULT_ATTR],[
|
|
LIBVIRT_RESULT_LIB([ATTR])
|
|
])
|