mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-23 14:15:28 +00:00
af249ea468
allows the following to be specified in a domain: <channel type='pipe'> <source path='/tmp/guestfwd'/> <target type='guestfwd' address='10.0.2.1' port='4600'/> </channel> * proxy/Makefile.am: add network.c as dep of domain_conf.c * docs/schemas/domain.rng src/conf/domain_conf.[ch]: extend the domain schemas and the parsing/serialization side for the new construct QEmu support will add the following on the qemu command line: -chardev pipe,id=channel0,path=/tmp/guestfwd -net user,guestfwd=tcp:10.0.2.1:4600-chardev:channel0 * src/qemu/qemu_conf.c: Add argument output for channel * tests/qemuxml2(argv|xml)test.c: Add test for <channel> domain syntax
39 lines
1.4 KiB
Makefile
39 lines
1.4 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
if WITH_PROXY
|
|
INCLUDES = -I$(top_srcdir)/gnulib/lib -I../gnulib/lib \
|
|
-I$(top_builddir)/include -I@top_srcdir@/include \
|
|
-I@top_srcdir@/proxy -I@top_srcdir@/src \
|
|
-I@top_srcdir@/src/util \
|
|
-I@top_srcdir@/src/conf \
|
|
-I@top_srcdir@/src/xen \
|
|
@LIBXML_CFLAGS@ \
|
|
-DPROXY -DLOCALEBASEDIR=\""$(datadir)/locale"\" \
|
|
-DGETTEXT_PACKAGE=\"$(PACKAGE)\" $(WARN_CFLAGS) $(XEN_CFLAGS)
|
|
|
|
libexec_PROGRAMS = libvirt_proxy
|
|
|
|
libvirt_proxy_SOURCES = libvirt_proxy.c \
|
|
@top_srcdir@/src/util/buf.c \
|
|
@top_srcdir@/src/util/logging.c \
|
|
@top_srcdir@/src/util/memory.c \
|
|
@top_srcdir@/src/util/network.c \
|
|
@top_srcdir@/src/util/threads.c \
|
|
@top_srcdir@/src/util/util.c \
|
|
@top_srcdir@/src/util/uuid.c \
|
|
@top_srcdir@/src/util/virterror.c \
|
|
@top_srcdir@/src/conf/capabilities.c \
|
|
@top_srcdir@/src/conf/storage_encryption_conf.c \
|
|
@top_srcdir@/src/conf/domain_conf.c \
|
|
@top_srcdir@/src/xen/xend_internal.c \
|
|
@top_srcdir@/src/xen/xen_hypervisor.c \
|
|
@top_srcdir@/src/xen/sexpr.c \
|
|
@top_srcdir@/src/xen/xs_internal.c
|
|
libvirt_proxy_LDFLAGS = $(WARN_CFLAGS) $(XEN_LIBS)
|
|
libvirt_proxy_DEPENDENCIES =
|
|
libvirt_proxy_LDADD = ../gnulib/lib/libgnu.la
|
|
|
|
install-exec-hook:
|
|
chmod u+s $(DESTDIR)$(libexecdir)/libvirt_proxy
|
|
endif
|