Re: [users@httpd] Compiling 2.4.34 on linux against a non system openssl version

2018-09-18 Thread Matthew Goebel
HHmm... okay. The issue I'm having is that crypt() no longer seems to exist in openssl 1.1.0, which is what apr_util is testing for, and when it cannot find it in 1.1.0 it decides to use the 1.0.0 version of the system libsso apr-util and httpd are built with 1.0.0 and mod_ssl with 1.1.0

Re: [users@httpd] Compiling 2.4.34 on linux against a non system openssl version

2018-09-18 Thread William A Rowe Jr
On Tue, Sep 18, 2018 at 10:24 AM Matthew Goebel wrote: > Ah, and I've been looking at httpd instead of mod_ssl.so, this does in > fact appear to be working... ugh... never mind me. > No worries, but please note that apr-util can be built linking to openssl, and if that optional

Re: [users@httpd] Compiling 2.4.34 on linux against a non system openssl version

2018-09-18 Thread Matthew Goebel
Ah, and I've been looking at httpd instead of mod_ssl.so, this does in fact appear to be working... ugh... never mind me. Thanks, Matt On Tue, Sep 18, 2018 at 11:03 AM, Matthew Goebel wrote: > Poking around some more, my problem seems to be that apr-util src I'm > putting in srclib of the

Re: [users@httpd] Compiling 2.4.34 on linux against a non system openssl version

2018-09-18 Thread Matthew Goebel
Poking around some more, my problem seems to be that apr-util src I'm putting in srclib of the apache src is ignoring all LDFLAGS and CPFLAGS being passed to apache, and just compiling against the system provided openssl libs? Is there are seperate list to ask questions about apr-util? Thanks,

Re: [users@httpd] Re: Non Blocking write in apache

2018-09-18 Thread Hemant Chaudhary
Hi Yann, 42Kb works for me. Thanks for your support. Regards, Hemant On Mon, Sep 17, 2018 at 9:16 PM Hemant Chaudhary < hemantdude.chaudh...@gmail.com> wrote: > If it will flush data then at what condition it will go to apr_poll > function ?? > > What I understand is that if buffer is filled

Re: [users@httpd] Compiling 2.4.34 on linux against a non system openssl version

2018-09-18 Thread Yann Ylavic
On Tue, Sep 18, 2018 at 8:43 AM Yann Ylavic wrote: > > Hi, > > On Mon, Sep 17, 2018 at 11:12 PM Matthew Goebel wrote: > > > > export LDFLAGS="-L/usr/local/lib -L/usr/local/ssl/lib -R/usr/local/ssl/lib" > > export CPPFLAGS="-I/usr/local/include -I/usr/local/ssl/include" > > > > ./configure

Re: [users@httpd] Compiling 2.4.34 on linux against a non system openssl version

2018-09-18 Thread Yann Ylavic
Hi, On Mon, Sep 17, 2018 at 11:12 PM Matthew Goebel wrote: > > export LDFLAGS="-L/usr/local/lib -L/usr/local/ssl/lib -R/usr/local/ssl/lib" > export CPPFLAGS="-I/usr/local/include -I/usr/local/ssl/include" > > ./configure --enable-ssl --with-ssl Better with --with-ssl=/usr/local ? > make