Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!

Bug 482550

Summary: net-voip/yate-4.3.0.1 configure script fails to detect openssl
Product: Gentoo Linux Reporter: David Smith <mlist>
Component: Current packagesAssignee: 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

Description David Smith 2013-08-26 13:24:23 UTC
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
Comment 1 Chí-Thanh Christopher Nguyễn gentoo-dev 2013-08-26 13:27:14 UTC
What is the upstream status of this patch?