Stringify the $VERSION of DynaLoader so it's never dependent
Rafael Garcia-Suarez [Fri, 12 Sep 2003 21:41:04 +0000 (21:41 +0000)]
on localized float-to-string conversions.

p4raw-id: //depot/perl@21201

ext/DynaLoader/DynaLoader_pm.PL

index d6dfef8..8a3e6e1 100644 (file)
@@ -29,7 +29,7 @@ package DynaLoader;
 
 use vars qw($VERSION *AUTOLOAD);
 
-$VERSION = 1.04;       # avoid typo warning
+$VERSION = '1.04';     # avoid typo warning
 
 require AutoLoader;
 *AUTOLOAD = \&AutoLoader::AUTOLOAD;