Changeset 31202 in vbox for trunk/src/VBox/Additions/common/VBoxService
- Timestamp:
- Jul 29, 2010 12:41:03 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 64204
- Location:
- trunk/src/VBox/Additions/common/VBoxService
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/Makefile.kmk
r29583 r31202 50 50 VBoxService_DEFS += VBOXSERVICE_CPUHOTPLUG 51 51 endif 52 ifdef VBOX_WITH_SHARED_FOLDERS 53 # darwin freebsd 54 if1of ($(KBUILD_TARGET), linux solaris) 55 VBoxService_DEFS += VBOX_WITH_SHARED_FOLDERS 56 endif 57 endif 52 58 53 59 VBoxService_SOURCES = \ … … 56 62 VBoxServiceUtils.cpp \ 57 63 VBoxServiceStats.cpp 64 58 65 ifdef VBOX_WITH_GUEST_CONTROL 59 66 VBoxService_SOURCES += \ … … 61 68 VBoxServiceControlExec.cpp 62 69 endif 70 63 71 ifdef VBOX_WITH_MEMBALLOON 64 72 VBoxService_SOURCES += \ … … 69 77 VBoxServicePageSharing.cpp 70 78 endif 79 71 80 ifdef VBOX_WITH_GUEST_PROPS 72 81 VBoxService_SOURCES.win = \ … … 76 85 VBoxServicePropCache.cpp 77 86 endif 87 78 88 if1of ($(KBUILD_TARGET), linux) 79 89 VBoxService_SOURCES += \ 80 90 VBoxServiceCpuHotPlug.cpp 81 91 endif 92 93 ifdef VBOX_WITH_SHARED_FOLDERS 94 if1of ($(KBUILD_TARGET), linux solaris) 95 VBoxService_SOURCES += \ 96 VBoxServiceAutoMount.cpp 97 VBoxService_SOURCES.linux += \ 98 ../../linux/sharedfolders/vbsfmount.c 99 endif 100 endif 101 82 102 VBoxService_SOURCES.win += \ 83 103 VBoxService-win.rc \ -
trunk/src/VBox/Additions/common/VBoxService/VBoxService.cpp
r30957 r31202 104 104 #ifdef VBOX_WITH_PAGE_SHARING 105 105 { &g_PageSharing, NIL_RTTHREAD, false, false, false, true }, 106 #endif 107 #ifdef VBOX_WITH_SHARED_FOLDERS 108 { &g_AutoMount, NIL_RTTHREAD, false, false, false, true }, 106 109 #endif 107 110 }; -
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceInternal.h
r30601 r31202 250 250 extern VBOXSERVICE g_PageSharing; 251 251 #endif 252 #ifdef VBOX_WITH_SHARED_FOLDERS 253 extern VBOXSERVICE g_AutoMount; 254 #endif 252 255 253 256 extern RTEXITCODE VBoxServiceSyntax(const char *pszFormat, ...);
Note:
See TracChangeset
for help on using the changeset viewer.