Date: Thu, 29 Nov 2018 21:09:26 +0000 (UTC) From: Jung-uk Kim <jkim@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r486206 - in head/emulators/virtualbox-ose: . files Message-ID: <201811292109.wATL9QBl073395@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jkim Date: Thu Nov 29 21:09:25 2018 New Revision: 486206 URL: https://svnweb.freebsd.org/changeset/ports/486206 Log: Fix a VNC regression since 5.2.20. PR: 232528 Obtained from: VirtualBox Ticket #18153 Added: head/emulators/virtualbox-ose/files/patch-src_VBox_Main_src-client_ConsoleImpl.cpp (contents, props changed) Modified: head/emulators/virtualbox-ose/Makefile Modified: head/emulators/virtualbox-ose/Makefile ============================================================================== --- head/emulators/virtualbox-ose/Makefile Thu Nov 29 20:35:34 2018 (r486205) +++ head/emulators/virtualbox-ose/Makefile Thu Nov 29 21:09:25 2018 (r486206) @@ -3,6 +3,7 @@ PORTNAME= virtualbox-ose PORTVERSION= 5.2.22 +PORTREVISION= 1 CATEGORIES= emulators MASTER_SITES= http://download.virtualbox.org/virtualbox/${PORTVERSION}/ DISTFILES= VirtualBox-${PORTVERSION}${EXTRACT_SUFX} ${GUESTADDITIONS} Added: head/emulators/virtualbox-ose/files/patch-src_VBox_Main_src-client_ConsoleImpl.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/virtualbox-ose/files/patch-src_VBox_Main_src-client_ConsoleImpl.cpp Thu Nov 29 21:09:25 2018 (r486206) @@ -0,0 +1,21 @@ +--- src/VBox/Main/src-client/ConsoleImpl.cpp.orig 2018-11-08 19:42:03 UTC ++++ src/VBox/Main/src-client/ConsoleImpl.cpp +@@ -9859,7 +9859,7 @@ void Console::i_powerUpThreadTask(VMPowerUpTask *pTask + + alock.acquire(); + +- /* Enable client connections to the server. */ ++ /* Enable client connections to the VRDP server. */ + pConsole->i_consoleVRDPServer()->EnableConnections(); + + #ifdef VBOX_WITH_AUDIO_VRDE +@@ -9876,9 +9876,6 @@ void Console::i_powerUpThreadTask(VMPowerUpTask *pTask + pConsole->mAudioVRDE->doAttachDriverViaEmt(pConsole->mpUVM, &alock); + } + #endif +- +- /* Enable client connections to the VRDP server. */ +- pConsole->i_consoleVRDPServer()->EnableConnections(); + + #ifdef VBOX_WITH_VIDEOREC + BOOL fVideoRecEnabled = FALSE;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201811292109.wATL9QBl073395>