Changeset 84561 in vbox for trunk/src/VBox/Additions
- Timestamp:
- May 27, 2020 1:33:38 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 138291
- Location:
- trunk/src/VBox/Additions
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/Makefile.kmk
r82968 r84561 115 115 VBOX_LNX_ADD_STRIP_BIN += \ 116 116 VBoxControl \ 117 VBoxDRMClient \ 117 118 VBoxClient 118 119 -
trunk/src/VBox/Additions/x11/VBoxClient/display-svga-x11.cpp
r84479 r84561 687 687 if (isXwayland()) 688 688 { 689 VBClLogFatalError("The parent session seems to be non-X11. Exiting...\n"); 690 VBClLogInfo("This service needs X display server for resizing and multi monitor handling to work\n"); 689 VBClLogInfo("The parent session seems to be running on Wayland. Starting DRM client\n"); 690 char* argv[] = {NULL}; 691 char* env[] = {NULL}; 692 execve("./VBoxDRMClient", argv, env); 693 perror("Could not start the DRM Client."); 691 694 return false; 692 695 }
Note:
See TracChangeset
for help on using the changeset viewer.