← Index
NYTProf Performance Profile   « line view »
For t/bug-md-11.t
  Run on Fri Mar 8 13:27:24 2024
Reported on Fri Mar 8 13:30:23 2024

Filename/home/micha/.plenv/versions/5.38.2/lib/perl5/5.38.2/x86_64-linux/Config_heavy.pl
StatementsExecuted 45 statements in 1.61ms
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11110µs12µsConfig::::BEGIN@5Config::BEGIN@5
1119µs37µsConfig::::fetch_stringConfig::fetch_string
1115µs5µsConfig::::launcherConfig::launcher
1113µs21µsConfig::::BEGIN@6Config::BEGIN@6
0000s0sConfig::::EXISTSConfig::EXISTS
0000s0sConfig::::FIRSTKEYConfig::FIRSTKEY
0000s0sConfig::::NEXTKEYConfig::NEXTKEY
0000s0sConfig::::STOREConfig::STORE
0000s0sConfig::::_VConfig::_V
0000s0sConfig::::bincompat_optionsConfig::bincompat_options
0000s0sConfig::::compile_dateConfig::compile_date
0000s0sConfig::::config_reConfig::config_re
0000s0sConfig::::config_shConfig::config_sh
0000s0sConfig::::config_varsConfig::config_vars
0000s0sConfig::::header_filesConfig::header_files
0000s0sConfig::::local_patchesConfig::local_patches
0000s0sConfig::::myconfigConfig::myconfig
0000s0sConfig::::non_bincompat_optionsConfig::non_bincompat_options
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1# This file was created by configpm when Perl was built. Any changes
2# made to this file will be lost the next time perl is built.
3
4package Config;
5223µs213µs
# spent 12µs (10+2) within Config::BEGIN@5 which was called: # once (10µs+2µs) by Config::AUTOLOAD at line 5
use strict;
# spent 12µs making 1 call to Config::BEGIN@5 # spent 2µs making 1 call to strict::import
621.31ms239µs
# spent 21µs (3+18) within Config::BEGIN@6 which was called: # once (3µs+18µs) by Config::AUTOLOAD at line 6
use warnings;
# spent 21µs making 1 call to Config::BEGIN@6 # spent 18µs making 1 call to warnings::import
7our %Config;
8
9sub bincompat_options {
10 return split ' ', (Internals::V())[0];
11}
12
13sub non_bincompat_options {
14 return split ' ', (Internals::V())[1];
15}
16
17sub compile_date {
18 return (Internals::V())[2]
19}
20
21sub local_patches {
22 my (undef, undef, undef, @patches) = Internals::V();
23 return @patches;
24}
25
26sub _V {
27 die "Perl lib was built for 'linux' but is being run on '$^O'"
28 unless "linux" 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 linux\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
59sub 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##
70## This file was produced by running the Configure script. It holds all the
71## definitions figured out by Configure. Should you modify one of these values,
72## do not forget to propagate your changes by running "Configure -der". You may
73## instead choose to run each of the .SH files by yourself, or "Configure -S".
74##
75#
76## Package name : perl5
77## Source directory : .
78## Configuration time: Tue Jan 2 08:48:43 CET 2024
79## Configured by : micha
80## Target system : linux intra 6.2.0-39-generic #40~22.04.1-ubuntu smp preempt_dynamic thu nov 16 10:53:04 utc 2 x86_64 x86_64 x86_64 gnulinux
81#
82#: Configure command line arguments.
83#
84#: Variables propagated from previous config.sh file.
85
861500nsour $summary = <<'!END!';
87Summary of my $package (revision $revision $version_patchlevel_string) configuration:
88 $git_commit_id_title $git_commit_id$git_ancestor_line
89 Platform:
90 osname=$osname
91 osvers=$osvers
92 archname=$archname
93 uname='$myuname'
94 config_args='$config_args'
95 hint=$hint
96 useposix=$useposix
97 d_sigaction=$d_sigaction
98 useithreads=$useithreads
99 usemultiplicity=$usemultiplicity
100 use64bitint=$use64bitint
101 use64bitall=$use64bitall
102 uselongdouble=$uselongdouble
103 usemymalloc=$usemymalloc
104 default_inc_excludes_dot=$default_inc_excludes_dot
105 Compiler:
106 cc='$cc'
107 ccflags ='$ccflags'
108 optimize='$optimize'
109 cppflags='$cppflags'
110 ccversion='$ccversion'
111 gccversion='$gccversion'
112 gccosandvers='$gccosandvers'
113 intsize=$intsize
114 longsize=$longsize
115 ptrsize=$ptrsize
116 doublesize=$doublesize
117 byteorder=$byteorder
118 doublekind=$doublekind
119 d_longlong=$d_longlong
120 longlongsize=$longlongsize
121 d_longdbl=$d_longdbl
122 longdblsize=$longdblsize
123 longdblkind=$longdblkind
124 ivtype='$ivtype'
125 ivsize=$ivsize
126 nvtype='$nvtype'
127 nvsize=$nvsize
128 Off_t='$lseektype'
129 lseeksize=$lseeksize
130 alignbytes=$alignbytes
131 prototype=$prototype
132 Linker and Libraries:
133 ld='$ld'
134 ldflags ='$ldflags'
135 libpth=$libpth
136 libs=$libs
137 perllibs=$perllibs
138 libc=$libc
139 so=$so
140 useshrplib=$useshrplib
141 libperl=$libperl
142 gnulibc_version='$gnulibc_version'
143 Dynamic Linking:
144 dlsrc=$dlsrc
145 dlext=$dlext
146 d_dlsymun=$d_dlsymun
147 ccdlflags='$ccdlflags'
148 cccdlflags='$cccdlflags'
149 lddlflags='$lddlflags'
150
151!END!
1521200nsmy $summary_expanded;
153
154sub myconfig {
155 return $summary_expanded if $summary_expanded;
156 ($summary_expanded = $summary) =~ s{\$(\w+)}
157 {
158 my $c;
159 if ($1 eq 'git_ancestor_line') {
160 if ($Config::Config{git_ancestor}) {
161 $c= "\n Ancestor: $Config::Config{git_ancestor}";
162 } else {
163 $c= "";
164 }
165 } else {
166 $c = $Config::Config{$1};
167 }
168 defined($c) ? $c : 'undef'
169 }ge;
170 $summary_expanded;
171}
172
17311µslocal *_ = \my $a;
1741200ns$_ = <<'!END!';
175Author=''
176CONFIG='true'
177Date=''
178Header=''
179Id=''
180Locker=''
181Log=''
182PATCHLEVEL='38'
183PERL_API_REVISION='5'
184PERL_API_SUBVERSION='0'
185PERL_API_VERSION='38'
186PERL_CONFIG_SH='true'
187PERL_PATCHLEVEL=''
188PERL_REVISION='5'
189PERL_SUBVERSION='2'
190PERL_VERSION='38'
191RCSfile=''
192Revision=''
193SUBVERSION='2'
194Source=''
195State=''
196_a='.a'
197_exe=''
198_o='.o'
199afs='false'
200afsroot='/afs'
201alignbytes='8'
202aphostname='/usr/bin/hostname'
203api_revision='5'
204api_subversion='0'
205api_version='38'
206api_versionstring='5.38.0'
207ar='ar'
208archlib='/home/micha/.plenv/versions/5.38.2/lib/perl5/5.38.2/x86_64-linux'
209archlibexp='/home/micha/.plenv/versions/5.38.2/lib/perl5/5.38.2/x86_64-linux'
210archname='x86_64-linux'
211archname64=''
212archobjs=''
213asctime_r_proto='0'
214awk='awk'
215baserev='5.0'
216bash=''
217bin='/home/micha/.plenv/versions/5.38.2/bin'
218bin_ELF='define'
219binexp='/home/micha/.plenv/versions/5.38.2/bin'
220bison='bison'
221byacc='byacc'
222byteorder='12345678'
223c=''
224castflags='0'
225cat='cat'
226cc='cc'
227cccdlflags='-fPIC'
228ccdlflags='-Wl,-E'
229ccflags='-fwrapv -fno-strict-aliasing -pipe -fstack-protector-strong -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
230ccflags_uselargefiles='-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
231ccname='gcc'
232ccsymbols=''
233ccversion=''
234cf_by='micha'
235cf_email='micha@mdc.hopto.org'
236cf_time='Tue Jan 2 08:48:43 CET 2024'
237charbits='8'
238charsize='1'
239chgrp=''
240chmod='chmod'
241chown=''
242clocktype='clock_t'
243comm='comm'
244compiler_warning='grep -i warning'
245compress=''
246config_arg0='Configure'
247config_arg1='-Dprefix=/home/micha/.plenv/versions/5.38.2'
248config_arg2='-de'
249config_arg3='-Dversiononly'
250config_arg4='-A'eval:scriptdir=/home/micha/.plenv/versions/5.38.2/bin''
251config_argc='4'
252config_args='-Dprefix=/home/micha/.plenv/versions/5.38.2 -de -Dversiononly -A'eval:scriptdir=/home/micha/.plenv/versions/5.38.2/bin''
253contains='grep'
254cp='cp'
255cpio=''
256cpp='cpp'
257cpp_stuff='42'
258cppccsymbols=''
259cppflags='-fwrapv -fno-strict-aliasing -pipe -fstack-protector-strong -I/usr/local/include'
260cpplast='-'
261cppminus='-'
262cpprun='cc -E'
263cppstdin='cc -E'
264cppsymbols='__amd64=1 __amd64__=1 __ATOMIC_ACQ_REL=4 __ATOMIC_ACQUIRE=2 __ATOMIC_CONSUME=1 __ATOMIC_HLE_ACQUIRE=65536 __ATOMIC_HLE_RELEASE=131072 __ATOMIC_RELAXED=0 __ATOMIC_RELEASE=3 __ATOMIC_SEQ_CST=5 __BIGGEST_ALIGNMENT__=16 __BYTE_ORDER__=1234 __CET__=3 __CHAR16_TYPE__=short\ unsigned\ int __CHAR32_TYPE__=unsigned\ int __CHAR_BIT__=8 __code_model_small__=1 __DBL_DECIMAL_DIG__=17 __DBL_DENORM_MIN__=((double)4.94065645841246544176568792868221372e-324L) __DBL_DIG__=15 __DBL_EPSILON__=((double)2.22044604925031308084726333618164062e-16L) __DBL_HAS_DENORM__=1 __DBL_HAS_INFINITY__=1 __DBL_HAS_QUIET_NAN__=1 __DBL_IS_IEC_60559__=2 __DBL_MANT_DIG__=53 __DBL_MAX_10_EXP__=308 __DBL_MAX__=((double)1.79769313486231570814527423731704357e+308L) __DBL_MAX_EXP__=1024 __DBL_MIN_10_EXP__=(-307) __DBL_MIN__=((double)2.22507385850720138309023271733240406e-308L) __DBL_MIN_EXP__=(-1021) __DBL_NORM_MAX__=((double)1.79769313486231570814527423731704357e+308L) __DEC128_EPSILON__=1E-33DL __DEC128_MANT_DIG__=34 __DEC128_MAX__=9.999999999999999999999999999999999E6144DL __DEC128_MAX_EXP__=6145 __DEC128_MIN__=1E-6143DL __DEC128_MIN_EXP__=(-6142) __DEC128_SUBNORMAL_MIN__=0.000000000000000000000000000000001E-6143DL __DEC32_EPSILON__=1E-6DF __DEC32_MANT_DIG__=7 __DEC32_MAX__=9.999999E96DF __DEC32_MAX_EXP__=97 __DEC32_MIN__=1E-95DF __DEC32_MIN_EXP__=(-94) __DEC32_SUBNORMAL_MIN__=0.000001E-95DF __DEC64_EPSILON__=1E-15DD __DEC64_MANT_DIG__=16 __DEC64_MAX__=9.999999999999999E384DD __DEC64_MAX_EXP__=385 __DEC64_MIN__=1E-383DD __DEC64_MIN_EXP__=(-382) __DEC64_SUBNORMAL_MIN__=0.000000000000001E-383DD __DEC_EVAL_METHOD__=2 __DECIMAL_BID_FORMAT__=1 __DECIMAL_DIG__=21 __ELF__=1 _FILE_OFFSET_BITS=64 __FINITE_MATH_ONLY__=0 __FLOAT_WORD_ORDER__=1234 __FLT128_DECIMAL_DIG__=36 __FLT128_DENORM_MIN__=6.47517511943802511092443895822764655e-4966F128 __FLT128_DIG__=33 __FLT128_EPSILON__=1.92592994438723585305597794258492732e-34F128 __FLT128_HAS_DENORM__=1 __FLT128_HAS_INFINITY__=1 __FLT128_HAS_QUIET_NAN__=1 __FLT128_IS_IEC_60559__=2 __FLT128_MANT_DIG__=113 __FLT128_MAX_10_EXP__=4932 __FLT128_MAX__=1.18973149535723176508575932662800702e+4932F128 __FLT128_MAX_EXP__=16384 __FLT128_MIN_10_EXP__=(-4931) __FLT128_MIN__=3.36210314311209350626267781732175260e-4932F128 __FLT128_MIN_EXP__=(-16381) __FLT128_NORM_MAX__=1.18973149535723176508575932662800702e+4932F128 __FLT32_DECIMAL_DIG__=9 __FLT32_DENORM_MIN__=1.40129846432481707092372958328991613e-45F32 __FLT32_DIG__=6 __FLT32_EPSILON__=1.19209289550781250000000000000000000e-7F32 __FLT32_HAS_DENORM__=1 __FLT32_HAS_INFINITY__=1 __FLT32_HAS_QUIET_NAN__=1 __FLT32_IS_IEC_60559__=2 __FLT32_MANT_DIG__=24 __FLT32_MAX_10_EXP__=38 __FLT32_MAX__=3.40282346638528859811704183484516925e+38F32 __FLT32_MAX_EXP__=128 __FLT32_MIN_10_EXP__=(-37) __FLT32_MIN__=1.17549435082228750796873653722224568e-38F32 __FLT32_MIN_EXP__=(-125) __FLT32_NORM_MAX__=3.40282346638528859811704183484516925e+38F32 __FLT32X_DECIMAL_DIG__=17 __FLT32X_DENORM_MIN__=4.94065645841246544176568792868221372e-324F32x __FLT32X_DIG__=15 __FLT32X_EPSILON__=2.22044604925031308084726333618164062e-16F32x __FLT32X_HAS_DENORM__=1 __FLT32X_HAS_INFINITY__=1 __FLT32X_HAS_QUIET_NAN__=1 __FLT32X_IS_IEC_60559__=2 __FLT32X_MANT_DIG__=53 __FLT32X_MAX_10_EXP__=308 __FLT32X_MAX__=1.79769313486231570814527423731704357e+308F32x __FLT32X_MAX_EXP__=1024 __FLT32X_MIN_10_EXP__=(-307) __FLT32X_MIN__=2.22507385850720138309023271733240406e-308F32x __FLT32X_MIN_EXP__=(-1021) __FLT32X_NORM_MAX__=1.79769313486231570814527423731704357e+308F32x __FLT64_DECIMAL_DIG__=17 __FLT64_DENORM_MIN__=4.94065645841246544176568792868221372e-324F64 __FLT64_DIG__=15 __FLT64_EPSILON__=2.22044604925031308084726333618164062e-16F64 __FLT64_HAS_DENORM__=1 __FLT64_HAS_INFINITY__=1 __FLT64_HAS_QUIET_NAN__=1 __FLT64_IS_IEC_60559__=2 __FLT64_MANT_DIG__=53 __FLT64_MAX_10_EXP__=308 __FLT64_MAX__=1.79769313486231570814527423731704357e+308F64 __FLT64_MAX_EXP__=1024 __FLT64_MIN_10_EXP__=(-307) __FLT64_MIN__=2.22507385850720138309023271733240406e-308F64 __FLT64_MIN_EXP__=(-1021) __FLT64_NORM_MAX__=1.79769313486231570814527423731704357e+308F64 __FLT64X_DECIMAL_DIG__=21 __FLT64X_DENORM_MIN__=3.64519953188247460252840593361941982e-4951F64x __FLT64X_DIG__=18 __FLT64X_EPSILON__=1.08420217248550443400745280086994171e-19F64x __FLT64X_HAS_DENORM__=1 __FLT64X_HAS_INFINITY__=1 __FLT64X_HAS_QUIET_NAN__=1 __FLT64X_IS_IEC_60559__=2 __FLT64X_MANT_DIG__=64 __FLT64X_MAX_10_EXP__=4932 __FLT64X_MAX__=1.18973149535723176502126385303097021e+4932F64x __FLT64X_MAX_EXP__=16384 __FLT64X_MIN_10_EXP__=(-4931) __FLT64X_MIN__=3.36210314311209350626267781732175260e-4932F64x __FLT64X_MIN_EXP__=(-16381) __FLT64X_NORM_MAX__=1.18973149535723176502126385303097021e+4932F64x __FLT_DECIMAL_DIG__=9 __FLT_DENORM_MIN__=1.40129846432481707092372958328991613e-45F __FLT_DIG__=6 __FLT_EPSILON__=1.19209289550781250000000000000000000e-7F __FLT_EVAL_METHOD__=0 __FLT_EVAL_METHOD_TS_18661_3__=0 __FLT_HAS_DENORM__=1 __FLT_HAS_INFINITY__=1 __FLT_HAS_QUIET_NAN__=1 __FLT_IS_IEC_60559__=2 __FLT_MANT_DIG__=24 __FLT_MAX_10_EXP__=38 __FLT_MAX__=3.40282346638528859811704183484516925e+38F __FLT_MAX_EXP__=128 __FLT_MIN_10_EXP__=(-37) __FLT_MIN__=1.17549435082228750796873653722224568e-38F __FLT_MIN_EXP__=(-125) __FLT_NORM_MAX__=3.40282346638528859811704183484516925e+38F __FLT_RADIX__=2 _FORTIFY_SOURCE=2 __FXSR__=1 __GCC_ASM_FLAG_OUTPUTS__=1 __GCC_ATOMIC_BOOL_LOCK_FREE=2 __GCC_ATOMIC_CHAR16_T_LOCK_FREE=2 __GCC_ATOMIC_CHAR32_T_LOCK_FREE=2 __GCC_ATOMIC_CHAR_LOCK_FREE=2 __GCC_ATOMIC_INT_LOCK_FREE=2 __GCC_ATOMIC_LLONG_LOCK_FREE=2 __GCC_ATOMIC_LONG_LOCK_FREE=2 __GCC_ATOMIC_POINTER_LOCK_FREE=2 __GCC_ATOMIC_SHORT_LOCK_FREE=2 __GCC_ATOMIC_TEST_AND_SET_TRUEVAL=1 __GCC_ATOMIC_WCHAR_T_LOCK_FREE=2 __GCC_HAVE_DWARF2_CFI_ASM=1 __GCC_HAVE_SYNC_COMPARE_AND_SWAP_1=1 __GCC_HAVE_SYNC_COMPARE_AND_SWAP_2=1 __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4=1 __GCC_HAVE_SYNC_COMPARE_AND_SWAP_8=1 __GCC_IEC_559=2 __GCC_IEC_559_COMPLEX=2 __GLIBC__=2 __GLIBC_MINOR__=35 __GNUC__=11 __GNUC_EXECUTION_CHARSET_NAME="UTF-8" __GNUC_MINOR__=4 __GNUC_PATCHLEVEL__=0 __GNUC_STDC_INLINE__=1 __GNUC_WIDE_EXECUTION_CHARSET_NAME="UTF-32LE" __GNU_LIBRARY__=6 __gnu_linux__=1 __GXX_ABI_VERSION=1016 __HAVE_SPECULATION_SAFE_VALUE=1 __INT16_C=__INT16_C __INT16_MAX__=0x7fff __INT16_TYPE__=short\ int __INT32_C=__INT32_C __INT32_MAX__=0x7fffffff __INT32_TYPE__=int __INT64_C=__INT64_C __INT64_MAX__=0x7fffffffffffffffL __INT64_TYPE__=long\ int __INT8_C=__INT8_C __INT8_MAX__=0x7f __INT8_TYPE__=signed\ char __INT_FAST16_MAX__=0x7fffffffffffffffL __INT_FAST16_TYPE__=long\ int __INT_FAST16_WIDTH__=64 __INT_FAST32_MAX__=0x7fffffffffffffffL __INT_FAST32_TYPE__=long\ int __INT_FAST32_WIDTH__=64 __INT_FAST64_MAX__=0x7fffffffffffffffL __INT_FAST64_TYPE__=long\ int __INT_FAST64_WIDTH__=64 __INT_FAST8_MAX__=0x7f __INT_FAST8_TYPE__=signed\ char __INT_FAST8_WIDTH__=8 __INT_LEAST16_MAX__=0x7fff __INT_LEAST16_TYPE__=short\ int __INT_LEAST16_WIDTH__=16 __INT_LEAST32_MAX__=0x7fffffff __INT_LEAST32_TYPE__=int __INT_LEAST32_WIDTH__=32 __INT_LEAST64_MAX__=0x7fffffffffffffffL __INT_LEAST64_TYPE__=long\ int __INT_LEAST64_WIDTH__=64 __INT_LEAST8_MAX__=0x7f __INT_LEAST8_TYPE__=signed\ char __INT_LEAST8_WIDTH__=8 __INT_MAX__=0x7fffffff __INTMAX_C=__INTMAX_C __INTMAX_MAX__=0x7fffffffffffffffL __INTMAX_TYPE__=long\ int __INTMAX_WIDTH__=64 __INTPTR_MAX__=0x7fffffffffffffffL __INTPTR_TYPE__=long\ int __INTPTR_WIDTH__=64 __INT_WIDTH__=32 __k8=1 __k8__=1 _LARGEFILE_SOURCE=1 __LDBL_DECIMAL_DIG__=21 __LDBL_DENORM_MIN__=3.64519953188247460252840593361941982e-4951L __LDBL_DIG__=18 __LDBL_EPSILON__=1.08420217248550443400745280086994171e-19L __LDBL_HAS_DENORM__=1 __LDBL_HAS_INFINITY__=1 __LDBL_HAS_QUIET_NAN__=1 __LDBL_IS_IEC_60559__=2 __LDBL_MANT_DIG__=64 __LDBL_MAX_10_EXP__=4932 __LDBL_MAX__=1.18973149535723176502126385303097021e+4932L __LDBL_MAX_EXP__=16384 __LDBL_MIN_10_EXP__=(-4931) __LDBL_MIN__=3.36210314311209350626267781732175260e-4932L __LDBL_MIN_EXP__=(-16381) __LDBL_NORM_MAX__=1.18973149535723176502126385303097021e+4932L __linux=1 __linux__=1 linux=1 __LONG_LONG_MAX__=0x7fffffffffffffffLL __LONG_LONG_WIDTH__=64 __LONG_MAX__=0x7fffffffffffffffL __LONG_WIDTH__=64 __LP64__=1 _LP64=1 __MMX__=1 __MMX_WITH_SSE__=1 __ORDER_BIG_ENDIAN__=4321 __ORDER_LITTLE_ENDIAN__=1234 __ORDER_PDP_ENDIAN__=3412 __pic__=2 __PIC__=2 __pie__=2 __PIE__=2 _POSIX_C_SOURCE=200809L _POSIX_SOURCE=1 __PRAGMA_REDEFINE_EXTNAME=1 __PTRDIFF_MAX__=0x7fffffffffffffffL __PTRDIFF_TYPE__=long\ int __PTRDIFF_WIDTH__=64 __REGISTER_PREFIX__= __SCHAR_MAX__=0x7f __SCHAR_WIDTH__=8 __SEG_FS=1 __SEG_GS=1 __SHRT_MAX__=0x7fff __SHRT_WIDTH__=16 __SIG_ATOMIC_MAX__=0x7fffffff __SIG_ATOMIC_MIN__=(-0x7fffffff\ -\ 1) __SIG_ATOMIC_TYPE__=int __SIG_ATOMIC_WIDTH__=32 __SIZE_MAX__=0xffffffffffffffffUL __SIZEOF_DOUBLE__=8 __SIZEOF_FLOAT128__=16 __SIZEOF_FLOAT__=4 __SIZEOF_FLOAT80__=16 __SIZEOF_INT128__=16 __SIZEOF_INT__=4 __SIZEOF_LONG__=8 __SIZEOF_LONG_DOUBLE__=16 __SIZEOF_LONG_LONG__=8 __SIZEOF_POINTER__=8 __SIZEOF_PTRDIFF_T__=8 __SIZEOF_SHORT__=2 __SIZEOF_SIZE_T__=8 __SIZEOF_WCHAR_T__=4 __SIZEOF_WINT_T__=4 __SIZE_TYPE__=long\ unsigned\ int __SIZE_WIDTH__=64 __SSE__=1 __SSE2__=1 __SSE2_MATH__=1 __SSE_MATH__=1 __SSP_STRONG__=3 __STDC__=1 __STDC_HOSTED__=1 __STDC_IEC_559__=1 __STDC_IEC_559_COMPLEX__=1 __STDC_IEC_60559_BFP__=201404L __STDC_IEC_60559_COMPLEX__=201404L __STDC_ISO_10646__=201706L _STDC_PREDEF_H=1 __STDC_UTF_16__=1 __STDC_UTF_32__=1 __STDC_VERSION__=201710L __UINT16_C=__UINT16_C __UINT16_MAX__=0xffff __UINT16_TYPE__=short\ unsigned\ int __UINT32_C=__UINT32_C __UINT32_MAX__=0xffffffffU __UINT32_TYPE__=unsigned\ int __UINT64_C=__UINT64_C __UINT64_MAX__=0xffffffffffffffffUL __UINT64_TYPE__=long\ unsigned\ int __UINT8_C=__UINT8_C __UINT8_MAX__=0xff __UINT8_TYPE__=unsigned\ char __UINT_FAST16_MAX__=0xffffffffffffffffUL __UINT_FAST16_TYPE__=long\ unsigned\ int __UINT_FAST32_MAX__=0xffffffffffffffffUL __UINT_FAST32_TYPE__=long\ unsigned\ int __UINT_FAST64_MAX__=0xffffffffffffffffUL __UINT_FAST64_TYPE__=long\ unsigned\ int __UINT_FAST8_MAX__=0xff __UINT_FAST8_TYPE__=unsigned\ char __UINT_LEAST16_MAX__=0xffff __UINT_LEAST16_TYPE__=short\ unsigned\ int __UINT_LEAST32_MAX__=0xffffffffU __UINT_LEAST32_TYPE__=unsigned\ int __UINT_LEAST64_MAX__=0xffffffffffffffffUL __UINT_LEAST64_TYPE__=long\ unsigned\ int __UINT_LEAST8_MAX__=0xff __UINT_LEAST8_TYPE__=unsigned\ char __UINTMAX_C=__UINTMAX_C __UINTMAX_MAX__=0xffffffffffffffffUL __UINTMAX_TYPE__=long\ unsigned\ int __UINTPTR_MAX__=0xffffffffffffffffUL __UINTPTR_TYPE__=long\ unsigned\ int __unix=1 __unix__=1 unix=1 __USE_FILE_OFFSET64=1 __USE_LARGEFILE=1 __USE_MISC=1 __USE_POSIX=1 __USE_POSIX199309=1 __USE_POSIX199506=1 __USE_POSIX2=1 __USER_LABEL_PREFIX__= __VERSION__="11.4.0" __WCHAR_MAX__=0x7fffffff __WCHAR_MIN__=(-0x7fffffff\ -\ 1) __WCHAR_TYPE__=int __WCHAR_WIDTH__=32 __WINT_MAX__=0xffffffffU __WINT_MIN__=0U __WINT_TYPE__=unsigned\ int __WINT_WIDTH__=32 __x86_64=1 __x86_64__=1'
265crypt_r_proto='0'
266cryptlib=''
267csh='csh'
268ctermid_r_proto='0'
269ctime_r_proto='0'
270d_Gconvert='sprintf((b),"%.*g",(n),(x))'
271d_PRIEUldbl='define'
272d_PRIFUldbl='define'
273d_PRIGUldbl='define'
274d_PRIXU64='define'
275d_PRId64='define'
276d_PRIeldbl='define'
277d_PRIfldbl='define'
278d_PRIgldbl='define'
279d_PRIi64='define'
280d_PRIo64='define'
281d_PRIu64='define'
282d_PRIx64='define'
283d_SCNfldbl='define'
284d__fwalk='undef'
285d_accept4='define'
286d_access='define'
287d_accessx='undef'
288d_acosh='define'
289d_aintl='undef'
290d_alarm='define'
291d_archlib='define'
292d_asctime64='undef'
293d_asctime_r='undef'
294d_asinh='define'
295d_atanh='define'
296d_atolf='undef'
297d_atoll='define'
298d_attribute_always_inline='define'
299d_attribute_deprecated='define'
300d_attribute_format='define'
301d_attribute_malloc='define'
302d_attribute_nonnull='define'
303d_attribute_noreturn='define'
304d_attribute_pure='define'
305d_attribute_unused='define'
306d_attribute_visibility='define'
307d_attribute_warn_unused_result='define'
308d_backtrace='define'
309d_bsd='undef'
310d_bsdgetpgrp='undef'
311d_bsdsetpgrp='undef'
312d_builtin_add_overflow='define'
313d_builtin_choose_expr='define'
314d_builtin_expect='define'
315d_builtin_mul_overflow='define'
316d_builtin_sub_overflow='define'
317d_c99_variadic_macros='define'
318d_casti32='undef'
319d_castneg='define'
320d_cbrt='define'
321d_chown='define'
322d_chroot='define'
323d_chsize='undef'
324d_class='undef'
325d_clearenv='define'
326d_closedir='define'
327d_cmsghdr_s='define'
328d_copysign='define'
329d_copysignl='define'
330d_cplusplus='undef'
331d_crypt='define'
332d_crypt_r='undef'
333d_csh='undef'
334d_ctermid='define'
335d_ctermid_r='undef'
336d_ctime64='undef'
337d_ctime_r='undef'
338d_cuserid='define'
339d_dbminitproto='undef'
340d_difftime='define'
341d_difftime64='undef'
342d_dir_dd_fd='undef'
343d_dirfd='define'
344d_dirnamlen='undef'
345d_dladdr='define'
346d_dlerror='define'
347d_dlopen='define'
348d_dlsymun='undef'
349d_dosuid='undef'
350d_double_has_inf='define'
351d_double_has_nan='define'
352d_double_has_negative_zero='define'
353d_double_has_subnormals='define'
354d_double_style_cray='undef'
355d_double_style_ibm='undef'
356d_double_style_ieee='define'
357d_double_style_vax='undef'
358d_drand48_r='undef'
359d_drand48proto='define'
360d_dup2='define'
361d_dup3='define'
362d_duplocale='define'
363d_eaccess='define'
364d_endgrent='define'
365d_endgrent_r='undef'
366d_endhent='define'
367d_endhostent_r='undef'
368d_endnent='define'
369d_endnetent_r='undef'
370d_endpent='define'
371d_endprotoent_r='undef'
372d_endpwent='define'
373d_endpwent_r='undef'
374d_endsent='define'
375d_endservent_r='undef'
376d_eofnblk='define'
377d_erf='define'
378d_erfc='define'
379d_eunice='undef'
380d_exp2='define'
381d_expm1='define'
382d_faststdio='undef'
383d_fchdir='define'
384d_fchmod='define'
385d_fchmodat='define'
386d_fchown='define'
387d_fcntl='define'
388d_fcntl_can_lock='define'
389d_fd_macros='define'
390d_fd_set='define'
391d_fdclose='undef'
392d_fdim='define'
393d_fds_bits='undef'
394d_fegetround='define'
395d_ffs='define'
396d_ffsl='define'
397d_fgetpos='define'
398d_finite='define'
399d_finitel='define'
400d_flexfnam='define'
401d_flock='define'
402d_flockproto='define'
403d_fma='define'
404d_fmax='define'
405d_fmin='define'
406d_fork='define'
407d_fp_class='undef'
408d_fp_classify='undef'
409d_fp_classl='undef'
410d_fpathconf='define'
411d_fpclass='undef'
412d_fpclassify='define'
413d_fpclassl='undef'
414d_fpgetround='undef'
415d_fpos64_t='undef'
416d_freelocale='define'
417d_frexpl='define'
418d_fs_data_s='undef'
419d_fseeko='define'
420d_fsetpos='define'
421d_fstatfs='define'
422d_fstatvfs='define'
423d_fsync='define'
424d_ftello='define'
425d_ftime='undef'
426d_futimes='define'
427d_gai_strerror='define'
428d_gdbm_ndbm_h_uses_prototypes='undef'
429d_gdbmndbm_h_uses_prototypes='undef'
430d_getaddrinfo='define'
431d_getcwd='define'
432d_getenv_preserves_other_thread='define'
433d_getespwnam='undef'
434d_getfsstat='undef'
435d_getgrent='define'
436d_getgrent_r='undef'
437d_getgrgid_r='undef'
438d_getgrnam_r='undef'
439d_getgrps='define'
440d_gethbyaddr='define'
441d_gethbyname='define'
442d_gethent='define'
443d_gethname='define'
444d_gethostbyaddr_r='undef'
445d_gethostbyname_r='undef'
446d_gethostent_r='undef'
447d_gethostprotos='define'
448d_getitimer='define'
449d_getlogin='define'
450d_getlogin_r='undef'
451d_getmnt='undef'
452d_getmntent='define'
453d_getnameinfo='define'
454d_getnbyaddr='define'
455d_getnbyname='define'
456d_getnent='define'
457d_getnetbyaddr_r='undef'
458d_getnetbyname_r='undef'
459d_getnetent_r='undef'
460d_getnetprotos='define'
461d_getpagsz='define'
462d_getpbyname='define'
463d_getpbynumber='define'
464d_getpent='define'
465d_getpgid='define'
466d_getpgrp='define'
467d_getpgrp2='undef'
468d_getppid='define'
469d_getprior='define'
470d_getprotobyname_r='undef'
471d_getprotobynumber_r='undef'
472d_getprotoent_r='undef'
473d_getprotoprotos='define'
474d_getprpwnam='undef'
475d_getpwent='define'
476d_getpwent_r='undef'
477d_getpwnam_r='undef'
478d_getpwuid_r='undef'
479d_getsbyname='define'
480d_getsbyport='define'
481d_getsent='define'
482d_getservbyname_r='undef'
483d_getservbyport_r='undef'
484d_getservent_r='undef'
485d_getservprotos='define'
486d_getspnam='define'
487d_getspnam_r='undef'
488d_gettimeod='define'
489d_gmtime64='undef'
490d_gmtime_r='undef'
491d_gnulibc='define'
492d_grpasswd='define'
493d_has_C_UTF8='true'
494d_hasmntopt='define'
495d_htonl='define'
496d_hypot='define'
497d_ilogb='define'
498d_ilogbl='define'
499d_inc_version_list='undef'
500d_inetaton='define'
501d_inetntop='define'
502d_inetpton='define'
503d_int64_t='define'
504d_ip_mreq='define'
505d_ip_mreq_source='define'
506d_ipv6_mreq='define'
507d_ipv6_mreq_source='undef'
508d_isascii='define'
509d_isblank='define'
510d_isfinite='define'
511d_isfinitel='undef'
512d_isinf='define'
513d_isinfl='define'
514d_isless='define'
515d_isnan='define'
516d_isnanl='define'
517d_isnormal='define'
518d_j0='define'
519d_j0l='define'
520d_killpg='define'
521d_lc_monetary_2008='define'
522d_lchown='define'
523d_ldbl_dig='define'
524d_ldexpl='define'
525d_lgamma='define'
526d_lgamma_r='define'
527d_libm_lib_version='undef'
528d_libname_unique='undef'
529d_link='define'
530d_linkat='define'
531d_llrint='define'
532d_llrintl='define'
533d_llround='define'
534d_llroundl='define'
535d_localeconv_l='undef'
536d_localtime64='undef'
537d_localtime_r='undef'
538d_localtime_r_needs_tzset='undef'
539d_locconv='define'
540d_lockf='define'
541d_log1p='define'
542d_log2='define'
543d_logb='define'
544d_long_double_style_ieee='define'
545d_long_double_style_ieee_doubledouble='undef'
546d_long_double_style_ieee_extended='define'
547d_long_double_style_ieee_std='undef'
548d_long_double_style_vax='undef'
549d_longdbl='define'
550d_longlong='define'
551d_lrint='define'
552d_lrintl='define'
553d_lround='define'
554d_lroundl='define'
555d_lseekproto='define'
556d_lstat='define'
557d_madvise='define'
558d_malloc_good_size='undef'
559d_malloc_size='undef'
560d_malloc_usable_size='define'
561d_mblen='define'
562d_mbrlen='define'
563d_mbrtowc='define'
564d_mbstowcs='define'
565d_mbtowc='define'
566d_memmem='define'
567d_memrchr='define'
568d_mkdir='define'
569d_mkdtemp='define'
570d_mkfifo='define'
571d_mkostemp='define'
572d_mkstemp='define'
573d_mkstemps='define'
574d_mktime='define'
575d_mktime64='undef'
576d_mmap='define'
577d_modfl='define'
578d_modflproto='define'
579d_mprotect='define'
580d_msg='define'
581d_msg_ctrunc='define'
582d_msg_dontroute='define'
583d_msg_oob='define'
584d_msg_peek='define'
585d_msg_proxy='define'
586d_msgctl='define'
587d_msgget='define'
588d_msghdr_s='define'
589d_msgrcv='define'
590d_msgsnd='define'
591d_msync='define'
592d_munmap='define'
593d_mymalloc='undef'
594d_nan='define'
595d_nanosleep='define'
596d_ndbm='undef'
597d_ndbm_h_uses_prototypes='undef'
598d_nearbyint='define'
599d_newlocale='define'
600d_nextafter='define'
601d_nexttoward='define'
602d_nice='define'
603d_nl_langinfo='define'
604d_nl_langinfo_l='undef'
605d_non_int_bitfields='define'
606d_nv_preserves_uv='undef'
607d_nv_zero_is_allbits_zero='define'
608d_off64_t='undef'
609d_old_pthread_create_joinable='undef'
610d_oldpthreads='undef'
611d_oldsock='undef'
612d_open3='define'
613d_openat='define'
614d_pathconf='define'
615d_pause='define'
616d_perl_otherlibdirs='undef'
617d_phostname='undef'
618d_pipe='define'
619d_pipe2='define'
620d_poll='define'
621d_portable='define'
622d_prctl='define'
623d_prctl_set_name='define'
624d_printf_format_null='define'
625d_procselfexe='define'
626d_pseudofork='undef'
627d_pthread_atfork='define'
628d_pthread_attr_setscope='define'
629d_pthread_yield='undef'
630d_ptrdiff_t='define'
631d_pwage='undef'
632d_pwchange='undef'
633d_pwclass='undef'
634d_pwcomment='undef'
635d_pwexpire='undef'
636d_pwgecos='define'
637d_pwpasswd='define'
638d_pwquota='undef'
639d_qgcvt='define'
640d_quad='define'
641d_querylocale='undef'
642d_random_r='undef'
643d_re_comp='undef'
644d_readdir='define'
645d_readdir64_r='undef'
646d_readdir_r='undef'
647d_readlink='define'
648d_readv='define'
649d_recvmsg='define'
650d_regcmp='undef'
651d_regcomp='define'
652d_remainder='define'
653d_remquo='define'
654d_rename='define'
655d_renameat='define'
656d_rewinddir='define'
657d_rint='define'
658d_rmdir='define'
659d_round='define'
660d_sbrkproto='define'
661d_scalbn='define'
662d_scalbnl='define'
663d_sched_yield='define'
664d_scm_rights='define'
665d_seekdir='define'
666d_select='define'
667d_sem='define'
668d_semctl='define'
669d_semctl_semid_ds='define'
670d_semctl_semun='define'
671d_semget='define'
672d_semop='define'
673d_sendmsg='define'
674d_setegid='define'
675d_setenv='define'
676d_seteuid='define'
677d_setgrent='define'
678d_setgrent_r='undef'
679d_setgrps='define'
680d_sethent='define'
681d_sethostent_r='undef'
682d_setitimer='define'
683d_setlinebuf='define'
684d_setlocale='define'
685d_setlocale_accepts_any_locale_name='undef'
686d_setlocale_r='undef'
687d_setnent='define'
688d_setnetent_r='undef'
689d_setpent='define'
690d_setpgid='define'
691d_setpgrp='define'
692d_setpgrp2='undef'
693d_setprior='define'
694d_setproctitle='undef'
695d_setprotoent_r='undef'
696d_setpwent='define'
697d_setpwent_r='undef'
698d_setregid='define'
699d_setresgid='define'
700d_setresuid='define'
701d_setreuid='define'
702d_setrgid='undef'
703d_setruid='undef'
704d_setsent='define'
705d_setservent_r='undef'
706d_setsid='define'
707d_setvbuf='define'
708d_shm='define'
709d_shmat='define'
710d_shmatprototype='define'
711d_shmctl='define'
712d_shmdt='define'
713d_shmget='define'
714d_sigaction='define'
715d_siginfo_si_addr='define'
716d_siginfo_si_band='define'
717d_siginfo_si_errno='define'
718d_siginfo_si_fd='define'
719d_siginfo_si_pid='define'
720d_siginfo_si_status='define'
721d_siginfo_si_uid='define'
722d_siginfo_si_value='define'
723d_signbit='define'
724d_sigprocmask='define'
725d_sigsetjmp='define'
726d_sin6_scope_id='define'
727d_sitearch='define'
728d_snprintf='define'
729d_sockaddr_in6='define'
730d_sockaddr_sa_len='undef'
731d_sockaddr_storage='define'
732d_sockatmark='define'
733d_sockatmarkproto='define'
734d_socket='define'
735d_socklen_t='define'
736d_sockpair='define'
737d_socks5_init='undef'
738d_sqrtl='define'
739d_srand48_r='undef'
740d_srandom_r='undef'
741d_sresgproto='undef'
742d_sresuproto='undef'
743d_stat='define'
744d_statblks='define'
745d_statfs_f_flags='define'
746d_statfs_s='define'
747d_static_inline='define'
748d_statvfs='define'
749d_stdio_cnt_lval='undef'
750d_stdio_ptr_lval='undef'
751d_stdio_ptr_lval_nochange_cnt='undef'
752d_stdio_ptr_lval_sets_cnt='undef'
753d_stdio_stream_array='undef'
754d_stdiobase='undef'
755d_stdstdio='undef'
756d_strcoll='define'
757d_strerror_l='define'
758d_strerror_r='undef'
759d_strftime='define'
760d_strlcat='undef'
761d_strlcpy='undef'
762d_strnlen='define'
763d_strtod='define'
764d_strtod_l='define'
765d_strtol='define'
766d_strtold='define'
767d_strtold_l='define'
768d_strtoll='define'
769d_strtoq='define'
770d_strtoul='define'
771d_strtoull='define'
772d_strtouq='define'
773d_strxfrm='define'
774d_strxfrm_l='define'
775d_suidsafe='undef'
776d_symlink='define'
777d_syscall='define'
778d_syscallproto='define'
779d_sysconf='define'
780d_sysernlst=''
781d_syserrlst='undef'
782d_system='define'
783d_tcgetpgrp='define'
784d_tcsetpgrp='define'
785d_telldir='define'
786d_telldirproto='define'
787d_tgamma='define'
788d_thread_local='define'
789d_thread_safe_nl_langinfo_l='undef'
790d_time='define'
791d_timegm='define'
792d_times='define'
793d_tm_tm_gmtoff='define'
794d_tm_tm_zone='define'
795d_tmpnam_r='undef'
796d_towlower='define'
797d_towupper='define'
798d_trunc='define'
799d_truncate='define'
800d_truncl='define'
801d_ttyname_r='undef'
802d_tzname='define'
803d_u32align='define'
804d_ualarm='define'
805d_umask='define'
806d_uname='define'
807d_union_semun='undef'
808d_unlinkat='define'
809d_unordered='undef'
810d_unsetenv='define'
811d_uselocale='define'
812d_usleep='define'
813d_usleepproto='define'
814d_ustat='undef'
815d_vendorarch='undef'
816d_vendorbin='undef'
817d_vendorlib='undef'
818d_vendorscript='undef'
819d_vfork='undef'
820d_void_closedir='undef'
821d_voidsig='define'
822d_voidtty=''
823d_vsnprintf='define'
824d_wait4='define'
825d_waitpid='define'
826d_wcrtomb='define'
827d_wcscmp='define'
828d_wcstombs='define'
829d_wcsxfrm='define'
830d_wctomb='define'
831d_writev='define'
832d_xenix='undef'
833date='date'
834db_hashtype='u_int32_t'
835db_prefixtype='size_t'
836db_version_major='5'
837db_version_minor='3'
838db_version_patch='28'
839default_inc_excludes_dot='define'
840direntrytype='struct dirent'
841dlext='so'
842dlsrc='dl_dlopen.xs'
843doubleinfbytes='0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x7f'
844doublekind='3'
845doublemantbits='52'
846doublenanbytes='0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0xff'
847doublesize='8'
848drand01='Perl_drand48()'
849drand48_r_proto='0'
850dtrace=''
851dtraceobject=''
852dtracexnolibs=''
853dynamic_ext='attributes B Compress/Raw/Bzip2 Compress/Raw/Zlib Cwd Data/Dumper DB_File Devel/Peek Devel/PPPort Digest/MD5 Digest/SHA Encode Fcntl File/DosGlob File/Glob Filter/Util/Call Hash/Util Hash/Util/FieldHash I18N/Langinfo IO IPC/SysV List/Util Math/BigInt/FastCalc MIME/Base64 mro Opcode PerlIO/encoding PerlIO/mmap PerlIO/scalar PerlIO/via POSIX re SDBM_File Socket Storable Sys/Hostname Sys/Syslog threads threads/shared Time/HiRes Time/Piece Unicode/Collate Unicode/Normalize XS/APItest XS/Typemap'
854eagain='EAGAIN'
855ebcdic='undef'
856echo='echo'
857egrep='egrep'
858emacs=''
859endgrent_r_proto='0'
860endhostent_r_proto='0'
861endnetent_r_proto='0'
862endprotoent_r_proto='0'
863endpwent_r_proto='0'
864endservent_r_proto='0'
865eunicefix=':'
866exe_ext=''
867expr='expr'
868extensions='attributes B Compress/Raw/Bzip2 Compress/Raw/Zlib Cwd Data/Dumper DB_File Devel/Peek Devel/PPPort Digest/MD5 Digest/SHA Encode Fcntl File/DosGlob File/Glob Filter/Util/Call Hash/Util Hash/Util/FieldHash I18N/Langinfo IO IPC/SysV List/Util Math/BigInt/FastCalc MIME/Base64 mro Opcode PerlIO/encoding PerlIO/mmap PerlIO/scalar PerlIO/via POSIX re SDBM_File Socket Storable Sys/Hostname Sys/Syslog threads threads/shared Time/HiRes Time/Piece Unicode/Collate Unicode/Normalize XS/APItest XS/Typemap Archive/Tar Attribute/Handlers autodie AutoLoader autouse base bignum Carp Config/Perl/V constant CPAN CPAN/Meta CPAN/Meta/Requirements CPAN/Meta/YAML Devel/SelfStubber Digest Dumpvalue encoding/warnings Env Errno experimental Exporter ExtUtils/CBuilder ExtUtils/Constant ExtUtils/Install ExtUtils/MakeMaker ExtUtils/Manifest ExtUtils/Miniperl ExtUtils/ParseXS ExtUtils/PL2Bat FileCache File/Fetch File/Find File/Path File/Temp Filter/Simple FindBin Getopt/Long HTTP/Tiny I18N/Collate I18N/LangTags if IO/Compress IO/Socket/IP IO/Zlib IPC/Cmd IPC/Open3 JSON/PP lib libnet Locale/Maketext Locale/Maketext/Simple Math/BigInt Math/BigRat Math/Complex Memoize Module/CoreList Module/Load Module/Load/Conditional Module/Loaded Module/Metadata Net/Ping NEXT Params/Check parent perlfaq PerlIO/via/QuotedPrint Perl/OSType Pod/Checker Pod/Escapes Pod/Functions Pod/Html podlators 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 version XSLoader'
869extern_C='extern'
870extras=''
871fflushNULL='define'
872fflushall='undef'
873find=''
874firstmakefile='makefile'
875flex=''
876fpossize='16'
877fpostype='fpos_t'
878freetype='void'
879from=':'
880full_ar='/usr/bin/ar'
881full_csh='csh'
882full_sed='/usr/bin/sed'
883gccansipedantic=''
884gccosandvers=''
885gccversion='11.4.0'
886getgrent_r_proto='0'
887getgrgid_r_proto='0'
888getgrnam_r_proto='0'
889gethostbyaddr_r_proto='0'
890gethostbyname_r_proto='0'
891gethostent_r_proto='0'
892getlogin_r_proto='0'
893getnetbyaddr_r_proto='0'
894getnetbyname_r_proto='0'
895getnetent_r_proto='0'
896getprotobyname_r_proto='0'
897getprotobynumber_r_proto='0'
898getprotoent_r_proto='0'
899getpwent_r_proto='0'
900getpwnam_r_proto='0'
901getpwuid_r_proto='0'
902getservbyname_r_proto='0'
903getservbyport_r_proto='0'
904getservent_r_proto='0'
905getspnam_r_proto='0'
906gidformat='"u"'
907gidsign='1'
908gidsize='4'
909gidtype='gid_t'
910glibpth='/usr/shlib /lib /usr/lib /usr/lib/386 /lib/386 /usr/ccs/lib /usr/ucblib /usr/local/lib /lib64 /usr/lib64 /usr/local/lib64 '
911gmake='gmake'
912gmtime_r_proto='0'
913gnulibc_version='2.35'
914grep='grep'
915groupcat='cat /etc/group'
916groupstype='gid_t'
917gzip='gzip'
918h_fcntl='false'
919h_sysfile='true'
920hint='recommended'
921hostcat='cat /etc/hosts'
922hostgenerate=''
923hostosname=''
924hostperl=''
925html1dir=' '
926html1direxp=''
927html3dir=' '
928html3direxp=''
929i16size='2'
930i16type='short'
931i32dformat='"d"'
932i32size='4'
933i32type='int'
934i64size='8'
935i64type='long'
936i8size='1'
937i8type='signed char'
938i_arpainet='define'
939i_bfd='undef'
940i_bsdioctl=''
941i_crypt='define'
942i_db='define'
943i_dbm='undef'
944i_dirent='define'
945i_dlfcn='define'
946i_execinfo='define'
947i_fcntl='undef'
948i_fenv='define'
949i_fp='undef'
950i_fp_class='undef'
951i_gdbm='undef'
952i_gdbm_ndbm='undef'
953i_gdbmndbm='undef'
954i_grp='define'
955i_ieeefp='undef'
956i_inttypes='define'
957i_langinfo='define'
958i_libutil='undef'
959i_limits='define'
960i_locale='define'
961i_machcthr='undef'
962i_malloc='define'
963i_mallocmalloc='undef'
964i_mntent='define'
965i_ndbm='undef'
966i_netdb='define'
967i_neterrno='undef'
968i_netinettcp='define'
969i_niin='define'
970i_poll='define'
971i_prot='undef'
972i_pthread='define'
973i_pwd='define'
974i_quadmath='define'
975i_rpcsvcdbm='undef'
976i_sgtty='undef'
977i_shadow='define'
978i_socks='undef'
979i_stdbool='define'
980i_stdint='define'
981i_stdlib='define'
982i_string='define'
983i_sunmath='undef'
984i_sysaccess='undef'
985i_sysdir='define'
986i_sysfile='define'
987i_sysfilio='undef'
988i_sysin='undef'
989i_sysioctl='define'
990i_syslog='define'
991i_sysmman='define'
992i_sysmode='undef'
993i_sysmount='define'
994i_sysndir='undef'
995i_sysparam='define'
996i_syspoll='define'
997i_sysresrc='define'
998i_syssecrt='undef'
999i_sysselct='define'
1000i_syssockio='undef'
1001i_sysstat='define'
1002i_sysstatfs='define'
1003i_sysstatvfs='define'
1004i_syssyscall='define'
1005i_systime='define'
1006i_systimek='undef'
1007i_systimes='define'
1008i_systypes='define'
1009i_sysuio='define'
1010i_sysun='define'
1011i_sysutsname='define'
1012i_sysvfs='define'
1013i_syswait='define'
1014i_termio='undef'
1015i_termios='define'
1016i_time='define'
1017i_unistd='define'
1018i_ustat='undef'
1019i_utime='define'
1020i_vfork='undef'
1021i_wchar='define'
1022i_wctype='define'
1023i_xlocale='define'
1024ignore_versioned_solibs='y'
1025inc_version_list=''
1026inc_version_list_init='0'
1027incpath=''
1028incpth='/usr/lib/gcc/x86_64-linux-gnu/11/include /usr/local/include /usr/include/x86_64-linux-gnu /usr/include'
1029inews=''
1030initialinstalllocation='/home/micha/.plenv/versions/5.38.2/bin'
1031installarchlib='/home/micha/.plenv/versions/5.38.2/lib/perl5/5.38.2/x86_64-linux'
1032installbin='/home/micha/.plenv/versions/5.38.2/bin'
1033installhtml1dir=''
1034installhtml3dir=''
1035installman1dir='/home/micha/.plenv/versions/5.38.2/man/man1'
1036installman3dir='/home/micha/.plenv/versions/5.38.2/man/man3'
1037installprefix='/home/micha/.plenv/versions/5.38.2'
1038installprefixexp='/home/micha/.plenv/versions/5.38.2'
1039installprivlib='/home/micha/.plenv/versions/5.38.2/lib/perl5/5.38.2'
1040installscript='/home/micha/.plenv/versions/5.38.2/bin'
1041installsitearch='/home/micha/.plenv/versions/5.38.2/lib/perl5/site_perl/5.38.2/x86_64-linux'
1042installsitebin='/home/micha/.plenv/versions/5.38.2/bin'
1043installsitehtml1dir=''
1044installsitehtml3dir=''
1045installsitelib='/home/micha/.plenv/versions/5.38.2/lib/perl5/site_perl/5.38.2'
1046installsiteman1dir='/home/micha/.plenv/versions/5.38.2/man/man1'
1047installsiteman3dir='/home/micha/.plenv/versions/5.38.2/man/man3'
1048installsitescript='/home/micha/.plenv/versions/5.38.2/bin'
1049installstyle='lib/perl5'
1050installusrbinperl='undef'
1051installvendorarch=''
1052installvendorbin=''
1053installvendorhtml1dir=''
1054installvendorhtml3dir=''
1055installvendorlib=''
1056installvendorman1dir=''
1057installvendorman3dir=''
1058installvendorscript=''
1059intsize='4'
1060issymlink='test -h'
1061ivdformat='"ld"'
1062ivsize='8'
1063ivtype='long'
1064known_extensions='Amiga/ARexx Amiga/Exec Archive/Tar Attribute/Handlers attributes autodie AutoLoader autouse B base bignum Carp Compress/Raw/Bzip2 Compress/Raw/Zlib Config/Perl/V constant CPAN CPAN/Meta CPAN/Meta/Requirements CPAN/Meta/YAML Cwd Data/Dumper DB_File Devel/Peek Devel/PPPort Devel/SelfStubber Digest Digest/MD5 Digest/SHA Dumpvalue Encode encoding/warnings Env Errno experimental Exporter ExtUtils/CBuilder ExtUtils/Constant ExtUtils/Install ExtUtils/MakeMaker ExtUtils/Manifest ExtUtils/Miniperl ExtUtils/ParseXS ExtUtils/PL2Bat Fcntl FileCache File/DosGlob File/Fetch File/Find File/Glob File/Path File/Temp Filter/Simple Filter/Util/Call FindBin GDBM_File Getopt/Long Hash/Util Hash/Util/FieldHash HTTP/Tiny I18N/Collate I18N/Langinfo I18N/LangTags if IO IO/Compress IO/Socket/IP IO/Zlib IPC/Cmd IPC/Open3 IPC/SysV JSON/PP lib libnet List/Util Locale/Maketext Locale/Maketext/Simple Math/BigInt Math/BigInt/FastCalc Math/BigRat Math/Complex Memoize MIME/Base64 Module/CoreList Module/Load Module/Load/Conditional Module/Loaded Module/Metadata mro NDBM_File Net/Ping NEXT ODBM_File Opcode Params/Check parent perlfaq PerlIO/encoding PerlIO/mmap PerlIO/scalar PerlIO/via PerlIO/via/QuotedPrint Perl/OSType Pod/Checker Pod/Escapes Pod/Functions Pod/Html podlators Pod/Perldoc Pod/Simple Pod/Usage POSIX re Safe SDBM_File 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 threads Thread/Semaphore threads/shared Tie/File Tie/Hash/NamedCapture Tie/Memoize Tie/RefHash Time/HiRes Time/Local Time/Piece Unicode/Collate Unicode/Normalize version VMS/DCLsym VMS/Filespec VMS/Stdio Win32 Win32API/File Win32CORE XS/APItest XSLoader XS/Typemap '
1065ksh=''
1066ld='cc'
1067ld_can_script='define'
1068lddlflags='-shared -O2 -L/usr/local/lib -fstack-protector-strong'
1069ldflags=' -fstack-protector-strong -L/usr/local/lib'
1070ldflags_uselargefiles=''
1071ldlibpthname='LD_LIBRARY_PATH'
1072less='less'
1073lib_ext='.a'
1074libc='/lib/x86_64-linux-gnu/libc.so.6'
1075libdb_needs_pthread='N'
1076libperl='libperl.a'
1077libpth='/usr/local/lib /usr/lib/x86_64-linux-gnu /usr/lib /usr/lib64'
1078libs='-lpthread -ldb -ldl -lm -lcrypt -lutil -lc'
1079libsdirs=' /usr/lib/x86_64-linux-gnu'
1080libsfiles=' libpthread.a libdb.so libdl.a libm.so libcrypt.so libutil.a libc.so'
1081libsfound=' /usr/lib/x86_64-linux-gnu/libpthread.a /usr/lib/x86_64-linux-gnu/libdb.so /usr/lib/x86_64-linux-gnu/libdl.a /usr/lib/x86_64-linux-gnu/libm.so /usr/lib/x86_64-linux-gnu/libcrypt.so /usr/lib/x86_64-linux-gnu/libutil.a /usr/lib/x86_64-linux-gnu/libc.so'
1082libspath=' /usr/local/lib /usr/lib/x86_64-linux-gnu /usr/lib /usr/lib64'
1083libswanted='cl pthread socket inet gdbm dbm db malloc dl ld sun m crypt sec util c cposix posix ucb BSD gdbm_compat'
1084libswanted_uselargefiles=''
1085line=''
1086lint=''
1087lkflags=''
1088ln='ln'
1089lns='/usr/bin/ln -s'
1090localtime_r_proto='0'
1091locincpth='/usr/local/include /opt/local/include /usr/gnu/include /opt/gnu/include /usr/GNU/include /opt/GNU/include'
1092loclibpth='/usr/local/lib /opt/local/lib /usr/gnu/lib /opt/gnu/lib /usr/GNU/lib /opt/GNU/lib'
1093longdblinfbytes='0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xff, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00'
1094longdblkind='3'
1095longdblmantbits='64'
1096longdblnanbytes='0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00'
1097longdblsize='16'
1098longlongsize='8'
1099longsize='8'
1100lp=''
1101lpr=''
1102ls='ls'
1103lseeksize='8'
1104lseektype='off_t'
1105mail=''
1106mailx=''
1107make='make'
1108make_set_make='#'
1109mallocobj=''
1110mallocsrc=''
1111malloctype='void *'
1112man1dir='/home/micha/.plenv/versions/5.38.2/man/man1'
1113man1direxp='/home/micha/.plenv/versions/5.38.2/man/man1'
1114man1ext='1'
1115man3dir='/home/micha/.plenv/versions/5.38.2/man/man3'
1116man3direxp='/home/micha/.plenv/versions/5.38.2/man/man3'
1117man3ext='3'
1118mips_type=''
1119mistrustnm=''
1120mkdir='mkdir'
1121mmaptype='void *'
1122modetype='mode_t'
1123more='more'
1124multiarch='undef'
1125mv=''
1126myarchname='x86_64-linux'
1127mydomain='.michaeldaumconsulting.com'
1128myhostname='intra'
1129myuname='linux intra 6.2.0-39-generic #40~22.04.1-ubuntu smp preempt_dynamic thu nov 16 10:53:04 utc 2 x86_64 x86_64 x86_64 gnulinux '
1130n='-n'
1131need_va_copy='define'
1132netdb_hlen_type='size_t'
1133netdb_host_type='char *'
1134netdb_name_type='const char *'
1135netdb_net_type='in_addr_t'
1136nm='nm'
1137nm_opt=''
1138nm_so_opt='--dynamic'
1139nonxs_ext='Archive/Tar Attribute/Handlers autodie AutoLoader autouse base bignum Carp Config/Perl/V constant CPAN CPAN/Meta CPAN/Meta/Requirements CPAN/Meta/YAML Devel/SelfStubber Digest Dumpvalue encoding/warnings Env Errno experimental Exporter ExtUtils/CBuilder ExtUtils/Constant ExtUtils/Install ExtUtils/MakeMaker ExtUtils/Manifest ExtUtils/Miniperl ExtUtils/ParseXS ExtUtils/PL2Bat FileCache File/Fetch File/Find File/Path File/Temp Filter/Simple FindBin Getopt/Long HTTP/Tiny I18N/Collate I18N/LangTags if IO/Compress IO/Socket/IP IO/Zlib IPC/Cmd IPC/Open3 JSON/PP lib libnet Locale/Maketext Locale/Maketext/Simple Math/BigInt Math/BigRat Math/Complex Memoize Module/CoreList Module/Load Module/Load/Conditional Module/Loaded Module/Metadata Net/Ping NEXT Params/Check parent perlfaq PerlIO/via/QuotedPrint Perl/OSType Pod/Checker Pod/Escapes Pod/Functions Pod/Html podlators 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 version XSLoader'
1140nroff='nroff'
1141nvEUformat='"E"'
1142nvFUformat='"F"'
1143nvGUformat='"G"'
1144nv_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'
1145nv_preserves_uv_bits='53'
1146nveformat='"e"'
1147nvfformat='"f"'
1148nvgformat='"g"'
1149nvmantbits='52'
1150nvsize='8'
1151nvtype='double'
1152o_nonblock='O_NONBLOCK'
1153obj_ext='.o'
1154old_pthread_create_joinable=''
1155optimize='-O2'
1156orderlib='false'
1157osname='linux'
1158osvers='6.2.0-39-generic'
1159otherlibdirs=' '
1160package='perl5'
1161pager='/usr/bin/less -R'
1162passcat='cat /etc/passwd'
1163patchlevel='38'
1164path_sep=':'
1165perl='perl'
1166perl5='/usr/bin/perl'
1167perl_patchlevel=''
1168perl_static_inline='static __inline__'
1169perl_thread_local='_Thread_local'
1170perladmin='micha@mdc.hopto.org'
1171perllibs='-lpthread -ldl -lm -lcrypt -lutil -lc'
1172perlpath='/home/micha/.plenv/versions/5.38.2/bin/perl5.38.2'
1173pg='pg'
1174phostname='hostname'
1175pidtype='pid_t'
1176plibpth='/lib/x86_64-linux-gnu/11 /lib/x86_64-linux-gnu /lib/../lib /usr/lib/x86_64-linux-gnu/11 /usr/lib/x86_64-linux-gnu /usr/lib/../lib /lib /usr/lib'
1177pmake=''
1178pr=''
1179prefix='/home/micha/.plenv/versions/5.38.2'
1180prefixexp='/home/micha/.plenv/versions/5.38.2'
1181privlib='/home/micha/.plenv/versions/5.38.2/lib/perl5/5.38.2'
1182privlibexp='/home/micha/.plenv/versions/5.38.2/lib/perl5/5.38.2'
1183procselfexe='"/proc/self/exe"'
1184prototype='define'
1185ptrsize='8'
1186quadkind='2'
1187quadtype='long'
1188randbits='48'
1189randfunc='Perl_drand48'
1190random_r_proto='0'
1191randseedtype='U32'
1192ranlib=':'
1193rd_nodata='-1'
1194readdir64_r_proto='0'
1195readdir_r_proto='0'
1196revision='5'
1197rm='rm'
1198rm_try='/usr/bin/rm -f try try a.out .out try.[cho] try..o core core.try* try.core*'
1199rmail=''
1200run=''
1201runnm='false'
1202sGMTIME_max='67768036191676799'
1203sGMTIME_min='-62167219200'
1204sLOCALTIME_max='67768036191673199'
1205sLOCALTIME_min='-62167222408'
1206sPRIEUldbl='"LE"'
1207sPRIFUldbl='"LF"'
1208sPRIGUldbl='"LG"'
1209sPRIXU64='"lX"'
1210sPRId64='"ld"'
1211sPRIeldbl='"Le"'
1212sPRIfldbl='"Lf"'
1213sPRIgldbl='"Lg"'
1214sPRIi64='"li"'
1215sPRIo64='"lo"'
1216sPRIu64='"lu"'
1217sPRIx64='"lx"'
1218sSCNfldbl='"Lf"'
1219sched_yield='sched_yield()'
1220scriptdir='/home/micha/.plenv/versions/5.38.2/bin'
1221scriptdirexp='/home/micha/.plenv/versions/5.38.2/bin'
1222sed='sed'
1223seedfunc='Perl_drand48_init'
1224selectminbits='64'
1225selecttype='fd_set *'
1226sendmail=''
1227setgrent_r_proto='0'
1228sethostent_r_proto='0'
1229setlocale_r_proto='0'
1230setnetent_r_proto='0'
1231setprotoent_r_proto='0'
1232setpwent_r_proto='0'
1233setservent_r_proto='0'
1234sh='/bin/sh'
1235shar=''
1236sharpbang='#!'
1237shmattype='void *'
1238shortsize='2'
1239shrpenv=''
1240shsharp='true'
1241sig_count='65'
1242sig_name='ZERO HUP INT QUIT ILL TRAP ABRT BUS FPE KILL USR1 SEGV USR2 PIPE ALRM TERM STKFLT CHLD CONT STOP TSTP TTIN TTOU URG XCPU XFSZ VTALRM PROF WINCH IO PWR SYS NUM32 NUM33 RTMIN NUM35 NUM36 NUM37 NUM38 NUM39 NUM40 NUM41 NUM42 NUM43 NUM44 NUM45 NUM46 NUM47 NUM48 NUM49 NUM50 NUM51 NUM52 NUM53 NUM54 NUM55 NUM56 NUM57 NUM58 NUM59 NUM60 NUM61 NUM62 NUM63 RTMAX IOT CLD POLL '
1243sig_name_init='"ZERO", "HUP", "INT", "QUIT", "ILL", "TRAP", "ABRT", "BUS", "FPE", "KILL", "USR1", "SEGV", "USR2", "PIPE", "ALRM", "TERM", "STKFLT", "CHLD", "CONT", "STOP", "TSTP", "TTIN", "TTOU", "URG", "XCPU", "XFSZ", "VTALRM", "PROF", "WINCH", "IO", "PWR", "SYS", "NUM32", "NUM33", "RTMIN", "NUM35", "NUM36", "NUM37", "NUM38", "NUM39", "NUM40", "NUM41", "NUM42", "NUM43", "NUM44", "NUM45", "NUM46", "NUM47", "NUM48", "NUM49", "NUM50", "NUM51", "NUM52", "NUM53", "NUM54", "NUM55", "NUM56", "NUM57", "NUM58", "NUM59", "NUM60", "NUM61", "NUM62", "NUM63", "RTMAX", "IOT", "CLD", "POLL", 0'
1244sig_num='0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 6 17 29 '
1245sig_num_init='0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 6, 17, 29, 0'
1246sig_size='68'
1247signal_t='void'
1248sitearch='/home/micha/.plenv/versions/5.38.2/lib/perl5/site_perl/5.38.2/x86_64-linux'
1249sitearchexp='/home/micha/.plenv/versions/5.38.2/lib/perl5/site_perl/5.38.2/x86_64-linux'
1250sitebin='/home/micha/.plenv/versions/5.38.2/bin'
1251sitebinexp='/home/micha/.plenv/versions/5.38.2/bin'
1252sitehtml1dir=''
1253sitehtml1direxp=''
1254sitehtml3dir=''
1255sitehtml3direxp=''
1256sitelib='/home/micha/.plenv/versions/5.38.2/lib/perl5/site_perl/5.38.2'
1257sitelib_stem='/home/micha/.plenv/versions/5.38.2/lib/perl5/site_perl'
1258sitelibexp='/home/micha/.plenv/versions/5.38.2/lib/perl5/site_perl/5.38.2'
1259siteman1dir='/home/micha/.plenv/versions/5.38.2/man/man1'
1260siteman1direxp='/home/micha/.plenv/versions/5.38.2/man/man1'
1261siteman3dir='/home/micha/.plenv/versions/5.38.2/man/man3'
1262siteman3direxp='/home/micha/.plenv/versions/5.38.2/man/man3'
1263siteprefix='/home/micha/.plenv/versions/5.38.2'
1264siteprefixexp='/home/micha/.plenv/versions/5.38.2'
1265sitescript='/home/micha/.plenv/versions/5.38.2/bin'
1266sitescriptexp='/home/micha/.plenv/versions/5.38.2/bin'
1267sizesize='8'
1268sizetype='size_t'
1269sleep=''
1270smail=''
1271so='so'
1272sockethdr=''
1273socketlib=''
1274socksizetype='socklen_t'
1275sort='sort'
1276spackage='Perl5'
1277spitshell='cat'
1278srand48_r_proto='0'
1279srandom_r_proto='0'
1280src='.'
1281ssizetype='ssize_t'
1282st_dev_sign='1'
1283st_dev_size='8'
1284st_ino_sign='1'
1285st_ino_size='8'
1286startperl='#!/home/micha/.plenv/versions/5.38.2/bin/perl5.38.2'
1287startsh='#!/bin/sh'
1288static_ext=' '
1289stdchar='char'
1290stdio_base='((fp)->_base)'
1291stdio_bufsiz='((fp)->_cnt + (fp)->_ptr - (fp)->_base)'
1292stdio_cnt='((fp)->_cnt)'
1293stdio_filbuf=''
1294stdio_ptr='((fp)->_ptr)'
1295stdio_stream_array=''
1296strerror_r_proto='0'
1297submit=''
1298subversion='2'
1299sysman='/usr/share/man/man1'
1300sysroot=''
1301tail=''
1302taint_disabled=''
1303taint_support=''
1304tar=''
1305targetarch=''
1306targetdir=''
1307targetenv=''
1308targethost=''
1309targetmkdir=''
1310targetport=''
1311targetsh='/bin/sh'
1312tbl=''
1313tee=''
1314test='test'
1315timeincl='/usr/include/x86_64-linux-gnu/sys/time.h '
1316timetype='time_t'
1317tmpnam_r_proto='0'
1318to=':'
1319touch='touch'
1320tr='tr'
1321trnl='\n'
1322troff=''
1323ttyname_r_proto='0'
1324u16size='2'
1325u16type='unsigned short'
1326u32XUformat='"X"'
1327u32oformat='"o"'
1328u32size='4'
1329u32type='unsigned int'
1330u32uformat='"u"'
1331u32xformat='"x"'
1332u64size='8'
1333u64type='unsigned long'
1334u8size='1'
1335u8type='unsigned char'
1336uidformat='"u"'
1337uidsign='1'
1338uidsize='4'
1339uidtype='uid_t'
1340uname='uname'
1341uniq='uniq'
1342uquadtype='unsigned long'
1343use64bitall='define'
1344use64bitint='define'
1345usecbacktrace='undef'
1346usecrosscompile='undef'
1347usedefaultstrict='undef'
1348usedevel='undef'
1349usedl='define'
1350usedtrace='undef'
1351usefaststdio='undef'
1352useithreads='undef'
1353usekernprocpathname='undef'
1354uselanginfo='true'
1355uselargefiles='define'
1356uselongdouble='undef'
1357usemallocwrap='define'
1358usemorebits='undef'
1359usemultiplicity='undef'
1360usemymalloc='n'
1361usenm='false'
1362usensgetexecutablepath='undef'
1363useopcode='true'
1364useperlio='define'
1365useposix='true'
1366usequadmath='undef'
1367usereentrant='undef'
1368userelocatableinc='undef'
1369useshrplib='false'
1370usesitecustomize='undef'
1371usesocks='undef'
1372usethreads='undef'
1373usevendorprefix='undef'
1374useversionedarchname='undef'
1375usevfork='false'
1376usrinc='/usr/include'
1377uuname=''
1378uvXUformat='"lX"'
1379uvoformat='"lo"'
1380uvsize='8'
1381uvtype='unsigned long'
1382uvuformat='"lu"'
1383uvxformat='"lx"'
1384vendorarch=''
1385vendorarchexp=''
1386vendorbin=''
1387vendorbinexp=''
1388vendorhtml1dir=' '
1389vendorhtml1direxp=''
1390vendorhtml3dir=' '
1391vendorhtml3direxp=''
1392vendorlib=''
1393vendorlib_stem=''
1394vendorlibexp=''
1395vendorman1dir=' '
1396vendorman1direxp=''
1397vendorman3dir=' '
1398vendorman3direxp=''
1399vendorprefix=''
1400vendorprefixexp=''
1401vendorscript=''
1402vendorscriptexp=''
1403version='5.38.2'
1404version_patchlevel_string='version 38 subversion 2'
1405versiononly='define'
1406vi=''
1407xlibpth='/usr/lib/386 /lib/386'
1408xlocale_needed='undef'
1409yacc='yacc'
1410yaccflags=''
1411zcat=''
1412zip='zip'
1413!END!
1414
14151100nsmy $i = ord(8);
1416152µsforeach my $c (7,6,5,4,3,2,1) { $i <<= 8; $i |= ord($c); }
1417123µs211µsour $byteorder = join('', unpack('aaaaaaaa', pack('L!', $i)));
# spent 9µs making 1 call to CORE::pack # spent 2µs making 1 call to CORE::unpack
1418123µs317µss/(byteorder=)(['"]).*?\2/$1$2$Config::byteorder$2/m;
# spent 12µs making 2 calls to CORE::substcont, avg 6µs/call # spent 5µs making 1 call to CORE::subst
1419
1420{
1421 # We have to set this up late as Win32 does not build miniperl
1422 # with the same defines and CC flags as it builds perl itself.
142325µs12µs my $defines = join " ", (Internals::V)[0,1];
# spent 2µs making 1 call to Internals::V
142414µs21µs if (
# spent 1µs making 2 calls to CORE::match, avg 650ns/call
1425 $defines =~ /\b(SILENT_NO_TAINT_SUPPORT)\b/ ||
1426 $defines =~ /\b(NO_TAINT_SUPPORT)\b/
1427 ){
1428 my $which = $1;
1429 my $taint_disabled = ($which eq "SILENT_NO_TAINT_SUPPORT")
1430 ? "silent" : "define";
1431 s/^(taint_disabled=['"])(["'])/$1$taint_disabled$2/m;
1432 }
1433 else {
14341200ns my $taint_support = 'define';
1435168µs362µs s/^(taint_support=['"])(["'])/$1$taint_support$2/m;
# spent 43µs making 1 call to CORE::subst # spent 19µs making 2 calls to CORE::substcont, avg 9µs/call
1436 }
1437}
14381400nsmy $config_sh_len = length $_;
1439
1440139µsour $Config_SH_expanded = "\n$_" . << 'EOVIRTUAL';
1441ccflags_nolargefiles='-fwrapv -fno-strict-aliasing -pipe -fstack-protector-strong -I/usr/local/include '
1442ldflags_nolargefiles=' -fstack-protector-strong -L/usr/local/lib'
1443libs_nolargefiles='-lpthread -ldb -ldl -lm -lcrypt -lutil -lc'
1444libswanted_nolargefiles='cl pthread socket inet gdbm dbm db malloc dl ld sun m crypt sec util c cposix posix ucb BSD gdbm_compat'
1445ccwarnflags=' -Wall -Werror=pointer-arith -Werror=vla -Wextra -Wno-long-long -Wno-declaration-after-statement -Wc++-compat -Wwrite-strings'
1446ccstdflags=' -std=c99'
1447EOVIRTUAL
14481500nseval {
1449 # do not have hairy conniptions if this isnt available
1450149µs require 'Config_git.pl';
145113µs $Config_SH_expanded .= $Config::Git_Data;
14521200ns 1;
1453} or warn "Warning: failed to load Config_git.pl, something strange about this perl...\n";
1454
1455# Search for it in the big string
1456
# spent 37µs (9+28) within Config::fetch_string which was called: # once (9µs+28µs) by Config::FETCH at line 1524
sub fetch_string {
14571700ns my($self, $key) = @_;
1458
1459132µs228µs return undef unless $Config_SH_expanded =~ /\n$key=\'(.*?)\'\n/s;
# spent 19µs making 1 call to CORE::match # spent 9µs making 1 call to CORE::regcomp
1460 # So we can say "if $Config{'foo'}".
146116µs $self->{$key} = $1 eq 'undef' ? undef : $1;
1462}
1463
14641200nsmy $prevpos = 0;
1465
1466sub FIRSTKEY {
1467 $prevpos = 0;
1468 substr($Config_SH_expanded, 1, index($Config_SH_expanded, '=') - 1 );
1469}
1470
1471sub NEXTKEY {
1472 my $pos = index($Config_SH_expanded, qq('\n), $prevpos) + 2;
1473 my $len = index($Config_SH_expanded, "=", $pos) - $pos;
1474 $prevpos = $pos;
1475 $len > 0 ? substr($Config_SH_expanded, $pos, $len) : undef;
1476}
1477
1478sub EXISTS {
1479 return 1 if exists($_[0]->{$_[1]});
1480
1481 return(index($Config_SH_expanded, "\n$_[1]='") != -1
1482 );
1483}
1484
1485sub STORE { die "\%Config::Config is read-only\n" }
148612µs*DELETE = *CLEAR = \*STORE; # Typeglob aliasing uses less space
1487
1488sub config_sh {
1489 substr $Config_SH_expanded, 1, $config_sh_len;
1490}
1491
1492sub config_re {
1493 my $re = shift;
1494 return map { chomp; $_ } grep eval{ /^(?:$re)=/ }, split /^/,
1495 $Config_SH_expanded;
1496}
1497
1498sub config_vars {
1499 # implements -V:cfgvar option (see perlrun -V:)
1500 foreach (@_) {
1501 # find optional leading, trailing colons; and query-spec
1502 my ($notag,$qry,$lncont) = m/^(:)?(.*?)(:)?$/; # flags fore and aft,
1503 # map colon-flags to print decorations
1504 my $prfx = $notag ? '': "$qry="; # tag-prefix for print
1505 my $lnend = $lncont ? ' ' : ";\n"; # line ending for print
1506
1507 # all config-vars are by definition \w only, any \W means regex
1508 if ($qry =~ /\W/) {
1509 my @matches = config_re($qry);
1510 print map "$_$lnend", @matches ? @matches : "$qry: not found" if !$notag;
1511 print map { s/\w+=//; "$_$lnend" } @matches ? @matches : "$qry: not found" if $notag;
1512 } else {
1513 my $v = (exists $Config::Config{$qry}) ? $Config::Config{$qry}
1514 : 'UNKNOWN';
1515 $v = 'undef' unless defined $v;
1516 print "${prfx}'${v}'$lnend";
1517 }
1518 }
1519}
1520
1521# Called by the real AUTOLOAD
1522
# spent 5µs within Config::launcher which was called: # once (5µs+0s) by Config::FETCH at line 81 of Config.pm
sub launcher {
152313µs undef &AUTOLOAD;
152413µs137µs goto \&$Config::AUTOLOAD;
# spent 37µs making 1 call to Config::fetch_string
1525}
1526
1527112µs1;