Change 34392 by [EMAIL PROTECTED] on 2008/09/22 08:30:40
Avoid uninitialized warnings from XSLoader
Affected files ...
... //depot/perl/ext/DynaLoader/XSLoader_pm.PL#17 edit
Differences ...
==== //depot/perl/ext/DynaLoader/XSLoader_pm.PL#17 (text) ====
Index: perl/ext/DynaLoader/XSLoader_pm.PL
--- perl/ext/DynaLoader/XSLoader_pm.PL#16~34388~ 2008-09-21
10:18:15.000000000 -0700
+++ perl/ext/DynaLoader/XSLoader_pm.PL 2008-09-22 01:30:40.000000000 -0700
@@ -15,7 +15,7 @@
package XSLoader;
-$VERSION = "0.09";
+$VERSION = "0.09_1";
#use strict;
@@ -82,7 +82,6 @@
$bs =~ s/(\.\w+)?(;\d*)?$/\.bs/; # look for .bs 'beside' the library
if (-s $bs) { # only read file if it's not empty
- print STDERR "BS: $bs ($^O, $dlsrc)\n" if $dl_debug;
eval { do $bs; };
warn "$bs: [EMAIL PROTECTED]" if $@;
}
End of Patch.