summaryrefslogtreecommitdiff
path: root/ext/Encode/JP
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2002-04-03 17:55:48 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2002-04-03 17:55:48 +0000
commite7cbefb8f35850373025fec8ebf4c27d47127348 (patch)
tree7a45b41389b9a88a22e38302f0778fa5d731cfc5 /ext/Encode/JP
parent11ec04605abd704be5d42c52862751e8383518cb (diff)
downloadperl-e7cbefb8f35850373025fec8ebf4c27d47127348.tar.gz
Tweak for 8.3 compat.
p4raw-id: //depot/perl@15712
Diffstat (limited to 'ext/Encode/JP')
-rw-r--r--ext/Encode/JP/Makefile.PL6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/Encode/JP/Makefile.PL b/ext/Encode/JP/Makefile.PL
index 4c0fbd396c..2b084aa830 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)
{