On 19 Dec 2013, at 19:29, Hong wrote:
> I wrote an Apache module that call functions in openssl library to sign the
> messages. The module is dynamic linked to openssl library 1.0.1d when I
> built it. It works fine when it is loaded into the Apache that was also
> built with the same version of
On 20.12.2013 10:51, Alex Bligh wrote:
>
> On 19 Dec 2013, at 19:29, Hong wrote:
>
>> I wrote an Apache module that call functions in openssl library to sign the
>> messages. The module is dynamic linked to openssl library 1.0.1d when I
>> built it. It works fine when it is loaded into the Apache
We faced this exact issue (openssl clashes with other linked-in versions)
in mod_pagespeed and ngx_pagespeed, its nginx equivalent.
We solved this problem in our Apache module because we linked
mod_pagespeed.so hiding all the symbols other than the module entry-point
into Apache. Here's the link