System : Solaris 8 ActivePerl 5.6.1 build 628 Apache 1.3.20 Mod Perl 1.26 Trying to start the server I have a startup script with the following: #! /bin/perl use strict; use lib "/usr/local/apache/perllib"; # make sure we are in a sane environment. $ENV{GATEWAY_INTERFACE} =~ /^CGI-Perl/ or die "GATEWAY_INTERFACE not Perl!"; use Apache::Registry (); use CGI (); CGI->compile(':all'); use CGI::Carp (); use DBI (); use DBD::mysql () 1; The problem is when I try to start the server or even do a configtest I get this error message: ld.so.1: /usr/local/apache/bin/httpd: fatal: relocation error: file /usr/local/ActivePerl-5.6/lib/site_perl/5.6.1/sun4-solaris-thread-multi/auto /DBI/DBI.so: symbol Perl_Gthr_key_ptr: referenced symbol not found Killed I've tried it with Gnu ld, ar and with Sun ld, ar, neither work. Any suggestions would be appreciated. -Mark