← Index
NYTProf Performance Profile   « block view • line view • sub view »
For xt/tapper-mcp-scheduler-with-db-longrun.t
  Run on Tue May 22 17:18:39 2012
Reported on Tue May 22 17:22:41 2012

Filename/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/lib/5.12.3/x86_64-linux/Config_heavy.pl
StatementsExecuted 59 statements in 1.81ms
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
322145µs145µsConfig::::fetch_stringConfig::fetch_string
1118µs10µsConfig::::BEGIN@5Config::BEGIN@5
1117µs7µsConfig::::launcherConfig::launcher
0000s0sConfig::::EXISTSConfig::EXISTS
0000s0sConfig::::FIRSTKEYConfig::FIRSTKEY
0000s0sConfig::::NEXTKEYConfig::NEXTKEY
0000s0sConfig::::STOREConfig::STORE
0000s0sConfig::::_VConfig::_V
0000s0sConfig::::config_reConfig::config_re
0000s0sConfig::::config_shConfig::config_sh
0000s0sConfig::::config_varsConfig::config_vars
0000s0sConfig::::myconfigConfig::myconfig
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;
531.36ms212µs
# spent 10µs (8+2) within Config::BEGIN@5 which was called: # once (8µs+2µs) by Config::AUTOLOAD at line 5
use strict;
# spent 10µs making 1 call to Config::BEGIN@5 # spent 2µs making 1 call to strict::import
6# use warnings; Pulls in Carp
7# use vars pulls in Carp
8
9sub _V {
10 my ($bincompat, $non_bincompat, $date, @patches) = Internals::V();
11
12 my $opts = join ' ', sort split ' ', "$bincompat $non_bincompat";
13
14 # wrap at 76 columns.
15
16 $opts =~ s/(?=.{53})(.{1,53}) /$1\n /mg;
17
18 print Config::myconfig();
19 if ($^O eq 'VMS') {
20 print "\nCharacteristics of this PERLSHR image: \n";
21 } else {
22 print "\nCharacteristics of this binary (from libperl): \n";
23 }
24
25 print " Compile-time options: $opts\n";
26
27 if (@patches) {
28 print " Locally applied patches:\n";
29 print "\t$_\n" foreach @patches;
30 }
31
32 print " Built under $^O\n";
33
34 print " $date\n" if defined $date;
35
36 my @env = map { "$_=\"$ENV{$_}\"" } sort grep {/^PERL/} keys %ENV;
37 push @env, "CYGWIN=\"$ENV{CYGWIN}\"" if $^O eq 'cygwin';
38
39 if (@env) {
40 print " \%ENV:\n";
41 print " $_\n" foreach @env;
42 }
43 print " \@INC:\n";
44 print " $_\n" foreach @INC;
45}
46
47##
48## This file was produced by running the Configure script. It holds all the
49## definitions figured out by Configure. Should you modify one of these values,
50## do not forget to propagate your changes by running "Configure -der". You may
51## instead choose to run each of the .SH files by yourself, or "Configure -S".
52##
53#
54## Package name : perl5
55## Source directory : .
56## Configuration time: Thu May 3 16:19:59 CEST 2012
57## Configured by : ss5
58## Target system : linux bascha 3.0.0-14-generic #23-ubuntu smp mon nov 21 20:28:43 utc 2011 x86_64 x86_64 x86_64 gnulinux
59#
60#: Configure command line arguments.
61#
62#: Variables propagated from previous config.sh file.
63
6412µsour $summary = <<'!END!';
65Summary of my $package (revision $revision $version_patchlevel_string) configuration:
66 $git_commit_id_title $git_commit_id$git_ancestor_line
67 Platform:
68 osname=$osname, osvers=$osvers, archname=$archname
69 uname='$myuname'
70 config_args='$config_args'
71 hint=$hint, useposix=$useposix, d_sigaction=$d_sigaction
72 useithreads=$useithreads, usemultiplicity=$usemultiplicity
73 useperlio=$useperlio, d_sfio=$d_sfio, uselargefiles=$uselargefiles, usesocks=$usesocks
74 use64bitint=$use64bitint, use64bitall=$use64bitall, uselongdouble=$uselongdouble
75 usemymalloc=$usemymalloc, bincompat5005=undef
76 Compiler:
77 cc='$cc', ccflags ='$ccflags',
78 optimize='$optimize',
79 cppflags='$cppflags'
80 ccversion='$ccversion', gccversion='$gccversion', gccosandvers='$gccosandvers'
81 intsize=$intsize, longsize=$longsize, ptrsize=$ptrsize, doublesize=$doublesize, byteorder=$byteorder
82 d_longlong=$d_longlong, longlongsize=$longlongsize, d_longdbl=$d_longdbl, longdblsize=$longdblsize
83 ivtype='$ivtype', ivsize=$ivsize, nvtype='$nvtype', nvsize=$nvsize, Off_t='$lseektype', lseeksize=$lseeksize
84 alignbytes=$alignbytes, prototype=$prototype
85 Linker and Libraries:
86 ld='$ld', ldflags ='$ldflags'
87 libpth=$libpth
88 libs=$libs
89 perllibs=$perllibs
90 libc=$libc, so=$so, useshrplib=$useshrplib, libperl=$libperl
91 gnulibc_version='$gnulibc_version'
92 Dynamic Linking:
93 dlsrc=$dlsrc, dlext=$dlext, d_dlsymun=$d_dlsymun, ccdlflags='$ccdlflags'
94 cccdlflags='$cccdlflags', lddlflags='$lddlflags'
95
96!END!
971100nsmy $summary_expanded;
98
99sub myconfig {
100 return $summary_expanded if $summary_expanded;
101 ($summary_expanded = $summary) =~ s{\$(\w+)}
102 {
103 my $c;
104 if ($1 eq 'git_ancestor_line') {
105 if ($Config::Config{git_ancestor}) {
106 $c= "\n Ancestor: $Config::Config{git_ancestor}";
107 } else {
108 $c= "";
109 }
110 } else {
111 $c = $Config::Config{$1};
112 }
113 defined($c) ? $c : 'undef'
114 }ge;
115 $summary_expanded;
116}
117
11811µslocal *_ = \my $a;
119127µs$_ = <<'!END!';
120Author=''
121CONFIG='true'
122Date='$Date'
123Header=''
124Id='$Id'
125Locker=''
126Log='$Log'
127PATCHLEVEL='12'
128PERL_API_REVISION='5'
129PERL_API_SUBVERSION='0'
130PERL_API_VERSION='12'
131PERL_CONFIG_SH='true'
132PERL_PATCHLEVEL=''
133PERL_REVISION='5'
134PERL_SUBVERSION='3'
135PERL_VERSION='12'
136RCSfile='$RCSfile'
137Revision='$Revision'
138SUBVERSION='3'
139Source=''
140State=''
141_a='.a'
142_exe=''
143_o='.o'
144afs='false'
145afsroot='/afs'
146alignbytes='8'
147ansi2knr=''
148aphostname='/bin/hostname'
149api_revision='5'
150api_subversion='0'
151api_version='12'
152api_versionstring='5.12.0'
153ar='ar'
154archlib='/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/lib/5.12.3/x86_64-linux'
155archlibexp='/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/lib/5.12.3/x86_64-linux'
156archname64=''
157archname='x86_64-linux'
158archobjs=''
159asctime_r_proto='0'
160awk='awk'
161baserev='5.0'
162bash=''
163bin='/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/bin'
164bin_ELF='define'
165binexp='/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/bin'
166bison='bison'
167byacc='byacc'
168byteorder='12345678'
169c=''
170castflags='0'
171cat='cat'
172cc='cc'
173cccdlflags='-fPIC'
174ccdlflags='-Wl,-E'
175ccflags='-fno-strict-aliasing -pipe -fstack-protector -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
176ccflags_uselargefiles='-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
177ccname='gcc'
178ccsymbols=''
179ccversion=''
180cf_by='ss5'
181cf_email='ss5@bascha.(none)'
182cf_time='Thu May 3 16:19:59 CEST 2012'
183charbits='8'
184charsize='1'
185chgrp=''
186chmod='chmod'
187chown=''
188clocktype='clock_t'
189comm='comm'
190compress=''
191config_arg0='Configure'
192config_arg1='-de'
193config_arg2='-Dprefix=/2home/ss5/perl5/perlbrew/perls/perl-5.12.3'
194config_argc='2'
195config_args='-de -Dprefix=/2home/ss5/perl5/perlbrew/perls/perl-5.12.3'
196contains='grep'
197cp='cp'
198cpio=''
199cpp='cpp'
200cpp_stuff='42'
201cppccsymbols=''
202cppflags='-fno-strict-aliasing -pipe -fstack-protector -I/usr/local/include'
203cpplast='-'
204cppminus='-'
205cpprun='cc -E'
206cppstdin='cc -E'
207cppsymbols='__amd64=1 __amd64__=1 __BIGGEST_ALIGNMENT__=16 __BYTE_ORDER__=1234 __CHAR16_TYPE__=short\ unsigned\ int __CHAR32_TYPE__=unsigned\ int __CHAR_BIT__=8 __DBL_DECIMAL_DIG__=17 __DBL_DENORM_MIN__=((double)4.94065645841246544177e-324L) __DBL_DIG__=15 __DBL_EPSILON__=((double)2.22044604925031308085e-16L) __DBL_HAS_DENORM__=1 __DBL_HAS_INFINITY__=1 __DBL_HAS_QUIET_NAN__=1 __DBL_MANT_DIG__=53 __DBL_MAX_10_EXP__=308 __DBL_MAX__=((double)1.79769313486231570815e+308L) __DBL_MAX_EXP__=1024 __DBL_MIN_10_EXP__=(-307) __DBL_MIN__=((double)2.22507385850720138309e-308L) __DBL_MIN_EXP__=(-1021) __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 __FLT_DECIMAL_DIG__=9 __FLT_DENORM_MIN__=1.40129846432481707092e-45F __FLT_DIG__=6 __FLT_EPSILON__=1.19209289550781250000e-7F __FLT_EVAL_METHOD__=0 __FLT_HAS_DENORM__=1 __FLT_HAS_INFINITY__=1 __FLT_HAS_QUIET_NAN__=1 __FLT_MANT_DIG__=24 __FLT_MAX_10_EXP__=38 __FLT_MAX__=3.40282346638528859812e+38F __FLT_MAX_EXP__=128 __FLT_MIN_10_EXP__=(-37) __FLT_MIN__=1.17549435082228750797e-38F __FLT_MIN_EXP__=(-125) __FLT_RADIX__=2 _FORTIFY_SOURCE=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 __GLIBC__=2 __GLIBC_MINOR__=13 __GNUC__=4 __GNUC_GNU_INLINE__=1 __GNUC_MINOR__=6 __GNUC_PATCHLEVEL__=1 __GNU_LIBRARY__=6 __gnu_linux__=1 __GXX_ABI_VERSION=1002 __INT16_C(c)=c __INT16_MAX__=32767 __INT16_TYPE__=short\ int __INT32_C(c)=c __INT32_MAX__=2147483647 __INT32_TYPE__=int __INT64_C(c)=cL __INT64_MAX__=9223372036854775807L __INT64_TYPE__=long\ int __INT8_C(c)=c __INT8_MAX__=127 __INT8_TYPE__=signed\ char __INT_FAST16_MAX__=9223372036854775807L __INT_FAST16_TYPE__=long\ int __INT_FAST32_MAX__=9223372036854775807L __INT_FAST32_TYPE__=long\ int __INT_FAST64_MAX__=9223372036854775807L __INT_FAST64_TYPE__=long\ int __INT_FAST8_MAX__=127 __INT_FAST8_TYPE__=signed\ char __INT_LEAST16_MAX__=32767 __INT_LEAST16_TYPE__=short\ int __INT_LEAST32_MAX__=2147483647 __INT_LEAST32_TYPE__=int __INT_LEAST64_MAX__=9223372036854775807L __INT_LEAST64_TYPE__=long\ int __INT_LEAST8_MAX__=127 __INT_LEAST8_TYPE__=signed\ char __INT_MAX__=2147483647 __INTMAX_C(c)=cL __INTMAX_MAX__=9223372036854775807L __INTMAX_TYPE__=long\ int __INTPTR_MAX__=9223372036854775807L __INTPTR_TYPE__=long\ int __k8=1 __k8__=1 _LARGEFILE_SOURCE=1 __LDBL_DENORM_MIN__=3.64519953188247460253e-4951L __LDBL_DIG__=18 __LDBL_EPSILON__=1.08420217248550443401e-19L __LDBL_HAS_DENORM__=1 __LDBL_HAS_INFINITY__=1 __LDBL_HAS_QUIET_NAN__=1 __LDBL_MANT_DIG__=64 __LDBL_MAX_10_EXP__=4932 __LDBL_MAX__=1.18973149535723176502e+4932L __LDBL_MAX_EXP__=16384 __LDBL_MIN_10_EXP__=(-4931) __LDBL_MIN__=3.36210314311209350626e-4932L __LDBL_MIN_EXP__=(-16381) linux=1 __linux=1 __linux__=1 __LONG_LONG_MAX__=9223372036854775807LL __LONG_MAX__=9223372036854775807L _LP64=1 __LP64__=1 __MMX__=1 __ORDER_BIG_ENDIAN__=4321 __ORDER_LITTLE_ENDIAN__=1234 __ORDER_PDP_ENDIAN__=3412 _POSIX_C_SOURCE=200809L _POSIX_SOURCE=1 __PRAGMA_REDEFINE_EXTNAME=1 __PTRDIFF_MAX__=9223372036854775807L __PTRDIFF_TYPE__=long\ int __REGISTER_PREFIX__= __SCHAR_MAX__=127 __SHRT_MAX__=32767 __SIG_ATOMIC_MAX__=2147483647 __SIG_ATOMIC_MIN__=(-2147483647\ -\ 1) __SIG_ATOMIC_TYPE__=int __SIZE_MAX__=18446744073709551615UL __SIZEOF_DOUBLE__=8 __SIZEOF_FLOAT__=4 __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 __SSE__=1 __SSE2__=1 __SSE2_MATH__=1 __SSE_MATH__=1 __SSP__=1 __STDC__=1 __STDC_HOSTED__=1 __UINT16_C(c)=c __UINT16_MAX__=65535 __UINT16_TYPE__=short\ unsigned\ int __UINT32_C(c)=cU __UINT32_MAX__=4294967295U __UINT32_TYPE__=unsigned\ int __UINT64_C(c)=cUL __UINT64_MAX__=18446744073709551615UL __UINT64_TYPE__=long\ unsigned\ int __UINT8_C(c)=c __UINT8_MAX__=255 __UINT8_TYPE__=unsigned\ char __UINT_FAST16_MAX__=18446744073709551615UL __UINT_FAST16_TYPE__=long\ unsigned\ int __UINT_FAST32_MAX__=18446744073709551615UL __UINT_FAST32_TYPE__=long\ unsigned\ int __UINT_FAST64_MAX__=18446744073709551615UL __UINT_FAST64_TYPE__=long\ unsigned\ int __UINT_FAST8_MAX__=255 __UINT_FAST8_TYPE__=unsigned\ char __UINT_LEAST16_MAX__=65535 __UINT_LEAST16_TYPE__=short\ unsigned\ int __UINT_LEAST32_MAX__=4294967295U __UINT_LEAST32_TYPE__=unsigned\ int __UINT_LEAST64_MAX__=18446744073709551615UL __UINT_LEAST64_TYPE__=long\ unsigned\ int __UINT_LEAST8_MAX__=255 __UINT_LEAST8_TYPE__=unsigned\ char __UINTMAX_C(c)=cUL __UINTMAX_MAX__=18446744073709551615UL __UINTMAX_TYPE__=long\ unsigned\ int __UINTPTR_MAX__=18446744073709551615UL __UINTPTR_TYPE__=long\ unsigned\ int unix=1 __unix=1 __unix__=1 __USE_BSD=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__= __USE_SVID=1 __VERSION__="4.6.1" __WCHAR_MAX__=2147483647 __WCHAR_MIN__=(-2147483647\ -\ 1) __WCHAR_TYPE__=int __WINT_MAX__=4294967295U __WINT_MIN__=0U __WINT_TYPE__=unsigned\ int __x86_64=1 __x86_64__=1'
208crypt_r_proto='0'
209cryptlib=''
210csh='csh'
211ctermid_r_proto='0'
212ctime_r_proto='0'
213d_Gconvert='gcvt((x),(n),(b))'
214d_PRIEUldbl='define'
215d_PRIFUldbl='define'
216d_PRIGUldbl='define'
217d_PRIXU64='define'
218d_PRId64='define'
219d_PRIeldbl='define'
220d_PRIfldbl='define'
221d_PRIgldbl='define'
222d_PRIi64='define'
223d_PRIo64='define'
224d_PRIu64='define'
225d_PRIx64='define'
226d_SCNfldbl='define'
227d__fwalk='undef'
228d_access='define'
229d_accessx='undef'
230d_aintl='undef'
231d_alarm='define'
232d_archlib='define'
233d_asctime64='undef'
234d_asctime_r='undef'
235d_atolf='undef'
236d_atoll='define'
237d_attribute_deprecated='define'
238d_attribute_format='define'
239d_attribute_malloc='define'
240d_attribute_nonnull='define'
241d_attribute_noreturn='define'
242d_attribute_pure='define'
243d_attribute_unused='define'
244d_attribute_warn_unused_result='define'
245d_bcmp='define'
246d_bcopy='define'
247d_bsd='undef'
248d_bsdgetpgrp='undef'
249d_bsdsetpgrp='undef'
250d_builtin_choose_expr='define'
251d_builtin_expect='define'
252d_bzero='define'
253d_c99_variadic_macros='define'
254d_casti32='undef'
255d_castneg='define'
256d_charvspr='undef'
257d_chown='define'
258d_chroot='define'
259d_chsize='undef'
260d_class='undef'
261d_clearenv='define'
262d_closedir='define'
263d_cmsghdr_s='define'
264d_const='define'
265d_copysignl='define'
266d_cplusplus='undef'
267d_crypt='define'
268d_crypt_r='undef'
269d_csh='undef'
270d_ctermid='define'
271d_ctermid_r='undef'
272d_ctime64='undef'
273d_ctime_r='undef'
274d_cuserid='define'
275d_dbl_dig='define'
276d_dbminitproto='undef'
277d_difftime64='undef'
278d_difftime='define'
279d_dir_dd_fd='undef'
280d_dirfd='define'
281d_dirnamlen='undef'
282d_dlerror='define'
283d_dlopen='define'
284d_dlsymun='undef'
285d_dosuid='undef'
286d_drand48_r='undef'
287d_drand48proto='define'
288d_dup2='define'
289d_eaccess='define'
290d_endgrent='define'
291d_endgrent_r='undef'
292d_endhent='define'
293d_endhostent_r='undef'
294d_endnent='define'
295d_endnetent_r='undef'
296d_endpent='define'
297d_endprotoent_r='undef'
298d_endpwent='define'
299d_endpwent_r='undef'
300d_endsent='define'
301d_endservent_r='undef'
302d_eofnblk='define'
303d_eunice='undef'
304d_faststdio='define'
305d_fchdir='define'
306d_fchmod='define'
307d_fchown='define'
308d_fcntl='define'
309d_fcntl_can_lock='define'
310d_fd_macros='define'
311d_fd_set='define'
312d_fds_bits='undef'
313d_fgetpos='define'
314d_finite='define'
315d_finitel='define'
316d_flexfnam='define'
317d_flock='define'
318d_flockproto='define'
319d_fork='define'
320d_fp_class='undef'
321d_fpathconf='define'
322d_fpclass='undef'
323d_fpclassify='undef'
324d_fpclassl='undef'
325d_fpos64_t='undef'
326d_frexpl='define'
327d_fs_data_s='undef'
328d_fseeko='define'
329d_fsetpos='define'
330d_fstatfs='define'
331d_fstatvfs='define'
332d_fsync='define'
333d_ftello='define'
334d_ftime='undef'
335d_futimes='define'
336d_gdbm_ndbm_h_uses_prototypes='undef'
337d_gdbmndbm_h_uses_prototypes='undef'
338d_getaddrinfo='define'
339d_getcwd='define'
340d_getespwnam='undef'
341d_getfsstat='undef'
342d_getgrent='define'
343d_getgrent_r='undef'
344d_getgrgid_r='undef'
345d_getgrnam_r='undef'
346d_getgrps='define'
347d_gethbyaddr='define'
348d_gethbyname='define'
349d_gethent='define'
350d_gethname='define'
351d_gethostbyaddr_r='undef'
352d_gethostbyname_r='undef'
353d_gethostent_r='undef'
354d_gethostprotos='define'
355d_getitimer='define'
356d_getlogin='define'
357d_getlogin_r='undef'
358d_getmnt='undef'
359d_getmntent='define'
360d_getnameinfo='define'
361d_getnbyaddr='define'
362d_getnbyname='define'
363d_getnent='define'
364d_getnetbyaddr_r='undef'
365d_getnetbyname_r='undef'
366d_getnetent_r='undef'
367d_getnetprotos='define'
368d_getpagsz='define'
369d_getpbyname='define'
370d_getpbynumber='define'
371d_getpent='define'
372d_getpgid='define'
373d_getpgrp2='undef'
374d_getpgrp='define'
375d_getppid='define'
376d_getprior='define'
377d_getprotobyname_r='undef'
378d_getprotobynumber_r='undef'
379d_getprotoent_r='undef'
380d_getprotoprotos='define'
381d_getprpwnam='undef'
382d_getpwent='define'
383d_getpwent_r='undef'
384d_getpwnam_r='undef'
385d_getpwuid_r='undef'
386d_getsbyname='define'
387d_getsbyport='define'
388d_getsent='define'
389d_getservbyname_r='undef'
390d_getservbyport_r='undef'
391d_getservent_r='undef'
392d_getservprotos='define'
393d_getspnam='define'
394d_getspnam_r='undef'
395d_gettimeod='define'
396d_gmtime64='undef'
397d_gmtime_r='undef'
398d_gnulibc='define'
399d_grpasswd='define'
400d_hasmntopt='define'
401d_htonl='define'
402d_ilogbl='define'
403d_inc_version_list='undef'
404d_index='undef'
405d_inetaton='define'
406d_inetntop='define'
407d_inetpton='define'
408d_int64_t='define'
409d_isascii='define'
410d_isfinite='undef'
411d_isinf='define'
412d_isnan='define'
413d_isnanl='define'
414d_killpg='define'
415d_lchown='define'
416d_ldbl_dig='define'
417d_libm_lib_version='define'
418d_link='define'
419d_localtime64='undef'
420d_localtime_r='undef'
421d_localtime_r_needs_tzset='undef'
422d_locconv='define'
423d_lockf='define'
424d_longdbl='define'
425d_longlong='define'
426d_lseekproto='define'
427d_lstat='define'
428d_madvise='define'
429d_malloc_good_size='undef'
430d_malloc_size='undef'
431d_mblen='define'
432d_mbstowcs='define'
433d_mbtowc='define'
434d_memchr='define'
435d_memcmp='define'
436d_memcpy='define'
437d_memmove='define'
438d_memset='define'
439d_mkdir='define'
440d_mkdtemp='define'
441d_mkfifo='define'
442d_mkstemp='define'
443d_mkstemps='define'
444d_mktime64='undef'
445d_mktime='define'
446d_mmap='define'
447d_modfl='define'
448d_modfl_pow32_bug='undef'
449d_modflproto='define'
450d_mprotect='define'
451d_msg='define'
452d_msg_ctrunc='define'
453d_msg_dontroute='define'
454d_msg_oob='define'
455d_msg_peek='define'
456d_msg_proxy='define'
457d_msgctl='define'
458d_msgget='define'
459d_msghdr_s='define'
460d_msgrcv='define'
461d_msgsnd='define'
462d_msync='define'
463d_munmap='define'
464d_mymalloc='undef'
465d_ndbm='undef'
466d_ndbm_h_uses_prototypes='undef'
467d_nice='define'
468d_nl_langinfo='define'
469d_nv_preserves_uv='undef'
470d_nv_zero_is_allbits_zero='define'
471d_off64_t='undef'
472d_old_pthread_create_joinable='undef'
473d_oldpthreads='undef'
474d_oldsock='undef'
475d_open3='define'
476d_pathconf='define'
477d_pause='define'
478d_perl_otherlibdirs='undef'
479d_phostname='undef'
480d_pipe='define'
481d_poll='define'
482d_portable='define'
483d_printf_format_null='undef'
484d_procselfexe='define'
485d_pseudofork='undef'
486d_pthread_atfork='undef'
487d_pthread_attr_setscope='define'
488d_pthread_yield='undef'
489d_pwage='undef'
490d_pwchange='undef'
491d_pwclass='undef'
492d_pwcomment='undef'
493d_pwexpire='undef'
494d_pwgecos='define'
495d_pwpasswd='define'
496d_pwquota='undef'
497d_qgcvt='define'
498d_quad='define'
499d_random_r='undef'
500d_readdir64_r='undef'
501d_readdir='define'
502d_readdir_r='undef'
503d_readlink='define'
504d_readv='define'
505d_recvmsg='define'
506d_rename='define'
507d_rewinddir='define'
508d_rmdir='define'
509d_safebcpy='undef'
510d_safemcpy='undef'
511d_sanemcmp='define'
512d_sbrkproto='define'
513d_scalbnl='define'
514d_sched_yield='define'
515d_scm_rights='define'
516d_seekdir='define'
517d_select='define'
518d_sem='define'
519d_semctl='define'
520d_semctl_semid_ds='define'
521d_semctl_semun='define'
522d_semget='define'
523d_semop='define'
524d_sendmsg='define'
525d_setegid='define'
526d_seteuid='define'
527d_setgrent='define'
528d_setgrent_r='undef'
529d_setgrps='define'
530d_sethent='define'
531d_sethostent_r='undef'
532d_setitimer='define'
533d_setlinebuf='define'
534d_setlocale='define'
535d_setlocale_r='undef'
536d_setnent='define'
537d_setnetent_r='undef'
538d_setpent='define'
539d_setpgid='define'
540d_setpgrp2='undef'
541d_setpgrp='define'
542d_setprior='define'
543d_setproctitle='undef'
544d_setprotoent_r='undef'
545d_setpwent='define'
546d_setpwent_r='undef'
547d_setregid='define'
548d_setresgid='define'
549d_setresuid='define'
550d_setreuid='define'
551d_setrgid='undef'
552d_setruid='undef'
553d_setsent='define'
554d_setservent_r='undef'
555d_setsid='define'
556d_setvbuf='define'
557d_sfio='undef'
558d_shm='define'
559d_shmat='define'
560d_shmatprototype='define'
561d_shmctl='define'
562d_shmdt='define'
563d_shmget='define'
564d_sigaction='define'
565d_signbit='define'
566d_sigprocmask='define'
567d_sigsetjmp='define'
568d_sitearch='define'
569d_snprintf='define'
570d_sockatmark='define'
571d_sockatmarkproto='define'
572d_socket='define'
573d_socklen_t='define'
574d_sockpair='define'
575d_socks5_init='undef'
576d_sprintf_returns_strlen='define'
577d_sqrtl='define'
578d_srand48_r='undef'
579d_srandom_r='undef'
580d_sresgproto='undef'
581d_sresuproto='undef'
582d_statblks='define'
583d_statfs_f_flags='define'
584d_statfs_s='define'
585d_statvfs='define'
586d_stdio_cnt_lval='undef'
587d_stdio_ptr_lval='define'
588d_stdio_ptr_lval_nochange_cnt='undef'
589d_stdio_ptr_lval_sets_cnt='define'
590d_stdio_stream_array='undef'
591d_stdiobase='define'
592d_stdstdio='define'
593d_strchr='define'
594d_strcoll='define'
595d_strctcpy='define'
596d_strerrm='strerror(e)'
597d_strerror='define'
598d_strerror_r='undef'
599d_strftime='define'
600d_strlcat='undef'
601d_strlcpy='undef'
602d_strtod='define'
603d_strtol='define'
604d_strtold='define'
605d_strtoll='define'
606d_strtoq='define'
607d_strtoul='define'
608d_strtoull='define'
609d_strtouq='define'
610d_strxfrm='define'
611d_suidsafe='undef'
612d_symlink='define'
613d_syscall='define'
614d_syscallproto='define'
615d_sysconf='define'
616d_sysernlst=''
617d_syserrlst='define'
618d_system='define'
619d_tcgetpgrp='define'
620d_tcsetpgrp='define'
621d_telldir='define'
622d_telldirproto='define'
623d_time='define'
624d_timegm='define'
625d_times='define'
626d_tm_tm_gmtoff='define'
627d_tm_tm_zone='define'
628d_tmpnam_r='undef'
629d_truncate='define'
630d_ttyname_r='undef'
631d_tzname='define'
632d_u32align='define'
633d_ualarm='define'
634d_umask='define'
635d_uname='define'
636d_union_semun='undef'
637d_unordered='undef'
638d_unsetenv='define'
639d_usleep='define'
640d_usleepproto='define'
641d_ustat='define'
642d_vendorarch='undef'
643d_vendorbin='undef'
644d_vendorlib='undef'
645d_vendorscript='undef'
646d_vfork='undef'
647d_void_closedir='undef'
648d_voidsig='define'
649d_voidtty=''
650d_volatile='define'
651d_vprintf='define'
652d_vsnprintf='define'
653d_wait4='define'
654d_waitpid='define'
655d_wcstombs='define'
656d_wctomb='define'
657d_writev='define'
658d_xenix='undef'
659date='date'
660db_hashtype='u_int32_t'
661db_prefixtype='size_t'
662db_version_major='5'
663db_version_minor='1'
664db_version_patch='25'
665defvoidused='15'
666direntrytype='struct dirent'
667dlext='so'
668dlsrc='dl_dlopen.xs'
669doublesize='8'
670drand01='drand48()'
671drand48_r_proto='0'
672dtrace=''
673dynamic_ext='attributes B Compress/Raw/Bzip2 Compress/Raw/Zlib Cwd Data/Dumper DB_File Devel/DProf Devel/Peek Devel/PPPort Digest/MD5 Digest/SHA Encode Fcntl 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/scalar PerlIO/via POSIX re SDBM_File Socket Storable Sys/Hostname Sys/Syslog Text/Soundex threads threads/shared Time/HiRes Time/Piece Unicode/Normalize XS/APItest XS/APItest/KeywordRPN XS/Typemap'
674eagain='EAGAIN'
675ebcdic='undef'
676echo='echo'
677egrep='egrep'
678emacs=''
679endgrent_r_proto='0'
680endhostent_r_proto='0'
681endnetent_r_proto='0'
682endprotoent_r_proto='0'
683endpwent_r_proto='0'
684endservent_r_proto='0'
685eunicefix=':'
686exe_ext=''
687expr='expr'
688extensions='attributes B Compress/Raw/Bzip2 Compress/Raw/Zlib Cwd Data/Dumper DB_File Devel/DProf Devel/Peek Devel/PPPort Digest/MD5 Digest/SHA Encode Fcntl 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/scalar PerlIO/via POSIX re SDBM_File Socket Storable Sys/Hostname Sys/Syslog Text/Soundex threads threads/shared Time/HiRes Time/Piece Unicode/Normalize XS/APItest XS/APItest/KeywordRPN XS/Typemap Archive/Extract Archive/Tar Attribute/Handlers autodie AutoLoader autouse base B/Debug B/Deparse bignum B/Lint CGI Class/ISA constant CPAN CPANPLUS CPANPLUS/Dist/Build Devel/SelfStubber Digest encoding/warnings Errno ExtUtils/CBuilder ExtUtils/Command ExtUtils/Constant ExtUtils/Install ExtUtils/MakeMaker ExtUtils/Manifest ExtUtils/ParseXS FileCache File/Fetch File/Path File/Temp Filter/Simple Getopt/Long I18N/LangTags if IO/Compress IO/Zlib IPC/Cmd IPC/Open2 IPC/Open3 lib libnet Locale/Codes Locale/Maketext Locale/Maketext/Simple Log/Message Log/Message/Simple Math/BigInt Math/BigRat Math/Complex Memoize Module/Build Module/CoreList Module/Load Module/Load/Conditional Module/Loaded Module/Pluggable Net/Ping NEXT Object/Accessor Package/Constants Params/Check parent Parse/CPAN/Meta PerlIO/via/QuotedPrint Pod/Escapes Pod/LaTeX podlators Pod/Parser Pod/Perldoc Pod/Plainer Pod/Simple Safe SelfLoader Shell Switch Term/ANSIColor Term/Cap Term/UI Test Test/Harness Test/Simple Text/Balanced Text/ParseWords Text/Tabs Thread/Queue Thread/Semaphore Tie/File Tie/Memoize Tie/RefHash Time/Local Unicode/Collate XSLoader'
689extern_C='extern'
690extras=''
691fflushNULL='define'
692fflushall='undef'
693find=''
694firstmakefile='makefile'
695flex=''
696fpossize='16'
697fpostype='fpos_t'
698freetype='void'
699from=':'
700full_ar='/usr/bin/ar'
701full_csh='csh'
702full_sed='/bin/sed'
703gccansipedantic=''
704gccosandvers=''
705gccversion='4.6.1'
706getgrent_r_proto='0'
707getgrgid_r_proto='0'
708getgrnam_r_proto='0'
709gethostbyaddr_r_proto='0'
710gethostbyname_r_proto='0'
711gethostent_r_proto='0'
712getlogin_r_proto='0'
713getnetbyaddr_r_proto='0'
714getnetbyname_r_proto='0'
715getnetent_r_proto='0'
716getprotobyname_r_proto='0'
717getprotobynumber_r_proto='0'
718getprotoent_r_proto='0'
719getpwent_r_proto='0'
720getpwnam_r_proto='0'
721getpwuid_r_proto='0'
722getservbyname_r_proto='0'
723getservbyport_r_proto='0'
724getservent_r_proto='0'
725getspnam_r_proto='0'
726gidformat='"u"'
727gidsign='1'
728gidsize='4'
729gidtype='gid_t'
730glibpth='/usr/shlib /lib /usr/lib /usr/lib/386 /lib/386 /usr/ccs/lib /usr/ucblib /usr/local/lib '
731gmake='gmake'
732gmtime_r_proto='0'
733gnulibc_version='2.13'
734grep='grep'
735groupcat='cat /etc/group'
736groupstype='gid_t'
737gzip='gzip'
738h_fcntl='false'
739h_sysfile='true'
740hint='recommended'
741hostcat='cat /etc/hosts'
742html1dir=' '
743html1direxp=''
744html3dir=' '
745html3direxp=''
746i16size='2'
747i16type='short'
748i32size='4'
749i32type='int'
750i64size='8'
751i64type='long'
752i8size='1'
753i8type='signed char'
754i_arpainet='define'
755i_assert='define'
756i_bsdioctl=''
757i_crypt='define'
758i_db='define'
759i_dbm='undef'
760i_dirent='define'
761i_dld='undef'
762i_dlfcn='define'
763i_fcntl='undef'
764i_float='define'
765i_fp='undef'
766i_fp_class='undef'
767i_gdbm='undef'
768i_gdbm_ndbm='undef'
769i_gdbmndbm='undef'
770i_grp='define'
771i_ieeefp='undef'
772i_inttypes='define'
773i_langinfo='define'
774i_libutil='undef'
775i_limits='define'
776i_locale='define'
777i_machcthr='undef'
778i_malloc='define'
779i_mallocmalloc='undef'
780i_math='define'
781i_memory='undef'
782i_mntent='define'
783i_ndbm='undef'
784i_netdb='define'
785i_neterrno='undef'
786i_netinettcp='define'
787i_niin='define'
788i_poll='define'
789i_prot='undef'
790i_pthread='define'
791i_pwd='define'
792i_rpcsvcdbm='undef'
793i_sfio='undef'
794i_sgtty='undef'
795i_shadow='define'
796i_socks='undef'
797i_stdarg='define'
798i_stddef='define'
799i_stdlib='define'
800i_string='define'
801i_sunmath='undef'
802i_sysaccess='undef'
803i_sysdir='define'
804i_sysfile='define'
805i_sysfilio='undef'
806i_sysin='undef'
807i_sysioctl='define'
808i_syslog='define'
809i_sysmman='define'
810i_sysmode='undef'
811i_sysmount='define'
812i_sysndir='undef'
813i_sysparam='define'
814i_syspoll='define'
815i_sysresrc='define'
816i_syssecrt='undef'
817i_sysselct='define'
818i_syssockio='undef'
819i_sysstat='define'
820i_sysstatfs='define'
821i_sysstatvfs='define'
822i_systime='define'
823i_systimek='undef'
824i_systimes='define'
825i_systypes='define'
826i_sysuio='define'
827i_sysun='define'
828i_sysutsname='define'
829i_sysvfs='define'
830i_syswait='define'
831i_termio='undef'
832i_termios='define'
833i_time='define'
834i_unistd='define'
835i_ustat='define'
836i_utime='define'
837i_values='define'
838i_varargs='undef'
839i_varhdr='stdarg.h'
840i_vfork='undef'
841ignore_versioned_solibs='y'
842inc_version_list=' '
843inc_version_list_init='0'
844incpath=''
845inews=''
846initialinstalllocation='/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/bin'
847installarchlib='/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/lib/5.12.3/x86_64-linux'
848installbin='/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/bin'
849installhtml1dir=''
850installhtml3dir=''
851installman1dir='/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/man/man1'
852installman3dir='/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/man/man3'
853installprefix='/2home/ss5/perl5/perlbrew/perls/perl-5.12.3'
854installprefixexp='/2home/ss5/perl5/perlbrew/perls/perl-5.12.3'
855installprivlib='/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/lib/5.12.3'
856installscript='/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/bin'
857installsitearch='/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/lib/site_perl/5.12.3/x86_64-linux'
858installsitebin='/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/bin'
859installsitehtml1dir=''
860installsitehtml3dir=''
861installsitelib='/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/lib/site_perl/5.12.3'
862installsiteman1dir='/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/man/man1'
863installsiteman3dir='/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/man/man3'
864installsitescript='/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/bin'
865installstyle='lib'
866installusrbinperl='undef'
867installvendorarch=''
868installvendorbin=''
869installvendorhtml1dir=''
870installvendorhtml3dir=''
871installvendorlib=''
872installvendorman1dir=''
873installvendorman3dir=''
874installvendorscript=''
875intsize='4'
876issymlink='test -h'
877ivdformat='"ld"'
878ivsize='8'
879ivtype='long'
880known_extensions='attributes B Compress/Raw/Bzip2 Compress/Raw/Zlib Cwd Data/Dumper DB_File Devel/DProf Devel/Peek Devel/PPPort Digest/MD5 Digest/SHA Encode Fcntl File/Glob Filter/Util/Call GDBM_File Hash/Util Hash/Util/FieldHash I18N/Langinfo IO IPC/SysV List/Util Math/BigInt/FastCalc MIME/Base64 mro NDBM_File ODBM_File Opcode PerlIO/encoding PerlIO/scalar PerlIO/via POSIX re SDBM_File Socket Storable Sys/Hostname Sys/Syslog Text/Soundex threads threads/shared Time/HiRes Time/Piece Unicode/Normalize VMS/DCLsym VMS/Stdio Win32 Win32API/File Win32CORE XS/APItest XS/APItest/KeywordRPN XS/Typemap '
881ksh=''
882ld='cc'
883lddlflags='-shared -O2 -L/usr/local/lib -fstack-protector'
884ldflags=' -fstack-protector -L/usr/local/lib'
885ldflags_uselargefiles=''
886ldlibpthname='LD_LIBRARY_PATH'
887less='less'
888lib_ext='.a'
889libc=''
890libdb_needs_pthread='N'
891libperl='libperl.a'
892libpth='/usr/local/lib /lib/x86_64-linux-gnu /lib/../lib /usr/lib/x86_64-linux-gnu /usr/lib/../lib /lib /usr/lib'
893libs='-lnsl -ldb -ldl -lm -lcrypt -lutil -lc'
894libsdirs=' /usr/lib/x86_64-linux-gnu'
895libsfiles=' libnsl.so libdb.so libdl.so libm.so libcrypt.so libutil.so libc.so'
896libsfound=' /usr/lib/x86_64-linux-gnu/libnsl.so /usr/lib/x86_64-linux-gnu/libdb.so /usr/lib/x86_64-linux-gnu/libdl.so /usr/lib/x86_64-linux-gnu/libm.so /usr/lib/x86_64-linux-gnu/libcrypt.so /usr/lib/x86_64-linux-gnu/libutil.so /usr/lib/x86_64-linux-gnu/libc.so'
897libspath=' /usr/local/lib /lib/x86_64-linux-gnu /lib/../lib /usr/lib/x86_64-linux-gnu /usr/lib/../lib /lib /usr/lib'
898libswanted='sfio socket inet nsl nm ndbm gdbm dbm db malloc dl dld ld sun m crypt sec util c cposix posix ucb BSD gdbm_compat'
899libswanted_uselargefiles=''
900line=''
901lint=''
902lkflags=''
903ln='ln'
904lns='/bin/ln -s'
905localtime_r_proto='0'
906locincpth='/usr/local/include /opt/local/include /usr/gnu/include /opt/gnu/include /usr/GNU/include /opt/GNU/include'
907loclibpth='/usr/local/lib /opt/local/lib /usr/gnu/lib /opt/gnu/lib /usr/GNU/lib /opt/GNU/lib'
908longdblsize='16'
909longlongsize='8'
910longsize='8'
911lp=''
912lpr=''
913ls='ls'
914lseeksize='8'
915lseektype='off_t'
916mad='undef'
917madlyh=''
918madlyobj=''
919madlysrc=''
920mail=''
921mailx=''
922make='make'
923make_set_make='#'
924mallocobj=''
925mallocsrc=''
926malloctype='void *'
927man1dir='/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/man/man1'
928man1direxp='/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/man/man1'
929man1ext='1'
930man3dir='/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/man/man3'
931man3direxp='/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/man/man3'
932man3ext='3'
933mips_type=''
934mistrustnm=''
935mkdir='mkdir'
936mmaptype='void *'
937modetype='mode_t'
938more='more'
939multiarch='undef'
940mv=''
941myarchname='x86_64-linux'
942mydomain='.(none)'
943myhostname='bascha'
944myuname='linux bascha 3.0.0-14-generic #23-ubuntu smp mon nov 21 20:28:43 utc 2011 x86_64 x86_64 x86_64 gnulinux '
945n='-n'
946need_va_copy='define'
947netdb_hlen_type='size_t'
948netdb_host_type='char *'
949netdb_name_type='const char *'
950netdb_net_type='in_addr_t'
951nm='nm'
952nm_opt=''
953nm_so_opt='--dynamic'
954nonxs_ext='Archive/Extract Archive/Tar Attribute/Handlers autodie AutoLoader autouse base B/Debug B/Deparse bignum B/Lint CGI Class/ISA constant CPAN CPANPLUS CPANPLUS/Dist/Build Devel/SelfStubber Digest encoding/warnings Errno ExtUtils/CBuilder ExtUtils/Command ExtUtils/Constant ExtUtils/Install ExtUtils/MakeMaker ExtUtils/Manifest ExtUtils/ParseXS FileCache File/Fetch File/Path File/Temp Filter/Simple Getopt/Long I18N/LangTags if IO/Compress IO/Zlib IPC/Cmd IPC/Open2 IPC/Open3 lib libnet Locale/Codes Locale/Maketext Locale/Maketext/Simple Log/Message Log/Message/Simple Math/BigInt Math/BigRat Math/Complex Memoize Module/Build Module/CoreList Module/Load Module/Load/Conditional Module/Loaded Module/Pluggable Net/Ping NEXT Object/Accessor Package/Constants Params/Check parent Parse/CPAN/Meta PerlIO/via/QuotedPrint Pod/Escapes Pod/LaTeX podlators Pod/Parser Pod/Perldoc Pod/Plainer Pod/Simple Safe SelfLoader Shell Switch Term/ANSIColor Term/Cap Term/UI Test Test/Harness Test/Simple Text/Balanced Text/ParseWords Text/Tabs Thread/Queue Thread/Semaphore Tie/File Tie/Memoize Tie/RefHash Time/Local Unicode/Collate XSLoader'
955nroff='nroff'
956nvEUformat='"E"'
957nvFUformat='"F"'
958nvGUformat='"G"'
959nv_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'
960nv_preserves_uv_bits='53'
961nveformat='"e"'
962nvfformat='"f"'
963nvgformat='"g"'
964nvsize='8'
965nvtype='double'
966o_nonblock='O_NONBLOCK'
967obj_ext='.o'
968old_pthread_create_joinable=''
969optimize='-O2'
970orderlib='false'
971osname='linux'
972osvers='3.0.0-14-generic'
973otherlibdirs=' '
974package='perl5'
975pager='/usr/bin/less -R'
976passcat='cat /etc/passwd'
977patchlevel='12'
978path_sep=':'
979perl5='/2home/ss5/perl5/perlbrew/perls/perl-5.12.4/bin/perl'
980perl=''
981perl_patchlevel=''
982perladmin='ss5@bascha.(none)'
983perllibs='-lnsl -ldl -lm -lcrypt -lutil -lc'
984perlpath='/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/bin/perl'
985pg='pg'
986phostname='hostname'
987pidtype='pid_t'
988plibpth='/lib/x86_64-linux-gnu/4.6.1 /lib/x86_64-linux-gnu /lib/../lib /usr/lib/x86_64-linux-gnu/4.6.1 /usr/lib/x86_64-linux-gnu /usr/lib/../lib /lib /usr/lib'
989pmake=''
990pr=''
991prefix='/2home/ss5/perl5/perlbrew/perls/perl-5.12.3'
992prefixexp='/2home/ss5/perl5/perlbrew/perls/perl-5.12.3'
993privlib='/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/lib/5.12.3'
994privlibexp='/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/lib/5.12.3'
995procselfexe='"/proc/self/exe"'
996prototype='define'
997ptrsize='8'
998quadkind='2'
999quadtype='long'
1000randbits='48'
1001randfunc='drand48'
1002random_r_proto='0'
1003randseedtype='long'
1004ranlib=':'
1005rd_nodata='-1'
1006readdir64_r_proto='0'
1007readdir_r_proto='0'
1008revision='5'
1009rm='rm'
1010rm_try='/bin/rm -f try try a.out .out try.[cho] try..o core core.try* try.core*'
1011rmail=''
1012run=''
1013runnm='false'
1014sGMTIME_max='67768036191676799'
1015sGMTIME_min='-62167219200'
1016sLOCALTIME_max='67768036191673199'
1017sLOCALTIME_min='-62167222408'
1018sPRIEUldbl='"LE"'
1019sPRIFUldbl='"LF"'
1020sPRIGUldbl='"LG"'
1021sPRIXU64='"lX"'
1022sPRId64='"ld"'
1023sPRIeldbl='"Le"'
1024sPRIfldbl='"Lf"'
1025sPRIgldbl='"Lg"'
1026sPRIi64='"li"'
1027sPRIo64='"lo"'
1028sPRIu64='"lu"'
1029sPRIx64='"lx"'
1030sSCNfldbl='"Lf"'
1031sched_yield='sched_yield()'
1032scriptdir='/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/bin'
1033scriptdirexp='/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/bin'
1034sed='sed'
1035seedfunc='srand48'
1036selectminbits='64'
1037selecttype='fd_set *'
1038sendmail=''
1039setgrent_r_proto='0'
1040sethostent_r_proto='0'
1041setlocale_r_proto='0'
1042setnetent_r_proto='0'
1043setprotoent_r_proto='0'
1044setpwent_r_proto='0'
1045setservent_r_proto='0'
1046sh='/bin/sh'
1047shar=''
1048sharpbang='#!'
1049shmattype='void *'
1050shortsize='2'
1051shrpenv=''
1052shsharp='true'
1053sig_count='65'
1054sig_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 UNUSED '
1055sig_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", "UNUSED", 0'
1056sig_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 31 '
1057sig_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, 31, 0'
1058sig_size='69'
1059signal_t='void'
1060sitearch='/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/lib/site_perl/5.12.3/x86_64-linux'
1061sitearchexp='/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/lib/site_perl/5.12.3/x86_64-linux'
1062sitebin='/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/bin'
1063sitebinexp='/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/bin'
1064sitehtml1dir=''
1065sitehtml1direxp=''
1066sitehtml3dir=''
1067sitehtml3direxp=''
1068sitelib='/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/lib/site_perl/5.12.3'
1069sitelib_stem='/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/lib/site_perl'
1070sitelibexp='/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/lib/site_perl/5.12.3'
1071siteman1dir='/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/man/man1'
1072siteman1direxp='/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/man/man1'
1073siteman3dir='/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/man/man3'
1074siteman3direxp='/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/man/man3'
1075siteprefix='/2home/ss5/perl5/perlbrew/perls/perl-5.12.3'
1076siteprefixexp='/2home/ss5/perl5/perlbrew/perls/perl-5.12.3'
1077sitescript='/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/bin'
1078sitescriptexp='/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/bin'
1079sizesize='8'
1080sizetype='size_t'
1081sleep=''
1082smail=''
1083so='so'
1084sockethdr=''
1085socketlib=''
1086socksizetype='socklen_t'
1087sort='sort'
1088spackage='Perl5'
1089spitshell='cat'
1090srand48_r_proto='0'
1091srandom_r_proto='0'
1092src='.'
1093ssizetype='ssize_t'
1094startperl='#!/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/bin/perl'
1095startsh='#!/bin/sh'
1096static_ext=' '
1097stdchar='char'
1098stdio_base='((fp)->_IO_read_base)'
1099stdio_bufsiz='((fp)->_IO_read_end - (fp)->_IO_read_base)'
1100stdio_cnt='((fp)->_IO_read_end - (fp)->_IO_read_ptr)'
1101stdio_filbuf=''
1102stdio_ptr='((fp)->_IO_read_ptr)'
1103stdio_stream_array=''
1104strerror_r_proto='0'
1105strings='/usr/include/string.h'
1106submit=''
1107subversion='3'
1108sysman='/usr/share/man/man1'
1109tail=''
1110tar=''
1111targetarch=''
1112tbl=''
1113tee=''
1114test='test'
1115timeincl='/usr/include/x86_64-linux-gnu/sys/time.h /usr/include/time.h '
1116timetype='time_t'
1117tmpnam_r_proto='0'
1118to=':'
1119touch='touch'
1120tr='tr'
1121trnl='\n'
1122troff=''
1123ttyname_r_proto='0'
1124u16size='2'
1125u16type='unsigned short'
1126u32size='4'
1127u32type='unsigned int'
1128u64size='8'
1129u64type='unsigned long'
1130u8size='1'
1131u8type='unsigned char'
1132uidformat='"u"'
1133uidsign='1'
1134uidsize='4'
1135uidtype='uid_t'
1136uname='uname'
1137uniq='uniq'
1138uquadtype='unsigned long'
1139use5005threads='undef'
1140use64bitall='define'
1141use64bitint='define'
1142usecrosscompile='undef'
1143usedevel='undef'
1144usedl='define'
1145usedtrace='undef'
1146usefaststdio='undef'
1147useithreads='undef'
1148uselargefiles='define'
1149uselongdouble='undef'
1150usemallocwrap='define'
1151usemorebits='undef'
1152usemultiplicity='undef'
1153usemymalloc='n'
1154usenm='false'
1155useopcode='true'
1156useperlio='define'
1157useposix='true'
1158usereentrant='undef'
1159userelocatableinc='undef'
1160usesfio='false'
1161useshrplib='false'
1162usesitecustomize='undef'
1163usesocks='undef'
1164usethreads='undef'
1165usevendorprefix='undef'
1166usevfork='false'
1167usrinc='/usr/include'
1168uuname=''
1169uvXUformat='"lX"'
1170uvoformat='"lo"'
1171uvsize='8'
1172uvtype='unsigned long'
1173uvuformat='"lu"'
1174uvxformat='"lx"'
1175vaproto='define'
1176vendorarch=''
1177vendorarchexp=''
1178vendorbin=''
1179vendorbinexp=''
1180vendorhtml1dir=' '
1181vendorhtml1direxp=''
1182vendorhtml3dir=' '
1183vendorhtml3direxp=''
1184vendorlib=''
1185vendorlib_stem=''
1186vendorlibexp=''
1187vendorman1dir=' '
1188vendorman1direxp=''
1189vendorman3dir=' '
1190vendorman3direxp=''
1191vendorprefix=''
1192vendorprefixexp=''
1193vendorscript=''
1194vendorscriptexp=''
1195version='5.12.3'
1196version_patchlevel_string='version 12 subversion 3'
1197versiononly='undef'
1198vi=''
1199voidflags='15'
1200xlibpth='/usr/lib/386 /lib/386'
1201yacc='yacc'
1202yaccflags=''
1203zcat=''
1204zip='zip'
1205!END!
1206
12071300nsmy $i = 0;
1208157µsforeach my $c (8,7,6,5,4,3,2) { $i |= ord($c); $i <<= 8 }
12091100ns$i |= ord(1);
1210131µs217µsour $byteorder = join('', unpack('aaaaaaaa', pack('L!', $i)));
# spent 12µs making 1 call to Config::CORE:pack # spent 6µs making 1 call to Config::CORE:unpack
1211181µs365µss/(byteorder=)(['"]).*?\2/$1$2$Config::byteorder$2/m;
# spent 36µs making 1 call to Config::CORE:subst # spent 29µs making 2 calls to Config::CORE:substcont, avg 15µs/call
1212
12131700nsmy $config_sh_len = length $_;
1214
1215156µsour $Config_SH_expanded = "\n$_" . << 'EOVIRTUAL';
1216ccflags_nolargefiles='-fno-strict-aliasing -pipe -fstack-protector -I/usr/local/include '
1217ldflags_nolargefiles=' -fstack-protector -L/usr/local/lib'
1218libs_nolargefiles='-lnsl -ldb -ldl -lm -lcrypt -lutil -lc'
1219libswanted_nolargefiles='sfio socket inet nsl nm ndbm gdbm dbm db malloc dl dld ld sun m crypt sec util c cposix posix ucb BSD gdbm_compat'
1220EOVIRTUAL
1221470µseval {
1222 # do not have hairy conniptions if this isnt available
1223 require 'Config_git.pl';
1224 $Config_SH_expanded .= $Config::Git_Data;
1225 1;
1226} or warn "Warning: failed to load Config_git.pl, something strange about this perl...\n";
1227
1228# Search for it in the big string
1229
# spent 145µs within Config::fetch_string which was called 3 times, avg 48µs/call: # 2 times (108µs+0s) by Config::FETCH at line 61 of Config.pm, avg 54µs/call # once (37µs+0s) by Config::FETCH at line 1310
sub fetch_string {
123021149µs my($self, $key) = @_;
1231
1232 # We only have ' delimted.
1233 my $start = index($Config_SH_expanded, "\n$key=\'");
1234 # Start can never be -1 now, as we've rigged the long string we're
1235 # searching with an initial dummy newline.
1236 return undef if $start == -1;
1237
1238 $start += length($key) + 3;
1239
1240 my $value = substr($Config_SH_expanded, $start,
1241 index($Config_SH_expanded, "'\n", $start)
1242 - $start);
1243 # So we can say "if $Config{'foo'}".
1244 $value = undef if $value eq 'undef';
1245 $self->{$key} = $value; # cache it
1246}
1247
12481300nsmy $prevpos = 0;
1249
1250sub FIRSTKEY {
1251 $prevpos = 0;
1252 substr($Config_SH_expanded, 1, index($Config_SH_expanded, '=') - 1 );
1253}
1254
1255sub NEXTKEY {
1256 my $pos = index($Config_SH_expanded, qq('\n), $prevpos) + 2;
1257 my $len = index($Config_SH_expanded, "=", $pos) - $pos;
1258 $prevpos = $pos;
1259 $len > 0 ? substr($Config_SH_expanded, $pos, $len) : undef;
1260}
1261
1262sub EXISTS {
1263 return 1 if exists($_[0]->{$_[1]});
1264
1265 return(index($Config_SH_expanded, "\n$_[1]='") != -1
1266 );
1267}
1268
1269sub STORE { die "\%Config::Config is read-only\n" }
127012µs*DELETE = \&STORE;
12711600ns*CLEAR = \&STORE;
1272
1273
1274sub config_sh {
1275 substr $Config_SH_expanded, 1, $config_sh_len;
1276}
1277
1278sub config_re {
1279 my $re = shift;
1280 return map { chomp; $_ } grep eval{ /^(?:$re)=/ }, split /^/,
1281 $Config_SH_expanded;
1282}
1283
1284sub config_vars {
1285 # implements -V:cfgvar option (see perlrun -V:)
1286 foreach (@_) {
1287 # find optional leading, trailing colons; and query-spec
1288 my ($notag,$qry,$lncont) = m/^(:)?(.*?)(:)?$/; # flags fore and aft,
1289 # map colon-flags to print decorations
1290 my $prfx = $notag ? '': "$qry="; # tag-prefix for print
1291 my $lnend = $lncont ? ' ' : ";\n"; # line ending for print
1292
1293 # all config-vars are by definition \w only, any \W means regex
1294 if ($qry =~ /\W/) {
1295 my @matches = config_re($qry);
1296 print map "$_$lnend", @matches ? @matches : "$qry: not found" if !$notag;
1297 print map { s/\w+=//; "$_$lnend" } @matches ? @matches : "$qry: not found" if $notag;
1298 } else {
1299 my $v = (exists $Config::Config{$qry}) ? $Config::Config{$qry}
1300 : 'UNKNOWN';
1301 $v = 'undef' unless defined $v;
1302 print "${prfx}'${v}'$lnend";
1303 }
1304 }
1305}
1306
1307# Called by the real AUTOLOAD
1308
# spent 7µs within Config::launcher which was called: # once (7µs+0s) by Config::FETCH at line 71 of Config.pm
sub launcher {
130929µs undef &AUTOLOAD;
1310137µs goto \&$Config::AUTOLOAD;
# spent 37µs making 1 call to Config::fetch_string
1311}
1312
1313114µs1;