]> git.vpit.fr Git - perl/modules/Linux-SysInfo.git/commitdiff
Importing Linux-SysInfo-0.08.tar.gz v0.08
authorVincent Pit <vince@profvince.com>
Sun, 29 Jun 2008 16:41:31 +0000 (18:41 +0200)
committerVincent Pit <vince@profvince.com>
Sun, 29 Jun 2008 16:41:31 +0000 (18:41 +0200)
Changes
META.yml
README
SysInfo.xs
lib/Linux/SysInfo.pm
samples/sysinfo.pl

diff --git a/Changes b/Changes
index 7939405dfa7419767b9817e7b2917ca5d714ba4d..b67e7116c671fc08f8506eb3ed9b99bbd080ec06 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,8 @@
 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.
index 22e761f2695a4854c6d4fb3897d05562e4c7566e..78776cd784be148ad9b1b34c5813b8b21df1c351 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,9 +1,9 @@
 --- #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
diff --git a/README b/README
index 1095de656186f88a1e8789c69c0a0f7233eaf18b..9e6ffd687273b277a4b683db47396e4f8048d74b 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     Linux::SysInfo - Perl interface to the sysinfo(2) Linux system call.
 
 VERSION
-    Version 0.07
+    Version 0.08
 
 SYNOPSIS
         use Linux::SysInfo qw/sysinfo/;
index 94cdf9719f2afb3ce8a5dbb890cf1ada48737924..6ec169d020ad2d58cabce64e52afe2fe7cf6576b 100644 (file)
@@ -32,7 +32,7 @@
 # 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))
index 98f991d6cfb1f11d334cd85b9c86e8d7d0e47081..dcbe1a9f349c5fe7e0906324e898bc420d6a4013 100644 (file)
@@ -9,11 +9,11 @@ Linux::SysInfo - Perl interface to the sysinfo(2) Linux system call.
 
 =head1 VERSION
 
-Version 0.07
+Version 0.08
 
 =cut
 
-our $VERSION = '0.07';
+our $VERSION = '0.08';
 
 =head1 SYNOPSIS
 
index 2ca2f90a374954c60f79599712c60fe629acd43a..a0d860b579c70970433a04b774459f7e2d0d829b 100755 (executable)
@@ -3,6 +3,8 @@
 use strict;
 use warnings;
 
+use lib qw{blib/lib blib/arch};
+
 use Linux::SysInfo qw/sysinfo LS_HAS_EXTENDED/;
 
 my $si = sysinfo;