./configure --enable-openssl
error:
checking for library containing EVP_EncryptInit... no
configure: error: in /usr/src/libsrtp-2.7.0': configure: error: can't find openssl >= 1.1.0 crypto lib See config.log' for more details
Set PKG_CONFIG_PATH (Recommended)
OpenSSL 3.x installations include a .pc file that tells configure exactly how to link. Point to it before running configure:
bash
export PKG_CONFIG_PATH=/usr/local/openssl/lib/pkgconfig:$PKG_CONFIG_PATH
./configure --enable-openssl
it's configure ok.
./configure --enable-openssl
error:
checking for library containing EVP_EncryptInit... no
configure: error: in
/usr/src/libsrtp-2.7.0': configure: error: can't find openssl >= 1.1.0 crypto lib Seeconfig.log' for more detailsSet PKG_CONFIG_PATH (Recommended)
OpenSSL 3.x installations include a .pc file that tells configure exactly how to link. Point to it before running configure:
bash
export PKG_CONFIG_PATH=/usr/local/openssl/lib/pkgconfig:$PKG_CONFIG_PATH
./configure --enable-openssl
it's configure ok.