Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update BUILDING.md #2918

Merged
merged 2 commits into from
May 6, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Update BUILDING.md
When compiling on ubuntu 24.04 support for ttls was not available until i install 

sudo apt install libssl-dev

not sure if those previously mentionned libraries in sudo-apt-get install are required but without this line above it didn't work

-- Could NOT find OpenSSL, try to set the path to OpenSSL root folder in the system variable OPENSSL_ROOT_DIR (missing: OPENSSL_CRYPTO_LIBRARY OPENSSL_INCLUDE_DIR) 
-- OpenSSL development files not found, TLS won't be possible.
  • Loading branch information
kenwawa01 authored May 5, 2024
commit 6bc36721101d18d62245794207a9f8eb0f416eb3
2 changes: 1 addition & 1 deletion docs/BUILDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Debian:
* If you require TLS connections, install `libssl-dev`.

````
sudo apt-get install libtool libusb-1.0-0-dev librtlsdr-dev rtl-sdr build-essential cmake pkg-config
sudo apt-get install libtool libusb-1.0-0-dev librtlsdr-dev rtl-sdr libssl-dev build-essential cmake pkg-config
````


Expand Down