> But I run apache I get:
> utechnology# ./apachectl start
> defined(@array) is deprecated at
> /usr/local/lib/perl5/site_perl/5.6.0/Apache/DBI.pm line 135.
>         (Maybe you should just omit the defined()?)
> ./apachectl start: httpd started

Perl 5.6.0 has introduced a new warning when it sees code like
if (defined @array) ...
which is technically wrong, and should be changed to

if (@array) ...
A suprising number of Perl modules have got code like this in them;
it is usually just a simple matter of editing the offending lines.

Over time, I should imagine that the various module owners will release
new versions that dont generate this warning.


* Dave Mitchell, Operations Manager,
* Fretwell-Downing Facilities Ltd, UK.  [EMAIL PROTECTED]
* Tel: +44 114 281 6113.                The usual disclaimers....
*
* Standards (n). Battle insignia or tribal totems

Reply via email to