mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-03 11:51:11 +00:00
4bf0f390ed
Support for firewalld is a feature that can be selectively enabled or disabled (using --with-firewalld/--without-firewalld), not merely something that must be accounted for in the code if it is present with no exceptions. It is more consistent with other usage in libvirt to use WITH_FIREWALLD rather than HAVE_FIREWALLD. Signed-off-by: Laine Stump <laine@laine.org> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
44 lines
1.4 KiB
Plaintext
44 lines
1.4 KiB
Plaintext
dnl The firewalld support
|
|
dnl
|
|
dnl Copyright (C) 2016 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_ARG_FIREWALLD], [
|
|
LIBVIRT_ARG_WITH_FEATURE([FIREWALLD], [firewalld], [check])
|
|
])
|
|
|
|
AC_DEFUN([LIBVIRT_CHECK_FIREWALLD], [
|
|
AC_REQUIRE([LIBVIRT_CHECK_DBUS])
|
|
|
|
if test "x$with_firewalld" = "xcheck" ; then
|
|
with_firewalld=$with_dbus
|
|
fi
|
|
|
|
if test "x$with_firewalld" = "xyes" ; then
|
|
if test "x$with_dbus" != "xyes" ; then
|
|
AC_MSG_ERROR([You must have dbus enabled for firewalld support])
|
|
fi
|
|
AC_DEFINE_UNQUOTED([WITH_FIREWALLD], [1], [whether firewalld support is enabled])
|
|
fi
|
|
|
|
AM_CONDITIONAL([WITH_FIREWALLD], [test "x$with_firewalld" != "xno"])
|
|
])
|
|
|
|
AC_DEFUN([LIBVIRT_RESULT_FIREWALLD], [
|
|
LIBVIRT_RESULT_LIB([FIREWALLD])
|
|
])
|