Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 482550 - net-voip/yate-4.3.0.1 configure script fails to detect openssl
Summary: net-voip/yate-4.3.0.1 configure script fails to detect openssl
Status: CONFIRMED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Gentoo Radio project
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-08-26 13:24 UTC by David Smith
Modified: 2016-02-12 22:03 UTC (History)
2 users (show)

See Also:
Package list:
Runtime testing required: ---


Attachments
Patch to fix configure.in openssl detection (yate-fix-ssl-detection.patch,925 bytes, patch)
2013-08-26 13:24 UTC, David Smith
Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
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?