]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
build: remove old macvtap and virtualport leftovers
authorPino Toscano <ptoscano@redhat.com>
Fri, 2 Oct 2020 05:15:18 +0000 (07:15 +0200)
committerPino Toscano <ptoscano@redhat.com>
Fri, 2 Oct 2020 09:32:32 +0000 (11:32 +0200)
Followup of commit a79e7639daffac04b088378e6c79854fcac292f3 and
commit 7556ab139fd2e503ac26ee232ab273f1ec027c21

Signed-off-by: Pino Toscano <ptoscano@redhat.com>
Reviewed-by: Andrea Bolognani <abologna@redhat.com>
meson.build

index 257e4452a1f89f2651ba022a7768191ffe2cdf04..a5ce8e17a899240367ba740194254080bf583a06 100644 (file)
@@ -1503,10 +1503,6 @@ elif get_option('firewalld_zone').enabled()
   error('You must have firewalld support enabled to enable firewalld_zone')
 endif
 
-if conf.has('WITH_MACVTAP') and not conf.has('WITH_LIBNL')
-  error('libnl3-devel is required for macvtap support')
-endif
-
 if (pkcheck_prog.found() or get_option('polkit').enabled())
   conf.set('WITH_POLKIT', 1)
 endif
@@ -1515,10 +1511,6 @@ if udev_dep.found() and not pciaccess_dep.found()
   error('You must install the pciaccess module to build with udev')
 endif
 
-if conf.has('WITH_VIRTUALPORT') and not conf.has('WITH_MACVTAP')
-  error('macvtap is required for virtualport support')
-endif
-
 
 # build driver options
 
@@ -2388,7 +2380,6 @@ libs_summary = {
   'libssh': libssh_dep.found(),
   'libssh2': libssh2_dep.found(),
   'libxml': libxml_dep.found(),
-  'macvtap': conf.has('WITH_MACVTAP'),
   'netcf': netcf_dep.found(),
   'NLS': have_gnu_gettext_tools,
   'nss': conf.has('WITH_NSS'),
@@ -2403,7 +2394,6 @@ libs_summary = {
   'sasl': sasl_dep.found(),
   'selinux': selinux_dep.found(),
   'udev': udev_dep.found(),
-  'virtualport': conf.has('WITH_VIRTUALPORT'),
   'xdr': xdr_dep.found(),
   'yajl': yajl_dep.found(),
 }