r5075 - in /packages/libio-interface-perl/branches/upstream/current: Changes Interface.pm Interface.xs Interface/Simple.pm META.yml

gregoa-guest at users.alioth.debian.org gregoa-guest at users.alioth.debian.org
Fri Apr 13 21:45:05 UTC 2007


Author: gregoa-guest
Date: Fri Apr 13 21:45:05 2007
New Revision: 5075

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=5075
Log:
[svn-upgrade] Integrating new upstream version, libio-interface-perl (1.03)

Modified:
    packages/libio-interface-perl/branches/upstream/current/Changes
    packages/libio-interface-perl/branches/upstream/current/Interface.pm
    packages/libio-interface-perl/branches/upstream/current/Interface.xs
    packages/libio-interface-perl/branches/upstream/current/Interface/Simple.pm
    packages/libio-interface-perl/branches/upstream/current/META.yml

Modified: packages/libio-interface-perl/branches/upstream/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libio-interface-perl/branches/upstream/current/Changes?rev=5075&op=diff
==============================================================================
--- packages/libio-interface-perl/branches/upstream/current/Changes (original)
+++ packages/libio-interface-perl/branches/upstream/current/Changes Fri Apr 13 21:45:05 2007
@@ -1,4 +1,7 @@
 Revision history for Perl extension IO::Interface.
+1.03	Mon Jan 22 16:38:24 EST 2007
+	Fix to compile cleanly on solaris systems.	
+
 1.02	Thu Sep 14 08:54:04 EDT 2006
 	More documentation fixes.
 

Modified: packages/libio-interface-perl/branches/upstream/current/Interface.pm
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libio-interface-perl/branches/upstream/current/Interface.pm?rev=5075&op=diff
==============================================================================
--- packages/libio-interface-perl/branches/upstream/current/Interface.pm (original)
+++ packages/libio-interface-perl/branches/upstream/current/Interface.pm Fri Apr 13 21:45:05 2007
@@ -28,7 +28,7 @@
 @EXPORT = qw( );
 
 @ISA = qw(Exporter DynaLoader);
-$VERSION = '1.02';
+$VERSION = '1.03';
 
 sub AUTOLOAD {
     # This AUTOLOAD is used to 'autoload' constants from the constant()

Modified: packages/libio-interface-perl/branches/upstream/current/Interface.xs
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libio-interface-perl/branches/upstream/current/Interface.xs?rev=5075&op=diff
==============================================================================
--- packages/libio-interface-perl/branches/upstream/current/Interface.xs (original)
+++ packages/libio-interface-perl/branches/upstream/current/Interface.xs Fri Apr 13 21:45:05 2007
@@ -32,6 +32,19 @@
 typedef FILE * InputStream;
 #define PerlIO_fileno(f) fileno(f)
 #endif
+
+#if !defined(__USE_BSD)
+  #if defined(__linux__)
+     #define __USE_BSD
+  #endif
+  #if defined (__APPLE__)
+     #define __USE_BSD
+  #endif
+#endif
+
+#if defined(sun)
+#define ifr_mtu ifr_metric 
+#endif 
 
 static double
 constant_IFF_N(char *name, int len, int arg)

Modified: packages/libio-interface-perl/branches/upstream/current/Interface/Simple.pm
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libio-interface-perl/branches/upstream/current/Interface/Simple.pm?rev=5075&op=diff
==============================================================================
--- packages/libio-interface-perl/branches/upstream/current/Interface/Simple.pm (original)
+++ packages/libio-interface-perl/branches/upstream/current/Interface/Simple.pm Fri Apr 13 21:45:05 2007
@@ -133,12 +133,11 @@
 
 =head1 NAME
 
-IO::Interface - Perl extension for access to network card configuration information
+IO::Interface::Simple - Perl extension for access to network card configuration information
 
 =head1 SYNOPSIS
 
  use IO::Interface::Simple;
-
 
  my $if1   = IO::Interface::Simple->new('eth0');
  my $if2   = IO::Interface::Simple->new_from_address('127.0.0.1');

Modified: packages/libio-interface-perl/branches/upstream/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libio-interface-perl/branches/upstream/current/META.yml?rev=5075&op=diff
==============================================================================
--- packages/libio-interface-perl/branches/upstream/current/META.yml (original)
+++ packages/libio-interface-perl/branches/upstream/current/META.yml Fri Apr 13 21:45:05 2007
@@ -1,7 +1,7 @@
 # http://module-build.sourceforge.net/META-spec.html
 #XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
 name:         IO-Interface
-version:      1.02
+version:      1.03
 version_from: Interface.pm
 installdirs:  site
 requires:




More information about the Pkg-perl-cvs-commits mailing list