Brian Ingerson sent the following bits through the ether:
> In a pre-YAPC debugging frenzy, Neil and I are releasing patched
> versions of nearly every Inline module.
I think Marcel has already found one of these, but here is a patch
anyway...
Leon
--
Leon Brocard.............................http://www.astray.com/
Iterative Software...........http://www.iterative-software.com/
... Do not meddle in the affairs of dragons, for you are crunchy
--- Inline.pm.orig Sat Jun 16 13:17:35 2001
+++ Inline.pm Sat Jun 16 14:51:30 2001
@@ -621,7 +621,7 @@
croak M60_no_inline_files()
unless (defined $INC{"Inline/Files.pm"} and
$Inline::Files::VERSION =~ /^\d\.\d\d$/ and
- $Inline::Files::VERSION ge '0.51');
+ $Inline::Files::VERSION >= '0.51');
croak M61_not_parsed() unless $lang = Inline::Files::get_filename($pkg);
{
no strict 'refs';
@@ -823,7 +823,7 @@
%inl = Inline::denter->new()->undent(<INL>);
}
next unless ($o->{INLINE}{md5} eq $inl{md5});
- next unless ($inl{md5} ge '0.40');
+ next unless ($inl{inline_version} >= '0.40');
unless (-f $o->{API}{location}) {
warn <<END if $^W;
Missing object file: $o->{API}{location}