meson: src: build libvirt_leaseshelper binary

Signed-off-by: Pavel Hrdina <phrdina@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:30:51 +02:00
parent be32e98dee
commit dab71cfe98
2 changed files with 12 additions and 22 deletions

View File

@ -1,14 +1,9 @@
# vim: filetype=automake
NETWORK_LEASES_HELPER_SOURCES = \
network/leaseshelper.c \
$(NULL)
DRIVER_SOURCE_FILES += $(addprefix $(srcdir)/,$(NETWORK_DRIVER_SOURCES))
STATEFUL_DRIVER_SOURCE_FILES += \
$(addprefix $(srcdir)/,$(NETWORK_DRIVER_SOURCES))
if WITH_NETWORK
nodist_conf_DATA += network/virtnetworkd.conf
augeas_DATA += network/virtnetworkd.aug
@ -74,23 +69,6 @@ network/test_virtnetworkd.aug: remote/test_libvirtd.aug.in \
-e 's/[@]DAEMON_NAME_UC[@]/Virtnetworkd/' \
> $@ || rm -f $@
libexec_PROGRAMS += libvirt_leaseshelper
libvirt_leaseshelper_SOURCES = $(NETWORK_LEASES_HELPER_SOURCES)
libvirt_leaseshelper_LDFLAGS = \
$(AM_LDFLAGS) \
$(NULL)
libvirt_leaseshelper_LDADD = \
libvirt.la \
$(GLIB_LIBS) \
$(NULL)
if WITH_DTRACE_PROBES
libvirt_leaseshelper_LDADD += libvirt_probes.lo
endif WITH_DTRACE_PROBES
libvirt_leaseshelper_CFLAGS = \
$(AM_CFLAGS) \
$(NULL)
INSTALL_DATA_DIRS += network
UUID=$(shell uuidgen 2>/dev/null)

View File

@ -3,6 +3,10 @@ network_driver_sources = [
'bridge_driver_platform.c',
]
network_leases_helper_sources = files(
'leaseshelper.c',
)
if conf.has('WITH_NETWORK')
network_driver_impl = static_library(
'virt_driver_network_impl',
@ -41,4 +45,12 @@ if conf.has('WITH_NETWORK')
'-DMODULE_NAME="network"',
],
}
virt_helpers += {
'name': 'libvirt_leaseshelper',
'sources': [
network_leases_helper_sources,
dtrace_gen_objects,
],
}
endif