ext\ExtUtils\t\Embed.t fails test when upgrading a perl with different core headers.
[p5sagit/p5-mst-13.2.git] / ext / Encode / TW / Makefile.PL
CommitLineData
d811239c 1use 5.7.2;
2use strict;
3use ExtUtils::MakeMaker;
af1f55d9 4use strict;
d811239c 5
b0b300a3 6my %tables = (big5_t => ['big5-eten.ucm',
d1256cb1 7 'big5-hkscs.ucm',
8 'macChintrad.ucm',
9 'cp950.ucm'],
3de3d21f 10 );
d811239c 11
af1f55d9 12unless ($ENV{AGGREGATE_TABLES}){
13 my @ucm;
14 for my $k (keys %tables){
d1256cb1 15 push @ucm, @{$tables{$k}};
af1f55d9 16 }
17 %tables = ();
18 my $seq = 0;
19 for my $ucm (sort @ucm){
d1256cb1 20 # 8.3 compliance !
21 my $t = sprintf ("%s_%02d_t", substr($ucm, 0, 2), $seq++);
22 $tables{$t} = [ $ucm ];
af1f55d9 23 }
24}
25
0e567a6c 26my $name = 'TW';
d811239c 27
28WriteMakefile(
67d7b5ef 29 INC => "-I../Encode",
d1256cb1 30 NAME => 'Encode::'.$name,
31 VERSION_FROM => "$name.pm",
32 OBJECT => '$(O_FILES)',
33 'dist' => {
34 COMPRESS => 'gzip -9f',
35 SUFFIX => 'gz',
36 DIST_DEFAULT => 'all tardist',
37 },
38 MAN3PODS => {},
39 # OS 390 winges about line numbers > 64K ???
40 XSOPT => '-nolinenumbers',
41 );
d811239c 42
43package MY;
44
d811239c 45sub post_initialize
46{
47 my ($self) = @_;
48 my %o;
49 my $x = $self->{'OBJ_EXT'};
50 # Add the table O_FILES
51 foreach my $e (keys %tables)
52 {
d1256cb1 53 $o{$e.$x} = 1;
d811239c 54 }
6d4ed59b 55 $o{"$name$x"} = 1;
d811239c 56 $self->{'O_FILES'} = [sort keys %o];
6d4ed59b 57 my @files = ("$name.xs");
58 $self->{'C'} = ["$name.c"];
f0a41339 59 $self->{SOURCE} .= " $name.c"
60 if $^O eq 'MacOS' && $self->{SOURCE} !~ /\b$name\.c\b/;
67d7b5ef 61 $self->{'H'} = [$self->catfile($self->updir,'Encode', 'encode.h')];
d811239c 62 my %xs;
63 foreach my $table (keys %tables) {
d1256cb1 64 push (@{$self->{'C'}},"$table.c");
65 # Do NOT add $table.h etc. to H_FILES unless we own up as to how they
66 # get built.
67 foreach my $ext (qw($(OBJ_EXT) .c .h .exh .fnm)) {
68 push (@files,$table.$ext);
69 }
70 $self->{SOURCE} .= " $table.c"
71 if $^O eq 'MacOS' && $self->{SOURCE} !~ /\b$table\.c\b/;
d811239c 72 }
6d4ed59b 73 $self->{'XS'} = { "$name.xs" => "$name.c" };
d811239c 74 $self->{'clean'}{'FILES'} .= join(' ',@files);
6d4ed59b 75 open(XS,">$name.xs") || die "Cannot open $name.xs:$!";
b90c9a30 76 print XS <<'END';
77#include <EXTERN.h>
78#include <perl.h>
79#include <XSUB.h>
80#define U8 U8
67d7b5ef 81#include "encode.h"
b90c9a30 82END
83 foreach my $table (keys %tables) {
d1256cb1 84 print XS qq[#include "${table}.h"\n];
b90c9a30 85 }
6d4ed59b 86 print XS <<"END";
b90c9a30 87
88static void
89Encode_XSEncoding(pTHX_ encode_t *enc)
90{
91 dSP;
92 HV *stash = gv_stashpv("Encode::XS", TRUE);
93 SV *sv = sv_bless(newRV_noinc(newSViv(PTR2IV(enc))),stash);
94 int i = 0;
95 PUSHMARK(sp);
96 XPUSHs(sv);
97 while (enc->name[i])
98 {
99 const char *name = enc->name[i++];
100 XPUSHs(sv_2mortal(newSVpvn(name,strlen(name))));
101 }
102 PUTBACK;
103 call_pv("Encode::define_encoding",G_DISCARD);
104 SvREFCNT_dec(sv);
105}
106
6d4ed59b 107MODULE = Encode::$name PACKAGE = Encode::$name
1aebe30a 108PROTOTYPES: DISABLE
b90c9a30 109BOOT:
110{
111END
112 foreach my $table (keys %tables) {
d1256cb1 113 print XS qq[#include "${table}.exh"\n];
b90c9a30 114 }
115 print XS "}\n";
116 close(XS);
6d4ed59b 117 return "# Built $name.xs\n\n";
d811239c 118}
119
120sub postamble
121{
122 my $self = shift;
3ef515df 123 my $dir = $self->catdir($self->updir,'ucm');
e7cbefb8 124 my $str = "# $name\$(OBJ_EXT) depends on .h and .exh files not .c files - but all written by enc2xs\n";
6d4ed59b 125 $str .= "$name.c : $name.xs ";
d811239c 126 foreach my $table (keys %tables)
127 {
d1256cb1 128 $str .= " $table.c";
d811239c 129 }
130 $str .= "\n\n";
6d4ed59b 131 $str .= "$name\$(OBJ_EXT) : $name.c\n\n";
132
67d7b5ef 133 my $enc2xs = $self->catfile($self->updir,'bin', 'enc2xs');
d811239c 134 foreach my $table (keys %tables)
135 {
d1256cb1 136 my $numlines = 1;
137 my $lengthsofar = length($str);
138 my $continuator = '';
139 $str .= "$table.c : $enc2xs Makefile.PL";
140 foreach my $file (@{$tables{$table}})
141 {
142 $str .= $continuator.' '.$self->catfile($dir,$file);
143 if ( length($str)-$lengthsofar > 128*$numlines )
144 {
145 $continuator .= " \\\n\t";
146 $numlines++;
147 } else {
148 $continuator = '';
149 }
150 }
151 my $plib = $self->{PERL_CORE} ? '"-I$(PERL_LIB)"' : '';
152 $plib .= " -MCross=$::Cross::platform" if defined $::Cross::platform;
153 my $ucopts = '-"Q"';
154 $str .=
155 qq{\n\t\$(PERL) $plib $enc2xs $ucopts -o \$\@ -f $table.fnm\n\n};
156 open (FILELIST, ">$table.fnm")
157 || die "Could not open $table.fnm: $!";
158 foreach my $file (@{$tables{$table}})
159 {
160 print FILELIST $self->catfile($dir,$file) . "\n";
161 }
162 close(FILELIST);
d811239c 163 }
164 return $str;
165}
166