[Libvirt-cim] [PATCH 2 of 5] Adding support to build and install Virt_HostedService provider

Kaitlin Rupert kaitlin at linux.vnet.ibm.com
Thu Nov 8 23:48:48 UTC 2007


# HG changeset patch
# User Kaitlin Rupert <karupert at us.ibm.com>
# Date 1194555199 28800
# Node ID e47094a1620c4215427afaa46faedee97bcd123a
# Parent  6968bc0b3116061f68f467bc827e42ac853e2a7b
Adding support to build and install Virt_HostedService provider.

Also fixed the missing \ after schema/ResourceAllocationFromPool.registration in Makefile.am.

Signed-off-by: Kaitlin Rupert <karupert at us.ibm.com>

diff -r 6968bc0b3116 -r e47094a1620c Makefile.am
--- a/Makefile.am	Thu Nov 08 12:51:51 2007 -0800
+++ b/Makefile.am	Thu Nov 08 12:53:19 2007 -0800
@@ -29,8 +29,9 @@ MOFS = \
 	schema/VSSDComponent.mof \
 	schema/SettingsDefineState.mof \
 	schema/NetPool.mof \
-	schema/ResourceAllocationFromPool.mof
-	schema/ElementAllocatedFromPool.mof
+	schema/ResourceAllocationFromPool.mof \
+	schema/ElementAllocatedFromPool.mof \
+	schema/HostedService.mof
 
 INTEROP_MOFS = \
 	schema/RegisteredProfile.mof \
@@ -65,7 +66,8 @@ REGS = \
 	schema/SettingsDefineState.registration \
 	schema/NetPool.registration \
 	schema/ResourceAllocationFromPool.registration \
-	schema/ElementAllocatedFromPool.registration
+	schema/ElementAllocatedFromPool.registration \
+	schema/HostedService.registration
 
 INTEROP_REGS = \
 	schema/RegisteredProfile.registration \
diff -r 6968bc0b3116 -r e47094a1620c src/Makefile.am
--- a/src/Makefile.am	Thu Nov 08 12:51:51 2007 -0800
+++ b/src/Makefile.am	Thu Nov 08 12:53:19 2007 -0800
@@ -11,8 +11,10 @@ noinst_HEADERS = profiles.h svpc_types.h
     Virt_HostSystem.h				\
     Virt_RASD.h					\
     Virt_RegisteredProfile.h			\
+    Virt_ResourcePoolConfigurationService.h     \
     Virt_SettingsDefineCapabilities.h		\
     Virt_VirtualSystemManagementCapabilities.h	\
+    Virt_VirtualSystemManagementService.h       \
     Virt_VSSD.h
 
 XKUADD = $(top_builddir)/libxkutil/libxkutil.la
@@ -46,7 +48,8 @@ provider_LTLIBRARIES = libVirt_ComputerS
                        libVirt_VSSDComponent.la \
                        libVirt_SettingsDefineState.la \
                        libVirt_ResourceAllocationFromPool.la \
-                       libVirt_ElementAllocatedFromPool.la
+                       libVirt_ElementAllocatedFromPool.la \
+                       libVirt_HostedService.la
 
 libVirt_ComputerSystem_la_SOURCES = Virt_ComputerSystem.c
 libVirt_Device_la_SOURCES = Virt_Device.c
@@ -110,3 +113,6 @@ libVirt_ResourceAllocationFromPool_la_LI
 
 libVirt_ElementAllocatedFromPool_la_SOURCES = Virt_ElementAllocatedFromPool.c
 libVirt_ElementAllocatedFromPool_la_LIBADD = -lVirt_DevicePool -lVirt_Device
+
+libVirt_HostedService_la_SOURCES = Virt_HostedService.c
+libVirt_HostedService_la_LIBADD = -lVirt_VirtualSystemManagementService -lVirt_ResourcePoolConfigurationService




More information about the Libvirt-cim mailing list