Subject: | Eval version strings |
Version strings need to be 'eval'ed so that numeric comparisons of
version numbers don't cause errors. So instead of just this:
our $VERSION = '6.43_01';
The following eliminates such problems:
our $VERSION = '6.43_01';
$VERSION = eval $VERSION;