X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=ext%2FEncode%2FJP%2FMakefile.PL;h=2b084aa83041a2333cf214cb117724acf251d1a1;hb=e7cbefb8f35850373025fec8ebf4c27d47127348;hp=4c0fbd396ce63695be6ab638f4cc75f459d95c00;hpb=11ec04605abd704be5d42c52862751e8383518cb;p=p5sagit%2Fp5-mst-13.2.git diff --git a/ext/Encode/JP/Makefile.PL b/ext/Encode/JP/Makefile.PL index 4c0fbd3..2b084aa 100644 --- a/ext/Encode/JP/Makefile.PL +++ b/ext/Encode/JP/Makefile.PL @@ -48,7 +48,7 @@ sub post_initialize push (@{$self->{'C'}},"$table.c"); # Do NOT add $table.h etc. to H_FILES unless we own up as to how they # get built. - foreach my $ext (qw($(OBJ_EXT) .c .h _def.h .fnm)) { + foreach my $ext (qw($(OBJ_EXT) .c .h .exh .fnm)) { push (@files,$table.$ext); } } @@ -92,7 +92,7 @@ BOOT: { END foreach my $table (keys %tables) { - print XS qq[#include "${table}_def.h"\n]; + print XS qq[#include "${table}.exh"\n]; } print XS "}\n"; close(XS); @@ -103,7 +103,7 @@ sub postamble { my $self = shift; my $dir = $self->catdir($self->updir,'ucm'); - my $str = "# $name\$(OBJ_EXT) depends on .h and _def.h files not .c files - but all written by enc2xs\n"; + my $str = "# $name\$(OBJ_EXT) depends on .h and .exh files not .c files - but all written by enc2xs\n"; $str .= "$name.c : $name.xs "; foreach my $table (keys %tables) {