#
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License, Version 1.0 only
# (the "License"). You may not use this file except in compliance
# with the License.
#
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
# See the License for the specific language governing permissions
# and limitations under the License.
#
# When distributing Covered Code, include this CDDL HEADER in each
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
# If applicable, add the following below this CDDL HEADER, with the
# fields enclosed by brackets "[]" replaced with your own identifying
# information: Portions Copyright [yyyy] [name of copyright owner]
#
# CDDL HEADER END
#
use 5.007003;
# Just for sure :)
my %tables =
(
def_t => ['ascii.ucm',
'8859-1.ucm',
'null.ucm',
'ctrl.ucm',
]
);
);
my @more_exe_files = qw(
);
NAME => "Encode",
VERSION_FROM => 'Encode.pm',
OBJECT => '$(O_FILES)',
'dist' => {
COMPRESS => 'gzip -9f',
SUFFIX => 'gz',
DIST_DEFAULT => 'all tardist',
},
MAN3PODS => {},
INSTALLDIRS => 'perl',
);
package MY;
sub post_initialize
{
my ($self) = @_;
my %o;
# Find existing O_FILES
foreach my $f (@{$self->{'O_FILES'}})
{
$o{$f} = 1;
}
my $x = $self->{'OBJ_EXT'};
# Add the table O_FILES
foreach my $e (keys %tables)
{
$o{$e.$x} = 1;
}
# Trick case-blind filesystems.
delete $o{'encode'.$x};
$o{'Encode'.$x} = 1;
# Reset the variable
$self->{'O_FILES'} = [sort keys %o];
my @files;
{
{
}
}
return '';
}
sub postamble
{
my $self = shift;
my $str = "# Encode\$(OBJ_EXT) depends on .h and .exh files not .c files - but all written by enc2xs\n";
{
$str .= " $table.c";
}
$str .= "\n\n";
{
my $numlines = 1;
my $lengthsofar = length($str);
my $continuator = '';
$str .= "$table.c : $enc2xs Makefile.PL";
{
{
$continuator .= " \\\n\t";
$numlines++;
} else {
$continuator = '';
}
}
my $ucopts = '-"Q" -"O"';
$str .=
open (FILELIST, ">$table.fnm")
|| die "Could not open $table.fnm: $!";
{
}
close(FILELIST);
}
return $str;
}