Re: [users@httpd] Compiling Apache with Non-System OpenSSL

2019-07-31 Thread William A Rowe Jr
On Wed, Jul 31, 2019 at 7:27 PM Nigel B. Peck wrote: > > Setting up LD_LIBRARY_PATH in the envvars seems the best way to go in my > case then, with the need to avoid a system-wide install. Good to have > understood the options better. > w.r.t. Apache httpd, there is an installed script called ap

Re: [users@httpd] Compiling Apache with Non-System OpenSSL

2019-07-31 Thread Nigel B. Peck
On Wed, 31 Jul 2019 at 9:14 am, Darryl Philip Baker < darryl.ba...@northwestern.edu> wrote: > On 7/31/19, 4:29 AM, "Rainer Canavan" wrote: > > In my opinion, this is not a bug. autoconf has been handling this the > > way it currently does for decades. Adding an RUN_PATH has the > potentia

Re: [users@httpd] Compiling Apache with Non-System OpenSSL

2019-07-31 Thread Darryl Philip Baker
On 7/31/19, 4:29 AM, "Rainer Canavan" wrote: On Wed, Jul 31, 2019 at 1:39 AM Nigel B. Peck wrote: >> >> Thanks for the answers, great to have more insight on this. >> >> Is this a bug? Shouldn't it set up the linking correctly itself when >> the library has been specified

Re: [users@httpd] Compiling Apache with Non-System OpenSSL

2019-07-31 Thread Rainer Canavan
On Wed, Jul 31, 2019 at 1:39 AM Nigel B. Peck wrote: > > Thanks for the answers, great to have more insight on this. > > Is this a bug? Shouldn't it set up the linking correctly itself when > the library has been specified using `--with-ssl`, as it does for > `--with-pcre`? I'm considering submitt

Re: [users@httpd] Compiling Apache with Non-System OpenSSL

2019-07-30 Thread Nigel B. Peck
Thanks for the answers, great to have more insight on this. Is this a bug? Shouldn't it set up the linking correctly itself when the library has been specified using `--with-ssl`, as it does for `--with-pcre`? I'm considering submitting a bug report, but only want to do so if it really is. On Tue

Re: [users@httpd] Compiling Apache with Non-System OpenSSL

2019-07-30 Thread Rainer Canavan
On Tue, Jul 30, 2019 at 7:15 AM Nigel B. Peck wrote: > > Hi, > > Having some trouble compiling Apache with non-system OpenSSL, any help > appreciated. Looked at many threads online but no answers so far. [...] > Is there any way I can resolve this without having to add the location > to LD_LIBRAR

Re: [users@httpd] Compiling Apache with Non-System OpenSSL

2019-07-30 Thread Daniel Ferradal
Hello, Yes, you are almost there. As you say, the solution is to point to OpenSSL desired libs in LD_LIBRARY_PATH. Generally you can find a file called "envvars" in apache bin directory which can be used for that, just add your path to the new openssl/lib directory there and next time you start

[users@httpd] Compiling Apache with Non-System OpenSSL

2019-07-29 Thread Nigel B. Peck
Hi, Having some trouble compiling Apache with non-system OpenSSL, any help appreciated. Looked at many threads online but no answers so far. I'm compiling Apache using non-system-installed libraries for APR, APR-Util, OpenSSL and PCRE. It works fine, and compiles from the provided libraries. Howe