Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/jonathanstowe/sys-utmp
- Owner: jonathanstowe
- Created: 2011-04-19T20:13:32.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2017-10-05T21:07:56.000Z (about 7 years ago)
- Last Synced: 2023-08-20T22:53:20.651Z (over 1 year ago)
- Topics: accounting, perl, utmp
- Language: Perl
- Homepage:
- Size: 23.4 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- Changelog: Changes
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 installDEPENDENCIES
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 - 2013This 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.