mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-03 11:51:11 +00:00
424a21a9c8
This commit fixes an acl missing variable. The virt-acl.m4 inside the macro directory does not contain the variable 'with_acl'. So, it is being set as an empty string "with_acl=''". This is causing a missing option during the configuration, even if you have acl libs installed. Signed-off-by: Julio Faracco <jcfaracco@gmail.com>
38 lines
1.1 KiB
Plaintext
38 lines
1.1 KiB
Plaintext
dnl ACL support
|
|
dnl
|
|
dnl Copyright (C) 2017 Red Hat, Inc.
|
|
dnl
|
|
dnl This library is free software; you can redistribute it and/or
|
|
dnl modify it under the terms of the GNU Lesser General Public
|
|
dnl License as published by the Free Software Foundation; either
|
|
dnl version 2.1 of the License, or (at your option) any later version.
|
|
dnl
|
|
dnl This library is distributed in the hope that it will be useful,
|
|
dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
dnl Lesser General Public License for more details.
|
|
dnl
|
|
dnl You should have received a copy of the GNU Lesser General Public
|
|
dnl License along with this library. If not, see
|
|
dnl <http://www.gnu.org/licenses/>.
|
|
dnl
|
|
|
|
AC_DEFUN([LIBVIRT_CHECK_ACL], [
|
|
|
|
AC_CHECK_HEADERS([sys/acl.h])
|
|
|
|
ACL_CFLAGS=""
|
|
ACL_LIBS=""
|
|
with_acl=no
|
|
if test "x$ac_cv_header_sys_acl_h:x$with_linux" = "xyes:xyes"; then
|
|
ACL_LIBS="-lacl"
|
|
with_acl=yes
|
|
fi
|
|
AC_SUBST([ACL_CFLAGS])
|
|
AC_SUBST([ACL_LIBS])
|
|
])
|
|
|
|
AC_DEFUN([LIBVIRT_RESULT_ACL], [
|
|
LIBVIRT_RESULT_LIB([ACL])
|
|
])
|