This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository x2gokdrive. from 8be72df Calculate screen dimensions (in mm) according to dpi value. Default DPI (Xorg) is 75. User can set DPI using -dpi command line option. new 5def750 Add ddxInputThread call from os layer into ddx layer new 4888c61 x2gokdriveinit.c: Move remote_selection_init() from deprecated ephyrExtensionInit() to InitOutput(). new faa056d Recent X.org loads GLX via the mi path The 3 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: x2gokdriveinit.c | 26 ++++++++++---------------- 1 file changed, 10 insertions(+), 16 deletions(-) -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2gokdrive.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2gokdrive. commit 5def750d82568f5f8093c0cc0d2134648aaeb51c Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Mon Jun 17 12:13:02 2019 +0200 Add ddxInputThread call from os layer into ddx layer Backported from Xephyr / X.org: commit 4ad21c3247d98ac6c5ad71fa36be60ed04f7c92c Author: Alan Coopersmith <alan.coopersmith@oracle.com> Date: Thu Feb 21 15:22:57 2019 -0800 Add ddxInputThread call from os layer into ddx layer Allows ddx's to run additional code as necessary to set up the input thread. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Backported-to-X2GoKDrive-by: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> --- x2gokdriveinit.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/x2gokdriveinit.c b/x2gokdriveinit.c index 44d791b..a262320 100644 --- a/x2gokdriveinit.c +++ b/x2gokdriveinit.c @@ -130,6 +130,15 @@ CloseInput(void) KdCloseInput(); } +#if INPUTTHREAD +/** This function is called in Xserver/os/inputthread.c when starting + the input thread. */ +void +ddxInputThreadInit(void) +{ +} +#endif + #ifdef DDXBEFORERESET void ddxBeforeReset(void) -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2gokdrive.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2gokdrive. commit 4888c61df480acdc6a717b9d75e6bb19c131366c Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Mon Jun 17 12:21:35 2019 +0200 x2gokdriveinit.c: Move remote_selection_init() from deprecated ephyrExtensionInit() to InitOutput(). --- x2gokdriveinit.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/x2gokdriveinit.c b/x2gokdriveinit.c index a262320..2496f76 100644 --- a/x2gokdriveinit.c +++ b/x2gokdriveinit.c @@ -76,7 +76,6 @@ static void ephyrExtensionInit(void) { LoadExtensionList(ephyrExtensions, ARRAY_SIZE(ephyrExtensions), TRUE); - remote_selection_init(); } @@ -86,6 +85,8 @@ InitOutput(ScreenInfo * pScreenInfo, int argc, char **argv) if (serverGeneration == 1) ephyrExtensionInit(); + remote_selection_init(); + KdInitOutput(pScreenInfo, argc, argv); } -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2gokdrive.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2gokdrive. commit faa056d4d5c2d3899b602c6ddfab994b3639ade3 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Mon Jun 17 12:22:03 2019 +0200 Recent X.org loads GLX via the mi path Backported from Xephyr / X.org: commit 67c303fff303f94b62f03a76de97116c6ebcfda9 Author: Adam Jackson <ajax@redhat.com> Date: Wed Jan 10 13:05:46 2018 -0500 miinitext: Load GLX on the mi path Add a stub for Xnest so it continues to link, but otherwise we support GLX on every server so there's no need to make every DDX add it. Signed-off-by: Adam Jackson <ajax@redhat.com> Backported-to-X2GoKDrive-by: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> --- x2gokdriveinit.c | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/x2gokdriveinit.c b/x2gokdriveinit.c index 2496f76..e88f194 100644 --- a/x2gokdriveinit.c +++ b/x2gokdriveinit.c @@ -66,25 +66,9 @@ InitCard(char *name) KdCardInfoAdd(&ephyrFuncs, 0); } -static const ExtensionModule ephyrExtensions[] = { -#ifdef GLXEXT - { GlxExtensionInit, "GLX", &noGlxExtension }, -#endif -}; - -static -void ephyrExtensionInit(void) -{ - LoadExtensionList(ephyrExtensions, ARRAY_SIZE(ephyrExtensions), TRUE); -} - - void InitOutput(ScreenInfo * pScreenInfo, int argc, char **argv) { - if (serverGeneration == 1) - ephyrExtensionInit(); - remote_selection_init(); KdInitOutput(pScreenInfo, argc, argv); -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2gokdrive.git