Blame README

Packit 972a07
NAME
Packit 972a07
Packit 972a07
    Sys::Syslog - Perl interface to the UNIX syslog(3) calls
Packit 972a07
Packit 972a07
Packit 972a07
DESCRIPTION
Packit 972a07
Packit 972a07
    Sys::Syslog is an interface to the UNIX syslog(3) program.
Packit 972a07
    Call syslog() with a string priority and a list of printf() args
Packit 972a07
    just like syslog(3).
Packit 972a07
Packit 972a07
Packit 972a07
INSTALLATION
Packit 972a07
Packit 972a07
    To install this module, run the following commands:
Packit 972a07
Packit 972a07
        $ perl Makefile.PL
Packit 972a07
        $ make
Packit 972a07
        $ make test
Packit 972a07
        $ make install
Packit 972a07
Packit 972a07
    An ANSI-compliant compiler is required to compile the extension.
Packit 972a07
Packit 972a07
    Sys::Syslog should work on any Perl since 5.6.0. This module is 
Packit 972a07
    regularly compiled and tested by the CPAN Testers on various
Packit 972a07
    combinations of Perl and operating systems.
Packit 972a07
Packit 972a07
    See also the corresponding CPAN Testers page:
Packit 972a07
        http://testers.cpan.org/show/Sys-Syslog.html
Packit 972a07
Packit 972a07
Packit 972a07
SUPPORT AND DOCUMENTATION
Packit 972a07
Packit 972a07
    After installing, you can find documentation for this module 
Packit 972a07
    with the perldoc command.
Packit 972a07
Packit 972a07
        perldoc Sys::Syslog
Packit 972a07
Packit 972a07
    You can also look for information at:
Packit 972a07
Packit 972a07
        Search CPAN
Packit 972a07
            http://search.cpan.org/dist/Sys-Syslog/
Packit 972a07
Packit 972a07
        MetaCPAN
Packit 972a07
            https://metacpan.org/module/Sys::Syslog
Packit 972a07
Packit 972a07
        CPAN Request Tracker:
Packit 972a07
            http://rt.cpan.org/NoAuth/Bugs.html?Dist=Sys-Syslog
Packit 972a07
Packit 972a07
        AnnoCPAN, annotated CPAN documentation:
Packit 972a07
            http://annocpan.org/dist/Sys-Syslog
Packit 972a07
Packit 972a07
        CPAN Ratings:
Packit 972a07
            http://cpanratings.perl.org/d/Sys-Syslog
Packit 972a07
Packit 972a07
Packit 972a07
COPYRIGHT AND LICENCE
Packit 972a07
Packit 972a07
    Copyright (C) 1990-2012 by Larry Wall and others.
Packit 972a07
Packit 972a07
    This program is free software; you can redistribute it and/or modify it
Packit 972a07
    under the same terms as Perl itself.