----- Original Message -----
From: pascal
Sent: Friday, July 26, 2002 3:19 PM
Subject: DBI fails to load in startup.pl

Hi
 
on windows XP professionnal 2002
with apache2/modperl/perl58 from RK /pub/other directory
(apache /2.0.40-dev (win32) mod_perl/1.99_05-dev/ perl/v5.8.0)
 
 
adding the line
 
use DBI() ;
 
to the startup.pl file makes apache segfaults (in module perl58.dll)
 
(perl -MDBI -e "print $DBI::VERSION" outputs 1.30)
 
best regards
pascal barbedor
 
 
here is the complete startup.pl
 
 
use Apache2 ();
use ModPerl::Util ();
use Apache::RequestRec ();
use Apache::RequestIO ();
use Apache::RequestUtil ();
use Apache::Server ();
use Apache::ServerUtil ();
use Apache::Connection ();
use Apache::Log ();
use Apache::Const -compile => ':common';
use APR::Const -compile => ':common';
use APR::Table ();
use Apache::compat ();
use ModPerl::Registry ();
use CGI ();
 
#added

use Data::Table();
use File::Cache();
 
use XML::Simple();
use XML::LibXML () ;
use XML::LibXSLT () ;
use XML::XPath () ;

use IO::String();
use Data::Dumper ;
 
use DBI(); <------line that makes fail the starting of apache

1;
 
 
 
 
 
 
 
 

Reply via email to