build: remove old macvtap and virtualport leftovers

Followup of commit a79e7639da and
commit 7556ab139f

Signed-off-by: Pino Toscano <ptoscano@redhat.com>
Reviewed-by: Andrea Bolognani <abologna@redhat.com>
This commit is contained in:
Pino Toscano 2020-10-02 07:15:18 +02:00
parent 29b2b390a9
commit 44b0895ce5

View File

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