Re: Re: [users@httpd] Trouble upgrading to 2.2.29 from 2.2.8 - mod_deflate error

2014-11-03 Thread Christopher Stanley
Thanks so much Yann, Your solution worked! I try to avoid using LD_LIBRARY if I have to as that's hackish :P It appears that when I installed APR myself for mod_security there was a conflict with the old APR versions. Now I have two versions of APR installed. I will try to update the defau

Re: [users@httpd] Trouble upgrading to 2.2.29 from 2.2.8 - mod_deflate error

2014-11-01 Thread Yann Ylavic
On Sat, Nov 1, 2014 at 10:47 PM, Yann Ylavic wrote: > At runtime, it might also be necessary to link with this newly > installed APR using something like LD_LIBRARY. I meant "LD_LIBRARY_PATH=/path/to/httpd-2.2.29/lib /path/to/httpd-2.2.29/bin/httpd ...". -

Re: [users@httpd] Trouble upgrading to 2.2.29 from 2.2.8 - mod_deflate error

2014-11-01 Thread Yann Ylavic
Hello Christopher, there seem to be an old APR library (< v1.3.0) installed on your system (/usr/local/apache2/include?). What ./configure options did you use? You probably need to compile (and run) with the APR embedded in the httpd-2.2.29 archive using: ./configure --with-included-apr At r