I'm trying to install Guacamole 1.4.0 on a 22.04 Ubuntu (running from a Virtual Machine) according to the following tutorial : Install and Use Guacamole on Ubuntu.
I'm stuck on Step 3: Build the Guacamole Server From Source, at the 6th Step.
When running the command make
:
- I encounter a
all warning being treated as errors
- Those warnings are
-WError=deprecated-declarations
- They appear in
libguac_common_ssh_la-key.lo
Since OpenSSL 3.0 rsa_key is deprecated
I tried:
-Wno-deprecated
: Doesn't change anything- Modifying the
./configure
file - Checking for more updated versions (1.4.0 is the latest)
The solution seems to be here:
- The GUACAMOLE-1602 is the same thing as I have
- It is said "This has already been resolved. The line of code in question doesn't exist in the current source on git"
Questions:
- How can I get the version that corrects this issue? I can't find it.
- Do you have another solution to help?