- Timestamp:
- Mar 8, 2007 9:21:41 PM (18 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Builtins.cpp
r240 r1345 31 31 32 32 #include <VBox/log.h> 33 #include <VBox/config.h> 33 34 #include <iprt/assert.h> 34 35 … … 102 103 if (VBOX_FAILURE(rc)) 103 104 return rc; 104 #if 0 /** @todo remove this, see #1407. */105 rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceUSBBackend);106 if (VBOX_FAILURE(rc))107 return rc;108 #endif109 105 #if defined(VBOX_WITH_USB) && (defined(__WIN__) || defined(__LINUX__) || defined(__L4ENV__)) 110 106 rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceOHCI); … … 185 181 return rc; 186 182 #endif 187 #if !defined(__DARWIN__) && !defined(__OS2__)183 #ifdef VBOX_WITH_INTERNAL_NETWORKING 188 184 rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvHostInterface); 189 185 if (VBOX_FAILURE(rc)) -
trunk/src/VBox/Devices/Makefile
r994 r1345 50 50 ifdef VBOX_WITH_VRDP 51 51 DEFS += VBOX_VRDP 52 endif 53 ifdef VBOX_WITH_INTERNAL_NETWORKING 54 DEFS += VBOX_WITH_INTERNAL_NETWORKING 52 55 endif 53 56 -
trunk/src/VBox/VMM/Makefile
r1313 r1345 37 37 # Enable the PDM lock. 38 38 #DEFS += VBOX_WITH_PDM_LOCK 39 ifdef VBOX_WITH_INTERNAL_NETWORKING 40 DEFS += VBOX_WITH_INTERNAL_NETWORKING 41 endif 39 42 40 43 -
trunk/src/VBox/VMM/VMMR0/VMMR0.cpp
r1230 r1345 581 581 } 582 582 583 #if !defined(__L4__) && !defined(__AMD64__) /** @todo Port this to L4. */ /** @todo fix logging and other services problems on AMD64. */583 #ifdef VBOX_WITH_INTERNAL_NETWORKING 584 584 /* 585 585 * Services. … … 651 651 } 652 652 } 653 #endif /* !__L4__*/653 #endif /* VBOX_WITH_INTERNAL_NETWORKING */ 654 654 655 655 /*
Note:
See TracChangeset
for help on using the changeset viewer.