Unfortunatly the additional switches made no effect, i have however found a work
around...
If you set the `LIBSSL_STATIC_SRCLIB` to yes, and alter the path to where ubuntu stores
the static libs from packages it compiles with no warnings and loads as expected.
```
# set to yes when wanting to link with static libraries compiled from source
LIBSSL_STATIC_SRCLIB ?= yes
# set to the path of the folder with static libraries compiled from source
#LIBSSL_STATIC_SRCPATH ?= /usr/local/src/openssl
LIBSSL_STATIC_SRCPATH ?= /usr/lib/x86_64-linux-gnu/
```
As an aside the emergence of this module and ruxc couldnt be more timely as i have been
having no end of problems with random TLS failures which seem to be related to the new
"locking" model, so if needs be being able to use an older version of libssl
this is perfect, as is an alternative to http_client which has also been having random TLS
failures of either accessing priv key or failing while trying to initialise the
connection.
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/issues/2815#issuecomment-895854682