This is the fix :

{{

   -
      -
         - src/protocols/rdp/guac_handlers.c.orig Tue Dec 15 06:53:50 2015
      - src/protocols/rdp/guac_handlers.c Tue Jan 5 16:50:19 2016
         ***************
      - 489,494 ****
      - 489,504 ----

rdp_guac_client_data* guac_client_data = (rdp_guac_client_data*)
client->data;

+ /* Inspired by the freerdp_focus_required() call in
client/X11/xf_client.c */
+ /* We delay the TS_SYNC_EVENT until the first key press (instead of the
event loop) due to a timing issue with Windows 2012, ref. */
+ /* https://social.msdn.microsoft.com/Forums/en-US/75024a3d-
458f-4ed9-b55d-7852d0113bd7/rdpbcgrpdf-2-minors-problems-with-server-2012 */
+ static int first_key = 1;
+ if (first_key && pressed)
{ + rdpInput* input = guac_client_data->rdp_inst->input; +
input->SynchronizeEvent(input, KBD_SYNC_NUM_LOCK); + first_key = 0; + }

+
/* Update keysym state */
if (GUAC_RDP_KEYSYM_STORABLE(keysym))
GUAC_RDP_KEYSYM_LOOKUP(guac_client_data->keysym_state, keysym) = pressed;
}}


Bye


2016-11-25 12:05 GMT+01:00 Processor <processor....@gmail.com>:

> So Everything worked fine.
>
> I had to do some things that are not documented:
>
> -Install Maven 3, without it the client won't built
> -Add some libraries to benefit of the new functionalities
> -Use the jar built with the client for the database authentication.
> -Upgrade the DB scheme from 9.9 to 9.10
> -Modify my old guacamole properties to comply with the new standards
>
> Thanks!
>
> 2016-11-24 10:55 GMT+01:00 Processor <processor....@gmail.com>:
>
>> Hmm Forget this question, seems to be built with the client.
>>
>> 2016-11-24 10:44 GMT+01:00 Processor <processor....@gmail.com>:
>>
>>> Hi,
>>>
>>> Everything seems to be ok, Is there any way to get the Mysql
>>> authentication plugin?
>>>
>>> Franck
>>>
>>>
>>> 2016-11-23 13:51 GMT+01:00 Processor <processor....@gmail.com>:
>>>
>>>> Thanks for your answer, Just read the page, regarding what it has to be
>>>> done it should be ok.
>>>>
>>>> Thanks for your answer!! I'll keep the thread updated with the result.
>>>>
>>>> 2016-11-23 12:11 GMT+01:00 Adrian Owen <adrian.o...@eesm.com>:
>>>>
>>>>>
>>>>>
>>>>> I successfully upgraded from 0.9.9 to 0.9.10 on Debian using
>>>>> step-by-step guide http://www.cb-net.co.uk/linux/
>>>>> ugrading-gucamole-0-9-9-to-0-9-10/
>>>>>
>>>>>
>>>>>
>>>>> Ubuntu is a Debian derivative, maybe this would work for you?
>>>>>
>>>>>
>>>>>
>>>>> Adrian
>>>>>
>>>>>
>>>>>
>>>>> *From:* Processor [mailto:processor....@gmail.com]
>>>>> *Sent:* 23 November 2016 10:52
>>>>> *To:* user@guacamole.incubator.apache.org
>>>>> *Subject:* Install Guac 0.9.10RC1 from zip got on git.
>>>>>
>>>>>
>>>>>
>>>>> Hi,
>>>>>
>>>>> This is my config:
>>>>>
>>>>> Ubuntu 14.04 Server (64)
>>>>>
>>>>> 16 Gig of ram
>>>>>
>>>>> Load of DD
>>>>>
>>>>> up to date
>>>>>
>>>>> Guacamole 0.9.9 already running on it.
>>>>>
>>>>> I'm trying to,install the 0.9.10RC1 from zip got on git.
>>>>>
>>>>> As far as I unsderstood I have to run automake once the zip is
>>>>> deflated.
>>>>>
>>>>> My problem is that I got these messages :
>>>>>
>>>>> tests/Makefile.am:32: warning: source file 'util/guac_unicode.c' is in
>>>>> a subdirectory,
>>>>> tests/Makefile.am:32: but option 'subdir-objects' is disabled
>>>>> /usr/share/automake-1.14/am/check2.am: error: am__EXEEXT does not
>>>>> appear in AM_CONDITIONAL
>>>>>
>>>>> Any how to correct this?
>>>>>
>>>>> Many thanks by advance,
>>>>>
>>>>> Proc.
>>>>> ------------------------------
>>>>>
>>>>> No virus found in this message.
>>>>> Checked by AVG - www.avg.com
>>>>> Version: 2016.0.7859 / Virus Database: 4664/13449 - Release Date:
>>>>> 11/21/16
>>>>>
>>>>
>>>>
>>>
>>
>

Reply via email to