> I recently managed to get mod_perl installed on my Solaris 2.6 box
> with Apache 1.3.9, mod_perl 1.21 and Perl 5.005_03.
>
> When I installed DBD::Solid, I had to link it statically, and so I
> ended up with 'solperl' instead of the normal 'perl'.
>
> Anyhow, when I run my (very basic) mod_perl program, I get this error:
from Appendix B in the eagle book:
=item PERL_STATIC_EXTS=...
Normally, if an extension is linked static with Perl it is listed in
Config.pm's $Config{static_exts}, in which case, mod_perl will also
link this extension static with httpd. However, if an extension is
linked static with Perl after it is installed, it is not listed in
Config.pm. You may either edit Config.pm and add these extensions, or
use this option to configure them with mod_perl. Example:
perl Makefile.PL "PERL_STATIC_EXTS=DBI DBD::Oracle"