• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/AutoXS/H11-Jun-2009-191122

t/H11-Jun-2009-2619

ChangesH A D11-Jun-2009837 3221

MANIFESTH A D11-Jun-2009154 87

META.ymlH A D11-Jun-2009542 2221

Makefile.PLH A D01-Apr-2008578 1411

READMEH A D17-May-2009877 3324

README

1NAME
2    AutoXS::Header - Container for the AutoXS header files
3
4SYNOPSIS
5      # potentially in your Makefile.PL
6      sub MY::post_constants {
7        # Write header as AutoXS.h in current directory
8        return <<'MAKE_FRAG';
9      linkext ::
10              $(PERL) -MAutoXS::Header -e AutoXS::Header::WriteAutoXSHeader
11      # note the tab character in the previous line!
12
13      MAKE_FRAG
14      }
15
16DESCRIPTION
17    This module is a simple container for the newest version of the AutoXS
18    header file "AutoXS.h".
19
20SEE ALSO
21    AutoXS
22
23AUTHOR
24    Steffen Mueller, <smueller@cpan.org>
25
26COPYRIGHT AND LICENSE
27    Copyright (C) 2008-2009 by Steffen Mueller
28
29    This library is free software; you can redistribute it and/or modify it
30    under the same terms as Perl itself, either Perl version 5.8 or, at your
31    option, any later version of Perl 5 you may have available.
32
33