Sisyphus
Wed, 27 Jan 2010 04:25:18 -0800
Hi, Bug report is at http://rt.cpan.org/Public/Bug/Display.html?id=49669I've no real objection to the proposed fix - except that, under certain conditions, it causes a "Subroutine Inline::C::get_parser redefined" warning during the compilation phase. eg:
############################
#!perl -w
use Inline C => Config =>
USING => 'ParseRegExp';
use Inline C => <<'EOC';
void greet() {
printf("%s\n", "hello world");
}
EOC
greet();
############################
Anyone got any thoughts on what's the best thing to do here ? Can we live
with that warning .... or should we be doing something to avoid it ?
Cheers,Rob