This appears to be a known problem, see
http://groups.google.com/groups?hl=en&lr=&q=test.pl+uninitialized+%22dbi+onl
y%22:

    ### What's that warning?

        printf "%5d NullP sth/s perl %8s %s (%s %s %s)\n\n",
         $count/$dur, $], $Config{archname},
         $Config{gccversion} ? 'gcc' : $Config{cc},
         (split / /, $Config{gccversion}||$Config{ccversion}||'')[0],
         $Config{optimize};

    should be

        printf "%5d NullP sth/s perl %8s %s (%s %s %s)\n\n",
         $count/$dur, $], $Config{archname},
         $Config{gccversion} ? 'gcc' : $Config{cc},
         (split / /, $Config{gccversion}||$Config{ccversion}||'')[0]||'',
         $Config{optimize};

$Config{ccversion} is undefined on 4 perl versions that I've built on MS
Win32 (5.6.1, 5.8.0, 5.8.3, and 5.8.5), so I'm guessing the modification
above should be applied to test.pl in future to avoid this warning.

David Repko
Diebold
Global Software Development
Direct Phone: +1 330 490 5982
Fax: +1 330 490 4727
Email: [EMAIL PROTECTED]
We won't rest.


 

Reply via email to