1
0
mirror of https://gitlab.com/libvirt/libvirt.git synced 2024-12-22 17:34:18 +03:00

meson: drop driver_module configure argument

Building without driver_module is not supported anymore so drop the
option before switching to meson as we will not introduce it there.

Signed-off-by: Pavel Hrdina <phrdina@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
Reviewed-by: Neal Gompa <ngompa13@gmail.com>
This commit is contained in:
Pavel Hrdina 2020-06-24 13:59:07 +02:00
parent 943fe685a2
commit a4dc88d24a
2 changed files with 1 additions and 17 deletions

View File

@ -792,7 +792,6 @@ LIBVIRT_WIN_CHECK_WINDRES
dnl Driver-Modules library support
LIBVIRT_ARG_DRIVER_MODULES
LIBVIRT_CHECK_DRIVER_MODULES

View File

@ -17,25 +17,10 @@ dnl License along with this library. If not, see
dnl <http://www.gnu.org/licenses/>.
dnl
AC_DEFUN([LIBVIRT_ARG_DRIVER_MODULES], [
LIBVIRT_ARG_WITH([DRIVER_MODULES], [build drivers as loadable modules],
[yes])
])
AC_DEFUN([LIBVIRT_CHECK_DRIVER_MODULES], [
AC_REQUIRE([LIBVIRT_CHECK_DLOPEN])
if test "$with_libvirtd" = "no" ; then
with_driver_modules=no
else
if test "$with_driver_modules" = "no"; then
AC_MSG_ERROR([Building without driver modules is not supported anymore])
fi
if test "$with_driver_modules" = "check"; then
with_driver_modules=yes
fi
fi
with_driver_modules=$with_libvirtd
DRIVER_MODULES_CFLAGS=
if test "$with_driver_modules" = "yes"; then