mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-09 15:00:07 +00:00
a3d95b550b
virtPortProfiles are currently only used in the domain XML, but will soon also be used in the network XML. To prepare for that change, this patch moves the structure definition into util/network.h and the parse and format functions into util/network.c (I decided that this was a better choice than macvtap.h/c for something that needed to always be available on all platforms).
20 lines
311 B
Makefile
20 lines
311 B
Makefile
|
|
|
|
schemadir = $(pkgdatadir)/schemas
|
|
schema_DATA = \
|
|
basictypes.rng \
|
|
capability.rng \
|
|
domain.rng \
|
|
domainsnapshot.rng \
|
|
interface.rng \
|
|
network.rng \
|
|
networkcommon.rng \
|
|
nodedev.rng \
|
|
nwfilter.rng \
|
|
secret.rng \
|
|
storageencryption.rng \
|
|
storagepool.rng \
|
|
storagevol.rng
|
|
|
|
EXTRA_DIST = $(schema_DATA)
|