+3.00_03 - 2004-08-20
+
+ * make sure the @INC path is kept up-to-date when changing
+ directories while running in the core test suite
+
3.00_02 - 2004-08-19
* remove PPPort.pm and PPPort.xs dependencies from Makefile.PL,
# http://module-build.sourceforge.net/META-spec.html
#XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX#
name: Devel-PPPort
-version: 3.00_02
+version: 3.00_03
version_from: PPPort_pm.PL
installdirs: perl
requires:
use strict;
use vars qw($VERSION @ISA $data);
-$VERSION = do { my @r = '$Snapshot: /Devel-PPPort/3.00_02 $' =~ /(\d+\.\d+(?:_\d+)?)/; @r ? $r[0] : '9.99' };
+$VERSION = do { my @r = '$Snapshot: /Devel-PPPort/3.00_03 $' =~ /(\d+\.\d+(?:_\d+)?)/; @r ? $r[0] : '9.99' };
@ISA = qw(DynaLoader);
use strict;
use vars qw($VERSION @ISA $data);
-$VERSION = do { my @r = '$Snapshot: /Devel-PPPort/3.00_02 $' =~ /(\d+\.\d+(?:_\d+)?)/; @r ? $r[0] : '9.99' };
+$VERSION = do { my @r = '$Snapshot: /Devel-PPPort/3.00_03 $' =~ /(\d+\.\d+(?:_\d+)?)/; @r ? $r[0] : '9.99' };
@ISA = qw(DynaLoader);
################################################################################
##
-## $Revision: 19 $
+## $Revision: 20 $
## $Author: mhx $
-## $Date: 2004/08/17 22:04:17 +0200 $
+## $Date: 2004/08/20 15:29:23 +0200 $
##
################################################################################
##
chdir($tmp) or die "chdir $tmp: $!\n";
if ($ENV{'PERL_CORE'}) {
- $inc = '-I../../lib' if -d '../../lib';
+ if (-d '../../lib') {
+ $inc = '-I../../lib';
+ unshift @INC, '../../lib';
+ }
}
if ($perl =~ m!^\./!) {
$perl = ".$perl";
chdir($tmp) or die "chdir $tmp: $!\n";
if ($ENV{'PERL_CORE'}) {
- $inc = '-I../../lib' if -d '../../lib';
+ if (-d '../../lib') {
+ $inc = '-I../../lib';
+ unshift @INC, '../../lib';
+ }
}
if ($perl =~ m!^\./!) {
$perl = ".$perl";