Re: [Openvpn-devel] [PATCH release/2.4] configure.ac: fix building against static openssl

2017-05-30 Thread Matthias Andree
Am 31.05.2017 um 02:31 schrieb David Sommerseth: > > I do however vaguely remember someone mentioning some BSD distros still > being on 0.9.8 ... or was it some other OS? ... Anyhow, do we need to > care for them? This is release/2.4 we're talking about after all. The oldest OpenSSL version in u

Re: [Openvpn-devel] [PATCH release/2.4] configure.ac: fix building against static openssl

2017-05-30 Thread David Sommerseth
On 30/05/17 22:50, Steffan Karger wrote: > Instead of searching for both libssl and libcrypto, just search for > openssl as a whole (which depends on libssl and libcrypto). The previous > discovery order would result in "-lcrypto -lssl" link flags, while we > need "-lssl -lcrypto". > > Trac: #863

[Openvpn-devel] [PATCH release/2.4] configure.ac: fix building against static openssl

2017-05-30 Thread Steffan Karger
Instead of searching for both libssl and libcrypto, just search for openssl as a whole (which depends on libssl and libcrypto). The previous discovery order would result in "-lcrypto -lssl" link flags, while we need "-lssl -lcrypto". Trac: #863 Signed-off-by: Steffan Karger --- This patch is fo