Subject: pkg ap-ssl WAS Re: ldconfig missing
To: Simon Richter <Simon.Richter@phobos.fs.tum.de>
From: Mocha <netbsd_alpha@yahoo.com>
List: port-alpha
Date: 05/12/2000 12:18:48
At 04:45 PM 5/12/00 +0200, Simon Richter wrote:
>On Fri, 12 May 2000, Mocha wrote:
>
> > i have a standard 1.4.2 dist and i can't find ldconfig in the usual place
> > /sbin/ldconfig. am i missing the only one missing this file?
>
>ldconfig is deprecrated. You need to compile the library path into the
>executable using -Wl,-rpath,<path> .

ok thanks. reason i asked was because i compiled from the pkg collection 
apache, ap-ssl, ap-php3. all were compiled ok and installed. but it fails 
on: apachectl startssl

# apachectl startssl
Syntax error on line 211 of /usr/pkg/etc/httpd/httpd.conf:
Cannot load !libcrypto.so.1 into server:Shared object "libcrypto.so.1" not 
found
/usr/pkg/sbin/apachectl startssl: httpd could not be started

here is SSL's section to load that stuff in httpd.conf:
...
<IfDefine SSL>
### Uncomment the following if you wish to use SSL and you need RSAREF: ###
#LoadFile !librsaref.so.2
LoadFile !libcrypto.so.1
LoadFile !libssl.so.1
LoadModule ssl_module lib/httpd/mod_ssl.so
AddModule mod_ssl.c
</IfDefine>
...

i've tried removing the '!' but still got similar errors.