Subject: ap-ssl
To: None <tech-pkg@netbsd.org>
From: Mocha <netbsd_alpha@yahoo.com>
List: tech-pkg
Date: 05/12/2000 11:57:55
i'm trying to get apache 1.3.12, ap-ssl, ap-php3 to all be happy. here is 
the order i made the packages:
1. make apache
2. make ap-ssl
3. make ap-php3

# 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 what's put in httpd.conf by default from the pkg. i've tried 
removing the '!' but it ends up giving me other similar errors. i did see 
/usr/pkg/lib being linked by 'ld' during the make phase and the modules are 
there in /usr/pkg/lib.

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>
...