1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
# This is CPAN.pm's systemwide configuration file. This file provides
# defaults for users, and the values can be changed in a per-user
# configuration file. The user-config file is being looked for as
# ~/.cpan/CPAN/MyConfig.pm.
my @urllist = (
q[http://cpan.strawberryperl.com/],
);
if ( -d 'C:\\strawberry\\minicpan' ) {
# If we are on fake Hotel/Airport wireless,
# prefer the minicpan to the poisoned wireless.
eval { require LWP::Online; };
unless ( $@ ) {
if ( LWP::Online::online() ) {
push @urllist, q[file:///C:/strawberry/minicpan/];
} else {
unshift @urllist, q[file:///C:/strawberry/minicpan/];
}
}
}
$CPAN::Config = {
applypatch => q[],
auto_commit => q[1],
build_cache => q[10],
build_dir => qq[C:\\strawberry\\cpan\\build],
build_dir_reuse => q[0],
build_requires_install_policy => q[yes],
bzip2 => q[],
cache_metadata => q[0],
check_sigs => q[0],
colorize_output => q[0],
colorize_print => q[bold blue on_white],
colorize_warn => q[bold red on_white],
commandnumber_in_prompt => q[0],
cpan_home => q[C:\\strawberry\\cpan],
curl => q[],
ftp => q[C:\\WINDOWS\\system32\\ftp.EXE],
ftp_passive => q[1],
ftp_proxy => q[],
getcwd => q[cwd],
gpg => q[],
gzip => q[ ], #will use perl module if it is ' '
histfile => q[C:\\strawberry\\cpan\\histfile],
histsize => q[100],
http_proxy => q[],
inactivity_timeout => q[0],
index_expire => q[1],
inhibit_startup_message => q[0],
keep_source_where => q[C:\\strawberry\\cpan\\sources],
load_module_verbosity => q[none],
lynx => q[],
make => q[C:\\strawberry\\c\\bin\\dmake.EXE],
make_arg => q[],
make_install_arg => q[UNINST=1],
makepl_arg => q[],
mbuild_arg => q[],
mbuild_install_arg => q[--uninst 1],
mbuildpl_arg => q[],
ncftp => q[],
ncftpget => q[],
no_proxy => q[],
pager => q[C:\\WINDOWS\\system32\\more.COM],
patch => q[C:\\strawberry\\c\\bin\\patch.exe],
prefer_installer => q[MB],
prefs_dir => q[C:\\strawberry\\cpan\\prefs],
prerequisites_policy => q[follow],
scan_cache => q[atstart],
shell => q[C:\\WINDOWS\\system32\\cmd.exe],
show_unparsable_versions => q[0],
show_upload_date => q[1],
show_zero_versions => q[0],
tar => q[ ], #will use perl module if it is ' '
tar_verbosity => q[none],
term_is_latin => q[0],
term_ornaments => q[0],
test_report => q[0],
unzip => q[],
urllist => \@urllist,
use_sqlite => q[1],
wget => q[],
yaml_load_code => q[0],
yaml_module => q[YAML],
};
1;
|