You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Aaron Bannert <aa...@clove.org> on 2002/07/16 20:38:38 UTC

Re: cvs commit: httpd-2.0 acinclude.m4 CHANGES

>   Look for OpenSSL libraries in /usr/lib64.
...
>      for p in $ap_ssltk_base/lib /usr/local/openssl/lib \
>   -           /usr/local/ssl/lib /usr/local/lib /usr/lib /lib; do
>   +           /usr/local/ssl/lib /usr/local/lib /usr/lib /lib /usr/lib64; do

If we just told people to add the right include and lib paths to their
CPPFLAGS and LDFLAGS variables, then we wouldn't have to add any
special case directories to our autoconf routines... *sigh*

-aaron

Re: cvs commit: httpd-2.0 acinclude.m4 CHANGES

Posted by Aaron Bannert <aa...@clove.org>.
On Tue, Jul 16, 2002 at 11:42:13AM -0700, Ryan Bloom wrote:
> That would only work if we looked in those variable for the files.  But,
> we don't, so we have to special case this stuff.  We should re-write big
> portions of the detection logic so that we don't have ANY hard-coded
> paths, but I am not volunteering for that.

True. I had planned on doing this before, but never got around to it.
I did this for flood, so maybe I can just port it back over.

-aaron

RE: cvs commit: httpd-2.0 acinclude.m4 CHANGES

Posted by Ryan Bloom <rb...@covalent.net>.
> From: Aaron Bannert [mailto:aaron@clove.org]
> 
> >   Look for OpenSSL libraries in /usr/lib64.
> ...
> >      for p in $ap_ssltk_base/lib /usr/local/openssl/lib \
> >   -           /usr/local/ssl/lib /usr/local/lib /usr/lib /lib; do
> >   +           /usr/local/ssl/lib /usr/local/lib /usr/lib /lib
> /usr/lib64; do
> 
> If we just told people to add the right include and lib paths to their
> CPPFLAGS and LDFLAGS variables, then we wouldn't have to add any
> special case directories to our autoconf routines... *sigh*


That would only work if we looked in those variable for the files.  But,
we don't, so we have to special case this stuff.  We should re-write big
portions of the detection logic so that we don't have ANY hard-coded
paths, but I am not volunteering for that.

Ryan