summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: d8fc49e)
raw | patch | inline | side by side (parent: d8fc49e)
author | Florian Forster <octo@verplant.org> | |
Sun, 27 Jan 2008 15:19:23 +0000 (16:19 +0100) | ||
committer | Florian Forster <octo@verplant.org> | |
Sun, 27 Jan 2008 15:19:23 +0000 (16:19 +0100) |
Also added `use 5.006;' to Net/Oping.pm, because `use warnings;' is a Perl 5.6
feature.
feature.
bindings/perl/Changes | patch | blob | history | |
bindings/perl/META.yml | patch | blob | history | |
bindings/perl/README | patch | blob | history | |
bindings/perl/lib/Net/Oping.pm | patch | blob | history |
diff --git a/bindings/perl/Changes b/bindings/perl/Changes
index ea4a6122211d1582de6c9ca193b765fc87944650..3840e4e78362675e083e15c797f220553c02b840 100644 (file)
--- a/bindings/perl/Changes
+++ b/bindings/perl/Changes
Revision history for Perl extension Net::Oping.
-1.01 ...
+1.01 Sun Jan 27 16:08:03 2008
- Have `Makefile.PL' exit if the header file <oping.h> cannot be found
_before_ a Makefile is generated. This is done because
`ExtUtils::MakeMaker' doesn't check whether libraries exist and this
diff --git a/bindings/perl/META.yml b/bindings/perl/META.yml
index 2aede20a9232b66c461e488af9e5ff04c9b90857..3351afd730f51121e75f9099678b75b05491b873 100644 (file)
--- a/bindings/perl/META.yml
+++ b/bindings/perl/META.yml
# http://module-build.sourceforge.net/META-spec.html
#XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX#
name: Net-Oping
-version: 1.00
+version: 1.01
version_from: lib/Net/Oping.pm
installdirs: site
requires:
diff --git a/bindings/perl/README b/bindings/perl/README
index d0af5485073f686f47450af48bab9fb3fad40bb1..2714e36b25d299b2cd0818b8b264c462458c6768 100644 (file)
--- a/bindings/perl/README
+++ b/bindings/perl/README
-Net::Oping version 1.00
+Net::Oping version 1.01
=======================
ICMP latency measurement module using the oping library.
index 2f01d21d45fdb96436763361cc4b54acca905436..aeeedf05306786e30e939e18e3f11477564dcc69 100644 (file)
=cut
+use 5.006;
+
use strict;
use warnings;
use Carp (qw(cluck confess));
-our $VERSION = '1.00';
+our $VERSION = '1.01';
require XSLoader;
XSLoader::load ('Net::Oping', $VERSION);