mirror of https://gitee.com/openkylin/libvirt.git
Move netcf interface driver into src/interface/
* daemon/qemud.c, src/Makefile.am: Adapt for changed paths * src/interface_driver.c: Rename to src/interface/netcf_driver.c * src/interface_driver.h: Rename to src/interface/netcf_driver.h
This commit is contained in:
parent
acfe3f2664
commit
7d6b260174
|
@ -84,7 +84,7 @@
|
|||
#include "network/bridge_driver.h"
|
||||
#endif
|
||||
#ifdef WITH_NETCF
|
||||
#include "interface_driver.h"
|
||||
#include "interface/netcf_driver.h"
|
||||
#endif
|
||||
#ifdef WITH_STORAGE_DIR
|
||||
#include "storage/storage_driver.h"
|
||||
|
|
|
@ -180,7 +180,7 @@ NETWORK_DRIVER_SOURCES = \
|
|||
network/bridge_driver.h network/bridge_driver.c
|
||||
|
||||
INTERFACE_DRIVER_SOURCES = \
|
||||
interface_driver.h interface_driver.c
|
||||
interface/netcf_driver.h interface/netcf_driver.c
|
||||
|
||||
SECRET_DRIVER_SOURCES = \
|
||||
secret_driver.h secret_driver.c
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
|
||||
#include "virterror_internal.h"
|
||||
#include "datatypes.h"
|
||||
#include "interface_driver.h"
|
||||
#include "netcf_driver.h"
|
||||
#include "interface_conf.h"
|
||||
#include "memory.h"
|
||||
|
Loading…
Reference in New Issue