John Cokos wrote:
> install_driver(mysql) failed: Caught a SIGSEGV at
> /usr/local/lib/perl5/5.6.0/i686-linux/DynaLoader.pm line 200
That's a problem for the perl5porters. Use perlbug to create
a problem report.
A workaround might be installing DBI and DBD::mysql as static
modules. To do that, compile DBI with
perl Makefile.PL LINKTYPE=static
make
make test
make install
make installperl # Check whether this is correct
and then DBD::mysql with
perl Makefile.PL LINKTYPE=static --config --static
make
make test
make install
make installperl
Bye,
Jochen