Subject: | install Inline has a hard limitation to C and CPP |
The install command as such:
/usr/bin/perl -Mblib -MInline=NOISY,_INSTALL_ -MMy::Mod:With::INLINE
Fails because I am working with Inline::Python and Inline::install
limits the installer to C or CPP.
I found that it all works out well if I comment out the croak statement
at the head of sub install.
Hard limiting install to C or CPP modules only, is a bit draconian.
Here:
sub install {
my ($module, $DIRECTORY);
my $o = shift;
# -----------> please cut here
croak M64_install_not_c($o->{API}{language_id})
unless uc($o->{API}{language_id}) =~ /^(C|CPP)$/ ;
# -----> ^^
}