Revision history for Linux-SysInfo
+0.08 2007-11-19 09:25 UTC
+ + Fix : 5.10.0_RC1 compatibility fix.
+
0.07 2007-08-28 12:30 UTC
+ Chg : s/require (XSLoader)/use $1/.
+ Fix : Tests are now strict.
--- #YAML:1.0
name: Linux-SysInfo
-version: 0.07
+version: 0.08
abstract: Perl interface to the sysinfo(2) Linux system call.
license: perl
-generated_by: ExtUtils::MakeMaker version 6.36
+generated_by: ExtUtils::MakeMaker version 6.36_01
distribution_type: module
requires:
Exporter: 0
Linux::SysInfo - Perl interface to the sysinfo(2) Linux system call.
VERSION
- Version 0.07
+ Version 0.08
SYNOPSIS
use Linux::SysInfo qw/sysinfo/;
# define LS_KEY_STORE(H,K,V) hv_store((H), LS_KEY(K), sizeof(#K)-1, \
(V), LS_HASH(K))
#else
-# if PERL_REVISION >= 5 && PERL_VERSION >= 9 && PERL_SUBVERSION >= 3
+# if PERL_REVISION > 5 || (PERL_REVISION == 5 && (PERL_VERSION > 9 || (PERL_VERSION == 9 && PERL_SUBVERSION >= 3)))
/* From perl-5.9.3 (#24802), the key is only a SVt_PV and one can get the hash
* value with the SvSHARED_HASH() macro. */
# define LS_HASH(K) SvSHARED_HASH(LS_KEY(K))
=head1 VERSION
-Version 0.07
+Version 0.08
=cut
-our $VERSION = '0.07';
+our $VERSION = '0.08';
=head1 SYNOPSIS
use strict;
use warnings;
+use lib qw{blib/lib blib/arch};
+
use Linux::SysInfo qw/sysinfo LS_HAS_EXTENDED/;
my $si = sysinfo;