Changeset 74926 in vbox
- Timestamp:
- Oct 18, 2018 3:32:37 PM (6 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Config.kmk
r74858 r74926 779 779 # Enables the extension pack feature. 780 780 VBOX_WITH_EXTPACK = 1 781 # Enables implementing cloud providers as part of an extension pack.782 VBOX_WITH_CLOUD_PROVIDERS_IN_EXTPACK = 1783 781 # Enables separating code into the Oracle VM VirtualBox Extension Pack, dubbed PUEL. 784 782 VBOX_WITH_EXTPACK_PUEL = 1 -
trunk/src/VBox/Main/Makefile.kmk
r74776 r74926 79 79 $(if $(VBOX_WITH_MIDL_PROXY_STUB),VBOX_WITH_MIDL_PROXY_STUB,) \ 80 80 $(if $(VBOX_WITH_SDS),VBOX_WITH_SDS,) \ 81 $(if $(VBOX_WITH_CLOUD_PROVIDERS_IN_EXTPACK),VBOX_WITH_CLOUD_PROVIDERS_IN_EXTPACK,) \82 81 $(if $(VBOX_WITH_CLOUD_PROVIDERS_NO_COMMANDS),VBOX_WITH_CLOUD_PROVIDERS_NO_COMMANDS,) 83 82 -
trunk/src/VBox/Main/include/CloudProviderManagerImpl.h
r74214 r74926 21 21 22 22 #include "CloudProviderManagerWrap.h" 23 #ifdef VBOX_WITH_ CLOUD_PROVIDERS_IN_EXTPACK23 #ifdef VBOX_WITH_EXTPACK 24 24 class ExtPackManager; 25 25 #endif … … 38 38 void uninit(); 39 39 40 #if defined(VBOX_WITH_CLOUD_PROVIDERS_IN_EXTPACK) && defined(VBOX_WITH_EXTPACK)40 #ifdef VBOX_WITH_EXTPACK 41 41 // Safe helpers, take care of caller and lock themselves. 42 42 void i_refreshProviders(); … … 54 54 55 55 private: 56 #ifdef VBOX_WITH_ CLOUD_PROVIDERS_IN_EXTPACK56 #ifdef VBOX_WITH_EXTPACK 57 57 ComObjPtr<ExtPackManager> mpExtPackMgr; 58 58 uint64_t mcExtPackMgrUpdate; -
trunk/src/VBox/Main/src-server/CloudProviderManagerImpl.cpp
r74212 r74926 61 61 m_apCloudProviders.clear(); 62 62 63 #if defined(VBOX_WITH_CLOUD_PROVIDERS_IN_EXTPACK) && defined(VBOX_WITH_EXTPACK)63 #ifdef VBOX_WITH_EXTPACK 64 64 // Engage the extension pack manager and get all the implementations of 65 65 // this class and all implemented cloud providers. … … 89 89 } 90 90 91 #if defined(VBOX_WITH_CLOUD_PROVIDERS_IN_EXTPACK) && defined(VBOX_WITH_EXTPACK)91 #ifdef VBOX_WITH_EXTPACK 92 92 void CloudProviderManager::i_refreshProviders() 93 93 { … … 137 137 } 138 138 } 139 #endif 139 #endif /* VBOX_WITH_EXTPACK */ 140 140 141 141 HRESULT CloudProviderManager::getProviders(std::vector<ComPtr<ICloudProvider> > &aProviders) -
trunk/src/VBox/Makefile.kmk
r74210 r74926 38 38 include $(PATH_SUB_CURRENT)/Devices/Makefile.kmk 39 39 include $(PATH_SUB_CURRENT)/HostDrivers/Makefile.kmk 40 ifdef VBOX_WITH_CLOUD_PROVIDERS_IN_EXTPACK 41 include $(PATH_SUB_CURRENT)/Main/Makefile.kmk 42 endif 40 include $(PATH_SUB_CURRENT)/Main/Makefile.kmk 43 41 include $(PATH_SUB_CURRENT)/Storage/Makefile.kmk 44 42 include $(PATH_SUB_CURRENT)/ExtPacks/Makefile.kmk
Note:
See TracChangeset
for help on using the changeset viewer.