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

..--

fallback/03-Oct-2014-648633

t/03-Oct-2014-208138

ChangesD30-Jun-20062.3 KiB5144

Makefile.PLD30-Jun-20062.3 KiB6552

READMED30-Jun-20061.8 KiB7144

Syslog.pmD30-Jun-200624.6 KiB974432

Syslog.xsD05-Feb-20051.2 KiB8575

README

1NAME
2
3    Sys::Syslog - Perl interface to the UNIX syslog(3) calls
4
5
6DESCRIPTION
7
8    Sys::Syslog is an interface to the UNIX syslog(3) program.
9    Call syslog() with a string priority and a list of printf() args
10    just like syslog(3).
11
12
13INSTALLATION
14
15    To install this module, run the following commands:
16
17        $ perl Makefile.PL
18        $ make
19        $ make test
20        $ make install
21
22    A ANSI-compliant compiler is required to compile the extension.
23
24    Sys::Syslog has been tested by the author on the following systems,
25    but is likely to run on many more:
26
27      - Linux 2.6, gcc 3.4.1
28      - FreeBSD 4.7, gcc 2.95.4
29      - Mac OS X 10.4, gcc 4.0.1
30
31    Sys::Syslog should on any Perl since 5.6.0. This module has been
32    tested by the author to check that it works with the following
33    versions ot Perl:
34
35      - Perl 5.6.2 i686-linux (custom build)
36      - Perl 5.8.5 i386-linux-thread-multi (vendor build)
37      - Perl 5.6.1 i386-freebsd (custom build)
38      - Perl 5.8.7 i386-freebsd (custom build)
39      - Perl 5.8.6 darwin-thread-multi-2level (vendor build)
40
41    See also the corresponding CPAN Testers page:
42        http://testers.cpan.org/show/Sys-Syslog.html
43
44
45SUPPORT AND DOCUMENTATION
46
47    After installing, you can find documentation for this module
48    with the perldoc command.
49
50        perldoc Sys::Syslog
51
52    You can also look for information at:
53
54        Search CPAN
55            http://search.cpan.org/dist/Sys-Syslog
56
57        CPAN Request Tracker:
58            http://rt.cpan.org/NoAuth/Bugs.html?Dist=Sys-Syslog
59
60        AnnoCPAN, annotated CPAN documentation:
61            http://annocpan.org/dist/Sys-Syslog
62
63        CPAN Ratings:
64            http://cpanratings.perl.org/d/Sys-Syslog
65
66
67COPYRIGHT AND LICENCE
68
69    This program is free software; you can redistribute it and/or modify it
70    under the same terms as Perl itself.
71