On Tue, Jun 19, 2001 at 03:53:34PM +0200, Norbert Gruener wrote:
> So my conclusion is that the problem is not related to AIX but to
> different Perl versions and that this statement works ***AFTER***
> version perl5.00502 :-))
Norbert,
I completely agree with you. I debugged this at YAPC on somebody's laptop. It appears
that you can't goto an AutoLoaded subroutine until 5.005_03. In the next release due
out this week, I will simply move all goto'd subroutines above the __END__ statement.
Thanks for your follow up and confirmation of this bug.
Another AIX related bug I found was that Inline::C gets the object extension (.so)
from $Config{so}. It really should be using $Config{dlext}. Normally they are the
same, but on AIX and MacOS X, they differ. I previously had a platform specific hack
checking for AIX. Now I can pull that out. Yay!
Cheers, Brian