- 论坛徽章:
- 0
|
我把eval去掉,require语句执行了。
# Paths from LocalLib.cfg (preferred)
use vars qw( $twikiLibPath @localPerlLibPath );
@INC = ('.', grep { $_ ne '.' } @INC); # setlib.cfg is in current directory
require "setlib.cfg"; # 这里不用eval
再执行configure脚本,爆出下列错误:
Software error:
defined(@array) is deprecated at setlib.cfg line 53.
Software error:
[Mon May 13 15:29:16 2013] configure: defined(@array) is deprecated at setlib.cfg line 53.
Compilation failed in require at D:/TWiki511/bin/configure line 211.
下面是setlib.cfg的代码,很短,全部贴出来:
use vars qw( $twikiLibPath @localPerlLibPath );
eval 'require "LocalLib.cfg"';
unless (( defined ($twikiLibPath) ) and (-e $twikiLibPath)) {
use Cwd qw( abs_path );
( $twikiLibPath ) = ($twikiLibPath = Cwd::abs_path( "../lib" )) =~ /(.*)/;
}
if ($twikiLibPath eq "") {
$twikiLibPath = "../lib";
warn "using relative path for libs - some plugins may break";
}
# Path to local Perl modules
my $defaultingCPANBASE = !defined($CPANBASE);
$CPANBASE = "$twikiLibPath/CPAN/lib" unless $CPANBASE;
if ( -e $CPANBASE ) {
require Config;
my $VER = $Config::Config{version};
my $SITEARCH = $Config::Config{archname};
push @localPerlLibPath, ( "$CPANBASE/arch", "$CPANBASE/$VER/$SITEARCH", "$CPANBASE/$VER", "$CPANBASE" );
}
# Prepend to @INC, the Perl search path for modules
unshift @INC, $twikiLibPath;
if ($defaultingCPANBASE) {
push @INC, @localPerlLibPath if defined @localPerlLibPath; # 错误提示53行即本行
} else {
unshift @INC, @localPerlLibPath if defined @localPerlLibPath;
}
从错误消息看,似乎是对全局变量的使用有误。 |
|