mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 05:35:25 +00:00
meson: tools/wireshark: generate protocol header files
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:
parent
9cabfd07ea
commit
fd90c83585
@ -33,18 +33,5 @@ wireshark_src_libvirt_la_SOURCES = \
|
||||
wireshark/src/packet-libvirt.c: wireshark/src/packet-libvirt.h \
|
||||
wireshark/src/libvirt/protocol.h
|
||||
|
||||
WS_DISSECTOR_PROTO_FILES = \
|
||||
$(abs_top_srcdir)/src/remote/remote_protocol.x \
|
||||
$(abs_top_srcdir)/src/remote/qemu_protocol.x \
|
||||
$(abs_top_srcdir)/src/remote/lxc_protocol.x \
|
||||
$(abs_top_srcdir)/src/rpc/virkeepaliveprotocol.x
|
||||
|
||||
wireshark/src/libvirt/protocol.h: wireshark/util/genxdrstub.pl \
|
||||
$(WS_DISSECTOR_PROTO_FILES)
|
||||
$(AM_V_GEN)$(MKDIR_P) wireshark/src/libvirt && \
|
||||
cd wireshark/src && \
|
||||
LIBVIRT_VERSION=$(LIBVIRT_VERSION) \
|
||||
$(PERL) $(abs_top_srcdir)/tools/wireshark/util/genxdrstub.pl \
|
||||
$(WS_DISSECTOR_PROTO_FILES)
|
||||
|
||||
endif WITH_WIRESHARK_DISSECTOR
|
||||
|
@ -1 +1,3 @@
|
||||
genxdrstup_prog = find_program('util/genxdrstub.pl')
|
||||
|
||||
subdir('src')
|
||||
|
20
tools/wireshark/src/libvirt/meson.build
Normal file
20
tools/wireshark/src/libvirt/meson.build
Normal file
@ -0,0 +1,20 @@
|
||||
wireshark_protocol = custom_target(
|
||||
'protocol.h',
|
||||
input: [
|
||||
meson.source_root() / 'src' / 'remote' / 'remote_protocol.x',
|
||||
meson.source_root() / 'src' / 'remote' / 'qemu_protocol.x',
|
||||
meson.source_root() / 'src' / 'remote' / 'lxc_protocol.x',
|
||||
meson.source_root() / 'src' / 'rpc' / 'virkeepaliveprotocol.x',
|
||||
],
|
||||
output: [
|
||||
'protocol.h',
|
||||
'remote.h',
|
||||
'qemu.h',
|
||||
'lxc.h',
|
||||
'keepalive.h',
|
||||
],
|
||||
command: [
|
||||
genxdrstup_prog, meson.project_version(),
|
||||
meson.current_build_dir(), '@INPUT@',
|
||||
],
|
||||
)
|
1
tools/wireshark/src/meson.build
Normal file
1
tools/wireshark/src/meson.build
Normal file
@ -0,0 +1 @@
|
||||
subdir('libvirt')
|
Loading…
Reference in New Issue
Block a user