Re: [users@httpd] Re: Help: Building httpd from source with specific (different then system default) OpenSSL

2021-04-07 Thread Shariful Alam
Hi Yann, It works!. Thanks. I'm a noob, I was trying to fix this for the past two days. At some point, I believe I tried with the LDFLAGS too. But I can see that I was using LDFLAGS incorrectly. Thanks for the help. Regards, Shariful Alam On Wed, Apr 7, 2021 at 3:02 PM Yann Ylavic wrote: > On W

Re: [users@httpd] Re: Help: Building httpd from source with specific (different then system default) OpenSSL

2021-04-07 Thread Yann Ylavic
On Wed, Apr 7, 2021 at 10:56 PM Shariful Alam wrote: > > Yes, I'm looking for libssl. But not the default one. Here, you can see that > my mod_ssl.so is still linked with the default libssl. However, during httpd > installation, I use the following configuration, > > CFLAGS='-DSSL_EXPERIMENTAL_

Re: [users@httpd] Re: Help: Building httpd from source with specific (different then system default) OpenSSL

2021-04-07 Thread Shariful Alam
Hi Christophe, Yes, I'm looking for *libssl. *But not the default one. Here, you can see that my *mod_ssl.so *is still linked with the default libssl. However, during httpd installation, I use the following configuration, - CFLAGS='-DSSL_EXPERIMENTAL_ENGINE -DSSL_ENGINE -DOPENSSL_LOAD_CONF'

[users@httpd] Re: Help: Building httpd from source with specific (different then system default) OpenSSL

2021-04-07 Thread Christophe JAILLET
Le 07/04/2021 à 18:56, Shariful Alam a écrit : Hello Yann, Thanks for the reply. Following is the output of *ldd mod_ssl.so, * still the same. No sign of OpenSSL library. root@xxx:/etc/apache2/modules# ldd mod_ssl.so linux-vdso.so.1 =>  (0x7fffce1c5000) libssl.so.1.0.0 => /lib/x86_64-linu

Re: [users@httpd] Help: Building httpd from source with specific (different then system default) OpenSSL

2021-04-07 Thread Shariful Alam
Hello Yann, Thanks for the reply. Following is the output of *ldd mod_ssl.so, * still the same. No sign of OpenSSL library. root@xxx:/etc/apache2/modules# ldd mod_ssl.so linux-vdso.so.1 => (0x7fffce1c5000) libssl.so.1.0.0 => /lib/x86_64-linux-gnu/libssl.so.1.0.0 (0x7fec51b11000) libcrypt

Re: [users@httpd] Help: Building httpd from source with specific (different then system default) OpenSSL

2021-04-07 Thread Yann Ylavic
Hello, On Wed, Apr 7, 2021 at 10:30 AM Shariful Alam wrote: > > root@:/etc/apache2/bin# ldd httpd > linux-vdso.so.1 => (0x7fffe4df9000) > libpcre.so.1 => /usr/local/pcre/lib/libpcre.so.1 (0x7ff2ad391000) > libaprutil-1.so.0 => /usr/local/apr/lib/libaprutil-1.so.0 (0x7ff2ad16b000)

[users@httpd] Help: Building httpd from source with specific (different then system default) OpenSSL

2021-04-07 Thread Shariful Alam
Hello, I'm trying to install httpd from the source code. I have also install OpenSSL 1.1.1c from source code and I want httpd to use this OpenSSL library. However, while installing httpd, even mentioning httpd to configuring with my newly installed OpenSSL seems not working. Seeking advice from exp