Hi
 
the following startup.pl
makes apache segfault in perl58.dll on windows XP(or 2000)
 
version are :
apache 2.0.40-dev
perl 5.8.0
modperl 1.99
mysqld-nt 3.23.49
 
DBI 1.30
DBD::Mysql 2.1017
 
from perl 5.8-win32-bin.tar.gz ready-to-use RK archive (date 25/07/02) in theoryx5.uwinnipeg.ca/public/other
 
here is the startup (only added lines after #added, everything works fine without):
 
 
 
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 DBI();
use DBD::Mysql();

1;
 
 
 
- apache fails the same if use DBI() line alone or use DBD::Mysql() line alone
- same from a registry script
 
 
use DBI();
use DBD::Mysql();
does not fail from a regularly perl script outside apache
 
 
thanks
pascal

Reply via email to