- Timestamp:
- Jan 20, 2022 8:30:39 PM (3 years ago)
- Location:
- trunk/src/VBox/Additions/x11/VBoxClient
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/VBoxClient/Makefile.kmk
r93371 r93385 34 34 # if you rename the following program name. 35 35 # 36 PROGRAMS += VBoxDRMClient36 PROGRAMS.linux += VBoxDRMClient 37 37 38 38 VBoxClient_TEMPLATE = NewVBoxGuestR3Exe … … 126 126 VBoxClient_DEFS += VBOX_WITH_VMSVGA 127 127 VBoxClient_SOURCES += \ 128 display-svga-x11.cpp \ 128 display-svga-x11.cpp 129 VBoxClient_SOURCES.linux += \ 129 130 display-svga-session.cpp \ 130 131 display-ipc.cpp \ -
trunk/src/VBox/Additions/x11/VBoxClient/VBoxClient.h
r93220 r93385 108 108 extern VBCLSERVICE g_SvcDisplayDRM; 109 109 extern VBCLSERVICE g_SvcDisplaySVGA; 110 # ifdef RT_OS_LINUX 110 111 extern VBCLSERVICE g_SvcDisplaySVGASession; 112 # endif 111 113 extern VBCLSERVICE g_SvcDragAndDrop; 112 114 extern VBCLSERVICE g_SvcHostVersion; -
trunk/src/VBox/Additions/x11/VBoxClient/main.cpp
r93371 r93385 277 277 #ifdef VBOX_WITH_VMSVGA 278 278 RTPrintf(" --vmsvga starts VMSVGA dynamic resizing for X11/Wayland guests\n"); 279 #ifdef RT_OS_LINUX 279 280 RTPrintf(" --vmsvga-session starts Desktop Environment specific screen assistant for X11/Wayland guests\n" 280 281 " (VMSVGA graphics adapter only)\n"); 282 #else 283 RTPrintf(" --vmsvga-session an alias for --vmsvga\n"); 284 #endif 281 285 #endif 282 286 RTPrintf(" -f, --foreground run in the foreground (no daemonizing)\n"); … … 489 493 break; 490 494 } 495 491 496 case VBOXCLIENT_OPT_VMSVGA_SESSION: 492 497 { 493 498 if (g_Service.pDesc) 494 499 return vbclSyntaxOnlyOneService(); 500 # ifdef RT_OS_LINUX 495 501 g_Service.pDesc = &g_SvcDisplaySVGASession; 502 # else 503 g_Service.pDesc = &g_SvcDisplaySVGA; 504 # endif 496 505 break; 497 506 }
Note:
See TracChangeset
for help on using the changeset viewer.