news: Update for SMMUv3 IOMMU support
[libvirt/ericb.git] / m4 / virt-sysctl.m4
blob3a59e3e6e66dec7afccf708d106e95db78b6c649
1 dnl sysctl config check
2 dnl
3 dnl Copyright (C) 2016 Red Hat, Inc.
4 dnl
5 dnl This library is free software; you can redistribute it and/or
6 dnl modify it under the terms of the GNU Lesser General Public
7 dnl License as published by the Free Software Foundation; either
8 dnl version 2.1 of the License, or (at your option) any later version.
9 dnl
10 dnl This library is distributed in the hope that it will be useful,
11 dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
12 dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 dnl Lesser General Public License for more details.
14 dnl
15 dnl You should have received a copy of the GNU Lesser General Public
16 dnl License along with this library.  If not, see
17 dnl <http://www.gnu.org/licenses/>.
18 dnl
20 AC_DEFUN([LIBVIRT_ARG_SYSCTL_CONFIG], [
21   LIBVIRT_ARG_WITH([SYSCTL], [Whether to install sysctl configs], [check])
24 AC_DEFUN([LIBVIRT_CHECK_SYSCTL_CONFIG], [
25   AC_MSG_CHECKING([for whether to install sysctl config])
26   if test "$with_sysctl" = "yes" || test "$with_sysctl" = "check"
27   then
28     case $host in
29       *-*-linux*)
30         with_sysctl=yes
31         ;;
32       *)
33         if test "$with_sysctl" = "yes"; then
34           AC_MSG_ERROR([No sysctl configuration supported for $host])
35         else
36           with_sysctl=no
37         fi
38         ;;
39     esac
40   fi
41   AM_CONDITIONAL([WITH_SYSCTL], test "$with_sysctl" = "yes")
42   AC_MSG_RESULT($with_sysctl)