Summary: | net-voip/yate-4.3.0.1 configure script fails to detect openssl | ||
---|---|---|---|
Product: | Gentoo Linux | Reporter: | David Smith <mlist> |
Component: | Current packages | Assignee: | Gentoo Radio project <radio> |
Status: | CONFIRMED --- | ||
Severity: | normal | CC: | kripton, mlist |
Priority: | Normal | ||
Version: | unspecified | ||
Hardware: | All | ||
OS: | Linux | ||
Whiteboard: | |||
Package list: | Runtime testing required: | --- | |
Attachments: | Patch to fix configure.in openssl detection |
What is the upstream status of this patch? |
Created attachment 357080 [details, diff] Patch to fix configure.in openssl detection configure.in fails to detect openssl when `pkg-config --cflags openssl` returns blank and it shouldn't. On my systems with the latest stable openssl, `pkg-config --cflags openssl` returns blank, which is acceptable The result is that yate compiled, but does not build the openssl module and SSL features do not work Changing: if [[ "x$incssl" != "x" -a "x$libssl" != "x" ]]; then to: if [[ "x$verssl" != "x" ]]; then Resolves the issue and allows yate to build the openssl module and run properly with SSL features. Patch is attached for configure.in