mirror of https://gitee.com/openkylin/libvirt.git
Add build support for dnsmasq module
* po/POTFILES.in: the new module contains translatable strings * src/Makefile.am: include the files in the utils set * src/libvirt_private.syms: exports the symbols internally
This commit is contained in:
parent
4ad65ab86a
commit
51d203c676
|
@ -71,6 +71,7 @@ src/uml/uml_driver.c
|
|||
src/util/authhelper.c
|
||||
src/util/bridge.c
|
||||
src/util/conf.c
|
||||
src/util/dnsmasq.c
|
||||
src/util/hooks.c
|
||||
src/util/hostusb.c
|
||||
src/util/interface.c
|
||||
|
|
|
@ -59,6 +59,7 @@ UTIL_SOURCES = \
|
|||
util/hooks.c util/hooks.h \
|
||||
util/iptables.c util/iptables.h \
|
||||
util/ebtables.c util/ebtables.h \
|
||||
util/dnsmasq.c util/dnsmasq.h \
|
||||
util/json.c util/json.h \
|
||||
util/logging.c util/logging.h \
|
||||
util/macvtap.c util/macvtap.h \
|
||||
|
|
|
@ -326,6 +326,15 @@ iptablesRemoveTcpInput;
|
|||
iptablesRemoveUdpInput;
|
||||
|
||||
|
||||
# dnsmasq.h
|
||||
dnsmasqContextNew;
|
||||
dnsmasqContextFree;
|
||||
dnsmasqAddDhcpHost;
|
||||
dnsmasqSave;
|
||||
dnsmasqDelete;
|
||||
dnsmasqReload;
|
||||
|
||||
|
||||
# libvirt_internal.h
|
||||
virDrvSupportsFeature;
|
||||
virDomainMigratePrepare;
|
||||
|
|
Loading…
Reference in New Issue