Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jonathanstowe/sys-utmp

Access to UTMP entries from Perl
https://github.com/jonathanstowe/sys-utmp

accounting perl utmp

Last synced: 11 days ago
JSON representation

Access to UTMP entries from Perl

Awesome Lists containing this project

README

        

README FOR Sys::Utmp

INSTALLATION

To install this module type the following:

perl Makefile.PL
make
make test
make install

DEPENDENCIES

The module requires that your system's C libraries export the functions
getutent(), setutent() and endutent() - if make complains that it can't find
these functions and you know that they exist then you may have to supply the
LIBS directive to Makefile.PL to include the appropriate library:

perl Makefile.PL LIBS='-lc'

for example.

If your system doesnt have these functions and Makefile.PL doesnt detect
that it should try to supply them itself then you might try :

perl Makefile.PL DEFINE='-DNOUTFUNCS'

which will force the module to use its built in versions of the functions.

At version 1.6 Test::More is also required for the tests.

COPYRIGHT AND LICENCE

Copyright Netscalibur UK 2001.
Copyright Jonathan Stowe 2001 - 2013

This software carries no warranty either express or implied.

This is free software it can be copied and/or modified under the same terms
as perl itself.