Changeset 29583 in vbox for trunk/src/VBox/Additions/common
- Timestamp:
- May 17, 2010 7:41:27 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 61727
- Location:
- trunk/src/VBox/Additions/common/VBoxService
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/Makefile.kmk
r29531 r29583 92 92 $(VBOX_LIB_VBGL_R3) \ 93 93 $(VBOX_LIB_IPRT_GUEST_R3) 94 if1of ($(KBUILD_TARGET), linux) 95 VBoxService_LIBS += \ 96 crypt 97 endif 94 98 ifdef VBOX_WITH_GUEST_PROPS 95 99 VBoxService_LIBS.win += \ -
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControlExec.cpp
r29529 r29583 826 826 rc = RTProcCreateEx(pData->pszCmd, pData->papszArgs, hEnv, RTPROC_FLAGS_SERVICE, 827 827 phStdIn, phStdOut, phStdErr, 828 #if def RT_OS_WINDOWS828 #if defined(RT_OS_WINDOWS) || defined(RT_OS_LINUX) 829 829 strlen(pData->pszUser) ? pData->pszUser : NULL, 830 830 strlen(pData->pszUser) && strlen(pData->pszPassword) ? pData->pszPassword : NULL,
Note:
See TracChangeset
for help on using the changeset viewer.