Changeset 23859 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Oct 19, 2009 12:11:56 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 53627
- Location:
- trunk/src/VBox/Additions/x11/VBoxClient
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/VBoxClient/Makefile.kmk
r23845 r23859 30 30 VBoxClient_TEMPLATE = VBOXGUESTR3CPPEXE 31 31 VBoxClient_DEFS += VBOX_X11_CLIPBOARD VBOX_WITH_HGCM 32 ifdef VBOX_WITH_DBUS 33 VBoxClient_DEFS += VBOX_WITH_DBUS 34 endif 32 35 VBoxClient_DEFS.linux += _GNU_SOURCE 33 36 VBoxClient_SOURCES = \ … … 62 65 Xext Xmu 63 66 endif 64 67 ifdef VBOX_WITH_GUEST_PROPS 68 VBoxClient_SOURCES += hostversion.cpp 69 VBoxClient_DEFS += VBOX_WITH_GUEST_PROPS 70 endif 65 71 # 66 72 # Link aginst libstdc++.a. (http://www.trilithium.com/johan/2005/06/static-libstdc/). -
trunk/src/VBox/Additions/x11/VBoxClient/VBoxClient.h
r23845 r23859 46 46 extern Service *GetSeamlessService(); 47 47 extern Service *GetDisplayService(); 48 extern Service *GetHostVersionService(); 48 49 49 50 extern void CleanUp(); -
trunk/src/VBox/Additions/x11/VBoxClient/main.cpp
r23845 r23859 190 190 fSuccess = false; 191 191 } 192 #ifdef VBOX_WITH_GUEST_PROPS 193 else if (!strcmp(argv[i], "--checkhostversion")) 194 { 195 if (g_pService == NULL) 196 g_pService = VBoxClient::GetHostVersionService(); 197 else 198 fSuccess = false; 199 } 200 #endif 192 201 else if (!strcmp(argv[i], "-h") || !strcmp(argv[i], "--help")) 193 202 {
Note:
See TracChangeset
for help on using the changeset viewer.