On Tue, 30 Jan 2001, Doug MacEachern wrote:
> On Tue, 30 Jan 2001, Nick Tonkin wrote:
>
> > I read in the INSTALL docs that the first error should not occur if openssl
> > is already built and SSL_BASE is set to SYSTEM ... but there it is ... ?
>
> if openssl is installed in the default location, don't bother with
> SSL_BASE. if not, that needs to be a path, e.g. SSL_BASE=/usr/local/ssl
> mod_perl's notion of SSL_BASE is not n'sync with mod_ssl's, so i don't
> think `SYSTEM' will work.
> i just built mod_perl-1.25+apache_1.3.17+mod_ssl-2.8.0-1.3.17+openssl-0.9.6
> rh-7.0 (w/ gcc/glibc upgrades) and perl-current:
>
> % perl Makefile.PL USE_APACI=1 EVERYTHING=1 DO_HTTPD=1 \
> APACI_ARGS='--enable-module=ssl,--enable-module=expires,--enable-module=rewrite'
>
> all tests pass.
When I run the perl Makefile.PL command like that (without the SSL_BASE
directive) I get:
Error: Cannot find SSL header files in any of the following dirs:
Error: . /usr/include /usr/include/ssl/ /usr/local/include
/usr/local/include/ssl
So I do
find / -name ssl -print
and get:
/tmp/apache_1.3.17/src/modules/ssl
/usr/share/ssl
so I do perl Makefile.PL with SSL_BASE=/usr/share/ssl and get a different
error:
Error: Cannot find SSL binaries under /usr/share/ssl
... ?
Can anyone tell me what are the binaries it is looking for, so I could
look for them?
Thanks,
Nick