Filename | C:/tmp64ng/perl/lib/Config_heavy.pl |
Statements | Executed 20922 statements in 0s |
Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
---|---|---|---|---|---|
3309 | 3 | 2 | 15.6ms | 15.6ms | NEXTKEY | Config::
1080 | 1 | 1 | 15.6ms | 15.6ms | fetch_string | Config::
1 | 1 | 1 | 0s | 0s | BEGIN@5 | Config::
1 | 1 | 1 | 0s | 0s | BEGIN@6 | Config::
1 | 1 | 1 | 0s | 0s | BEGIN@7 | Config::
1081 | 2 | 2 | 0s | 0s | CORE:match (opcode) | Config::
1 | 1 | 1 | 0s | 0s | CORE:pack (opcode) | Config::
1080 | 1 | 1 | 0s | 0s | CORE:regcomp (opcode) | Config::
9 | 3 | 1 | 0s | 0s | CORE:subst (opcode) | Config::
2 | 1 | 1 | 0s | 0s | CORE:substcont (opcode) | Config::
1 | 1 | 1 | 0s | 0s | CORE:unpack (opcode) | Config::
0 | 0 | 0 | 0s | 0s | EXISTS | Config::
3 | 3 | 3 | 0s | 0s | FIRSTKEY | Config::
0 | 0 | 0 | 0s | 0s | STORE | Config::
0 | 0 | 0 | 0s | 0s | _V | Config::
0 | 0 | 0 | 0s | 0s | bincompat_options | Config::
0 | 0 | 0 | 0s | 0s | compile_date | Config::
0 | 0 | 0 | 0s | 0s | config_re | Config::
0 | 0 | 0 | 0s | 0s | config_sh | Config::
0 | 0 | 0 | 0s | 0s | config_vars | Config::
0 | 0 | 0 | 0s | 0s | header_files | Config::
1 | 1 | 1 | 0s | 0s | launcher | Config::
0 | 0 | 0 | 0s | 0s | local_patches | Config::
0 | 0 | 0 | 0s | 0s | myconfig | Config::
0 | 0 | 0 | 0s | 0s | non_bincompat_options | Config::
Line | State ments |
Time on line |
Calls | Time in subs |
Code |
---|---|---|---|---|---|
1 | # This file was created by configpm when Perl was built. Any changes | ||||
2 | # made to this file will be lost the next time perl is built. | ||||
3 | |||||
4 | package Config; | ||||
5 | 2 | 0s | 2 | 0s | # spent 0s within Config::BEGIN@5 which was called:
# once (0s+0s) by Config::AUTOLOAD at line 5 # spent 0s making 1 call to Config::BEGIN@5
# spent 0s making 1 call to strict::import |
6 | 2 | 0s | 2 | 0s | # spent 0s within Config::BEGIN@6 which was called:
# once (0s+0s) by Config::AUTOLOAD at line 6 # spent 0s making 1 call to Config::BEGIN@6
# spent 0s making 1 call to warnings::import |
7 | 2 | 0s | 2 | 0s | # spent 0s within Config::BEGIN@7 which was called:
# once (0s+0s) by Config::AUTOLOAD at line 7 # spent 0s making 1 call to Config::BEGIN@7
# spent 0s making 1 call to vars::import |
8 | |||||
9 | sub bincompat_options { | ||||
10 | return split ' ', (Internals::V())[0]; | ||||
11 | } | ||||
12 | |||||
13 | sub non_bincompat_options { | ||||
14 | return split ' ', (Internals::V())[1]; | ||||
15 | } | ||||
16 | |||||
17 | sub compile_date { | ||||
18 | return (Internals::V())[2] | ||||
19 | } | ||||
20 | |||||
21 | sub local_patches { | ||||
22 | my (undef, undef, undef, @patches) = Internals::V(); | ||||
23 | return @patches; | ||||
24 | } | ||||
25 | |||||
26 | sub _V { | ||||
27 | die "Perl lib was built for 'MSWin32' but is being run on '$^O'" | ||||
28 | unless "MSWin32" eq $^O; | ||||
29 | |||||
30 | my ($bincompat, $non_bincompat, $date, @patches) = Internals::V(); | ||||
31 | |||||
32 | my $opts = join ' ', sort split ' ', "$bincompat $non_bincompat"; | ||||
33 | |||||
34 | # wrap at 76 columns. | ||||
35 | |||||
36 | $opts =~ s/(?=.{53})(.{1,53}) /$1\n /mg; | ||||
37 | |||||
38 | print Config::myconfig(); | ||||
39 | print "\nCharacteristics of this binary (from libperl): \n"; | ||||
40 | |||||
41 | print " Compile-time options: $opts\n"; | ||||
42 | |||||
43 | if (@patches) { | ||||
44 | print " Locally applied patches:\n"; | ||||
45 | print "\t$_\n" foreach @patches; | ||||
46 | } | ||||
47 | |||||
48 | print " Built under MSWin32\n"; | ||||
49 | |||||
50 | print " $date\n" if defined $date; | ||||
51 | |||||
52 | my @env = map { "$_=\"$ENV{$_}\"" } sort grep {/^PERL/} keys %ENV; | ||||
53 | |||||
54 | if (@env) { | ||||
55 | print " \%ENV:\n"; | ||||
56 | print " $_\n" foreach @env; | ||||
57 | } | ||||
58 | print " \@INC:\n"; | ||||
59 | print " $_\n" foreach @INC; | ||||
60 | } | ||||
61 | |||||
62 | sub header_files { | ||||
63 | return qw(EXTERN.h INTERN.h XSUB.h av.h config.h cop.h cv.h | ||||
64 | dosish.h embed.h embedvar.h form.h gv.h handy.h hv.h hv_func.h | ||||
65 | intrpvar.h iperlsys.h keywords.h mg.h nostdio.h op.h opcode.h | ||||
66 | pad.h parser.h patchlevel.h perl.h perlio.h perliol.h perlsdio.h | ||||
67 | perlvars.h perly.h pp.h pp_proto.h proto.h regcomp.h regexp.h | ||||
68 | regnodes.h scope.h sv.h thread.h time64.h unixish.h utf8.h | ||||
69 | util.h); | ||||
70 | } | ||||
71 | |||||
72 | ### Configured by: strawberry-perl@project | ||||
73 | ### Target system: WIN32 | ||||
74 | |||||
75 | 1 | 0s | our $summary = <<'!END!'; | ||
76 | Summary of my $package (revision $revision $version_patchlevel_string) configuration: | ||||
77 | $git_commit_id_title $git_commit_id$git_ancestor_line | ||||
78 | Platform: | ||||
79 | osname=$osname, osvers=$osvers, archname=$archname | ||||
80 | uname='$myuname' | ||||
81 | config_args='$config_args' | ||||
82 | hint=$hint, useposix=$useposix, d_sigaction=$d_sigaction | ||||
83 | useithreads=$useithreads, usemultiplicity=$usemultiplicity | ||||
84 | use64bitint=$use64bitint, use64bitall=$use64bitall, uselongdouble=$uselongdouble | ||||
85 | usemymalloc=$usemymalloc, bincompat5005=undef | ||||
86 | Compiler: | ||||
87 | cc='$cc', ccflags ='$ccflags', | ||||
88 | optimize='$optimize', | ||||
89 | cppflags='$cppflags' | ||||
90 | ccversion='$ccversion', gccversion='$gccversion', gccosandvers='$gccosandvers' | ||||
91 | intsize=$intsize, longsize=$longsize, ptrsize=$ptrsize, doublesize=$doublesize, byteorder=$byteorder | ||||
92 | d_longlong=$d_longlong, longlongsize=$longlongsize, d_longdbl=$d_longdbl, longdblsize=$longdblsize | ||||
93 | ivtype='$ivtype', ivsize=$ivsize, nvtype='$nvtype', nvsize=$nvsize, Off_t='$lseektype', lseeksize=$lseeksize | ||||
94 | alignbytes=$alignbytes, prototype=$prototype | ||||
95 | Linker and Libraries: | ||||
96 | ld='$ld', ldflags ='$ldflags' | ||||
97 | libpth=$libpth | ||||
98 | libs=$libs | ||||
99 | perllibs=$perllibs | ||||
100 | libc=$libc, so=$so, useshrplib=$useshrplib, libperl=$libperl | ||||
101 | gnulibc_version='$gnulibc_version' | ||||
102 | Dynamic Linking: | ||||
103 | dlsrc=$dlsrc, dlext=$dlext, d_dlsymun=$d_dlsymun, ccdlflags='$ccdlflags' | ||||
104 | cccdlflags='$cccdlflags', lddlflags='$lddlflags' | ||||
105 | |||||
106 | !END! | ||||
107 | 1 | 0s | my $summary_expanded; | ||
108 | |||||
109 | sub myconfig { | ||||
110 | return $summary_expanded if $summary_expanded; | ||||
111 | ($summary_expanded = $summary) =~ s{\$(\w+)} | ||||
112 | { | ||||
113 | my $c; | ||||
114 | if ($1 eq 'git_ancestor_line') { | ||||
115 | if ($Config::Config{git_ancestor}) { | ||||
116 | $c= "\n Ancestor: $Config::Config{git_ancestor}"; | ||||
117 | } else { | ||||
118 | $c= ""; | ||||
119 | } | ||||
120 | } else { | ||||
121 | $c = $Config::Config{$1}; | ||||
122 | } | ||||
123 | defined($c) ? $c : 'undef' | ||||
124 | }ge; | ||||
125 | $summary_expanded; | ||||
126 | } | ||||
127 | |||||
128 | 1 | 0s | local *_ = \my $a; | ||
129 | 1 | 0s | $_ = <<'!END!'; | ||
130 | Author='' | ||||
131 | CONFIG='true' | ||||
132 | Date='$Date' | ||||
133 | Header='' | ||||
134 | Id='$Id' | ||||
135 | Locker='' | ||||
136 | Log='$Log' | ||||
137 | PATCHLEVEL='20' | ||||
138 | PERL_API_REVISION='5' | ||||
139 | PERL_API_SUBVERSION='0' | ||||
140 | PERL_API_VERSION='20' | ||||
141 | PERL_CONFIG_SH='true' | ||||
142 | PERL_PATCHLEVEL='' | ||||
143 | PERL_REVISION='5' | ||||
144 | PERL_SUBVERSION='2' | ||||
145 | PERL_VERSION='20' | ||||
146 | RCSfile='$RCSfile' | ||||
147 | Revision='$Revision' | ||||
148 | SUBVERSION='2' | ||||
149 | Source='' | ||||
150 | State='' | ||||
151 | _a='.a' | ||||
152 | _exe='.exe' | ||||
153 | _o='.o' | ||||
154 | afs='false' | ||||
155 | afsroot='/afs' | ||||
156 | alignbytes='8' | ||||
157 | ansi2knr='' | ||||
158 | aphostname='' | ||||
159 | api_revision='5' | ||||
160 | api_subversion='0' | ||||
161 | api_version='20' | ||||
162 | api_versionstring='5.20.0' | ||||
163 | ar='ar' | ||||
164 | archlib='C:\strawberry\perl\lib' | ||||
165 | archlibexp='C:\strawberry\perl\lib' | ||||
166 | archname64='' | ||||
167 | archname='MSWin32-x64-multi-thread' | ||||
168 | archobjs='' | ||||
169 | asctime_r_proto='0' | ||||
170 | awk='awk' | ||||
171 | baserev='5' | ||||
172 | bash='' | ||||
173 | bin='C:\strawberry\perl\bin' | ||||
174 | binexp='C:\strawberry\perl\bin' | ||||
175 | bison='' | ||||
176 | bootstrap_charset='undef' | ||||
177 | byacc='byacc' | ||||
178 | byteorder='1234' | ||||
179 | c='' | ||||
180 | castflags='0' | ||||
181 | cat='type' | ||||
182 | cc='gcc' | ||||
183 | cccdlflags=' ' | ||||
184 | ccdlflags=' ' | ||||
185 | ccflags=' -s -O2 -DWIN32 -DWIN64 -DCONSERVATIVE -DPERL_TEXTMODE_SCRIPTS -DPERL_IMPLICIT_CONTEXT -DPERL_IMPLICIT_SYS -DUSE_PERLIO -fwrapv -fno-strict-aliasing -mms-bitfields' | ||||
186 | ccflags_uselargefiles='' | ||||
187 | ccname='gcc' | ||||
188 | ccsymbols='' | ||||
189 | ccversion='' | ||||
190 | cf_by='strawberry-perl' | ||||
191 | cf_email='strawberry-perl@project' | ||||
192 | cf_time='Sat Feb 21 18:05:55 2015' | ||||
193 | charbits='8' | ||||
194 | chgrp='' | ||||
195 | chmod='' | ||||
196 | chown='' | ||||
197 | clocktype='clock_t' | ||||
198 | comm='' | ||||
199 | compress='' | ||||
200 | contains='grep' | ||||
201 | cp='copy' | ||||
202 | cpio='' | ||||
203 | cpp='gcc -E' | ||||
204 | cpp_stuff='42' | ||||
205 | cppccsymbols='' | ||||
206 | cppflags='-DWIN32' | ||||
207 | cpplast='' | ||||
208 | cppminus='-' | ||||
209 | cpprun='gcc -E' | ||||
210 | cppstdin='gcc -E' | ||||
211 | cppsymbols='' | ||||
212 | crypt_r_proto='0' | ||||
213 | cryptlib='' | ||||
214 | csh='undef' | ||||
215 | ctermid_r_proto='0' | ||||
216 | ctime_r_proto='0' | ||||
217 | d_Gconvert='sprintf((b),"%.*g",(n),(x))' | ||||
218 | d_PRIEUldbl='undef' | ||||
219 | d_PRIFUldbl='undef' | ||||
220 | d_PRIGUldbl='undef' | ||||
221 | d_PRIXU64='undef' | ||||
222 | d_PRId64='undef' | ||||
223 | d_PRIeldbl='undef' | ||||
224 | d_PRIfldbl='undef' | ||||
225 | d_PRIgldbl='undef' | ||||
226 | d_PRIi64='undef' | ||||
227 | d_PRIo64='undef' | ||||
228 | d_PRIu64='undef' | ||||
229 | d_PRIx64='undef' | ||||
230 | d_SCNfldbl='undef' | ||||
231 | d__fwalk='undef' | ||||
232 | d_access='define' | ||||
233 | d_accessx='undef' | ||||
234 | d_aintl='undef' | ||||
235 | d_alarm='define' | ||||
236 | d_archlib='define' | ||||
237 | d_asctime64='undef' | ||||
238 | d_asctime_r='undef' | ||||
239 | d_atolf='undef' | ||||
240 | d_atoll='define' | ||||
241 | d_attribute_deprecated='undef' | ||||
242 | d_attribute_format='undef' | ||||
243 | d_attribute_malloc='undef' | ||||
244 | d_attribute_nonnull='undef' | ||||
245 | d_attribute_noreturn='undef' | ||||
246 | d_attribute_pure='undef' | ||||
247 | d_attribute_unused='undef' | ||||
248 | d_attribute_warn_unused_result='undef' | ||||
249 | d_bcmp='undef' | ||||
250 | d_bcopy='undef' | ||||
251 | d_bsd='define' | ||||
252 | d_bsdgetpgrp='undef' | ||||
253 | d_bsdsetpgrp='undef' | ||||
254 | d_builtin_choose_expr='undef' | ||||
255 | d_builtin_expect='undef' | ||||
256 | d_bzero='undef' | ||||
257 | d_c99_variadic_macros='undef' | ||||
258 | d_casti32='define' | ||||
259 | d_castneg='define' | ||||
260 | d_charvspr='undef' | ||||
261 | d_chown='undef' | ||||
262 | d_chroot='undef' | ||||
263 | d_chsize='define' | ||||
264 | d_class='undef' | ||||
265 | d_clearenv='undef' | ||||
266 | d_closedir='define' | ||||
267 | d_cmsghdr_s='undef' | ||||
268 | d_const='define' | ||||
269 | d_copysignl='undef' | ||||
270 | d_cplusplus='undef' | ||||
271 | d_crypt='define' | ||||
272 | d_crypt_r='undef' | ||||
273 | d_csh='undef' | ||||
274 | d_ctermid='undef' | ||||
275 | d_ctermid_r='undef' | ||||
276 | d_ctime64='undef' | ||||
277 | d_ctime_r='undef' | ||||
278 | d_cuserid='undef' | ||||
279 | d_dbl_dig='define' | ||||
280 | d_dbminitproto='undef' | ||||
281 | d_difftime64='undef' | ||||
282 | d_difftime='define' | ||||
283 | d_dir_dd_fd='undef' | ||||
284 | d_dirfd='undef' | ||||
285 | d_dirnamlen='define' | ||||
286 | d_dlerror='define' | ||||
287 | d_dlopen='define' | ||||
288 | d_dlsymun='undef' | ||||
289 | d_dosuid='undef' | ||||
290 | d_drand48_r='undef' | ||||
291 | d_drand48proto='undef' | ||||
292 | d_dup2='define' | ||||
293 | d_eaccess='undef' | ||||
294 | d_endgrent='undef' | ||||
295 | d_endgrent_r='undef' | ||||
296 | d_endhent='undef' | ||||
297 | d_endhostent_r='undef' | ||||
298 | d_endnent='undef' | ||||
299 | d_endnetent_r='undef' | ||||
300 | d_endpent='undef' | ||||
301 | d_endprotoent_r='undef' | ||||
302 | d_endpwent='undef' | ||||
303 | d_endpwent_r='undef' | ||||
304 | d_endsent='undef' | ||||
305 | d_endservent_r='undef' | ||||
306 | d_eofnblk='define' | ||||
307 | d_eunice='undef' | ||||
308 | d_faststdio='define' | ||||
309 | d_fchdir='undef' | ||||
310 | d_fchmod='undef' | ||||
311 | d_fchown='undef' | ||||
312 | d_fcntl='undef' | ||||
313 | d_fcntl_can_lock='undef' | ||||
314 | d_fd_macros='define' | ||||
315 | d_fd_set='define' | ||||
316 | d_fds_bits='define' | ||||
317 | d_fgetpos='define' | ||||
318 | d_finite='undef' | ||||
319 | d_finitel='undef' | ||||
320 | d_flexfnam='define' | ||||
321 | d_flock='define' | ||||
322 | d_flockproto='define' | ||||
323 | d_fork='undef' | ||||
324 | d_fp_class='undef' | ||||
325 | d_fpathconf='undef' | ||||
326 | d_fpclass='undef' | ||||
327 | d_fpclassify='undef' | ||||
328 | d_fpclassl='undef' | ||||
329 | d_fpos64_t='undef' | ||||
330 | d_frexpl='undef' | ||||
331 | d_fs_data_s='undef' | ||||
332 | d_fseeko='undef' | ||||
333 | d_fsetpos='define' | ||||
334 | d_fstatfs='undef' | ||||
335 | d_fstatvfs='undef' | ||||
336 | d_fsync='undef' | ||||
337 | d_ftello='undef' | ||||
338 | d_ftime='define' | ||||
339 | d_futimes='undef' | ||||
340 | d_gdbm_ndbm_h_uses_prototypes='undef' | ||||
341 | d_gdbmndbm_h_uses_prototypes='undef' | ||||
342 | d_getaddrinfo='undef' | ||||
343 | d_getcwd='define' | ||||
344 | d_getespwnam='undef' | ||||
345 | d_getfsstat='undef' | ||||
346 | d_getgrent='undef' | ||||
347 | d_getgrent_r='undef' | ||||
348 | d_getgrgid_r='undef' | ||||
349 | d_getgrnam_r='undef' | ||||
350 | d_getgrps='undef' | ||||
351 | d_gethbyaddr='define' | ||||
352 | d_gethbyname='define' | ||||
353 | d_gethent='undef' | ||||
354 | d_gethname='define' | ||||
355 | d_gethostbyaddr_r='undef' | ||||
356 | d_gethostbyname_r='undef' | ||||
357 | d_gethostent_r='undef' | ||||
358 | d_gethostprotos='define' | ||||
359 | d_getitimer='undef' | ||||
360 | d_getlogin='define' | ||||
361 | d_getlogin_r='undef' | ||||
362 | d_getmnt='undef' | ||||
363 | d_getmntent='undef' | ||||
364 | d_getnameinfo='undef' | ||||
365 | d_getnbyaddr='undef' | ||||
366 | d_getnbyname='undef' | ||||
367 | d_getnent='undef' | ||||
368 | d_getnetbyaddr_r='undef' | ||||
369 | d_getnetbyname_r='undef' | ||||
370 | d_getnetent_r='undef' | ||||
371 | d_getnetprotos='undef' | ||||
372 | d_getpagsz='undef' | ||||
373 | d_getpbyname='define' | ||||
374 | d_getpbynumber='define' | ||||
375 | d_getpent='undef' | ||||
376 | d_getpgid='undef' | ||||
377 | d_getpgrp2='undef' | ||||
378 | d_getpgrp='undef' | ||||
379 | d_getppid='undef' | ||||
380 | d_getprior='undef' | ||||
381 | d_getprotobyname_r='undef' | ||||
382 | d_getprotobynumber_r='undef' | ||||
383 | d_getprotoent_r='undef' | ||||
384 | d_getprotoprotos='define' | ||||
385 | d_getprpwnam='undef' | ||||
386 | d_getpwent='undef' | ||||
387 | d_getpwent_r='undef' | ||||
388 | d_getpwnam_r='undef' | ||||
389 | d_getpwuid_r='undef' | ||||
390 | d_getsbyname='define' | ||||
391 | d_getsbyport='define' | ||||
392 | d_getsent='undef' | ||||
393 | d_getservbyname_r='undef' | ||||
394 | d_getservbyport_r='undef' | ||||
395 | d_getservent_r='undef' | ||||
396 | d_getservprotos='define' | ||||
397 | d_getspnam='undef' | ||||
398 | d_getspnam_r='undef' | ||||
399 | d_gettimeod='define' | ||||
400 | d_gmtime64='undef' | ||||
401 | d_gmtime_r='undef' | ||||
402 | d_gnulibc='undef' | ||||
403 | d_grpasswd='undef' | ||||
404 | d_hasmntopt='undef' | ||||
405 | d_htonl='define' | ||||
406 | d_ilogbl='undef' | ||||
407 | d_inc_version_list='undef' | ||||
408 | d_index='undef' | ||||
409 | d_inetaton='undef' | ||||
410 | d_inetntop='undef' | ||||
411 | d_inetpton='undef' | ||||
412 | d_int64_t='undef' | ||||
413 | d_ip_mreq='undef' | ||||
414 | d_ip_mreq_source='undef' | ||||
415 | d_ipv6_mreq='undef' | ||||
416 | d_ipv6_mreq_source='undef' | ||||
417 | d_isascii='define' | ||||
418 | d_isblank='undef' | ||||
419 | d_isfinite='undef' | ||||
420 | d_isinf='undef' | ||||
421 | d_isnan='define' | ||||
422 | d_isnanl='undef' | ||||
423 | d_killpg='define' | ||||
424 | d_lchown='undef' | ||||
425 | d_ldbl_dig='define' | ||||
426 | d_libm_lib_version='undef' | ||||
427 | d_libname_unique='undef' | ||||
428 | d_link='define' | ||||
429 | d_localtime64='undef' | ||||
430 | d_localtime_r='undef' | ||||
431 | d_localtime_r_needs_tzset='undef' | ||||
432 | d_locconv='define' | ||||
433 | d_lockf='undef' | ||||
434 | d_longdbl='define' | ||||
435 | d_longlong='define' | ||||
436 | d_lseekproto='define' | ||||
437 | d_lstat='undef' | ||||
438 | d_madvise='undef' | ||||
439 | d_malloc_good_size='undef' | ||||
440 | d_malloc_size='undef' | ||||
441 | d_mblen='define' | ||||
442 | d_mbstowcs='define' | ||||
443 | d_mbtowc='define' | ||||
444 | d_memchr='define' | ||||
445 | d_memcmp='define' | ||||
446 | d_memcpy='define' | ||||
447 | d_memmove='define' | ||||
448 | d_memset='define' | ||||
449 | d_mkdir='define' | ||||
450 | d_mkdtemp='undef' | ||||
451 | d_mkfifo='undef' | ||||
452 | d_mkstemp='undef' | ||||
453 | d_mkstemps='undef' | ||||
454 | d_mktime64='undef' | ||||
455 | d_mktime='define' | ||||
456 | d_mmap='undef' | ||||
457 | d_modfl='undef' | ||||
458 | d_modfl_pow32_bug='undef' | ||||
459 | d_modflproto='undef' | ||||
460 | d_mprotect='undef' | ||||
461 | d_msg='undef' | ||||
462 | d_msg_ctrunc='undef' | ||||
463 | d_msg_dontroute='undef' | ||||
464 | d_msg_oob='undef' | ||||
465 | d_msg_peek='undef' | ||||
466 | d_msg_proxy='undef' | ||||
467 | d_msgctl='undef' | ||||
468 | d_msgget='undef' | ||||
469 | d_msghdr_s='undef' | ||||
470 | d_msgrcv='undef' | ||||
471 | d_msgsnd='undef' | ||||
472 | d_msync='undef' | ||||
473 | d_munmap='undef' | ||||
474 | d_mymalloc='undef' | ||||
475 | d_ndbm='define' | ||||
476 | d_ndbm_h_uses_prototypes='undef' | ||||
477 | d_nice='undef' | ||||
478 | d_nl_langinfo='undef' | ||||
479 | d_nv_preserves_uv='undef' | ||||
480 | d_nv_zero_is_allbits_zero='define' | ||||
481 | d_off64_t='undef' | ||||
482 | d_old_pthread_create_joinable='undef' | ||||
483 | d_oldpthreads='undef' | ||||
484 | d_oldsock='undef' | ||||
485 | d_open3='undef' | ||||
486 | d_pathconf='undef' | ||||
487 | d_pause='define' | ||||
488 | d_perl_otherlibdirs='undef' | ||||
489 | d_phostname='undef' | ||||
490 | d_pipe='define' | ||||
491 | d_poll='undef' | ||||
492 | d_portable='define' | ||||
493 | d_prctl='undef' | ||||
494 | d_prctl_set_name='undef' | ||||
495 | d_printf_format_null='undef' | ||||
496 | d_procselfexe='undef' | ||||
497 | d_pseudofork='define' | ||||
498 | d_pthread_atfork='undef' | ||||
499 | d_pthread_attr_setscope='undef' | ||||
500 | d_pthread_yield='undef' | ||||
501 | d_pwage='undef' | ||||
502 | d_pwchange='undef' | ||||
503 | d_pwclass='undef' | ||||
504 | d_pwcomment='undef' | ||||
505 | d_pwexpire='undef' | ||||
506 | d_pwgecos='undef' | ||||
507 | d_pwpasswd='undef' | ||||
508 | d_pwquota='undef' | ||||
509 | d_qgcvt='undef' | ||||
510 | d_quad='define' | ||||
511 | d_random_r='undef' | ||||
512 | d_readdir64_r='undef' | ||||
513 | d_readdir='define' | ||||
514 | d_readdir_r='undef' | ||||
515 | d_readlink='undef' | ||||
516 | d_readv='undef' | ||||
517 | d_recvmsg='undef' | ||||
518 | d_rename='define' | ||||
519 | d_rewinddir='define' | ||||
520 | d_rmdir='define' | ||||
521 | d_safebcpy='undef' | ||||
522 | d_safemcpy='undef' | ||||
523 | d_sanemcmp='define' | ||||
524 | d_sbrkproto='undef' | ||||
525 | d_scalbnl='undef' | ||||
526 | d_sched_yield='undef' | ||||
527 | d_scm_rights='undef' | ||||
528 | d_seekdir='define' | ||||
529 | d_select='define' | ||||
530 | d_sem='undef' | ||||
531 | d_semctl='undef' | ||||
532 | d_semctl_semid_ds='undef' | ||||
533 | d_semctl_semun='undef' | ||||
534 | d_semget='undef' | ||||
535 | d_semop='undef' | ||||
536 | d_sendmsg='undef' | ||||
537 | d_setegid='undef' | ||||
538 | d_seteuid='undef' | ||||
539 | d_setgrent='undef' | ||||
540 | d_setgrent_r='undef' | ||||
541 | d_setgrps='undef' | ||||
542 | d_sethent='undef' | ||||
543 | d_sethostent_r='undef' | ||||
544 | d_setitimer='undef' | ||||
545 | d_setlinebuf='undef' | ||||
546 | d_setlocale='define' | ||||
547 | d_setlocale_r='undef' | ||||
548 | d_setnent='undef' | ||||
549 | d_setnetent_r='undef' | ||||
550 | d_setpent='undef' | ||||
551 | d_setpgid='undef' | ||||
552 | d_setpgrp2='undef' | ||||
553 | d_setpgrp='undef' | ||||
554 | d_setprior='undef' | ||||
555 | d_setproctitle='undef' | ||||
556 | d_setprotoent_r='undef' | ||||
557 | d_setpwent='undef' | ||||
558 | d_setpwent_r='undef' | ||||
559 | d_setregid='undef' | ||||
560 | d_setresgid='undef' | ||||
561 | d_setresuid='undef' | ||||
562 | d_setreuid='undef' | ||||
563 | d_setrgid='undef' | ||||
564 | d_setruid='undef' | ||||
565 | d_setsent='undef' | ||||
566 | d_setservent_r='undef' | ||||
567 | d_setsid='undef' | ||||
568 | d_setvbuf='define' | ||||
569 | d_shm='undef' | ||||
570 | d_shmat='undef' | ||||
571 | d_shmatprototype='undef' | ||||
572 | d_shmctl='undef' | ||||
573 | d_shmdt='undef' | ||||
574 | d_shmget='undef' | ||||
575 | d_sigaction='undef' | ||||
576 | d_signbit='undef' | ||||
577 | d_sigprocmask='undef' | ||||
578 | d_sigsetjmp='undef' | ||||
579 | d_sin6_scope_id='define' | ||||
580 | d_sitearch='define' | ||||
581 | d_snprintf='define' | ||||
582 | d_sockaddr_in6='undef' | ||||
583 | d_sockaddr_sa_len='undef' | ||||
584 | d_sockatmark='undef' | ||||
585 | d_sockatmarkproto='undef' | ||||
586 | d_socket='define' | ||||
587 | d_socklen_t='undef' | ||||
588 | d_sockpair='undef' | ||||
589 | d_socks5_init='undef' | ||||
590 | d_sprintf_returns_strlen='define' | ||||
591 | d_sqrtl='undef' | ||||
592 | d_srand48_r='undef' | ||||
593 | d_srandom_r='undef' | ||||
594 | d_sresgproto='undef' | ||||
595 | d_sresuproto='undef' | ||||
596 | d_statblks='undef' | ||||
597 | d_statfs_f_flags='undef' | ||||
598 | d_statfs_s='undef' | ||||
599 | d_static_inline='define' | ||||
600 | d_statvfs='undef' | ||||
601 | d_stdio_cnt_lval='define' | ||||
602 | d_stdio_ptr_lval='define' | ||||
603 | d_stdio_ptr_lval_nochange_cnt='define' | ||||
604 | d_stdio_ptr_lval_sets_cnt='undef' | ||||
605 | d_stdio_stream_array='undef' | ||||
606 | d_stdiobase='define' | ||||
607 | d_stdstdio='define' | ||||
608 | d_strchr='define' | ||||
609 | d_strcoll='define' | ||||
610 | d_strctcpy='define' | ||||
611 | d_strerrm='strerror(e)' | ||||
612 | d_strerror='define' | ||||
613 | d_strerror_r='undef' | ||||
614 | d_strftime='define' | ||||
615 | d_strlcat='undef' | ||||
616 | d_strlcpy='undef' | ||||
617 | d_strtod='define' | ||||
618 | d_strtol='define' | ||||
619 | d_strtold='undef' | ||||
620 | d_strtoll='define' | ||||
621 | d_strtoq='undef' | ||||
622 | d_strtoul='define' | ||||
623 | d_strtoull='define' | ||||
624 | d_strtouq='undef' | ||||
625 | d_strxfrm='define' | ||||
626 | d_suidsafe='undef' | ||||
627 | d_symlink='undef' | ||||
628 | d_syscall='undef' | ||||
629 | d_syscallproto='undef' | ||||
630 | d_sysconf='undef' | ||||
631 | d_sysernlst='' | ||||
632 | d_syserrlst='define' | ||||
633 | d_system='define' | ||||
634 | d_tcgetpgrp='undef' | ||||
635 | d_tcsetpgrp='undef' | ||||
636 | d_telldir='define' | ||||
637 | d_telldirproto='define' | ||||
638 | d_time='define' | ||||
639 | d_timegm='undef' | ||||
640 | d_times='define' | ||||
641 | d_tm_tm_gmtoff='undef' | ||||
642 | d_tm_tm_zone='undef' | ||||
643 | d_tmpnam_r='undef' | ||||
644 | d_truncate='undef' | ||||
645 | d_ttyname_r='undef' | ||||
646 | d_tzname='define' | ||||
647 | d_u32align='define' | ||||
648 | d_ualarm='undef' | ||||
649 | d_umask='define' | ||||
650 | d_uname='define' | ||||
651 | d_union_semun='define' | ||||
652 | d_unordered='undef' | ||||
653 | d_unsetenv='undef' | ||||
654 | d_usleep='undef' | ||||
655 | d_usleepproto='undef' | ||||
656 | d_ustat='undef' | ||||
657 | d_vendorarch='define' | ||||
658 | d_vendorbin='define' | ||||
659 | d_vendorlib='define' | ||||
660 | d_vendorscript='define' | ||||
661 | d_vfork='undef' | ||||
662 | d_void_closedir='undef' | ||||
663 | d_voidsig='define' | ||||
664 | d_voidtty='' | ||||
665 | d_volatile='define' | ||||
666 | d_vprintf='define' | ||||
667 | d_vsnprintf='define' | ||||
668 | d_wait4='undef' | ||||
669 | d_waitpid='define' | ||||
670 | d_wcstombs='define' | ||||
671 | d_wctomb='define' | ||||
672 | d_writev='undef' | ||||
673 | d_xenix='undef' | ||||
674 | date='date' | ||||
675 | db_hashtype='int' | ||||
676 | db_prefixtype='int' | ||||
677 | db_version_major='0' | ||||
678 | db_version_minor='0' | ||||
679 | db_version_patch='0' | ||||
680 | direntrytype='struct direct' | ||||
681 | dlext='xs.dll' | ||||
682 | dlltool='dlltool' | ||||
683 | dlsrc='dl_win32.xs' | ||||
684 | doublesize='8' | ||||
685 | drand01='Perl_drand48()' | ||||
686 | drand48_r_proto='0' | ||||
687 | dtrace='' | ||||
688 | dynamic_ext='B Compress/Raw/Bzip2 Compress/Raw/Zlib Cwd Data/Dumper Devel/PPPort Devel/Peek Digest/MD5 Digest/SHA Encode Fcntl File/DosGlob File/Glob Filter/Util/Call GDBM_File Hash/Util Hash/Util/FieldHash IO List/Util MIME/Base64 Math/BigInt/FastCalc NDBM_File ODBM_File Opcode POSIX PerlIO/encoding PerlIO/mmap PerlIO/scalar PerlIO/via SDBM_File Socket Storable Sys/Hostname Tie/Hash/NamedCapture Time/HiRes Time/Piece Unicode/Collate Unicode/Normalize Win32 Win32API/File XS/APItest XS/Typemap arybase attributes mro re threads threads/shared' | ||||
689 | eagain='EAGAIN' | ||||
690 | ebcdic='undef' | ||||
691 | echo='echo' | ||||
692 | egrep='egrep' | ||||
693 | emacs='' | ||||
694 | endgrent_r_proto='0' | ||||
695 | endhostent_r_proto='0' | ||||
696 | endnetent_r_proto='0' | ||||
697 | endprotoent_r_proto='0' | ||||
698 | endpwent_r_proto='0' | ||||
699 | endservent_r_proto='0' | ||||
700 | eunicefix=':' | ||||
701 | exe_ext='.exe' | ||||
702 | expr='expr' | ||||
703 | extensions='Archive/Tar Attribute/Handlers AutoLoader B B/Debug CGI CPAN CPAN/Meta CPAN/Meta/Requirements CPAN/Meta/YAML Carp Compress/Raw/Bzip2 Compress/Raw/Zlib Config/Perl/V Cwd Data/Dumper Devel/PPPort Devel/Peek Devel/SelfStubber Digest Digest/MD5 Digest/SHA Dumpvalue Encode Env Errno Exporter ExtUtils/CBuilder ExtUtils/Command ExtUtils/Constant ExtUtils/Install ExtUtils/MakeMaker ExtUtils/Manifest ExtUtils/Miniperl ExtUtils/ParseXS Fcntl File/DosGlob File/Fetch File/Find File/Glob File/Path File/Temp FileCache Filter/Simple Filter/Util/Call GDBM_File Getopt/Long HTTP/Tiny Hash/Util Hash/Util/FieldHash I18N/Collate I18N/LangTags IO IO/Compress IO/Socket/IP IO/Zlib IPC/Cmd IPC/Open3 JSON/PP List/Util Locale/Codes Locale/Maketext Locale/Maketext/Simple MIME/Base64 Math/BigInt Math/BigInt/FastCalc Math/BigRat Math/Complex Memoize Module/Build Module/CoreList Module/Load Module/Load/Conditional Module/Loaded Module/Metadata NDBM_File NEXT Net/Ping ODBM_File Opcode POSIX Package/Constants Params/Check Parse/CPAN/Meta Perl/OSType PerlIO/encoding PerlIO/mmap PerlIO/scalar PerlIO/via PerlIO/via/QuotedPrint Pod/Checker Pod/Escapes Pod/Functions Pod/Html Pod/Parser Pod/Perldoc Pod/Simple Pod/Usage SDBM_File Safe Search/Dict SelfLoader Socket Storable Sys/Hostname Term/ANSIColor Term/Cap Term/Complete Term/ReadLine Test Test/Harness Test/Simple Text/Abbrev Text/Balanced Text/ParseWords Text/Tabs Thread/Queue Thread/Semaphore Tie/File Tie/Hash/NamedCapture Tie/Memoize Tie/RefHash Time/HiRes Time/Local Time/Piece Unicode/Collate Unicode/Normalize Win32 Win32API/File Win32CORE XS/APItest XS/Typemap XSLoader arybase attributes autodie autouse base bignum constant encoding/warnings experimental if lib libnet mro parent perlfaq podlators re threads threads/shared version' | ||||
704 | extern_C='extern' | ||||
705 | extras='' | ||||
706 | fflushNULL='define' | ||||
707 | fflushall='undef' | ||||
708 | find='find' | ||||
709 | firstmakefile='makefile' | ||||
710 | flex='' | ||||
711 | fpossize='8' | ||||
712 | fpostype='fpos_t' | ||||
713 | freetype='void' | ||||
714 | from=':' | ||||
715 | full_ar='' | ||||
716 | full_csh='' | ||||
717 | full_sed='' | ||||
718 | gccansipedantic='' | ||||
719 | gccosandvers='' | ||||
720 | gccversion='4.8.3' | ||||
721 | getgrent_r_proto='0' | ||||
722 | getgrgid_r_proto='0' | ||||
723 | getgrnam_r_proto='0' | ||||
724 | gethostbyaddr_r_proto='0' | ||||
725 | gethostbyname_r_proto='0' | ||||
726 | gethostent_r_proto='0' | ||||
727 | getlogin_r_proto='0' | ||||
728 | getnetbyaddr_r_proto='0' | ||||
729 | getnetbyname_r_proto='0' | ||||
730 | getnetent_r_proto='0' | ||||
731 | getprotobyname_r_proto='0' | ||||
732 | getprotobynumber_r_proto='0' | ||||
733 | getprotoent_r_proto='0' | ||||
734 | getpwent_r_proto='0' | ||||
735 | getpwnam_r_proto='0' | ||||
736 | getpwuid_r_proto='0' | ||||
737 | getservbyname_r_proto='0' | ||||
738 | getservbyport_r_proto='0' | ||||
739 | getservent_r_proto='0' | ||||
740 | getspnam_r_proto='0' | ||||
741 | gidformat='"ld"' | ||||
742 | gidsign='-1' | ||||
743 | gidsize='4' | ||||
744 | gidtype='gid_t' | ||||
745 | glibpth='/usr/shlib /lib/pa1.1 /usr/lib/large /lib /usr/lib /usr/lib/386 /lib/386 /lib/large /usr/lib/small /lib/small /usr/ccs/lib /usr/ucblib /usr/shlib ' | ||||
746 | gmake='gmake' | ||||
747 | gmtime_r_proto='0' | ||||
748 | gnulibc_version='' | ||||
749 | grep='grep' | ||||
750 | groupcat='' | ||||
751 | groupstype='gid_t' | ||||
752 | gzip='gzip' | ||||
753 | h_fcntl='false' | ||||
754 | h_sysfile='true' | ||||
755 | hint='recommended' | ||||
756 | hostcat='ypcat hosts' | ||||
757 | html1dir=' ' | ||||
758 | html1direxp='' | ||||
759 | html3dir=' ' | ||||
760 | html3direxp='' | ||||
761 | i16size='2' | ||||
762 | i16type='short' | ||||
763 | i32size='4' | ||||
764 | i32type='long' | ||||
765 | i64size='8' | ||||
766 | i64type='long long' | ||||
767 | i8size='1' | ||||
768 | i8type='char' | ||||
769 | i_arpainet='define' | ||||
770 | i_assert='define' | ||||
771 | i_bsdioctl='' | ||||
772 | i_crypt='undef' | ||||
773 | i_db='define' | ||||
774 | i_dbm='define' | ||||
775 | i_dirent='define' | ||||
776 | i_dlfcn='undef' | ||||
777 | i_fcntl='define' | ||||
778 | i_float='define' | ||||
779 | i_fp='undef' | ||||
780 | i_fp_class='undef' | ||||
781 | i_gdbm='define' | ||||
782 | i_gdbm_ndbm='undef' | ||||
783 | i_gdbmndbm='undef' | ||||
784 | i_grp='undef' | ||||
785 | i_ieeefp='undef' | ||||
786 | i_inttypes='undef' | ||||
787 | i_langinfo='undef' | ||||
788 | i_libutil='undef' | ||||
789 | i_limits='define' | ||||
790 | i_locale='define' | ||||
791 | i_machcthr='undef' | ||||
792 | i_malloc='define' | ||||
793 | i_mallocmalloc='undef' | ||||
794 | i_math='define' | ||||
795 | i_memory='undef' | ||||
796 | i_mntent='undef' | ||||
797 | i_ndbm='define' | ||||
798 | i_netdb='undef' | ||||
799 | i_neterrno='undef' | ||||
800 | i_netinettcp='undef' | ||||
801 | i_niin='undef' | ||||
802 | i_poll='undef' | ||||
803 | i_prot='undef' | ||||
804 | i_pthread='undef' | ||||
805 | i_pwd='undef' | ||||
806 | i_rpcsvcdbm='undef' | ||||
807 | i_sgtty='undef' | ||||
808 | i_shadow='undef' | ||||
809 | i_socks='undef' | ||||
810 | i_stdarg='define' | ||||
811 | i_stdbool='define' | ||||
812 | i_stddef='define' | ||||
813 | i_stdlib='define' | ||||
814 | i_string='define' | ||||
815 | i_sunmath='undef' | ||||
816 | i_sysaccess='undef' | ||||
817 | i_sysdir='undef' | ||||
818 | i_sysfile='undef' | ||||
819 | i_sysfilio='define' | ||||
820 | i_sysin='undef' | ||||
821 | i_sysioctl='undef' | ||||
822 | i_syslog='undef' | ||||
823 | i_sysmman='undef' | ||||
824 | i_sysmode='undef' | ||||
825 | i_sysmount='undef' | ||||
826 | i_sysndir='undef' | ||||
827 | i_sysparam='undef' | ||||
828 | i_syspoll='undef' | ||||
829 | i_sysresrc='undef' | ||||
830 | i_syssecrt='undef' | ||||
831 | i_sysselct='undef' | ||||
832 | i_syssockio='undef' | ||||
833 | i_sysstat='define' | ||||
834 | i_sysstatfs='undef' | ||||
835 | i_sysstatvfs='undef' | ||||
836 | i_systime='undef' | ||||
837 | i_systimek='undef' | ||||
838 | i_systimes='undef' | ||||
839 | i_systypes='define' | ||||
840 | i_sysuio='undef' | ||||
841 | i_sysun='undef' | ||||
842 | i_sysutsname='undef' | ||||
843 | i_sysvfs='undef' | ||||
844 | i_syswait='undef' | ||||
845 | i_termio='undef' | ||||
846 | i_termios='undef' | ||||
847 | i_time='define' | ||||
848 | i_unistd='undef' | ||||
849 | i_ustat='undef' | ||||
850 | i_utime='define' | ||||
851 | i_values='undef' | ||||
852 | i_varargs='undef' | ||||
853 | i_varhdr='varargs.h' | ||||
854 | i_vfork='undef' | ||||
855 | ignore_versioned_solibs='' | ||||
856 | inc_version_list='' | ||||
857 | inc_version_list_init='0' | ||||
858 | incpath='C:\strawberry\c\include' | ||||
859 | inews='' | ||||
860 | initialinstalllocation='' | ||||
861 | installarchlib='C:\strawberry\perl\lib' | ||||
862 | installbin='C:\strawberry\perl\bin' | ||||
863 | installhtml1dir='' | ||||
864 | installhtml3dir='' | ||||
865 | installhtmldir='' | ||||
866 | installhtmlhelpdir='' | ||||
867 | installman1dir='' | ||||
868 | installman3dir='' | ||||
869 | installprefix='C:\strawberry\perl' | ||||
870 | installprefixexp='C:\strawberry\perl' | ||||
871 | installprivlib='C:\strawberry\perl\lib' | ||||
872 | installscript='C:\strawberry\perl\bin' | ||||
873 | installsitearch='C:\strawberry\perl\site\lib' | ||||
874 | installsitebin='C:\strawberry\perl\site\bin' | ||||
875 | installsitehtml1dir='' | ||||
876 | installsitehtml3dir='' | ||||
877 | installsitelib='C:\strawberry\perl\site\lib' | ||||
878 | installsiteman1dir='' | ||||
879 | installsiteman3dir='' | ||||
880 | installsitescript='C:\strawberry\perl\site\bin' | ||||
881 | installstyle='lib' | ||||
882 | installusrbinperl='undef' | ||||
883 | installvendorarch='C:\strawberry\perl\vendor\lib' | ||||
884 | installvendorbin='C:\strawberry\perl\bin' | ||||
885 | installvendorhtml1dir='' | ||||
886 | installvendorhtml3dir='' | ||||
887 | installvendorlib='C:\strawberry\perl\vendor\lib' | ||||
888 | installvendorman1dir='' | ||||
889 | installvendorman3dir='' | ||||
890 | installvendorscript='C:\strawberry\perl\bin' | ||||
891 | intsize='4' | ||||
892 | issymlink='' | ||||
893 | ivdformat='"I64d"' | ||||
894 | ivsize='8' | ||||
895 | ivtype='long long' | ||||
896 | known_extensions='Archive/Tar Attribute/Handlers AutoLoader B B/Debug CGI CPAN CPAN/Meta CPAN/Meta/Requirements CPAN/Meta/YAML Carp Compress/Raw/Bzip2 Compress/Raw/Zlib Config/Perl/V Cwd DB_File Data/Dumper Devel/PPPort Devel/Peek Devel/SelfStubber Digest Digest/MD5 Digest/SHA Dumpvalue Encode Env Errno Exporter ExtUtils/CBuilder ExtUtils/Command ExtUtils/Constant ExtUtils/Install ExtUtils/MakeMaker ExtUtils/Manifest ExtUtils/Miniperl ExtUtils/ParseXS Fcntl File/DosGlob File/Fetch File/Find File/Glob File/Path File/Temp FileCache Filter/Simple Filter/Util/Call GDBM_File Getopt/Long HTTP/Tiny Hash/Util Hash/Util/FieldHash I18N/Collate I18N/LangTags I18N/Langinfo IO IO/Compress IO/Socket/IP IO/Zlib IPC/Cmd IPC/Open3 IPC/SysV JSON/PP List/Util Locale/Codes Locale/Maketext Locale/Maketext/Simple MIME/Base64 Math/BigInt Math/BigInt/FastCalc Math/BigRat Math/Complex Memoize Module/Build Module/CoreList Module/Load Module/Load/Conditional Module/Loaded Module/Metadata NDBM_File NEXT Net/Ping ODBM_File Opcode POSIX Package/Constants Params/Check Parse/CPAN/Meta Perl/OSType PerlIO/encoding PerlIO/mmap PerlIO/scalar PerlIO/via PerlIO/via/QuotedPrint Pod/Checker Pod/Escapes Pod/Functions Pod/Html Pod/Parser Pod/Perldoc Pod/Simple Pod/Usage SDBM_File Safe Search/Dict SelfLoader Socket Storable Sys/Hostname Sys/Syslog Term/ANSIColor Term/Cap Term/Complete Term/ReadLine Test Test/Harness Test/Simple Text/Abbrev Text/Balanced Text/ParseWords Text/Tabs Thread/Queue Thread/Semaphore Tie/File Tie/Hash/NamedCapture Tie/Memoize Tie/RefHash Time/HiRes Time/Local Time/Piece Unicode/Collate Unicode/Normalize VMS/DCLsym VMS/Filespec VMS/Stdio Win32 Win32API/File Win32CORE XS/APItest XS/Typemap XSLoader arybase attributes autodie autouse base bignum constant encoding/warnings experimental if lib libnet mro parent perlfaq podlators re threads threads/shared version' | ||||
897 | ksh='' | ||||
898 | ld='g++' | ||||
899 | lddlflags='-mdll -s -L"C:\strawberry\perl\lib\CORE" -L"C:\strawberry\c\lib"' | ||||
900 | ldflags='-s -L"C:\strawberry\perl\lib\CORE" -L"C:\strawberry\c\lib"' | ||||
901 | ldflags_uselargefiles='' | ||||
902 | ldlibpthname='' | ||||
903 | less='less' | ||||
904 | lib_ext='.a' | ||||
905 | libc='' | ||||
906 | libperl='libperl520.a' | ||||
907 | libpth='C:\strawberry\c\lib C:\strawberry\c\x86_64-w64-mingw32\lib C:\strawberry\c\lib\gcc\x86_64-w64-mingw32\4.8.3' | ||||
908 | libs='-lmoldname -lkernel32 -luser32 -lgdi32 -lwinspool -lcomdlg32 -ladvapi32 -lshell32 -lole32 -loleaut32 -lnetapi32 -luuid -lws2_32 -lmpr -lwinmm -lversion -lodbc32 -lodbccp32 -lcomctl32' | ||||
909 | libsdirs='' | ||||
910 | libsfiles='' | ||||
911 | libsfound='' | ||||
912 | libspath='' | ||||
913 | libswanted='net socket inet nsl nm ndbm gdbm dbm db malloc dl ld sun m c cposix posix ndir dir crypt ucb bsd BSD PW x' | ||||
914 | libswanted_uselargefiles='net socket inet nsl nm ndbm gdbm dbm db malloc dl ld sun m c cposix posix ndir dir crypt ucb bsd BSD PW x' | ||||
915 | line='line' | ||||
916 | lint='' | ||||
917 | lkflags='' | ||||
918 | ln='' | ||||
919 | lns='copy' | ||||
920 | localtime_r_proto='0' | ||||
921 | locincpth='/usr/local/include /opt/local/include /usr/gnu/include /opt/gnu/include /usr/GNU/include /opt/GNU/include' | ||||
922 | loclibpth='/usr/local/lib /opt/local/lib /usr/gnu/lib /opt/gnu/lib /usr/GNU/lib /opt/GNU/lib' | ||||
923 | longdblsize='12' | ||||
924 | longlongsize='8' | ||||
925 | longsize='4' | ||||
926 | lp='' | ||||
927 | lpr='' | ||||
928 | ls='dir' | ||||
929 | lseeksize='8' | ||||
930 | lseektype='long long' | ||||
931 | mad='undef' | ||||
932 | madlyh='' | ||||
933 | madlyobj='' | ||||
934 | madlysrc='' | ||||
935 | mail='' | ||||
936 | mailx='' | ||||
937 | make='gmake' | ||||
938 | make_set_make='#' | ||||
939 | mallocobj='malloc.o' | ||||
940 | mallocsrc='malloc.c' | ||||
941 | malloctype='void *' | ||||
942 | man1dir='' | ||||
943 | man1direxp='' | ||||
944 | man1ext='1' | ||||
945 | man3dir='' | ||||
946 | man3direxp='' | ||||
947 | man3ext='3' | ||||
948 | mips_type='' | ||||
949 | mistrustnm='' | ||||
950 | mkdir='mkdir' | ||||
951 | mmaptype='void *' | ||||
952 | modetype='mode_t' | ||||
953 | more='more /e' | ||||
954 | multiarch='undef' | ||||
955 | mv='' | ||||
956 | myarchname='MSWin32' | ||||
957 | mydomain='' | ||||
958 | myhostname='' | ||||
959 | myuname='Win32 strawberry-perl 5.20.2.1 #1 Sat Feb 21 18:04:11 2015 x64' | ||||
960 | n='-n' | ||||
961 | need_va_copy='undef' | ||||
962 | netdb_hlen_type='int' | ||||
963 | netdb_host_type='char *' | ||||
964 | netdb_name_type='char *' | ||||
965 | netdb_net_type='long' | ||||
966 | nm='nm' | ||||
967 | nm_opt='' | ||||
968 | nm_so_opt='' | ||||
969 | nonxs_ext='Archive/Tar Attribute/Handlers AutoLoader B/Debug CGI CPAN CPAN/Meta CPAN/Meta/Requirements CPAN/Meta/YAML Carp Config/Perl/V Devel/SelfStubber Digest Dumpvalue Env Errno Exporter ExtUtils/CBuilder ExtUtils/Command ExtUtils/Constant ExtUtils/Install ExtUtils/MakeMaker ExtUtils/Manifest ExtUtils/Miniperl ExtUtils/ParseXS File/Fetch File/Find File/Path File/Temp FileCache Filter/Simple Getopt/Long HTTP/Tiny I18N/Collate I18N/LangTags IO/Compress IO/Socket/IP IO/Zlib IPC/Cmd IPC/Open3 JSON/PP Locale/Codes Locale/Maketext Locale/Maketext/Simple Math/BigInt Math/BigRat Math/Complex Memoize Module/Build Module/CoreList Module/Load Module/Load/Conditional Module/Loaded Module/Metadata NEXT Net/Ping Package/Constants Params/Check Parse/CPAN/Meta Perl/OSType PerlIO/via/QuotedPrint Pod/Checker Pod/Escapes Pod/Functions Pod/Html Pod/Parser Pod/Perldoc Pod/Simple Pod/Usage Safe Search/Dict SelfLoader Term/ANSIColor Term/Cap Term/Complete Term/ReadLine Test Test/Harness Test/Simple Text/Abbrev Text/Balanced Text/ParseWords Text/Tabs Thread/Queue Thread/Semaphore Tie/File Tie/Memoize Tie/RefHash Time/Local XSLoader autodie autouse base bignum constant encoding/warnings experimental if lib libnet parent perlfaq podlators version' | ||||
970 | nroff='' | ||||
971 | nvEUformat='"E"' | ||||
972 | nvFUformat='"F"' | ||||
973 | nvGUformat='"G"' | ||||
974 | nv_overflows_integers_at='256.0*256.0*256.0*256.0*256.0*256.0*2.0*2.0*2.0*2.0*2.0' | ||||
975 | nv_preserves_uv_bits='53' | ||||
976 | nveformat='"e"' | ||||
977 | nvfformat='"f"' | ||||
978 | nvgformat='"g"' | ||||
979 | nvsize='8' | ||||
980 | nvtype='double' | ||||
981 | o_nonblock='O_NONBLOCK' | ||||
982 | obj_ext='.o' | ||||
983 | old_pthread_create_joinable='' | ||||
984 | optimize='-s -O2' | ||||
985 | orderlib='false' | ||||
986 | osname='MSWin32' | ||||
987 | osvers='6.3' | ||||
988 | otherlibdirs='' | ||||
989 | package='perl5' | ||||
990 | pager='more /e' | ||||
991 | passcat='' | ||||
992 | patchlevel='20' | ||||
993 | path_sep=';' | ||||
994 | perl5='' | ||||
995 | perl='perl' | ||||
996 | perl_patchlevel='' | ||||
997 | perl_static_inline='static __inline__' | ||||
998 | perladmin='' | ||||
999 | perllibs='-lmoldname -lkernel32 -luser32 -lgdi32 -lwinspool -lcomdlg32 -ladvapi32 -lshell32 -lole32 -loleaut32 -lnetapi32 -luuid -lws2_32 -lmpr -lwinmm -lversion -lodbc32 -lodbccp32 -lcomctl32' | ||||
1000 | perlpath='C:\strawberry\perl\bin\perl.exe' | ||||
1001 | pg='' | ||||
1002 | phostname='hostname' | ||||
1003 | pidtype='int' | ||||
1004 | plibpth='' | ||||
1005 | pmake='' | ||||
1006 | pr='' | ||||
1007 | prefix='C:\strawberry\perl' | ||||
1008 | prefixexp='C:\strawberry\perl' | ||||
1009 | privlib='C:\strawberry\perl\lib' | ||||
1010 | privlibexp='C:\strawberry\perl\lib' | ||||
1011 | procselfexe='' | ||||
1012 | prototype='define' | ||||
1013 | ptrsize='8' | ||||
1014 | quadkind='3' | ||||
1015 | quadtype='long long' | ||||
1016 | randbits='48' | ||||
1017 | randfunc='Perl_drand48' | ||||
1018 | random_r_proto='0' | ||||
1019 | randseedtype='U32' | ||||
1020 | ranlib='rem' | ||||
1021 | rd_nodata='-1' | ||||
1022 | readdir64_r_proto='0' | ||||
1023 | readdir_r_proto='0' | ||||
1024 | revision='5' | ||||
1025 | rm='del' | ||||
1026 | rm_try='' | ||||
1027 | rmail='' | ||||
1028 | run='' | ||||
1029 | runnm='true' | ||||
1030 | sGMTIME_max="2147483647" | ||||
1031 | sGMTIME_min="0" | ||||
1032 | sLOCALTIME_max="2147483647" | ||||
1033 | sLOCALTIME_min="0" | ||||
1034 | sPRIEUldbl='"E"' | ||||
1035 | sPRIFUldbl='"F"' | ||||
1036 | sPRIGUldbl='"G"' | ||||
1037 | sPRIXU64='"I64X"' | ||||
1038 | sPRId64='"I64d"' | ||||
1039 | sPRIeldbl='"e"' | ||||
1040 | sPRIfldbl='"f"' | ||||
1041 | sPRIgldbl='"g"' | ||||
1042 | sPRIi64='"I64i"' | ||||
1043 | sPRIo64='"I64o"' | ||||
1044 | sPRIu64='"I64u"' | ||||
1045 | sPRIx64='"I64x"' | ||||
1046 | sSCNfldbl='"f"' | ||||
1047 | sched_yield='' | ||||
1048 | scriptdir='C:\strawberry\perl\bin' | ||||
1049 | scriptdirexp='C:\strawberry\perl\bin' | ||||
1050 | sed='sed' | ||||
1051 | seedfunc='Perl_drand48_init' | ||||
1052 | selectminbits='32' | ||||
1053 | selecttype='Perl_fd_set *' | ||||
1054 | sendmail='blat' | ||||
1055 | setgrent_r_proto='0' | ||||
1056 | sethostent_r_proto='0' | ||||
1057 | setlocale_r_proto='0' | ||||
1058 | setnetent_r_proto='0' | ||||
1059 | setprotoent_r_proto='0' | ||||
1060 | setpwent_r_proto='0' | ||||
1061 | setservent_r_proto='0' | ||||
1062 | sh='cmd /x /c' | ||||
1063 | shar='' | ||||
1064 | sharpbang='#!' | ||||
1065 | shmattype='void *' | ||||
1066 | shortsize='2' | ||||
1067 | shrpenv='' | ||||
1068 | shsharp='true' | ||||
1069 | sig_count='26' | ||||
1070 | sig_name='ZERO HUP INT QUIT ILL NUM05 NUM06 NUM07 FPE KILL NUM10 SEGV NUM12 PIPE ALRM TERM NUM16 NUM17 NUM18 NUM19 CHLD BREAK ABRT STOP NUM24 CONT CLD' | ||||
1071 | sig_name_init='"ZERO", "HUP", "INT", "QUIT", "ILL", "NUM05", "NUM06", "NUM07", "FPE", "KILL", "NUM10", "SEGV", "NUM12", "PIPE", "ALRM", "TERM", "NUM16", "NUM17", "NUM18", "NUM19", "CHLD", "BREAK", "ABRT", "STOP", "NUM24", "CONT", "CLD", 0' | ||||
1072 | sig_num='0 1 2 21 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 20' | ||||
1073 | sig_num_init='0, 1, 2, 21, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 20, 0' | ||||
1074 | sig_size='27' | ||||
1075 | signal_t='void' | ||||
1076 | sitearch='C:\strawberry\perl\site\lib' | ||||
1077 | sitearchexp='C:\strawberry\perl\site\lib' | ||||
1078 | sitebin='C:\strawberry\perl\site\bin' | ||||
1079 | sitebinexp='C:\strawberry\perl\site\bin' | ||||
1080 | sitehtml1dir='' | ||||
1081 | sitehtml1direxp='' | ||||
1082 | sitehtml3dir='' | ||||
1083 | sitehtml3direxp='' | ||||
1084 | sitelib='C:\strawberry\perl\site\lib' | ||||
1085 | sitelib_stem='' | ||||
1086 | sitelibexp='C:\strawberry\perl\site\lib' | ||||
1087 | siteman1dir='' | ||||
1088 | siteman1direxp='' | ||||
1089 | siteman3dir='' | ||||
1090 | siteman3direxp='' | ||||
1091 | siteprefix='C:\strawberry\perl\site' | ||||
1092 | siteprefixexp='C:\strawberry\perl\site' | ||||
1093 | sitescript='C:\strawberry\perl\site\bin' | ||||
1094 | sitescriptexp='C:\strawberry\perl\site\bin' | ||||
1095 | sizesize='8' | ||||
1096 | sizetype='size_t' | ||||
1097 | sleep='' | ||||
1098 | smail='' | ||||
1099 | so='dll' | ||||
1100 | sockethdr='' | ||||
1101 | socketlib='' | ||||
1102 | socksizetype='int' | ||||
1103 | sort='sort' | ||||
1104 | spackage='Perl5' | ||||
1105 | spitshell='' | ||||
1106 | srand48_r_proto='0' | ||||
1107 | srandom_r_proto='0' | ||||
1108 | src='' | ||||
1109 | ssizetype='long long' | ||||
1110 | st_ino_sign='1' | ||||
1111 | st_ino_size='8' | ||||
1112 | startperl='#!perl' | ||||
1113 | startsh='#!/bin/sh' | ||||
1114 | static_ext='Win32CORE' | ||||
1115 | stdchar='char' | ||||
1116 | stdio_base='((fp)->_base)' | ||||
1117 | stdio_bufsiz='((fp)->_cnt + (fp)->_ptr - (fp)->_base)' | ||||
1118 | stdio_cnt='((fp)->_cnt)' | ||||
1119 | stdio_filbuf='' | ||||
1120 | stdio_ptr='((fp)->_ptr)' | ||||
1121 | stdio_stream_array='' | ||||
1122 | strerror_r_proto='0' | ||||
1123 | strings='/usr/include/string.h' | ||||
1124 | submit='' | ||||
1125 | subversion='2' | ||||
1126 | sysman='/usr/man/man1' | ||||
1127 | tail='' | ||||
1128 | tar='' | ||||
1129 | targetarch='' | ||||
1130 | targetsh='cmd /x /c' | ||||
1131 | tbl='' | ||||
1132 | tee='' | ||||
1133 | test='' | ||||
1134 | timeincl='/usr/include/sys/time.h ' | ||||
1135 | timetype='time_t' | ||||
1136 | tmpnam_r_proto='0' | ||||
1137 | to=':' | ||||
1138 | touch='touch' | ||||
1139 | tr='' | ||||
1140 | trnl='\012' | ||||
1141 | troff='' | ||||
1142 | ttyname_r_proto='0' | ||||
1143 | u16size='2' | ||||
1144 | u16type='unsigned short' | ||||
1145 | u32size='4' | ||||
1146 | u32type='unsigned long' | ||||
1147 | u64size='8' | ||||
1148 | u64type='unsigned long long' | ||||
1149 | u8size='1' | ||||
1150 | u8type='unsigned char' | ||||
1151 | uidformat='"ld"' | ||||
1152 | uidsign='-1' | ||||
1153 | uidsize='4' | ||||
1154 | uidtype='uid_t' | ||||
1155 | uname='uname' | ||||
1156 | uniq='uniq' | ||||
1157 | uquadtype='unsigned long long' | ||||
1158 | use5005threads='undef' | ||||
1159 | use64bitall='undef' | ||||
1160 | use64bitint='define' | ||||
1161 | usecrosscompile='undef' | ||||
1162 | usedevel='undef' | ||||
1163 | usedl='define' | ||||
1164 | usedtrace='undef' | ||||
1165 | usefaststdio='undef' | ||||
1166 | useithreads='define' | ||||
1167 | usekernprocpathname='undef' | ||||
1168 | uselargefiles='define' | ||||
1169 | uselongdouble='undef' | ||||
1170 | usemallocwrap='define' | ||||
1171 | usemorebits='undef' | ||||
1172 | usemultiplicity='define' | ||||
1173 | usemymalloc='n' | ||||
1174 | usenm='false' | ||||
1175 | usensgetexecutablepath='undef' | ||||
1176 | useopcode='true' | ||||
1177 | useperlio='define' | ||||
1178 | useposix='true' | ||||
1179 | usereentrant='undef' | ||||
1180 | userelocatableinc='undef' | ||||
1181 | useshrplib='true' | ||||
1182 | usesitecustomize='undef' | ||||
1183 | usesocks='undef' | ||||
1184 | usethreads='define' | ||||
1185 | usevendorprefix='define' | ||||
1186 | usevfork='false' | ||||
1187 | usrinc='C:\strawberry\c\include' | ||||
1188 | uuname='' | ||||
1189 | uvXUformat='"I64X"' | ||||
1190 | uvoformat='"I64o"' | ||||
1191 | uvsize='8' | ||||
1192 | uvtype='unsigned long long' | ||||
1193 | uvuformat='"I64u"' | ||||
1194 | uvxformat='"I64x"' | ||||
1195 | vaproto='undef' | ||||
1196 | vendorarch='C:\strawberry\perl\vendor\lib' | ||||
1197 | vendorarchexp='C:\strawberry\perl\vendor\lib' | ||||
1198 | vendorbin='C:\strawberry\perl\bin' | ||||
1199 | vendorbinexp='C:\strawberry\perl\bin' | ||||
1200 | vendorhtml1dir=' ' | ||||
1201 | vendorhtml1direxp='' | ||||
1202 | vendorhtml3dir=' ' | ||||
1203 | vendorhtml3direxp='' | ||||
1204 | vendorlib='C:\strawberry\perl\vendor\lib' | ||||
1205 | vendorlib_stem='' | ||||
1206 | vendorlibexp='C:\strawberry\perl\vendor\lib' | ||||
1207 | vendorman1dir=' ' | ||||
1208 | vendorman1direxp='' | ||||
1209 | vendorman3dir=' ' | ||||
1210 | vendorman3direxp='' | ||||
1211 | vendorprefix='C:\strawberry\perl\vendor' | ||||
1212 | vendorprefixexp='C:\strawberry\perl\vendor' | ||||
1213 | vendorscript='C:\strawberry\perl\bin' | ||||
1214 | vendorscriptexp='C:\strawberry\perl\bin' | ||||
1215 | version='5.20.2' | ||||
1216 | version_patchlevel_string='version 20 subversion 2' | ||||
1217 | versiononly='undef' | ||||
1218 | vi='' | ||||
1219 | xlibpth='/usr/lib/386 /lib/386' | ||||
1220 | yacc='yacc' | ||||
1221 | yaccflags='' | ||||
1222 | zcat='' | ||||
1223 | zip='zip' | ||||
1224 | !END! | ||||
1225 | |||||
1226 | 1 | 0s | my $i = ord(8); | ||
1227 | 15 | 0s | foreach my $c (7,6,5,4,3,2,1) { $i <<= 8; $i |= ord($c); } | ||
1228 | 1 | 0s | 2 | 0s | our $byteorder = join('', unpack('aaaaaaaa', pack('Q', $i))); # spent 0s making 1 call to Config::CORE:pack
# spent 0s making 1 call to Config::CORE:unpack |
1229 | 1 | 0s | 3 | 0s | s/(byteorder=)(['"]).*?\2/$1$2$Config::byteorder$2/m; # spent 0s making 1 call to Config::CORE:subst
# spent 0s making 2 calls to Config::CORE:substcont, avg 0s/call |
1230 | |||||
1231 | 1 | 0s | my $config_sh_len = length $_; | ||
1232 | |||||
1233 | 1 | 0s | our $Config_SH_expanded = "\n$_" . << 'EOVIRTUAL'; | ||
1234 | ccflags_nolargefiles=' -s -O2 -DWIN32 -DWIN64 -DCONSERVATIVE -DPERL_TEXTMODE_SCRIPTS -DPERL_IMPLICIT_CONTEXT -DPERL_IMPLICIT_SYS -DUSE_PERLIO -fwrapv -fno-strict-aliasing -mms-bitfields' | ||||
1235 | ldflags_nolargefiles='-s -L"C:\strawberry\perl\lib\CORE" -L"C:\strawberry\c\lib"' | ||||
1236 | libs_nolargefiles='-lmoldname -lkernel32 -luser32 -lgdi32 -lwinspool -lcomdlg32 -ladvapi32 -lshell32 -lole32 -loleaut32 -lnetapi32 -luuid -lws2_32 -lmpr -lwinmm -lversion -lodbc32 -lodbccp32 -lcomctl32' | ||||
1237 | libswanted_nolargefiles='' | ||||
1238 | EOVIRTUAL | ||||
1239 | 1 | 0s | eval { | ||
1240 | # do not have hairy conniptions if this isnt available | ||||
1241 | 1 | 0s | require 'Config_git.pl'; | ||
1242 | 1 | 0s | $Config_SH_expanded .= $Config::Git_Data; | ||
1243 | 1 | 0s | 1; | ||
1244 | } or warn "Warning: failed to load Config_git.pl, something strange about this perl...\n"; | ||||
1245 | |||||
1246 | # Search for it in the big string | ||||
1247 | # spent 15.6ms within Config::fetch_string which was called 1080 times, avg 14µs/call:
# 1080 times (15.6ms+0s) by Config::FETCH at line 70 of Config.pm, avg 14µs/call | ||||
1248 | 1080 | 0s | my($self, $key) = @_; | ||
1249 | |||||
1250 | 1080 | 0s | 2160 | 0s | return undef unless my ($quote_type, $value) = $Config_SH_expanded =~ /\n$key=(['"])(.*?)\1\n/s; # spent 0s making 1080 calls to Config::CORE:match, avg 0s/call
# spent 0s making 1080 calls to Config::CORE:regcomp, avg 0s/call |
1251 | |||||
1252 | # If we had a double-quote, we'd better eval it so escape | ||||
1253 | # sequences and such can be interpolated. Since the incoming | ||||
1254 | # value is supposed to follow shell rules and not perl rules, | ||||
1255 | # we escape any perl variable markers | ||||
1256 | |||||
1257 | # Historically, since " 'support' was added in change 1409, the | ||||
1258 | # interpolation was done before the undef. Stick to this arguably buggy | ||||
1259 | # behaviour as we're refactoring. | ||||
1260 | 1080 | 0s | if ($quote_type eq '"') { | ||
1261 | 4 | 0s | 4 | 0s | $value =~ s/\$/\\\$/g; # spent 0s making 4 calls to Config::CORE:subst, avg 0s/call |
1262 | 4 | 0s | 4 | 0s | $value =~ s/\@/\\\@/g; # spent 0s making 4 calls to Config::CORE:subst, avg 0s/call |
1263 | 4 | 0s | eval "\$value = \"$value\""; # spent 0s executing statements in 2 string evals (merged)
# spent 0s executing statements in 2 string evals (merged) | ||
1264 | } | ||||
1265 | |||||
1266 | # So we can say "if $Config{'foo'}". | ||||
1267 | 1080 | 0s | $self->{$key} = $value eq 'undef' ? undef : $value; # cache it | ||
1268 | } | ||||
1269 | |||||
1270 | 1 | 0s | my $prevpos = 0; | ||
1271 | |||||
1272 | # spent 0s within Config::FIRSTKEY which was called 3 times, avg 0s/call:
# once (0s+0s) by ExtUtils::MakeMaker::BEGIN@9 at line 10 of ExtUtils/MakeMaker/Config.pm
# once (0s+0s) by Portable::Config::apply at line 84 of Portable/Config.pm
# once (0s+0s) by Portable::Config::apply at line 1334 | ||||
1273 | 3 | 0s | $prevpos = 0; | ||
1274 | 3 | 0s | substr($Config_SH_expanded, 1, index($Config_SH_expanded, '=') - 1 ); | ||
1275 | } | ||||
1276 | |||||
1277 | # spent 15.6ms within Config::NEXTKEY which was called 3309 times, avg 5µs/call:
# 1103 times (15.6ms+0s) by Portable::Config::apply at line 60 of Portable/Config.pm, avg 14µs/call
# 1103 times (0s+0s) by ExtUtils::MakeMaker::BEGIN@9 at line 10 of ExtUtils/MakeMaker/Config.pm, avg 0s/call
# 1103 times (0s+0s) by Portable::Config::apply at line 84 of Portable/Config.pm, avg 0s/call | ||||
1278 | # Find out how the current key's quoted so we can skip to its end. | ||||
1279 | 3309 | 0s | my $quote = substr($Config_SH_expanded, | ||
1280 | index($Config_SH_expanded, "=", $prevpos)+1, 1); | ||||
1281 | 3309 | 0s | my $pos = index($Config_SH_expanded, qq($quote\n), $prevpos) + 2; | ||
1282 | 3309 | 0s | my $len = index($Config_SH_expanded, "=", $pos) - $pos; | ||
1283 | 3309 | 0s | $prevpos = $pos; | ||
1284 | 3309 | 0s | $len > 0 ? substr($Config_SH_expanded, $pos, $len) : undef; | ||
1285 | } | ||||
1286 | |||||
1287 | sub EXISTS { | ||||
1288 | return 1 if exists($_[0]->{$_[1]}); | ||||
1289 | |||||
1290 | return(index($Config_SH_expanded, "\n$_[1]='") != -1 | ||||
1291 | or index($Config_SH_expanded, "\n$_[1]=\"") != -1 | ||||
1292 | ); | ||||
1293 | } | ||||
1294 | |||||
1295 | sub STORE { die "\%Config::Config is read-only\n" } | ||||
1296 | 1 | 0s | *DELETE = *CLEAR = \*STORE; # Typeglob aliasing uses less space | ||
1297 | |||||
1298 | sub config_sh { | ||||
1299 | substr $Config_SH_expanded, 1, $config_sh_len; | ||||
1300 | } | ||||
1301 | |||||
1302 | sub config_re { | ||||
1303 | my $re = shift; | ||||
1304 | return map { chomp; $_ } grep eval{ /^(?:$re)=/ }, split /^/, | ||||
1305 | $Config_SH_expanded; | ||||
1306 | } | ||||
1307 | |||||
1308 | sub config_vars { | ||||
1309 | # implements -V:cfgvar option (see perlrun -V:) | ||||
1310 | foreach (@_) { | ||||
1311 | # find optional leading, trailing colons; and query-spec | ||||
1312 | my ($notag,$qry,$lncont) = m/^(:)?(.*?)(:)?$/; # flags fore and aft, | ||||
1313 | # map colon-flags to print decorations | ||||
1314 | my $prfx = $notag ? '': "$qry="; # tag-prefix for print | ||||
1315 | my $lnend = $lncont ? ' ' : ";\n"; # line ending for print | ||||
1316 | |||||
1317 | # all config-vars are by definition \w only, any \W means regex | ||||
1318 | if ($qry =~ /\W/) { | ||||
1319 | my @matches = config_re($qry); | ||||
1320 | print map "$_$lnend", @matches ? @matches : "$qry: not found" if !$notag; | ||||
1321 | print map { s/\w+=//; "$_$lnend" } @matches ? @matches : "$qry: not found" if $notag; | ||||
1322 | } else { | ||||
1323 | my $v = (exists $Config::Config{$qry}) ? $Config::Config{$qry} | ||||
1324 | : 'UNKNOWN'; | ||||
1325 | $v = 'undef' unless defined $v; | ||||
1326 | print "${prfx}'${v}'$lnend"; | ||||
1327 | } | ||||
1328 | } | ||||
1329 | } | ||||
1330 | |||||
1331 | # Called by the real AUTOLOAD | ||||
1332 | # spent 0s within Config::launcher which was called:
# once (0s+0s) by Portable::Config::apply at line 81 of Config.pm | ||||
1333 | 1 | 0s | undef &AUTOLOAD; | ||
1334 | 1 | 0s | 1 | 0s | goto \&$Config::AUTOLOAD; # spent 0s making 1 call to Config::FIRSTKEY |
1335 | } | ||||
1336 | |||||
1337 | 1 | 0s | 1; | ||
# spent 0s within Config::CORE:match which was called 1081 times, avg 0s/call:
# 1080 times (0s+0s) by Config::fetch_string at line 1250, avg 0s/call
# once (0s+0s) by Config::AUTOLOAD at line 81 of Config.pm | |||||
# spent 0s within Config::CORE:pack which was called:
# once (0s+0s) by Config::AUTOLOAD at line 1228 | |||||
# spent 0s within Config::CORE:regcomp which was called 1080 times, avg 0s/call:
# 1080 times (0s+0s) by Config::fetch_string at line 1250, avg 0s/call | |||||
sub Config::CORE:subst; # opcode | |||||
# spent 0s within Config::CORE:substcont which was called 2 times, avg 0s/call:
# 2 times (0s+0s) by Config::AUTOLOAD at line 1229, avg 0s/call | |||||
# spent 0s within Config::CORE:unpack which was called:
# once (0s+0s) by Config::AUTOLOAD at line 1228 |