[libvirt PATCH 033/351] meson: add acl build dependency

Pavel Hrdina phrdina at redhat.com
Thu Jul 16 09:54:29 UTC 2020


Signed-off-by: Pavel Hrdina <phrdina at redhat.com>
---
 configure.ac   |  2 --
 m4/virt-acl.m4 | 37 -------------------------------------
 meson.build    | 15 +++++++++++++++
 3 files changed, 15 insertions(+), 39 deletions(-)
 delete mode 100644 m4/virt-acl.m4

diff --git a/configure.ac b/configure.ac
index d8ff2ba3900..53c87b4e293 100644
--- a/configure.ac
+++ b/configure.ac
@@ -150,7 +150,6 @@ LIBVIRT_ARG_VIRTUALPORT
 LIBVIRT_ARG_WIRESHARK
 LIBVIRT_ARG_YAJL
 
-LIBVIRT_CHECK_ACL
 LIBVIRT_CHECK_APPARMOR
 LIBVIRT_CHECK_ATTR
 LIBVIRT_CHECK_AUDIT
@@ -480,7 +479,6 @@ LIBVIRT_RESULT_DRIVER_MODULES
 AC_MSG_NOTICE([])
 AC_MSG_NOTICE([Libraries])
 AC_MSG_NOTICE([])
-LIBVIRT_RESULT_ACL
 LIBVIRT_RESULT_APPARMOR
 LIBVIRT_RESULT_ATTR
 LIBVIRT_RESULT_AUDIT
diff --git a/m4/virt-acl.m4 b/m4/virt-acl.m4
deleted file mode 100644
index d548729b1dd..00000000000
--- a/m4/virt-acl.m4
+++ /dev/null
@@ -1,37 +0,0 @@
-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])
-])
diff --git a/meson.build b/meson.build
index d4b3a9e910d..d8ff8e0d658 100644
--- a/meson.build
+++ b/meson.build
@@ -942,6 +942,16 @@ foreach name : optional_programs
 endforeach
 
 
+# generic build dependencies
+
+if host_machine.system() == 'linux' and cc.has_header('sys/acl.h')
+  acl_dep = cc.find_library('acl', required: false)
+  conf.set('HAVE_SYS_ACL_H', 1)
+else
+  acl_dep = dependency('', required: false)
+endif
+
+
 # define top include directory
 
 top_inc_dir = include_directories('.')
@@ -960,6 +970,11 @@ configure_file(output: 'meson-config.h', configuration: conf)
 
 # print configuration summary
 
+libs_summary = {
+  'acl': acl_dep.found(),
+}
+summary(libs_summary, section: 'Libraries', bool_yn: true)
+
 test_summary = {
   'Coverage': coverage_flags.length() > 0,
 }
-- 
2.26.2




More information about the libvir-list mailing list