File fix-perl-no-defined-array.diff of Package kdepim3
defined(@array) is deprecated and is an error newer perl
Index: kdepim-3.5.10/dcopidlng/kdocAstUtil.pm
===================================================================
--- kdepim-3.5.10.orig/dcopidlng/kdocAstUtil.pm
+++ kdepim-3.5.10/dcopidlng/kdocAstUtil.pm
@@ -647,7 +647,7 @@ sub dumpAst
dumpAst( $kid );
}
- print "\t" x $depth, "Documentation nodes:\n" if defined
+ print "\t" x $depth, "Documentation nodes:\n" if
@{ $node->{Doc}->{ "Text" }};
foreach $kid ( @{ $node->{Doc}->{ "Text" }} ) {