← Index
NYTProf Performance Profile   « line view »
For /Users/brian/bin/perls/cpan5.26.1
  Run on Sat Dec 30 01:41:10 2017
Reported on Sat Dec 30 01:44:15 2017

Filename/usr/local/perls/perl-5.26.1/lib/5.26.1/darwin-2level/Config_heavy.pl
StatementsExecuted 0 statements in 0s
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
0000s0sConfig::::BEGINConfig::BEGIN
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::::fetch_stringConfig::fetch_string
0000s0sConfig::::header_filesConfig::header_files
0000s0sConfig::::launcherConfig::launcher
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;
5use strict;
6use warnings;
7use vars '%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 'darwin' but is being run on '$^O'"
28 unless "darwin" 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 darwin\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: Sat Dec 23 20:37:04 EST 2017
79## Configured by : brian
80## Target system : darwin roscoe.local 17.2.0 darwin kernel version 17.2.0: fri sep 29 18:27:05 pdt 2017; root:xnu-4570.20.62~3release_x86_64 x86_64
81#
82#: Configure command line arguments.
83#
84#: Variables propagated from previous config.sh file.
85
86our $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 bincompat5005=undef
106 Compiler:
107 cc='$cc'
108 ccflags ='$ccflags'
109 optimize='$optimize'
110 cppflags='$cppflags'
111 ccversion='$ccversion'
112 gccversion='$gccversion'
113 gccosandvers='$gccosandvers'
114 intsize=$intsize
115 longsize=$longsize
116 ptrsize=$ptrsize
117 doublesize=$doublesize
118 byteorder=$byteorder
119 doublekind=$doublekind
120 d_longlong=$d_longlong
121 longlongsize=$longlongsize
122 d_longdbl=$d_longdbl
123 longdblsize=$longdblsize
124 longdblkind=$longdblkind
125 ivtype='$ivtype'
126 ivsize=$ivsize
127 nvtype='$nvtype'
128 nvsize=$nvsize
129 Off_t='$lseektype'
130 lseeksize=$lseeksize
131 alignbytes=$alignbytes
132 prototype=$prototype
133 Linker and Libraries:
134 ld='$ld'
135 ldflags ='$ldflags'
136 libpth=$libpth
137 libs=$libs
138 perllibs=$perllibs
139 libc=$libc
140 so=$so
141 useshrplib=$useshrplib
142 libperl=$libperl
143 gnulibc_version='$gnulibc_version'
144 Dynamic Linking:
145 dlsrc=$dlsrc
146 dlext=$dlext
147 d_dlsymun=$d_dlsymun
148 ccdlflags='$ccdlflags'
149 cccdlflags='$cccdlflags'
150 lddlflags='$lddlflags'
151
152!END!
153my $summary_expanded;
154
155sub myconfig {
156 return $summary_expanded if $summary_expanded;
157 ($summary_expanded = $summary) =~ s{\$(\w+)}
158 {
159 my $c;
160 if ($1 eq 'git_ancestor_line') {
161 if ($Config::Config{git_ancestor}) {
162 $c= "\n Ancestor: $Config::Config{git_ancestor}";
163 } else {
164 $c= "";
165 }
166 } else {
167 $c = $Config::Config{$1};
168 }
169 defined($c) ? $c : 'undef'
170 }ge;
171 $summary_expanded;
172}
173
174local *_ = \my $a;
175$_ = <<'!END!';
176Author=''
177CONFIG='true'
178Date=''
179Header=''
180Id=''
181LANG='C'
182LC_ALL='C'
183Locker=''
184Log=''
185PATCHLEVEL='26'
186PERL_API_REVISION='5'
187PERL_API_SUBVERSION='0'
188PERL_API_VERSION='26'
189PERL_CONFIG_SH='true'
190PERL_PATCHLEVEL=''
191PERL_REVISION='5'
192PERL_SUBVERSION='1'
193PERL_VERSION='26'
194RCSfile=''
195Revision=''
196SUBVERSION='1'
197Source=''
198State=''
199_a='.a'
200_exe=''
201_o='.o'
202afs='false'
203afsroot='/afs'
204alignbytes='8'
205ansi2knr=''
206aphostname='/bin/hostname'
207api_revision='5'
208api_subversion='0'
209api_version='26'
210api_versionstring='5.26.0'
211ar='ar'
212archlib='/usr/local/perls/perl-5.26.1/lib/5.26.1/darwin-2level'
213archlibexp='/usr/local/perls/perl-5.26.1/lib/5.26.1/darwin-2level'
214archname='darwin-2level'
215archname64=''
216archobjs=''
217asctime_r_proto='0'
218awk='awk'
219baserev='5.0'
220bash=''
221bin='/usr/local/perls/perl-5.26.1/bin'
222bin_ELF='undef'
223binexp='/usr/local/perls/perl-5.26.1/bin'
224bison='bison'
225byacc='byacc'
226byteorder='ffff'
227c='\c'
228castflags='0'
229cat='cat'
230cc='cc'
231cccdlflags=' '
232ccdlflags=' '
233ccflags='-fno-common -DPERL_DARWIN -mmacosx-version-min=10.13 -fno-strict-aliasing -pipe -fstack-protector-strong -I/usr/local/include -DPERL_USE_SAFE_PUTENV'
234ccflags_uselargefiles=''
235ccname='gcc'
236ccsymbols=''
237ccversion=''
238cf_by='brian'
239cf_email='[email protected]'
240cf_time='Sat Dec 23 20:37:04 EST 2017'
241charbits='8'
242charsize='1'
243chgrp=''
244chmod='chmod'
245chown=''
246clocktype='clock_t'
247comm='comm'
248compress=''
249config_arg0='./Configure'
250config_arg1='-des'
251config_arg2='-Dprefix=/usr/local/perls/perl-5.26.1'
252config_argc='2'
253config_args='-des -Dprefix=/usr/local/perls/perl-5.26.1'
254contains='grep'
255cp='cp'
256cpio=''
257cpp='cpp'
258cpp_stuff='42'
259cppccsymbols=''
260cppflags='-fno-common -DPERL_DARWIN -mmacosx-version-min=10.13 -fno-strict-aliasing -pipe -fstack-protector-strong -I/usr/local/include'
261cpplast='-'
262cppminus='-'
263cpprun='cc -E'
264cppstdin='cc -E'
265cppsymbols='_FORTIFY_SOURCE=2 _LP64=1 __BYTE_ORDER__=1234 __GNUC_MINOR__=2 __GNUC__=4 __LITTLE_ENDIAN__=1 __LP64__=1 __MACH__=1 __PIC__=2 __STDC__=1 __amd64=1 __amd64__=1 __clang__=1 __pic__=2 __x86_64=1 __x86_64__=1'
266crypt_r_proto='0'
267cryptlib=''
268csh='csh'
269ctermid_r_proto='0'
270ctime_r_proto='0'
271d_Gconvert='sprintf((b),"%.*g",(n),(x))'
272d_PRIEUldbl='define'
273d_PRIFUldbl='define'
274d_PRIGUldbl='define'
275d_PRIXU64='define'
276d_PRId64='define'
277d_PRIeldbl='define'
278d_PRIfldbl='define'
279d_PRIgldbl='define'
280d_PRIi64='define'
281d_PRIo64='define'
282d_PRIu64='define'
283d_PRIx64='define'
284d_SCNfldbl='define'
285d__fwalk='undef'
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_deprecated='define'
299d_attribute_format='define'
300d_attribute_malloc='define'
301d_attribute_nonnull='define'
302d_attribute_noreturn='define'
303d_attribute_pure='define'
304d_attribute_unused='define'
305d_attribute_warn_unused_result='define'
306d_backtrace='define'
307d_bcmp='define'
308d_bcopy='define'
309d_bsd='undef'
310d_bsdgetpgrp='undef'
311d_bsdsetpgrp='undef'
312d_builtin_choose_expr='define'
313d_builtin_expect='define'
314d_bzero='define'
315d_c99_variadic_macros='define'
316d_casti32='undef'
317d_castneg='define'
318d_cbrt='define'
319d_charvspr='undef'
320d_chown='define'
321d_chroot='define'
322d_chsize='undef'
323d_class='undef'
324d_clearenv='undef'
325d_closedir='define'
326d_cmsghdr_s='define'
327d_const='define'
328d_copysign='define'
329d_copysignl='define'
330d_cplusplus='undef'
331d_crypt='define'
332d_crypt_r='undef'
333d_csh='define'
334d_ctermid='define'
335d_ctermid_r='undef'
336d_ctime64='undef'
337d_ctime_r='undef'
338d_cuserid='undef'
339d_dbl_dig='define'
340d_dbminitproto='undef'
341d_difftime='define'
342d_difftime64='undef'
343d_dir_dd_fd='undef'
344d_dirfd='define'
345d_dirnamlen='define'
346d_dladdr='define'
347d_dlerror='define'
348d_dlopen='define'
349d_dlsymun='undef'
350d_dosuid='undef'
351d_double_has_inf='define'
352d_double_has_nan='define'
353d_double_has_negative_zero='define'
354d_double_has_subnormals='define'
355d_double_style_cray='undef'
356d_double_style_ibm='undef'
357d_double_style_ieee='define'
358d_double_style_vax='undef'
359d_drand48_r='undef'
360d_drand48proto='define'
361d_dup2='define'
362d_duplocale='define'
363d_eaccess='undef'
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='define'
383d_fchdir='define'
384d_fchmod='define'
385d_fchown='define'
386d_fcntl='define'
387d_fcntl_can_lock='define'
388d_fd_macros='define'
389d_fd_set='define'
390d_fdclose='undef'
391d_fdim='define'
392d_fds_bits='define'
393d_fegetround='define'
394d_fgetpos='define'
395d_finite='undef'
396d_finitel='undef'
397d_flexfnam='define'
398d_flock='define'
399d_flockproto='define'
400d_fma='define'
401d_fmax='define'
402d_fmin='define'
403d_fork='define'
404d_fp_class='undef'
405d_fp_classify='undef'
406d_fp_classl='undef'
407d_fpathconf='define'
408d_fpclass='undef'
409d_fpclassify='define'
410d_fpclassl='undef'
411d_fpgetround='undef'
412d_fpos64_t='undef'
413d_freelocale='define'
414d_frexpl='define'
415d_fs_data_s='undef'
416d_fseeko='define'
417d_fsetpos='define'
418d_fstatfs='define'
419d_fstatvfs='define'
420d_fsync='define'
421d_ftello='define'
422d_ftime='undef'
423d_futimes='define'
424d_gai_strerror='define'
425d_gdbm_ndbm_h_uses_prototypes='undef'
426d_gdbmndbm_h_uses_prototypes='undef'
427d_getaddrinfo='define'
428d_getcwd='define'
429d_getespwnam='undef'
430d_getfsstat='define'
431d_getgrent='define'
432d_getgrent_r='undef'
433d_getgrgid_r='undef'
434d_getgrnam_r='undef'
435d_getgrps='define'
436d_gethbyaddr='define'
437d_gethbyname='define'
438d_gethent='define'
439d_gethname='define'
440d_gethostbyaddr_r='undef'
441d_gethostbyname_r='undef'
442d_gethostent_r='undef'
443d_gethostprotos='define'
444d_getitimer='define'
445d_getlogin='define'
446d_getlogin_r='undef'
447d_getmnt='undef'
448d_getmntent='undef'
449d_getnameinfo='define'
450d_getnbyaddr='define'
451d_getnbyname='define'
452d_getnent='define'
453d_getnetbyaddr_r='undef'
454d_getnetbyname_r='undef'
455d_getnetent_r='undef'
456d_getnetprotos='define'
457d_getpagsz='define'
458d_getpbyname='define'
459d_getpbynumber='define'
460d_getpent='define'
461d_getpgid='define'
462d_getpgrp='define'
463d_getpgrp2='undef'
464d_getppid='define'
465d_getprior='define'
466d_getprotobyname_r='undef'
467d_getprotobynumber_r='undef'
468d_getprotoent_r='undef'
469d_getprotoprotos='define'
470d_getprpwnam='undef'
471d_getpwent='define'
472d_getpwent_r='undef'
473d_getpwnam_r='undef'
474d_getpwuid_r='undef'
475d_getsbyname='define'
476d_getsbyport='define'
477d_getsent='define'
478d_getservbyname_r='undef'
479d_getservbyport_r='undef'
480d_getservent_r='undef'
481d_getservprotos='define'
482d_getspnam='undef'
483d_getspnam_r='undef'
484d_gettimeod='define'
485d_gmtime64='undef'
486d_gmtime_r='undef'
487d_gnulibc='undef'
488d_grpasswd='define'
489d_hasmntopt='undef'
490d_htonl='define'
491d_hypot='define'
492d_ilogb='define'
493d_ilogbl='define'
494d_inc_version_list='undef'
495d_index='undef'
496d_inetaton='define'
497d_inetntop='define'
498d_inetpton='define'
499d_int64_t='define'
500d_ip_mreq='define'
501d_ip_mreq_source='define'
502d_ipv6_mreq='define'
503d_ipv6_mreq_source='undef'
504d_isascii='define'
505d_isblank='define'
506d_isfinite='define'
507d_isfinitel='undef'
508d_isinf='define'
509d_isinfl='undef'
510d_isless='undef'
511d_isnan='define'
512d_isnanl='undef'
513d_isnormal='define'
514d_j0='define'
515d_j0l='undef'
516d_killpg='define'
517d_lc_monetary_2008='define'
518d_lchown='define'
519d_ldbl_dig='define'
520d_ldexpl='define'
521d_lgamma='define'
522d_lgamma_r='define'
523d_libm_lib_version='undef'
524d_libname_unique='undef'
525d_link='define'
526d_llrint='define'
527d_llrintl='define'
528d_llround='define'
529d_llroundl='define'
530d_localtime64='undef'
531d_localtime_r='undef'
532d_localtime_r_needs_tzset='undef'
533d_locconv='define'
534d_lockf='define'
535d_log1p='define'
536d_log2='define'
537d_logb='define'
538d_long_double_style_ieee='define'
539d_long_double_style_ieee_doubledouble='undef'
540d_long_double_style_ieee_extended='define'
541d_long_double_style_ieee_std='undef'
542d_long_double_style_vax='undef'
543d_longdbl='define'
544d_longlong='define'
545d_lrint='define'
546d_lrintl='define'
547d_lround='define'
548d_lroundl='define'
549d_lseekproto='define'
550d_lstat='define'
551d_madvise='define'
552d_malloc_good_size='define'
553d_malloc_size='define'
554d_mblen='define'
555d_mbstowcs='define'
556d_mbtowc='define'
557d_memchr='define'
558d_memcmp='define'
559d_memcpy='define'
560d_memmem='define'
561d_memmove='define'
562d_memset='define'
563d_mkdir='define'
564d_mkdtemp='define'
565d_mkfifo='define'
566d_mkstemp='define'
567d_mkstemps='define'
568d_mktime='define'
569d_mktime64='undef'
570d_mmap='define'
571d_modfl='define'
572d_modflproto='define'
573d_mprotect='define'
574d_msg='define'
575d_msg_ctrunc='define'
576d_msg_dontroute='define'
577d_msg_oob='define'
578d_msg_peek='define'
579d_msg_proxy='undef'
580d_msgctl='define'
581d_msgget='define'
582d_msghdr_s='define'
583d_msgrcv='define'
584d_msgsnd='define'
585d_msync='define'
586d_munmap='define'
587d_mymalloc='undef'
588d_nan='define'
589d_ndbm='define'
590d_ndbm_h_uses_prototypes='define'
591d_nearbyint='define'
592d_newlocale='define'
593d_nextafter='define'
594d_nexttoward='define'
595d_nice='define'
596d_nl_langinfo='define'
597d_nv_preserves_uv='undef'
598d_nv_zero_is_allbits_zero='define'
599d_off64_t='undef'
600d_old_pthread_create_joinable='undef'
601d_oldpthreads='undef'
602d_oldsock='undef'
603d_open3='define'
604d_pathconf='define'
605d_pause='define'
606d_perl_otherlibdirs='undef'
607d_phostname='undef'
608d_pipe='define'
609d_poll='undef'
610d_portable='define'
611d_prctl='undef'
612d_prctl_set_name='undef'
613d_printf_format_null='define'
614d_procselfexe='undef'
615d_pseudofork='undef'
616d_pthread_atfork='define'
617d_pthread_attr_setscope='define'
618d_pthread_yield='undef'
619d_ptrdiff_t='define'
620d_pwage='undef'
621d_pwchange='define'
622d_pwclass='define'
623d_pwcomment='undef'
624d_pwexpire='define'
625d_pwgecos='define'
626d_pwpasswd='define'
627d_pwquota='undef'
628d_qgcvt='undef'
629d_quad='define'
630d_querylocale='define'
631d_random_r='undef'
632d_re_comp='undef'
633d_readdir='define'
634d_readdir64_r='undef'
635d_readdir_r='undef'
636d_readlink='define'
637d_readv='define'
638d_recvmsg='define'
639d_regcmp='undef'
640d_regcomp='define'
641d_remainder='define'
642d_remquo='define'
643d_rename='define'
644d_rewinddir='define'
645d_rint='define'
646d_rmdir='define'
647d_round='define'
648d_safebcpy='undef'
649d_safemcpy='undef'
650d_sanemcmp='define'
651d_sbrkproto='define'
652d_scalbn='define'
653d_scalbnl='define'
654d_sched_yield='define'
655d_scm_rights='define'
656d_seekdir='define'
657d_select='define'
658d_sem='define'
659d_semctl='define'
660d_semctl_semid_ds='define'
661d_semctl_semun='define'
662d_semget='define'
663d_semop='define'
664d_sendmsg='define'
665d_setegid='define'
666d_seteuid='define'
667d_setgrent='define'
668d_setgrent_r='undef'
669d_setgrps='define'
670d_sethent='define'
671d_sethostent_r='undef'
672d_setitimer='define'
673d_setlinebuf='define'
674d_setlocale='define'
675d_setlocale_r='undef'
676d_setnent='define'
677d_setnetent_r='undef'
678d_setpent='define'
679d_setpgid='define'
680d_setpgrp='define'
681d_setpgrp2='undef'
682d_setprior='define'
683d_setproctitle='undef'
684d_setprotoent_r='undef'
685d_setpwent='define'
686d_setpwent_r='undef'
687d_setregid='define'
688d_setresgid='undef'
689d_setresuid='undef'
690d_setreuid='define'
691d_setrgid='define'
692d_setruid='define'
693d_setsent='define'
694d_setservent_r='undef'
695d_setsid='define'
696d_setvbuf='define'
697d_shm='define'
698d_shmat='define'
699d_shmatprototype='define'
700d_shmctl='define'
701d_shmdt='define'
702d_shmget='define'
703d_sigaction='define'
704d_siginfo_si_addr='define'
705d_siginfo_si_band='define'
706d_siginfo_si_errno='define'
707d_siginfo_si_fd='undef'
708d_siginfo_si_pid='define'
709d_siginfo_si_status='define'
710d_siginfo_si_uid='define'
711d_siginfo_si_value='define'
712d_signbit='define'
713d_sigprocmask='define'
714d_sigsetjmp='define'
715d_sin6_scope_id='define'
716d_sitearch='define'
717d_snprintf='define'
718d_sockaddr_in6='define'
719d_sockaddr_sa_len='define'
720d_sockatmark='define'
721d_sockatmarkproto='define'
722d_socket='define'
723d_socklen_t='define'
724d_sockpair='define'
725d_socks5_init='undef'
726d_sprintf_returns_strlen='define'
727d_sqrtl='define'
728d_srand48_r='undef'
729d_srandom_r='undef'
730d_sresgproto='undef'
731d_sresuproto='undef'
732d_stat='define'
733d_statblks='define'
734d_statfs_f_flags='define'
735d_statfs_s='define'
736d_static_inline='define'
737d_statvfs='define'
738d_stdio_cnt_lval='define'
739d_stdio_ptr_lval='define'
740d_stdio_ptr_lval_nochange_cnt='define'
741d_stdio_ptr_lval_sets_cnt='undef'
742d_stdio_stream_array='undef'
743d_stdiobase='define'
744d_stdstdio='define'
745d_strchr='define'
746d_strcoll='define'
747d_strctcpy='define'
748d_strerrm='strerror(e)'
749d_strerror='define'
750d_strerror_l='undef'
751d_strerror_r='undef'
752d_strftime='define'
753d_strlcat='define'
754d_strlcpy='define'
755d_strtod='define'
756d_strtol='define'
757d_strtold='define'
758d_strtoll='define'
759d_strtoq='define'
760d_strtoul='define'
761d_strtoull='define'
762d_strtouq='define'
763d_strxfrm='define'
764d_suidsafe='undef'
765d_symlink='define'
766d_syscall='undef'
767d_syscallproto='define'
768d_sysconf='define'
769d_sysernlst=''
770d_syserrlst='define'
771d_system='define'
772d_tcgetpgrp='define'
773d_tcsetpgrp='define'
774d_telldir='define'
775d_telldirproto='define'
776d_tgamma='define'
777d_time='define'
778d_timegm='define'
779d_times='define'
780d_tm_tm_gmtoff='define'
781d_tm_tm_zone='define'
782d_tmpnam_r='undef'
783d_trunc='define'
784d_truncate='define'
785d_truncl='define'
786d_ttyname_r='undef'
787d_tzname='define'
788d_u32align='define'
789d_ualarm='define'
790d_umask='define'
791d_uname='define'
792d_union_semun='define'
793d_unordered='undef'
794d_unsetenv='define'
795d_uselocale='define'
796d_usleep='define'
797d_usleepproto='define'
798d_ustat='undef'
799d_vendorarch='undef'
800d_vendorbin='undef'
801d_vendorlib='undef'
802d_vendorscript='undef'
803d_vfork='define'
804d_void_closedir='undef'
805d_voidsig='define'
806d_voidtty=''
807d_volatile='define'
808d_vprintf='define'
809d_vsnprintf='define'
810d_wait4='define'
811d_waitpid='define'
812d_wcscmp='define'
813d_wcstombs='define'
814d_wcsxfrm='define'
815d_wctomb='define'
816d_writev='define'
817d_xenix='undef'
818date='date'
819db_hashtype='int'
820db_prefixtype='int'
821db_version_major='1'
822db_version_minor='0'
823db_version_patch='0'
824default_inc_excludes_dot='define'
825direntrytype='struct dirent'
826dlext='bundle'
827dlsrc='dl_dlopen.xs'
828doubleinfbytes='0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x7f'
829doublekind='3'
830doublemantbits='52'
831doublenanbytes='0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0xff'
832doublesize='8'
833drand01='Perl_drand48()'
834drand48_r_proto='0'
835dtrace=''
836dtraceobject=''
837dtracexnolibs=''
838dynamic_ext='B Compress/Raw/Bzip2 Compress/Raw/Zlib Cwd DB_File Data/Dumper Devel/PPPort Devel/Peek 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 MIME/Base64 Math/BigInt/FastCalc NDBM_File Opcode POSIX PerlIO/encoding PerlIO/mmap PerlIO/scalar PerlIO/via SDBM_File Socket Storable Sys/Hostname Sys/Syslog Tie/Hash/NamedCapture Time/HiRes Time/Piece Unicode/Collate Unicode/Normalize XS/APItest XS/Typemap arybase attributes mro re threads threads/shared'
839eagain='EAGAIN'
840ebcdic='undef'
841echo='echo'
842egrep='egrep'
843emacs=''
844endgrent_r_proto='0'
845endhostent_r_proto='0'
846endnetent_r_proto='0'
847endprotoent_r_proto='0'
848endpwent_r_proto='0'
849endservent_r_proto='0'
850eunicefix=':'
851exe_ext=''
852expr='expr'
853extensions='B Compress/Raw/Bzip2 Compress/Raw/Zlib Cwd DB_File Data/Dumper Devel/PPPort Devel/Peek 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 MIME/Base64 Math/BigInt/FastCalc NDBM_File Opcode POSIX PerlIO/encoding PerlIO/mmap PerlIO/scalar PerlIO/via SDBM_File Socket Storable Sys/Hostname Sys/Syslog Tie/Hash/NamedCapture Time/HiRes Time/Piece Unicode/Collate Unicode/Normalize XS/APItest XS/Typemap arybase attributes mro re threads threads/shared Archive/Tar Attribute/Handlers AutoLoader B/Debug 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 Getopt/Long HTTP/Tiny I18N/Collate I18N/LangTags IO/Compress IO/Socket/IP IO/Zlib IPC/Cmd IPC/Open3 JSON/PP Locale/Codes Locale/Maketext Locale/Maketext/Simple Math/BigInt Math/BigRat Math/Complex Memoize Module/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/Parser Pod/Perldoc Pod/Simple Pod/Usage Safe Search/Dict SelfLoader Term/ANSIColor Term/Cap Term/Complete Term/ReadLine Test Test/Harness Test/Simple Text/Abbrev Text/Balanced Text/ParseWords Text/Tabs Thread/Queue Thread/Semaphore Tie/File Tie/Memoize Tie/RefHash Time/Local XSLoader autodie autouse base bignum constant encoding/warnings experimental if lib libnet parent perlfaq podlators version'
854extern_C='extern'
855extras=''
856fflushNULL='define'
857fflushall='undef'
858find=''
859firstmakefile='GNUmakefile'
860flex=''
861fpossize='8'
862fpostype='fpos_t'
863freetype='void'
864from=':'
865full_ar='/usr/bin/ar'
866full_csh='/bin/csh'
867full_sed='/usr/bin/sed'
868gccansipedantic=''
869gccosandvers=''
870gccversion='4.2.1 Compatible Apple LLVM 7.0.2 (clang-700.1.81)'
871getgrent_r_proto='0'
872getgrgid_r_proto='0'
873getgrnam_r_proto='0'
874gethostbyaddr_r_proto='0'
875gethostbyname_r_proto='0'
876gethostent_r_proto='0'
877getlogin_r_proto='0'
878getnetbyaddr_r_proto='0'
879getnetbyname_r_proto='0'
880getnetent_r_proto='0'
881getprotobyname_r_proto='0'
882getprotobynumber_r_proto='0'
883getprotoent_r_proto='0'
884getpwent_r_proto='0'
885getpwnam_r_proto='0'
886getpwuid_r_proto='0'
887getservbyname_r_proto='0'
888getservbyport_r_proto='0'
889getservent_r_proto='0'
890getspnam_r_proto='0'
891gidformat='"u"'
892gidsign='1'
893gidsize='4'
894gidtype='gid_t'
895glibpth='/usr/shlib /lib /usr/lib /usr/lib/386 /lib/386 /usr/ccs/lib /usr/ucblib /usr/local/lib '
896gmake='gmake'
897gmtime_r_proto='0'
898gnulibc_version=''
899grep='grep'
900groupcat='cat /etc/group'
901groupstype='gid_t'
902gzip='gzip'
903h_fcntl='false'
904h_sysfile='true'
905hint='recommended'
906hostcat='cat /etc/hosts'
907hostgenerate=''
908hostosname=''
909hostperl=''
910html1dir=' '
911html1direxp=''
912html3dir=' '
913html3direxp=''
914i16size='2'
915i16type='short'
916i32size='4'
917i32type='int'
918i64size='8'
919i64type='long'
920i8size='1'
921i8type='signed char'
922i_arpainet='define'
923i_assert='define'
924i_bfd='define'
925i_bsdioctl=''
926i_crypt='undef'
927i_db='define'
928i_dbm='undef'
929i_dirent='define'
930i_dlfcn='define'
931i_execinfo='define'
932i_fcntl='undef'
933i_fenv='define'
934i_float='define'
935i_fp='undef'
936i_fp_class='undef'
937i_gdbm='undef'
938i_gdbm_ndbm='undef'
939i_gdbmndbm='undef'
940i_grp='define'
941i_ieeefp='undef'
942i_inttypes='define'
943i_langinfo='define'
944i_libutil='undef'
945i_limits='define'
946i_locale='define'
947i_machcthr='undef'
948i_malloc='undef'
949i_mallocmalloc='define'
950i_math='define'
951i_memory='undef'
952i_mntent='undef'
953i_ndbm='define'
954i_netdb='define'
955i_neterrno='undef'
956i_netinettcp='define'
957i_niin='define'
958i_poll='undef'
959i_prot='undef'
960i_pthread='define'
961i_pwd='define'
962i_quadmath='undef'
963i_rpcsvcdbm='undef'
964i_sgtty='undef'
965i_shadow='undef'
966i_socks='undef'
967i_stdarg='define'
968i_stdbool='define'
969i_stddef='define'
970i_stdint='define'
971i_stdlib='define'
972i_string='define'
973i_sunmath='undef'
974i_sysaccess='undef'
975i_sysdir='define'
976i_sysfile='define'
977i_sysfilio='define'
978i_sysin='undef'
979i_sysioctl='define'
980i_syslog='define'
981i_sysmman='define'
982i_sysmode='undef'
983i_sysmount='define'
984i_sysndir='undef'
985i_sysparam='define'
986i_syspoll='define'
987i_sysresrc='define'
988i_syssecrt='undef'
989i_sysselct='define'
990i_syssockio='define'
991i_sysstat='define'
992i_sysstatfs='undef'
993i_sysstatvfs='define'
994i_systime='define'
995i_systimek='undef'
996i_systimes='define'
997i_systypes='define'
998i_sysuio='define'
999i_sysun='define'
1000i_sysutsname='define'
1001i_sysvfs='undef'
1002i_syswait='define'
1003i_termio='undef'
1004i_termios='define'
1005i_time='undef'
1006i_unistd='define'
1007i_ustat='undef'
1008i_utime='define'
1009i_values='undef'
1010i_varargs='undef'
1011i_varhdr='stdarg.h'
1012i_vfork='undef'
1013i_xlocale='define'
1014ignore_versioned_solibs=''
1015inc_version_list=' '
1016inc_version_list_init='0'
1017incpath=''
1018incpth='/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.0.2/include /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/usr/include'
1019inews=''
1020initialinstalllocation='/usr/local/perls/perl-5.26.1/bin'
1021installarchlib='/usr/local/perls/perl-5.26.1/lib/5.26.1/darwin-2level'
1022installbin='/usr/local/perls/perl-5.26.1/bin'
1023installhtml1dir=''
1024installhtml3dir=''
1025installman1dir='/usr/local/perls/perl-5.26.1/man/man1'
1026installman3dir='/usr/local/perls/perl-5.26.1/man/man3'
1027installprefix='/usr/local/perls/perl-5.26.1'
1028installprefixexp='/usr/local/perls/perl-5.26.1'
1029installprivlib='/usr/local/perls/perl-5.26.1/lib/5.26.1'
1030installscript='/usr/local/perls/perl-5.26.1/bin'
1031installsitearch='/usr/local/perls/perl-5.26.1/lib/site_perl/5.26.1/darwin-2level'
1032installsitebin='/usr/local/perls/perl-5.26.1/bin'
1033installsitehtml1dir=''
1034installsitehtml3dir=''
1035installsitelib='/usr/local/perls/perl-5.26.1/lib/site_perl/5.26.1'
1036installsiteman1dir='/usr/local/perls/perl-5.26.1/man/man1'
1037installsiteman3dir='/usr/local/perls/perl-5.26.1/man/man3'
1038installsitescript='/usr/local/perls/perl-5.26.1/bin'
1039installstyle='lib'
1040installusrbinperl='undef'
1041installvendorarch=''
1042installvendorbin=''
1043installvendorhtml1dir=''
1044installvendorhtml3dir=''
1045installvendorlib=''
1046installvendorman1dir=''
1047installvendorman3dir=''
1048installvendorscript=''
1049intsize='4'
1050issymlink='test -h'
1051ivdformat='"ld"'
1052ivsize='8'
1053ivtype='long'
1054known_extensions='Amiga/ARexx Amiga/Exec Archive/Tar Attribute/Handlers AutoLoader B B/Debug 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 GDBM_File Getopt/Long HTTP/Tiny Hash/Util Hash/Util/FieldHash I18N/Collate I18N/LangTags I18N/Langinfo IO IO/Compress IO/Socket/IP IO/Zlib IPC/Cmd IPC/Open3 IPC/SysV JSON/PP List/Util Locale/Codes Locale/Maketext Locale/Maketext/Simple MIME/Base64 Math/BigInt Math/BigInt/FastCalc Math/BigRat Math/Complex Memoize Module/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/Parser Pod/Perldoc Pod/Simple Pod/Usage SDBM_File Safe Search/Dict SelfLoader Socket Storable Sys/Hostname Sys/Syslog Term/ANSIColor Term/Cap Term/Complete Term/ReadLine Test Test/Harness Test/Simple Text/Abbrev Text/Balanced Text/ParseWords Text/Tabs Thread/Queue Thread/Semaphore Tie/File Tie/Hash/NamedCapture Tie/Memoize Tie/RefHash Time/HiRes Time/Local Time/Piece Unicode/Collate Unicode/Normalize VMS/DCLsym VMS/Filespec VMS/Stdio Win32 Win32API/File Win32CORE XS/APItest XS/Typemap XSLoader arybase attributes autodie autouse base bignum constant encoding/warnings experimental if lib libnet mro parent perlfaq podlators re threads threads/shared version '
1055ksh=''
1056ld='cc'
1057ld_can_script='undef'
1058lddlflags=' -mmacosx-version-min=10.13 -bundle -undefined dynamic_lookup -L/usr/local/lib -fstack-protector-strong'
1059ldflags=' -mmacosx-version-min=10.13 -fstack-protector-strong -L/usr/local/lib'
1060ldflags_uselargefiles=''
1061ldlibpthname='DYLD_LIBRARY_PATH'
1062less='less'
1063lib_ext='.a'
1064libc=''
1065libperl='libperl.a'
1066libpth='/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.0.2/lib /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/usr/lib /usr/local/lib /usr/lib'
1067libs='-lpthread -ldbm -ldl -lm -lutil -lc'
1068libsdirs=' /usr/lib'
1069libsfiles=' libpthread.dylib libdbm.dylib libdl.dylib libm.dylib libutil.dylib libc.dylib'
1070libsfound=' /usr/lib/libpthread.dylib /usr/lib/libdbm.dylib /usr/lib/libdl.dylib /usr/lib/libm.dylib /usr/lib/libutil.dylib /usr/lib/libc.dylib'
1071libspath=' /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.0.2/lib /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/usr/lib /usr/local/lib /usr/lib'
1072libswanted='cl pthread socket bind inet nsl ndbm gdbm dbm db malloc dl ld sun m crypt sec util c cposix posix ucb bsd BSD'
1073libswanted_uselargefiles=''
1074line=''
1075lint=''
1076lkflags=''
1077ln='ln'
1078lns='/bin/ln -s'
1079localtime_r_proto='0'
1080locincpth='/usr/local/include /opt/local/include /usr/gnu/include /opt/gnu/include /usr/GNU/include /opt/GNU/include'
1081loclibpth='/usr/local/lib /opt/local/lib /usr/gnu/lib /opt/gnu/lib /usr/GNU/lib /opt/GNU/lib'
1082longdblinfbytes='0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xff, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00'
1083longdblkind='3'
1084longdblmantbits='64'
1085longdblnanbytes='0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00'
1086longdblsize='16'
1087longlongsize='8'
1088longsize='8'
1089lp=''
1090lpr=''
1091ls='ls'
1092lseeksize='8'
1093lseektype='off_t'
1094mail=''
1095mailx=''
1096make='make'
1097make_set_make='#'
1098malloc_cflags='ccflags="-DUSE_PERL_SBRK -DPERL_SBRK_VIA_MALLOC $ccflags"'
1099mallocobj=''
1100mallocsrc=''
1101malloctype='void *'
1102man1dir='/usr/local/perls/perl-5.26.1/man/man1'
1103man1direxp='/usr/local/perls/perl-5.26.1/man/man1'
1104man1ext='1'
1105man3dir='/usr/local/perls/perl-5.26.1/man/man3'
1106man3direxp='/usr/local/perls/perl-5.26.1/man/man3'
1107man3ext='3'
1108mips_type=''
1109mistrustnm=''
1110mkdir='mkdir'
1111mmaptype='void *'
1112modetype='mode_t'
1113more='more'
1114multiarch='define'
1115mv=''
1116myarchname='i386-darwin'
1117mydomain='.local'
1118myhostname='roscoe'
1119myuname='darwin roscoe.local 17.2.0 darwin kernel version 17.2.0: fri sep 29 18:27:05 pdt 2017; root:xnu-4570.20.62~3release_x86_64 x86_64 '
1120n=''
1121need_va_copy='define'
1122netdb_hlen_type='size_t'
1123netdb_host_type='char *'
1124netdb_name_type='const char *'
1125netdb_net_type='in_addr_t'
1126nm='nm'
1127nm_opt=''
1128nm_so_opt=''
1129nonxs_ext='Archive/Tar Attribute/Handlers AutoLoader B/Debug 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 Getopt/Long HTTP/Tiny I18N/Collate I18N/LangTags IO/Compress IO/Socket/IP IO/Zlib IPC/Cmd IPC/Open3 JSON/PP Locale/Codes Locale/Maketext Locale/Maketext/Simple Math/BigInt Math/BigRat Math/Complex Memoize Module/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/Parser Pod/Perldoc Pod/Simple Pod/Usage Safe Search/Dict SelfLoader Term/ANSIColor Term/Cap Term/Complete Term/ReadLine Test Test/Harness Test/Simple Text/Abbrev Text/Balanced Text/ParseWords Text/Tabs Thread/Queue Thread/Semaphore Tie/File Tie/Memoize Tie/RefHash Time/Local XSLoader autodie autouse base bignum constant encoding/warnings experimental if lib libnet parent perlfaq podlators version'
1130nroff='nroff'
1131nvEUformat='"E"'
1132nvFUformat='"F"'
1133nvGUformat='"G"'
1134nv_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'
1135nv_preserves_uv_bits='53'
1136nveformat='"e"'
1137nvfformat='"f"'
1138nvgformat='"g"'
1139nvmantbits='52'
1140nvsize='8'
1141nvtype='double'
1142o_nonblock='O_NONBLOCK'
1143obj_ext='.o'
1144old_pthread_create_joinable=''
1145optimize='-O3'
1146orderlib='false'
1147osname='darwin'
1148osvers='17.2.0'
1149otherlibdirs=' '
1150package='perl5'
1151pager='/usr/bin/less -R'
1152passcat='cat /etc/passwd'
1153patchlevel='26'
1154path_sep=':'
1155perl='perl'
1156perl5='/usr/bin/perl'
1157perl_patchlevel=''
1158perl_revision='5'
1159perl_static_inline='static __inline__'
1160perl_subversion='1'
1161perl_version='26'
1162perladmin='[email protected]'
1163perllibs='-lpthread -ldl -lm -lutil -lc'
1164perlpath='/usr/local/perls/perl-5.26.1/bin/perl'
1165pg='pg'
1166phostname='hostname'
1167pidtype='pid_t'
1168plibpth=''
1169pmake=''
1170pr=''
1171prefix='/usr/local/perls/perl-5.26.1'
1172prefixexp='/usr/local/perls/perl-5.26.1'
1173privlib='/usr/local/perls/perl-5.26.1/lib/5.26.1'
1174privlibexp='/usr/local/perls/perl-5.26.1/lib/5.26.1'
1175procselfexe=''
1176prototype='define'
1177ptrsize='8'
1178quadkind='2'
1179quadtype='long'
1180randbits='48'
1181randfunc='Perl_drand48'
1182random_r_proto='0'
1183randseedtype='U32'
1184ranlib='ranlib'
1185rd_nodata='-1'
1186readdir64_r_proto='0'
1187readdir_r_proto='0'
1188revision='5'
1189rm='rm'
1190rm_try='/bin/rm -f try try a.out .out try.[cho] try..o core core.try* try.core*'
1191rmail=''
1192run=''
1193runnm='false'
1194sGMTIME_max='67768036191676799'
1195sGMTIME_min='-62167219200'
1196sLOCALTIME_max='67768036191694799'
1197sLOCALTIME_min='-62167201438'
1198sPRIEUldbl='"LE"'
1199sPRIFUldbl='"LF"'
1200sPRIGUldbl='"LG"'
1201sPRIXU64='"lX"'
1202sPRId64='"ld"'
1203sPRIeldbl='"Le"'
1204sPRIfldbl='"Lf"'
1205sPRIgldbl='"Lg"'
1206sPRIi64='"li"'
1207sPRIo64='"lo"'
1208sPRIu64='"lu"'
1209sPRIx64='"lx"'
1210sSCNfldbl='"Lf"'
1211sched_yield='sched_yield()'
1212scriptdir='/usr/local/perls/perl-5.26.1/bin'
1213scriptdirexp='/usr/local/perls/perl-5.26.1/bin'
1214sed='sed'
1215seedfunc='Perl_drand48_init'
1216selectminbits='32'
1217selecttype='fd_set *'
1218sendmail=''
1219setgrent_r_proto='0'
1220sethostent_r_proto='0'
1221setlocale_r_proto='0'
1222setnetent_r_proto='0'
1223setprotoent_r_proto='0'
1224setpwent_r_proto='0'
1225setservent_r_proto='0'
1226sh='/bin/sh'
1227shar=''
1228sharpbang='#!'
1229shmattype='void *'
1230shortsize='2'
1231shrpenv=''
1232shsharp='true'
1233sig_count='32'
1234sig_name='ZERO HUP INT QUIT ILL TRAP ABRT EMT FPE KILL BUS SEGV SYS PIPE ALRM TERM URG STOP TSTP CONT CHLD TTIN TTOU IO XCPU XFSZ VTALRM PROF WINCH INFO USR1 USR2 IOT '
1235sig_name_init='"ZERO", "HUP", "INT", "QUIT", "ILL", "TRAP", "ABRT", "EMT", "FPE", "KILL", "BUS", "SEGV", "SYS", "PIPE", "ALRM", "TERM", "URG", "STOP", "TSTP", "CONT", "CHLD", "TTIN", "TTOU", "IO", "XCPU", "XFSZ", "VTALRM", "PROF", "WINCH", "INFO", "USR1", "USR2", "IOT", 0'
1236sig_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 6 '
1237sig_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, 6, 0'
1238sig_size='33'
1239signal_t='void'
1240sitearch='/usr/local/perls/perl-5.26.1/lib/site_perl/5.26.1/darwin-2level'
1241sitearchexp='/usr/local/perls/perl-5.26.1/lib/site_perl/5.26.1/darwin-2level'
1242sitebin='/usr/local/perls/perl-5.26.1/bin'
1243sitebinexp='/usr/local/perls/perl-5.26.1/bin'
1244sitehtml1dir=''
1245sitehtml1direxp=''
1246sitehtml3dir=''
1247sitehtml3direxp=''
1248sitelib='/usr/local/perls/perl-5.26.1/lib/site_perl/5.26.1'
1249sitelib_stem='/usr/local/perls/perl-5.26.1/lib/site_perl'
1250sitelibexp='/usr/local/perls/perl-5.26.1/lib/site_perl/5.26.1'
1251siteman1dir='/usr/local/perls/perl-5.26.1/man/man1'
1252siteman1direxp='/usr/local/perls/perl-5.26.1/man/man1'
1253siteman3dir='/usr/local/perls/perl-5.26.1/man/man3'
1254siteman3direxp='/usr/local/perls/perl-5.26.1/man/man3'
1255siteprefix='/usr/local/perls/perl-5.26.1'
1256siteprefixexp='/usr/local/perls/perl-5.26.1'
1257sitescript='/usr/local/perls/perl-5.26.1/bin'
1258sitescriptexp='/usr/local/perls/perl-5.26.1/bin'
1259sizesize='8'
1260sizetype='size_t'
1261sleep=''
1262smail=''
1263so='dylib'
1264sockethdr=''
1265socketlib=''
1266socksizetype='socklen_t'
1267sort='sort'
1268spackage='Perl5'
1269spitshell='cat'
1270srand48_r_proto='0'
1271srandom_r_proto='0'
1272src='.'
1273ssizetype='ssize_t'
1274st_ino_sign='1'
1275st_ino_size='8'
1276startperl='#!/usr/local/perls/perl-5.26.1/bin/perl'
1277startsh='#!/bin/sh'
1278static_ext=' '
1279stdchar='char'
1280stdio_base='((fp)->_ub._base ? (fp)->_ub._base : (fp)->_bf._base)'
1281stdio_bufsiz='((fp)->_ub._base ? (fp)->_ub._size : (fp)->_bf._size)'
1282stdio_cnt='((fp)->_r)'
1283stdio_filbuf=''
1284stdio_ptr='((fp)->_p)'
1285stdio_stream_array=''
1286strerror_r_proto='0'
1287strings='/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/usr/include/string.h'
1288submit=''
1289subversion='1'
1290sysman='/usr/share/man/man1'
1291sysroot=''
1292tail=''
1293tar=''
1294targetarch=''
1295targetdir=''
1296targetenv=''
1297targethost=''
1298targetmkdir=''
1299targetport=''
1300targetsh='/bin/sh'
1301tbl=''
1302tee=''
1303test='test'
1304timeincl='/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/usr/include/sys/time.h '
1305timetype='time_t'
1306tmpnam_r_proto='0'
1307to=':'
1308touch='touch'
1309tr='tr'
1310trnl='\n'
1311troff=''
1312ttyname_r_proto='0'
1313u16size='2'
1314u16type='unsigned short'
1315u32size='4'
1316u32type='unsigned int'
1317u64size='8'
1318u64type='unsigned long'
1319u8size='1'
1320u8type='unsigned char'
1321uidformat='"u"'
1322uidsign='1'
1323uidsize='4'
1324uidtype='uid_t'
1325uname='uname'
1326uniq='uniq'
1327uquadtype='unsigned long'
1328use5005threads='undef'
1329use64bitall='define'
1330use64bitint='define'
1331usecbacktrace='undef'
1332usecrosscompile='undef'
1333usedevel='undef'
1334usedl='define'
1335usedtrace='undef'
1336usefaststdio='undef'
1337useithreads='undef'
1338usekernprocpathname='undef'
1339uselargefiles='define'
1340uselongdouble='undef'
1341usemallocwrap='define'
1342usemorebits='undef'
1343usemultiplicity='undef'
1344usemymalloc='n'
1345usenm='false'
1346usensgetexecutablepath='define'
1347useopcode='true'
1348useperlio='define'
1349useposix='true'
1350usequadmath='undef'
1351usereentrant='undef'
1352userelocatableinc='undef'
1353useshrplib='false'
1354usesitecustomize='undef'
1355usesocks='undef'
1356usethreads='undef'
1357usevendorprefix='undef'
1358useversionedarchname='undef'
1359usevfork='true'
1360usrinc='/usr/include'
1361uuname=''
1362uvXUformat='"lX"'
1363uvoformat='"lo"'
1364uvsize='8'
1365uvtype='unsigned long'
1366uvuformat='"lu"'
1367uvxformat='"lx"'
1368vaproto='define'
1369vendorarch=''
1370vendorarchexp=''
1371vendorbin=''
1372vendorbinexp=''
1373vendorhtml1dir=' '
1374vendorhtml1direxp=''
1375vendorhtml3dir=' '
1376vendorhtml3direxp=''
1377vendorlib=''
1378vendorlib_stem=''
1379vendorlibexp=''
1380vendorman1dir=' '
1381vendorman1direxp=''
1382vendorman3dir=' '
1383vendorman3direxp=''
1384vendorprefix=''
1385vendorprefixexp=''
1386vendorscript=''
1387vendorscriptexp=''
1388version='5.26.1'
1389version_patchlevel_string='version 26 subversion 1'
1390versiononly='undef'
1391vi=''
1392xlibpth='/usr/lib/386 /lib/386'
1393yacc='yacc'
1394yaccflags=''
1395zcat=''
1396zip='zip'
1397!END!
1398
1399my $i = ord(8);
1400foreach my $c (7,6,5,4,3,2,1) { $i <<= 8; $i |= ord($c); }
1401our $byteorder = join('', unpack('aaaaaaaa', pack('L!', $i)));
1402s/(byteorder=)(['"]).*?\2/$1$2$Config::byteorder$2/m;
1403
1404my $config_sh_len = length $_;
1405
1406our $Config_SH_expanded = "\n$_" . << 'EOVIRTUAL';
1407ccflags_nolargefiles='-fno-common -DPERL_DARWIN -mmacosx-version-min=10.13 -fno-strict-aliasing -pipe -fstack-protector-strong -I/usr/local/include -DPERL_USE_SAFE_PUTENV'
1408ldflags_nolargefiles=' -mmacosx-version-min=10.13 -fstack-protector-strong -L/usr/local/lib'
1409libs_nolargefiles='-lpthread -ldbm -ldl -lm -lutil -lc'
1410libswanted_nolargefiles='cl pthread socket bind inet nsl ndbm gdbm dbm db malloc dl ld sun m crypt sec util c cposix posix ucb bsd BSD'
1411ccwarnflags=' -Wall -Werror=declaration-after-statement -Wextra -Wc++-compat -Wwrite-strings'
1412ccstdflags=' -std=c89'
1413EOVIRTUAL
1414eval {
1415 # do not have hairy conniptions if this isnt available
1416 require 'Config_git.pl';
1417 $Config_SH_expanded .= $Config::Git_Data;
1418 1;
1419} or warn "Warning: failed to load Config_git.pl, something strange about this perl...\n";
1420
1421# Search for it in the big string
1422sub fetch_string {
1423 my($self, $key) = @_;
1424
1425 return undef unless $Config_SH_expanded =~ /\n$key=\'(.*?)\'\n/s;
1426 # So we can say "if $Config{'foo'}".
1427 $self->{$key} = $1 eq 'undef' ? undef : $1;
1428}
1429
1430my $prevpos = 0;
1431
1432sub FIRSTKEY {
1433 $prevpos = 0;
1434 substr($Config_SH_expanded, 1, index($Config_SH_expanded, '=') - 1 );
1435}
1436
1437sub NEXTKEY {
1438 my $pos = index($Config_SH_expanded, qq('\n), $prevpos) + 2;
1439 my $len = index($Config_SH_expanded, "=", $pos) - $pos;
1440 $prevpos = $pos;
1441 $len > 0 ? substr($Config_SH_expanded, $pos, $len) : undef;
1442}
1443
1444sub EXISTS {
1445 return 1 if exists($_[0]->{$_[1]});
1446
1447 return(index($Config_SH_expanded, "\n$_[1]='") != -1
1448 );
1449}
1450
1451sub STORE { die "\%Config::Config is read-only\n" }
1452*DELETE = *CLEAR = \*STORE; # Typeglob aliasing uses less space
1453
1454sub config_sh {
1455 substr $Config_SH_expanded, 1, $config_sh_len;
1456}
1457
1458sub config_re {
1459 my $re = shift;
1460 return map { chomp; $_ } grep eval{ /^(?:$re)=/ }, split /^/,
1461 $Config_SH_expanded;
1462}
1463
1464sub config_vars {
1465 # implements -V:cfgvar option (see perlrun -V:)
1466 foreach (@_) {
1467 # find optional leading, trailing colons; and query-spec
1468 my ($notag,$qry,$lncont) = m/^(:)?(.*?)(:)?$/; # flags fore and aft,
1469 # map colon-flags to print decorations
1470 my $prfx = $notag ? '': "$qry="; # tag-prefix for print
1471 my $lnend = $lncont ? ' ' : ";\n"; # line ending for print
1472
1473 # all config-vars are by definition \w only, any \W means regex
1474 if ($qry =~ /\W/) {
1475 my @matches = config_re($qry);
1476 print map "$_$lnend", @matches ? @matches : "$qry: not found" if !$notag;
1477 print map { s/\w+=//; "$_$lnend" } @matches ? @matches : "$qry: not found" if $notag;
1478 } else {
1479 my $v = (exists $Config::Config{$qry}) ? $Config::Config{$qry}
1480 : 'UNKNOWN';
1481 $v = 'undef' unless defined $v;
1482 print "${prfx}'${v}'$lnend";
1483 }
1484 }
1485}
1486
1487# Called by the real AUTOLOAD
1488sub launcher {
1489 undef &AUTOLOAD;
1490 goto \&$Config::AUTOLOAD;
1491}
1492
14931;