Index: ossp-pkg/shiela/ChangeLog RCS File: /v/ossp/cvs/ossp-pkg/shiela/ChangeLog,v rcsdiff -q -kk '-r1.22' '-r1.23' -u '/v/ossp/cvs/ossp-pkg/shiela/ChangeLog,v' 2>/dev/null --- ChangeLog 2002/12/22 17:37:28 1.22 +++ ChangeLog 2002/12/22 19:32:28 1.23 @@ -9,6 +9,12 @@ ChangeLog + Changes between 1.0.0 and 1.0.1 (22-Dec-2002 to 22-Dec-2002): + + *) Fixed run-time under Perl 5.8.0: import only abs_path() + from module Cwd to avoid conflicts with POSIX module. + [Ralf S. Engelschall] + Changes between 0.9.2 and 1.0.0 (19-Aug-2002 to 22-Dec-2002): *) Add branch information to the Subject lines of generated Emails. Index: ossp-pkg/shiela/shiela.pl RCS File: /v/ossp/cvs/ossp-pkg/shiela/shiela.pl,v rcsdiff -q -kk '-r1.35' '-r1.36' -u '/v/ossp/cvs/ossp-pkg/shiela/shiela.pl,v' 2>/dev/null --- shiela.pl 2002/12/22 17:37:28 1.35 +++ shiela.pl 2002/12/22 19:32:28 1.36 @@ -30,13 +30,13 @@ require 5.005; -use strict; # shipped with Perl since 5.000 -use POSIX; # shipped with Perl since 5.000 -use IO::File; # shipped with Perl since 5.003 -use IO::Handle; # shipped with Perl since 5.003 -use IPC::Open2; # shipped with Perl since 5.003 -use Data::Dumper; # shipped with Perl since 5.005 -use Cwd; # shipped with Perl since 5.005 +use strict; # shipped with Perl since 5.000 +use POSIX; # shipped with Perl since 5.000 +use IO::File; # shipped with Perl since 5.003 +use IO::Handle; # shipped with Perl since 5.003 +use IPC::Open2; # shipped with Perl since 5.003 +use Data::Dumper; # shipped with Perl since 5.005 +use Cwd qw(abs_path); # shipped with Perl since 5.005 # DEBUGGING $Data::Dumper::Purity = 1;