[FreeRDP-devel] HELP - BUILD OPTIONS

2018-05-16 Thread Aditya Sood via FreeRDP-devel
There are two things i wanted to know. 1. What are the different types of executables that are created for freerdp on windows? 2. What are the build options that will be entered with cmake command to create those executables?

Re: [FreeRDP-devel] Compilation on macOS, openssl, FIPS

2018-05-16 Thread Vladimir via FreeRDP-devel
Thank you! I'll try this. On 16.05.2018 18:49, Armin Novak via FreeRDP-devel wrote: The reason your build fails is this: It uses the headers from ports, but links against the version shipped with OSX (they still have one, just don't ship the headers) which is a 0.9.x version if I recall correct

Re: [FreeRDP-devel] Compilation on macOS, openssl, FIPS

2018-05-16 Thread Armin Novak via FreeRDP-devel
The reason your build fails is this: It uses the headers from ports, but links against the version shipped with OSX (they still have one, just don't ship the headers) which is a 0.9.x version if I recall correctly. Change the path of the lib to /opt/local/lib/libcrypto.dylib (and libssl.dylib) and

Re: [FreeRDP-devel] Compilation on macOS, openssl, FIPS

2018-05-16 Thread Vladimir via FreeRDP-devel
Armin, thanks for reply, here are these values: //Path to a library. OPENSSL_CRYPTO_LIBRARY:FILEPATH=/usr/lib/libcrypto.dylib //Path to a file. OPENSSL_INCLUDE_DIR:PATH=/opt/local/include //Path to a library. OPENSSL_SSL_LIBRARY:FILEPATH=/usr/lib/libssl.dylib libcrypto.dylib and libssl.dylib a

Re: [FreeRDP-devel] Compilation on macOS, openssl, FIPS

2018-05-16 Thread Armin Novak via FreeRDP-devel
Hi Vladimir, FreeRDP does not access FIPS related functions of OpenSSL. It first checks with a call to FIPS_mode (which is available from version 1.0.1) if it is enabled. If your compile is failing, best check which version is detected and if the includes match the library found. (Both can be f

Re: [FreeRDP-devel] Mouse Hover question

2018-05-16 Thread Daniel Boyd via FreeRDP-devel
Don’t have access to group policy, unfortunately. I solved it by writing two scripts: one on the server and one of my local machine. Local machine checks the system idle time every 5 seconds and tells RDP machine to move the mouse if the idle time is less than 5 seconds :) Sent from my iPhone

Re: [FreeRDP-devel] Mouse Hover question

2018-05-16 Thread Cedros via FreeRDP-devel
Hello, If you are able to, you could just remove the session idle timeout on the rdp server: https://serverfault.com/questions/873399/rds-2016-session-limits Regards On Tue, May 15, 2018 at 6:46 PM, Daniel Boyd via FreeRDP-devel < freerdp-devel@lists.sourceforge.net> wrote: > I have a Windows m

[FreeRDP-devel] Compilation on macOS, openssl, FIPS

2018-05-16 Thread Vladimir via FreeRDP-devel
Greetings to all! I was trying to compile xFreeRdp on macOS following the instructions here https://github.com/FreeRDP/FreeRDP/wiki/Compilation and have problems. Apple don't provide openssl on Mac anymore, and so we need to install it from brew or from macports. But! Currently FreeRDP tries