Changeset 78162 in vbox for trunk/src/VBox/Additions/x11/VBoxClient
- Timestamp:
- Apr 17, 2019 2:04:17 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 130077
- Location:
- trunk/src/VBox/Additions/x11/VBoxClient
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/VBoxClient/Makefile.kmk
r78161 r78162 33 33 VBoxClient_SOURCES = \ 34 34 main.cpp \ 35 $(PATH_ROOT)/src/VBox/GuestHost/SharedClipboard/clipboard-common.cpp \36 $(PATH_ROOT)/src/VBox/GuestHost/SharedClipboard/clipboard-x11.cpp \37 clipboard.cpp \38 35 display-svga.cpp \ 39 36 display-svga-x11.cpp \ … … 43 40 hostversion.cpp \ 44 41 check3d.cpp 42 43 ifdef VBOX_WITH_SHARED_CLIPBOARD 44 VBoxClient_DEFS += \ 45 VBOX_WITH_SHARED_CLIPBOARD 46 VBoxClient_SOURCES += \ 47 $(PATH_ROOT)/src/VBox/GuestHost/SharedClipboard/clipboard-common.cpp \ 48 $(PATH_ROOT)/src/VBox/GuestHost/SharedClipboard/clipboard-x11.cpp \ 49 clipboard.cpp 50 endif 51 45 52 VBoxClient_SOURCES.linux = \ 46 53 chk_stubs.c -
trunk/src/VBox/Additions/x11/VBoxClient/main.cpp
r76553 r78162 192 192 static void vboxClientUsage(const char *pcszFileName) 193 193 { 194 RTPrintf("Usage: %s --clipboard|" 194 RTPrintf("Usage: %s " 195 #ifdef VBOX_WITH_SHARED_CLIPBOARD 196 "--clipboard|" 197 #endif 195 198 #ifdef VBOX_WITH_DRAG_AND_DROP 196 199 "--draganddrop|" … … 205 208 RTPrintf("Starts the VirtualBox DRM/X Window System guest services.\n\n"); 206 209 RTPrintf("Options:\n"); 210 #ifdef VBOX_WITH_SHARED_CLIPBOARD 207 211 RTPrintf(" --clipboard starts the shared clipboard service\n"); 212 #endif 208 213 #ifdef VBOX_WITH_DRAG_AND_DROP 209 214 RTPrintf(" --draganddrop starts the drag and drop service\n"); … … 288 293 fRespawn = false; 289 294 } 295 #ifdef VBOX_WITH_SHARED_CLIPBOARD 290 296 else if (!strcmp(argv[i], "--clipboard")) 291 297 { … … 294 300 g_pService = VBClGetClipboardService(); 295 301 } 302 #endif 296 303 else if (!strcmp(argv[i], "--display")) 297 304 {
Note:
See TracChangeset
for help on using the changeset viewer.