exiftool-vendored.exe 13.26.0 → 13.29.0

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