Re: [X2Go-Dev] x2goclient-4.1.1.0 compile fails at link stage with undefined references

2018-03-19 Thread Mihai Moldovan
* On 02/19/2018 07:12 AM, John Frankish wrote:
>>> On linux
>>> Which lib provides the directRDP function?
>>>
>> There is no library. That's all Linux-#ifdef'd code. But given that the
>> implementation section is referencing for instance the
>> SessionWidget::directRDP(bool, bool) signal, it should work.
>>
>> From the excerpt you've shown, I have no idea what you invoked and how so. I
>> also have no idea if the moc binary has been executed on relevant source 
>> files
>> and generated metaobjects code. If possible, please always paste 
>> *everything*,
>> not just the part that you may deem interesting.
>>
> Build log from "make V=1" attached.

There was a bug in the source code in the sense that it did connect two
unavailable signals on non-Linux platforms.

In your case, I observe that:

  - You seem to be using a self-compiled version staged into /usr/local/.
  - You have ANOTHER self-compiled version in /tmp/cloop/qt-4.x-dev which is
used as the mkspec location.
  - Qt does not detect that you're using the linux-g++ mkspec which would make
x2goclient.pro add -D__linux__ to the compile flags. I am not sure why we
even have this, given that the compiler should set such a macro. From the
commit log, it looks like this is needed so that moc expands macros such as
Q_OS_LINUX, which is a known bug in Qt, c.f.,
https://bugreports.qt.io/browse/QTBUG-34593 and will probably never be fixed
for Qt 4.8 since it's EOL.

*Why* are you not using the Qt version as provided by your package manager? Why
are you rolling your own solution, if you are incapable of debugging and
handling such issues yourself?

The path /tmp/tcloop/qt-4.x-dev/usr/local/share/qt4/mkspecs/linux-g++ might not
even exist any longer. Who knows what compiler spec qmake falls back to.

I fixed the issue I found in x2goclient via
https://code.x2go.org/gitweb?p=x2goclient.git;a=commitdiff;h=1f383a9029ba1d1323c370c0deaaba379097c960

This likely won't help you, though, since the definitions as seen by your meta
object compiler (moc) and C++ compiler (g++) still won't match up.


Package maintainers normally go a great length to make sure that the packages
they build work correctly and handle bug reports. Subverting this by rolling
your own version is not as smart an idea as you might think it is.


Looking around, you seem to be using tinycorelinux, which stages non-core
software to /usr/local. That hints that it was installed there by a package
manager, but doesn't explain why qmake is trying to read spec files from
/tmp/tcloop/qt-4.x-dev. There's definitely something odd with your system or the
way these packages have been built.


Sorry, this is not a problem X2Go Client, but rather with your Qt libraries.



Mihai



signature.asc
Description: OpenPGP digital signature
___
x2go-dev mailing list
x2go-dev@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-dev

Re: [X2Go-Dev] [X2GO] SSH agent forwarding

2018-03-19 Thread Stefan Baur
Am 19.03.2018 um 13:09 schrieb Mike Gabriel:
> Hi,
> 
> On  Di 13 Mär 2018 13:26:16 CET, Antoine Tran wrote:
> 
>> Dear all,
>>
>> Regarding
>> https://wiki.x2go.org/doku.php/doc:howto:ssh-agent-workaround, what is
>> the current status? I tried latest 4.1.1.1 and this issue is still not
>> solved, even though there might be some improvement. I can see now in
>> export what seems to me a valid PID, socket, etc.:
>>
>>     > export
>>
>>    declare -x SSH_AGENT_PID="16945"
>>    declare -x SSH_AUTH_SOCK="/tmp/ssh-CAjx51laLmty/agent.16903"
>>    declare -x SSH_CLIENT="10.0.1.81 33414 22"
>>    declare -x SSH_CONNECTION="10.0.1.81 33414 172.17.0.2 22"
>>
>>     >  ps aufx|grep 16945
>>    trana    16945  0.0  0.0  52916   584 ?    Ss   12:16 0:00 
>>    \_ /usr/bin/ssh-agent /bin/bash -c exec -l "/bin/bash" -c
>>    "/usr/bin/env
>>    LD_LIBRARY_PATH=/usr/lib64/nx/X11/Xinerama:/usr/lib64/nx/X11 startkde"
>>
>>     > ll $SSH_AUTH_SOCK
>>    srw--- 1 trana trana 0 Mar 13 12:16
>>    /tmp/ssh-CAjx51laLmty/agent.16903
>>
>> But the ssh from a a console in Kde, that has these variable, does not
>> use ssh agent. I can see that in ssh -
>>
>> Thanks.
> 
> still not being worked on afaik.

Mihai, please correct me if I'm wrong, but I think the situation is more
like this: The earlier libssh version we used didn't support agent
forwarding, the newer one does, but it doesn't work with X2GoClient yet,
at least not in all cases.  That's why you're suddenly seeing an
SSH_AUTH_SOCK variable set, but e.g. pointing to a non-existent file.

So yes, there's still work to do, but the new libssh should make it at
least easier.

Sponsors, anyone? ;-)

Kind Regards,
Stefan Baur

-- 
BAUR-ITCS UG (haftungsbeschränkt)
Geschäftsführer: Stefan Baur
Eichenäckerweg 10, 89081 Ulm | Registergericht Ulm, HRB 724364
Fon/Fax 0731 40 34 66-36/-35 | USt-IdNr.: DE268653243



signature.asc
Description: OpenPGP digital signature
___
x2go-dev mailing list
x2go-dev@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-dev

Re: [X2Go-Dev] x2goclient-4.1.1.0 compile fails at link stage with undefined references

2018-03-19 Thread Stefan Baur
John,

This is a volunteer mailing list where most of the participants work
fulltime day jobs, not a web forum frequented by teens that spend their
afternoon in front of the computer because they have nothing better to
do with their free time.

So please do not try to "bump" posts.

If you need professional help with X2Go, because it's a time-critical
issue, and you are willing to pay money for it, have a look at
 and pick a
support company there.

Kind Regards,
Stefan Baur (one of X2Go's list admins)

Am 27.02.2018 um 12:34 schrieb John Frankish:
> bump
> 
> 
> *From:* x2go-dev  on behalf of John
> Frankish 
> *Sent:* Monday, February 19, 2018 10:12:26 AM
> *To:* x2go-dev@lists.x2go.org
> *Cc:* Mihai Moldovan
> *Subject:* Re: [X2Go-Dev] x2goclient-4.1.1.0 compile fails at link stage
> with undefined references
>  
>> > On linux
>> > Which lib provides the directRDP function?
>> > 
>> There is no library. That's all Linux-#ifdef'd code. But given that the
>> implementation section is referencing for instance the
>> SessionWidget::directRDP(bool, bool) signal, it should work.
>> 
>> From the excerpt you've shown, I have no idea what you invoked and how so. I
>> also have no idea if the moc binary has been executed on relevant source 
>> files
>> and generated metaobjects code. If possible, please always paste 
>> *everything*,
>> not just the part that you may deem interesting.
>> 
> Build log from "make V=1" attached.
> 
> 
> 
> ___
> x2go-dev mailing list
> x2go-dev@lists.x2go.org
> https://lists.x2go.org/listinfo/x2go-dev
> 


-- 
BAUR-ITCS UG (haftungsbeschränkt)
Geschäftsführer: Stefan Baur
Eichenäckerweg 10, 89081 Ulm | Registergericht Ulm, HRB 724364
Fon/Fax 0731 40 34 66-36/-35 | USt-IdNr.: DE268653243



signature.asc
Description: OpenPGP digital signature
___
x2go-dev mailing list
x2go-dev@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-dev

Re: [X2Go-Dev] [X2GO] SSH agent forwarding

2018-03-19 Thread Antoine Tran
Thank you for your answer.  We use 
https://code.x2go.org/releases/binary-win32/x2goclient/releases/4.1.1.1-2018.03.01/ 
and not python GUI, as this implementation is very old (from 2015) and 
in my test, it didn't work well and was less convenient (than x2goclient).



On 19/03/2018 13:09, Mike Gabriel wrote:

Hi,

On  Di 13 Mär 2018 13:26:16 CET, Antoine Tran wrote:


Dear all,

Regarding 
https://wiki.x2go.org/doku.php/doc:howto:ssh-agent-workaround, what 
is the current status? I tried latest 4.1.1.1 and this issue is still 
not solved, even though there might be some improvement. I can see 
now in export what seems to me a valid PID, socket, etc.:


    > export

   declare -x SSH_AGENT_PID="16945"
   declare -x SSH_AUTH_SOCK="/tmp/ssh-CAjx51laLmty/agent.16903"
   declare -x SSH_CLIENT="10.0.1.81 33414 22"
   declare -x SSH_CONNECTION="10.0.1.81 33414 172.17.0.2 22"

    >  ps aufx|grep 16945
   trana    16945  0.0  0.0  52916   584 ?    Ss   12:16 0:00
   \_ /usr/bin/ssh-agent /bin/bash -c exec -l "/bin/bash" -c
   "/usr/bin/env
   LD_LIBRARY_PATH=/usr/lib64/nx/X11/Xinerama:/usr/lib64/nx/X11 
startkde"


    > ll $SSH_AUTH_SOCK
   srw--- 1 trana trana 0 Mar 13 12:16
   /tmp/ssh-CAjx51laLmty/agent.16903

But the ssh from a a console in Kde, that has these variable, does 
not use ssh agent. I can see that in ssh -


Thanks.


still not being worked on afaik.

PyHoca-GUI / Python X2Go has ssh-agent forwarding for ages. However, 
with recent Debian / Ubuntu, I see various breakages regarding the 
newly uploaded Paramiko version (SSH client implementation in Python 
utilitzed by Python X2Go).


I need to take some time and get PyHoca-GUI and -CLI up to speed 
(Python 3, bug fixes, etc.).


Mike


--
My THALES email is antoine.t...@thales-services.fr.
+33 (0)5 62 88 84 40
Thales Services, Toulouse, France

___
x2go-dev mailing list
x2go-dev@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-dev

[X2Go-Dev] Bug#1274: Bug#1274: x2goagent shows NoMachine logo in taskbar

2018-03-19 Thread Ulrich Sibiller
This also happens when running x2goagent nested.

On Mon, Mar 19, 2018 at 1:27 PM, Mike Gabriel
 wrote:
> Package: x2goserver-x2goagent
> Version: 4.1.0.0
> Severity: serious
>
> When trying X2Go on MS Windows, the X2Go Agent window shows the NoMachine
> logo instead of the X2Go logo.
>
> Filing this against X2Go Server's agent wrapper, as it is not clear to me
> OTOH, if this needs fixing in the agent wrapper or in nx-libs's nxagent code
> itself.
>
> Mike
> --
>
> DAS-NETZWERKTEAM
> mike gabriel, herweg 7, 24357 fleckeby
> mobile: +49 (1520) 1976 148
> landline: +49 (4354) 8390 139
>
> GnuPG Fingerprint: 9BFB AEE8 6C0A A5FF BF22  0782 9AF4 6B30 2577 1B31
> mail: mike.gabr...@das-netzwerkteam.de, http://das-netzwerkteam.de
>
>
> ___
> x2go-dev mailing list
> x2go-dev@lists.x2go.org
> https://lists.x2go.org/listinfo/x2go-dev
___
x2go-dev mailing list
x2go-dev@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-dev

[X2Go-Dev] Bug#1274: x2goagent shows NoMachine logo in taskbar

2018-03-19 Thread Mike Gabriel

Package: x2goserver-x2goagent
Version: 4.1.0.0
Severity: serious

When trying X2Go on MS Windows, the X2Go Agent window shows the  
NoMachine logo instead of the X2Go logo.


Filing this against X2Go Server's agent wrapper, as it is not clear to  
me OTOH, if this needs fixing in the agent wrapper or in nx-libs's  
nxagent code itself.


Mike
--

DAS-NETZWERKTEAM
mike gabriel, herweg 7, 24357 fleckeby
mobile: +49 (1520) 1976 148
landline: +49 (4354) 8390 139

GnuPG Fingerprint: 9BFB AEE8 6C0A A5FF BF22  0782 9AF4 6B30 2577 1B31
mail: mike.gabr...@das-netzwerkteam.de, http://das-netzwerkteam.de



pgpYgwsdnDvo8.pgp
Description: Digitale PGP-Signatur
___
x2go-dev mailing list
x2go-dev@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-dev

[X2Go-Dev] Bug#1273: Pulseaudio support broken in X2Go Client 4.1.1.1 (2018.03.01) for MS Windows

2018-03-19 Thread Mike Gabriel

Package: x2goclient
Tags: mswin
Severity: important
Version: 4.1.1.1-2018.03.01

Hi Michael,

yesterday, I got a chance to test X2Go on MS Windows. With the latest  
client version (see above), Pulseaudio fails to get started.


The Windows system was some Windows 7 64bit machine, update status unclear.

Mike
--

DAS-NETZWERKTEAM
mike gabriel, herweg 7, 24357 fleckeby
mobile: +49 (1520) 1976 148
landline: +49 (4354) 8390 139

GnuPG Fingerprint: 9BFB AEE8 6C0A A5FF BF22  0782 9AF4 6B30 2577 1B31
mail: mike.gabr...@das-netzwerkteam.de, http://das-netzwerkteam.de



pgpRY2dX9HQ1u.pgp
Description: Digitale PGP-Signatur
___
x2go-dev mailing list
x2go-dev@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-dev

Re: [X2Go-Dev] [X2GO] SSH agent forwarding

2018-03-19 Thread Mike Gabriel

Hi,

On  Di 13 Mär 2018 13:26:16 CET, Antoine Tran wrote:


Dear all,

Regarding  
https://wiki.x2go.org/doku.php/doc:howto:ssh-agent-workaround, what  
is the current status? I tried latest 4.1.1.1 and this issue is  
still not solved, even though there might be some improvement. I can  
see now in export what seems to me a valid PID, socket, etc.:


> export

   declare -x SSH_AGENT_PID="16945"
   declare -x SSH_AUTH_SOCK="/tmp/ssh-CAjx51laLmty/agent.16903"
   declare -x SSH_CLIENT="10.0.1.81 33414 22"
   declare -x SSH_CONNECTION="10.0.1.81 33414 172.17.0.2 22"

>  ps aufx|grep 16945
   trana    16945  0.0  0.0  52916   584 ?    Ss   12:16 0:00 
   \_ /usr/bin/ssh-agent /bin/bash -c exec -l "/bin/bash" -c
   "/usr/bin/env
   LD_LIBRARY_PATH=/usr/lib64/nx/X11/Xinerama:/usr/lib64/nx/X11 startkde"

> ll $SSH_AUTH_SOCK
   srw--- 1 trana trana 0 Mar 13 12:16
   /tmp/ssh-CAjx51laLmty/agent.16903

But the ssh from a a console in Kde, that has these variable, does  
not use ssh agent. I can see that in ssh -


Thanks.


still not being worked on afaik.

PyHoca-GUI / Python X2Go has ssh-agent forwarding for ages. However,  
with recent Debian / Ubuntu, I see various breakages regarding the  
newly uploaded Paramiko version (SSH client implementation in Python  
utilitzed by Python X2Go).


I need to take some time and get PyHoca-GUI and -CLI up to speed  
(Python 3, bug fixes, etc.).


Mike
--

DAS-NETZWERKTEAM
mike gabriel, herweg 7, 24357 fleckeby
mobile: +49 (1520) 1976 148
landline: +49 (4354) 8390 139

GnuPG Fingerprint: 9BFB AEE8 6C0A A5FF BF22  0782 9AF4 6B30 2577 1B31
mail: mike.gabr...@das-netzwerkteam.de, http://das-netzwerkteam.de



pgpOKJojcXqsH.pgp
Description: Digitale PGP-Signatur
___
x2go-dev mailing list
x2go-dev@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-dev

[X2Go-Dev] Processed: Re: Bug#1272: nxagent crashes on Ubuntu 16.04, making x2go server unusable

2018-03-19 Thread X2Go Bug Tracking System
Processing control commands:

> forwarded -1 https://github.com/ArcticaProject/nx-libs/issues/677
Bug #1272 [nxagent] nxagent crashes on Ubuntu 16.04, making x2go server unusable
Bug #1269 [nxagent] X2go server crashes on Ubuntu 16.04 starting at 2018-03-08
Ignoring request to change the forwarded-to-address of bug#1272 to the same 
value
Ignoring request to change the forwarded-to-address of bug#1269 to the same 
value
> tags -1 fixed-upstream
Bug #1272 [nxagent] nxagent crashes on Ubuntu 16.04, making x2go server unusable
Bug #1269 [nxagent] X2go server crashes on Ubuntu 16.04 starting at 2018-03-08
Added tag(s) fixed-upstream.
Added tag(s) fixed-upstream.
> fixed -1 3.5.99.16
Bug #1272 [nxagent] nxagent crashes on Ubuntu 16.04, making x2go server unusable
Bug #1269 [nxagent] X2go server crashes on Ubuntu 16.04 starting at 2018-03-08
There is no source info for the package 'nxagent' at version '3.5.99.16' with 
architecture ''
Unable to make a source version for version '3.5.99.16'
Ignoring request to alter fixed versions of bug #1272 to the same values 
previously set
Ignoring request to alter fixed versions of bug #1269 to the same values 
previously set
> forcemerge -1 #1269
Bug #1272 [nxagent] nxagent crashes on Ubuntu 16.04, making x2go server unusable
Bug #1269 [nxagent] X2go server crashes on Ubuntu 16.04 starting at 2018-03-08
Bug #1269 [nxagent] X2go server crashes on Ubuntu 16.04 starting at 2018-03-08
Merged 1269 1272

-- 
1269: http://bugs.x2go.org/cgi-bin/bugreport.cgi?bug=1269
1272: http://bugs.x2go.org/cgi-bin/bugreport.cgi?bug=1272
X2Go Bug Tracking System
Contact ow...@bugs.x2go.org with problems
___
x2go-dev mailing list
x2go-dev@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-dev

[X2Go-Dev] Bug#1272: Bug#1272: nxagent crashes on Ubuntu 16.04, making x2go server unusable

2018-03-19 Thread Mike Gabriel

Control: forwarded -1 https://github.com/ArcticaProject/nx-libs/issues/677
Control: tags -1 fixed-upstream
Control: fixed -1 3.5.99.16
Control: forcemerge -1 #1269

On  Do 15 Mär 2018 22:47:44 CET, Maciej Puzio wrote:


Good news! We have an upstream bug:
https://github.com/ArcticaProject/nx-libs/issues/677

It appears that Arctica issue is exactly what I have been experiencing.

I use KDE on two screens with different resolutions (1920x1200 and  
1600x1200). X2goclient session uses only one of these displays, but  
the mere presence of two monitors on the client causes nxagent to  
crash on the server. I tested another client machine with one  
screen, and everything worked fine (i.e. I was able to open the  
session, and nxagent did not segfault). It does not matter whether I  
move the x2go session window, maximize it, and so on. All that  
matters is number of displays on the client and their relative size.  
(I did not test with two screens of equal size.)


As the upstream bug suggested, I installed the x2go nightly  
packages, as explained here:

https://wiki.x2go.org/doku.php/wiki:development:nightly-builds
After that, the problem went away and dual-screen setup worked fine.  
So I guess the bug is fixed in nightly builds.


As a side note, the number of bugs that show up in various Linux  
packages when using dual monitors has recently been so astounding  
that I am ready to give up and replace my setup with a larger single  
screen. Still, I can't force all my users to do so.


Adding some meta information to the bug and force-merging with 1269.

@Ionic: please close this one, when 3.5.99.16 hits X2Go stable repos.

Mike
--

DAS-NETZWERKTEAM
mike gabriel, herweg 7, 24357 fleckeby
mobile: +49 (1520) 1976 148
landline: +49 (4354) 8390 139

GnuPG Fingerprint: 9BFB AEE8 6C0A A5FF BF22  0782 9AF4 6B30 2577 1B31
mail: mike.gabr...@das-netzwerkteam.de, http://das-netzwerkteam.de



pgpfulfDC34vS.pgp
Description: Digitale PGP-Signatur
___
x2go-dev mailing list
x2go-dev@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-dev

[X2Go-Dev] Bug#1268: Bug#1268: enhancement: add terminate/suspend diaolog when closing session window

2018-03-19 Thread Mike Gabriel

Control: reassign -1 src:nx-libs
Control: forwarded -1 https://github.com/ArcticaProject/nx-libs/issues/435

Hi,

On  Fr 09 Mär 2018 19:35:32 CET, David Clay wrote:


Package: x2g0client
Version: 4.1.1

This was a feature of NX that I liked.  You would not have to bring of the
x20client wimdow to suspend/terminate session.

This could be controlled by an option so existing users could get the
current behavior.


This is already an issue filed upstream:
https://github.com/ArcticaProject/nx-libs/issues/435

The idea is to have a generic tool (not X2Go only) to achieve this  
using a similar approach as was implemented in nxclient at old times.


Mike
--

DAS-NETZWERKTEAM
mike gabriel, herweg 7, 24357 fleckeby
mobile: +49 (1520) 1976 148
landline: +49 (4354) 8390 139

GnuPG Fingerprint: 9BFB AEE8 6C0A A5FF BF22  0782 9AF4 6B30 2577 1B31
mail: mike.gabr...@das-netzwerkteam.de, http://das-netzwerkteam.de



pgp4jtniXrpI9.pgp
Description: Digitale PGP-Signatur
___
x2go-dev mailing list
x2go-dev@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-dev

Re: [X2Go-Dev] Deprecation and removal of X2Go Plugin

2018-03-19 Thread Mike Gabriel

On  Di 13 Mär 2018 09:57:07 CET, Mihai Moldovan wrote:


Hi


Since most browsers either stopped supporting NPAPI (or will be  
dropping support

with the next ESR version) and Qt 5 does not feature a browser plugin
architecture any longer, I will be ripping out code related to the  
X2Go Plugin

in the development version of X2Go Client soonish.

Expect the next version to not supply X2Go Plugin binaries.



Mihai


Good! Finally!

Mike
--

DAS-NETZWERKTEAM
mike gabriel, herweg 7, 24357 fleckeby
mobile: +49 (1520) 1976 148
landline: +49 (4354) 8390 139

GnuPG Fingerprint: 9BFB AEE8 6C0A A5FF BF22  0782 9AF4 6B30 2577 1B31
mail: mike.gabr...@das-netzwerkteam.de, http://das-netzwerkteam.de



pgp0C1bJ2DLTK.pgp
Description: Digitale PGP-Signatur
___
x2go-dev mailing list
x2go-dev@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-dev

[X2Go-Dev] Processed: Re: Bug#1271: Composite XServer extension support

2018-03-19 Thread X2Go Bug Tracking System
Processing control commands:

> reassign -1 nxagent
Bug #1271 [x2goserver] Composite XServer extension support
Bug reassigned from package 'x2goserver' to 'nxagent'.
No longer marked as found in versions 4.0.1.20.
Ignoring request to alter fixed versions of bug #1271 to the same values 
previously set

-- 
1271: http://bugs.x2go.org/cgi-bin/bugreport.cgi?bug=1271
X2Go Bug Tracking System
Contact ow...@bugs.x2go.org with problems
___
x2go-dev mailing list
x2go-dev@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-dev

[X2Go-Dev] Bug#1271: Bug#1271: Composite XServer extension support

2018-03-19 Thread Mike Gabriel

Control: reassign -1 nxagent

Hi,

On  Di 13 Mär 2018 05:33:45 CET, Ildar Mulyukov wrote:


Package: x2goserver
Version: 4.0.1.20

the Composite XServer extension is currently unsupported. Please fix.
Some info here:  
https://wiki.x2go.org/doku.php/wiki:development:roadmap?s[]=composite#first_attempt_at_documenting_missing_nx-libs_features_for_certain_applications_and_desktop_environments


P.S. Might be good to make a metabug for all unsupported XServer extensions


this issue is not related to X2Go Server directly, but to nx-libs.  
Please report an upstream issue there [1].


An interesting read is also this [2] regarding Composite support in NX.

I reassign this bug against X2Go's BTS for package nx-libs, but that  
is only a downstream tracking bug, once you have created the upstream  
issue. Thanks!


Thanks,
Mike

[1] https://github.com/ArcticaProject/nx-libs
[2] https://github.com/ArcticaProject/nx-libs/issues/502
--

DAS-NETZWERKTEAM
mike gabriel, herweg 7, 24357 fleckeby
mobile: +49 (1520) 1976 148
landline: +49 (4354) 8390 139

GnuPG Fingerprint: 9BFB AEE8 6C0A A5FF BF22  0782 9AF4 6B30 2577 1B31
mail: mike.gabr...@das-netzwerkteam.de, http://das-netzwerkteam.de



pgpUdaUqdkPk5.pgp
Description: Digitale PGP-Signatur
___
x2go-dev mailing list
x2go-dev@lists.x2go.org
https://lists.x2go.org/listinfo/x2go-dev