>> On that topic though, is there any way to set Inline's VERSION from my
>> module's $VERSION. (Not vice-versa, since MakeMaker does its grep thing
>> for VERSION). I'd prefer avoiding dual edits that might get out of sync,
>> and I want to make these Inline'd plugins as brain-dead for users as
>> possible.
>
>As per the Math::Simple 'Makefile.PL'.
>
>(Not sure if that's exactly what you're asking. Apologies if I've
>answered the wrong question.)
I'm trying to get rid of the duplicate 1.23 in Simple.pm.
$VERSION = '1.23';
...
use Inline C => 'DATA',
VERSION => '1.23',
NAME => 'Math::Simple';
-Wilson