Changeset 23845 in vbox for trunk/src/VBox/Additions/x11/VBoxClient
- Timestamp:
- Oct 19, 2009 8:49:10 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 53607
- Location:
- trunk/src/VBox/Additions/x11/VBoxClient
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/VBoxClient/Makefile.kmk
r23835 r23845 30 30 VBoxClient_TEMPLATE = VBOXGUESTR3CPPEXE 31 31 VBoxClient_DEFS += VBOX_X11_CLIPBOARD VBOX_WITH_HGCM 32 ifdef VBOX_WITH_DBUS33 VBoxClient_DEFS += VBOX_WITH_DBUS34 endif35 32 VBoxClient_DEFS.linux += _GNU_SOURCE 36 33 VBoxClient_SOURCES = \ … … 65 62 Xext Xmu 66 63 endif 67 ifdef VBOX_WITH_GUEST_PROPS 68 VBoxClient_SOURCES += hostversion.cpp 69 VBoxClient_DEFS += VBOX_WITH_GUEST_PROPS 70 endif 64 71 65 # 72 66 # Link aginst libstdc++.a. (http://www.trilithium.com/johan/2005/06/static-libstdc/). -
trunk/src/VBox/Additions/x11/VBoxClient/VBoxClient.h
r23819 r23845 46 46 extern Service *GetSeamlessService(); 47 47 extern Service *GetDisplayService(); 48 extern Service *GetHostVersionService();49 48 50 49 extern void CleanUp(); -
trunk/src/VBox/Additions/x11/VBoxClient/main.cpp
r23835 r23845 136 136 RTPrintf("Start the VirtualBox X Window System guest services.\n\n"); 137 137 RTPrintf("Options:\n"); 138 RTPrintf(" --checkhostversion checks for a new VirtualBox host version\n");139 138 RTPrintf(" --clipboard start the shared clipboard service\n"); 140 139 RTPrintf(" --display start the display management service\n"); … … 191 190 fSuccess = false; 192 191 } 193 #ifdef VBOX_WITH_GUEST_PROPS194 else if (!strcmp(argv[i], "--checkhostversion"))195 {196 if (g_pService == NULL)197 g_pService = VBoxClient::GetHostVersionService();198 else199 fSuccess = false;200 }201 #endif202 192 else if (!strcmp(argv[i], "-h") || !strcmp(argv[i], "--help")) 203 193 {
Note:
See TracChangeset
for help on using the changeset viewer.