Re: problem with different version of openssl in Apache and apache module

2013-12-20 Thread Alex Bligh
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

Re: problem with different version of openssl in Apache and apache module

2013-12-20 Thread Rainer Jung
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

Re: problem with different version of openssl in Apache and apache module

2013-12-20 Thread Joshua Marantz
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