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

2018-09-19 Thread William A Rowe Jr
libcrypt has nothing to do with libcrypto/libssl of openssl. They can be loaded in parallel. Because crypt was implemented in triple DES 156 bit, proven to convey only 112 bits of encryption strength, that cipher is no longer a part of openssl. But the system library for crypt'ed passwords

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] 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

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

2018-09-17 Thread Matthew Goebel
Hello, With gcc 4.3.x and apache 2.2.x I could compile apache against a non system version of openssl. If the extra openssl is in /usr/local/ssl/lib and added to /etc/ld.so.conf I could do the following export LDFLAGS="-L/usr/local/lib -L/usr/local/ssl/lib -R/usr/local/ssl/lib" export