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

..03-May-2022-

eg/H01-Sep-2016-4025

t/H01-Sep-2016-215151

ChangesH A D01-Sep-20165.3 KiB213138

MANIFESTH A D01-Sep-2016263 1817

META.jsonH A D01-Sep-20161.6 KiB6261

META.ymlH A D01-Sep-20161 KiB3433

Makefile.PLH A D01-Sep-20163.8 KiB11177

READMEH A D19-Feb-20111.1 KiB4425

XSLoader.pmH A D01-Sep-201611.1 KiB38170

XSLoader_pm.PLH A D01-Sep-201614.2 KiB506340

README

1NAME
2
3    XSLoader - Dynamically load C libraries into Perl code
4
5
6DESCRIPTION
7
8    This module defines a standard simplified interface to the dynamic
9    linking mechanisms available on many platforms. Its primary purpose
10    is to implement cheap automatic dynamic loading of Perl modules.
11    For a more complicated interface, see DynaLoader.
12
13
14INSTALLATION
15
16    Install this module using the usual mantra:
17
18        $ perl Makefile.PL
19        $ make
20        $ make test
21        $ make install
22
23    To install the extension in a private directory, you can use the PREFIX
24    option when executing Makefile.PL.
25
26
27AUTHORS
28
29    Ilya Zakharevich originally extracted XSLoader from DynaLoader.
30
31    CPAN version originally created by Michael G Schwern <schwern@pobox.com>
32
33    This program is maintained by the Perl 5 Porters.
34    CPAN version is currently maintained by Sebastien Aperghis-Tramoni
35    <sebastien@aperghis.net>
36
37
38COPYRIGHT AND LICENCE
39
40    Copyright (C) 1990-2011 by Larry Wall and others.
41
42    This program is free software; you can redistribute it and/or modify
43    it under the same terms as Perl itself.
44