File: Typemap.pm

package info (click to toggle)
libextutils-typemap-perl 1.00-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 120 kB
  • sloc: perl: 276; makefile: 2
file content (49 lines) | stat: -rw-r--r-- 1,092 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package ExtUtils::Typemap;
use 5.006001;
use strict;
use warnings;
our $VERSION = '1.00';
use ExtUtils::Typemaps;
our @ISA = qw(ExtUtils::Typemaps);

=head1 NAME

ExtUtils::Typemap - Read/Write/Modify Perl/XS typemap files

=head1 SYNOPSIS

See C<ExtUtils::Typemaps> instead!

=head1 DESCRIPTION

This module exists merely as a compatibility wrapper around
L<ExtUtils::Typemaps>. In a nutshell, C<ExtUtils::Typemap> was
renamed to C<ExtUtils::Typemaps> because the F<Typemap> directory
in F<lib/> could collide with the F<typemap> file on
case-insensitive file systems.

The C<ExtUtils::Typemaps> module is part of the L<ExtUtils::ParseXS>
distribution and ships with the standard library of perl starting
with perl version 5.16.

=head1 SEE ALSO

L<ExtUtils::Typemaps>, L<ExtUtils::ParseXS>.

For details on typemaps: L<perlxstut>, L<perlxs>.

=head1 AUTHOR

Steffen Mueller C<<smueller@cpan.org>>

=head1 COPYRIGHT & LICENSE

Copyright 2009, 2010, 2011 Steffen Mueller

This program is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.

=cut

1;