* Starting build: Thu Dec 6 02:02:05 2018 must rebuild: tools::perl *** Checksum mismatch: diff (perl, tools) --- /vagrant/target/tools/packages/perl.checksum 0000 +++ THIS BUILD Thu Dec 6 01:56:06 2018 @@ -1 +1,316 @@ -0000 +UpdateSourceDir(not tracking) *** Checksum mismatch: diff (perl, tools) --- /vagrant/target/tools/packages/perl.checksum 0000 +++ THIS BUILD Thu Dec 6 01:56:06 2018 @@ -1 +1,316 @@ -0000 +UpdateSourceDir(not tracking) +Dump +/vagrant/target/tools/status/perl-5.10.0-perl-5.10.0 +untar +Substitute +/vagrant/target/tools/src/perl-5.10.0/Configure +-c (/dev/null) +-e \1 +Dump +/vagrant/target/tools/status/perl-5.10.0-perl-5.10.0 +patch +AutogenMagic + def execute (self, logger): + package = self.package + autodir = package.expand ('%(autodir)s') + PATH = package.expand ('%(PATH)s') + if os.path.exists (os.path.join (autodir, 'autogen.sh')): + s = open ('%(autodir)s/autogen.sh' % locals ()).read () + noconfigure = ' --help' + if '--noconfigure' in s: + noconfigure = ' --noconfigure' + noconfigure + self.system ('cd %(autodir)s && NOCONFIGURE=1 sh autogen.sh %(noconfigure)s' % locals (), + logger) + elif (os.path.exists (os.path.join (autodir, 'bootstrap')) + and not 'CC=' in open (os.path.join (autodir, 'bootstrap')).read ()): + self.system ('cd %(autodir)s && ./bootstrap' % locals (), logger) + elif (os.path.exists (os.path.join (autodir, 'bootstrap.sh')) + and not 'CC=' in open (os.path.join (autodir, 'bootstrap.sh')).read ()): + self.system ('cd %(autodir)s && ./bootstrap.sh' % locals (), logger) + else: + libtoolize = misc.path_find (PATH, 'libtoolize') + if libtoolize: + s = open (libtoolize).read () + libtoolize = 'libtoolize --copy --force' + # --automake is mandatory for libtool-1.5.2x, but breaks with libtool-2.2.x + # --install is mandatory for libtool-2.2.x, but breaks with libtool-1.5.2x + # mandatory means: so that config.guess, config.sub are refreshed iso removed + if '--automake' in s: + libtoolize += ' --automake' + if '--install' in s: + libtoolize += ' --install' + if (os.path.isdir (os.path.join (autodir, 'ltdl')) + or os.path.isdir (os.path.join (autodir, 'libltdl'))): + libtoolize += ' --ltdl' + self.system ('rm -rf %(autodir)s/libltdl %(autodir)s/ltdl && cd %(autodir)s && %(libtoolize)s' + % locals (), logger) + aclocal_flags = '' + for dir in package.aclocal_path (): + d = package.expand (dir) + if os.path.exists (d): + aclocal_flags += ' -I%(d)s' % locals () + headcmd = '' + configure_ac = '' + for c in ('configure.in','configure.ac'): + try: + string = open ('%(autodir)s/%(c)s' % locals ()).read () + configure_ac = c + m = re.search ('A[CM]_CONFIG_HEADER', string) + string = 0 ## don't want to expand string + if m: + headcmd = 'cd %(autodir)s && autoheader %(aclocal_flags)s' % locals () + break + except IOError: + pass + if configure_ac: + self.system (''' +cd %(autodir)s && aclocal %(aclocal_flags)s +%(headcmd)s +cd %(autodir)s && autoconf %(aclocal_flags)s +''' % locals (), logger) + if os.path.exists ('%(autodir)s/Makefile.am' % locals ()): + self.system ('cd %(autodir)s && automake --add-missing --copy --foreign' % locals (), logger) + +def path_find (path, name): + if type (path) == type (''): + path = path.split (':') + for dir in path: + file_name = os.path.join (dir, name) + if os.path.isfile (file_name): + return file_name + return None + +Dump +/vagrant/target/tools/status/perl-5.10.0-perl-5.10.0 +autoupdate +rm -rf /vagrant/target/tools/build/perl-5.10.0 +ShadowTree +/vagrant/target/tools/src/perl-5.10.0 +/vagrant/target/tools/build/perl-5.10.0 +mkdir -p /vagrant/target/tools/build/perl-5.10.0 || true +cd /vagrant/target/tools/build/perl-5.10.0 && chmod +x /vagrant/target/tools/src/perl-5.10.0/configure.gnu && /vagrant/target/tools/src/perl-5.10.0/configure.gnu -Dprefix=/vagrant/target/tools/root/usr -Dcc='gcc ' -Dtargetarch=x86_64-linux -Dusrinc=/vagrant/target/tools/root/usr/include -Dincpth=/ -Dlibpth=/vagrant/target/tools/root/usr/lib -Dsitelib=/vagrant/target/tools/root/usr/lib/perl5/5.10.0 -Dsitearch=/vagrant/target/tools/root/usr/lib/perl5/5.10.0 -Dusedl -Duseshrplib -Dlibperl=libperl.so -Dcccdlflags=-fPIC -Dlocallibpth=/ -Aldflags='-Wl,-rpath -Wl,\$$ORIGIN/../lib -Wl,-rpath -Wl,/vagrant/target/tools/root/usr/lib' -Alibs='-lm -lrt -ldl' +MapLocate +def libtool_disable_install_not_into_dot_libs_test (logger, file): + '''libtool: install: error: cannot install `libexslt.la' to a directory not ending in /home/janneke/vc/gub/target/mingw/build/libxslt-1.1.24/libexslt/.libs''' + loggedos.file_sub (logger, [ + (r'if test "\$inst_prefix_dir" = "\$destdir"; then', + 'if false && test "$inst_prefix_dir" = "$destdir"; then'), + (r' test "\$inst_prefix_dir" = "\$destdir" &&', + ' false && test "$inst_prefix_dir" = "$destdir" &&')], + file) + +/vagrant/target/tools/build/perl-5.10.0 +libtool +MapLocate + self.map_locate (lambda logger, file: libtool_update (logger, self.expand ('%(system_prefix)s/bin/libtool'), file), '%(builddir)s', 'libtool') + +/vagrant/target/tools/build/perl-5.10.0 +libtool +Substitute +/vagrant/target/tools/build/perl-5.10.0/makefile +^0$ + +Substitute +/vagrant/target/tools/build/perl-5.10.0/x2p/makefile +^0$ + +Dump +/vagrant/target/tools/status/perl-5.10.0-perl-5.10.0 +configure +cd /vagrant/target/tools/build/perl-5.10.0 && make -j4 +Dump +/vagrant/target/tools/status/perl-5.10.0-perl-5.10.0 +compile +rm -rf /vagrant/target/tools/install/perl-5.10.0-root +cd /vagrant/target/tools/build/perl-5.10.0 && make DESTDIR=/vagrant/target/tools/install/perl-5.10.0-root install +Func + def install (logger, lst): + for file in lst: + if os.path.exists (file): + cmd = self.expand (''' +mkdir -p %(install_root)s/license +cp %(file)s %(install_root)s/license/%(name)s +''', locals ()) + loggedos.system (logger, cmd) + return + +(['/vagrant/target/tools/src/perl-5.10.0/COPYING', '/vagrant/target/tools/src/perl-5.10.0/COPYING.LIB', '/vagrant/target/tools/src/perl-5.10.0/LICENSE', '/vagrant/target/tools/src/perl-5.10.0/LICENCE'],) +MapLocate + def installed_la_fixup (logger, la): + (dir, base) = os.path.split (la) + base = base[3:-3] + dir = re.sub (r"^\./", "/", dir) + + loggedos.file_sub (logger, [(''' *-L *[^\"\' ][^\"\' ]*''', ''), + (self.expand ('''( |=|\')(/[^ ]*usr/lib|%(targetdir)s.*)/lib([^ \'/]*)\.(a|la|so)[^ \']*'''), + '\\1-l\\3 '), + ('^old_library=.*', + self.expand ("""old_library='lib%(base)s.a'""", env=locals ())), + ], + la) + if self.settings.platform.startswith ('mingw'): + + loggedos.file_sub (logger, [('library_names=.*', + self.expand ("library_names='lib%(base)s.dll.a'", env=locals ()))], + la) + +/vagrant/target/tools/install/perl-5.10.0-root +lib*.la +rm -f /vagrant/target/tools/install/perl-5.10.0-root/vagrant/target/tools/root/usr/info/dir /vagrant/target/tools/install/perl-5.10.0-root/vagrant/target/tools/root/usr/info/dir.old /vagrant/target/tools/install/perl-5.10.0-root/vagrant/target/tools/root/usr/share/info/dir /vagrant/target/tools/install/perl-5.10.0-root/vagrant/target/tools/root/usr/share/info/dir.old /vagrant/target/tools/install/perl-5.10.0-root/vagrant/target/tools/root/usr/cross/info/dir /vagrant/target/tools/install/perl-5.10.0-root/vagrant/target/tools/root/usr/cross/info/dir.old /vagrant/target/tools/install/perl-5.10.0-root/vagrant/target/tools/root/usr/cross/share/info/dir /vagrant/target/tools/install/perl-5.10.0-root/vagrant/target/tools/root/usr/cross/share/info/dir.old +Dump +/vagrant/target/tools/status/perl-5.10.0-perl-5.10.0 +install +tar -C /vagrant/target/tools/src --exclude "*~" --exclude "*.orig" -zcf /vagrant/target/tools/packages/perl-5.10.0-src.tools.tar.gz perl-5.10.0 +Dump +/vagrant/target/tools/status/perl-5.10.0-perl-5.10.0 +src_package +MapLocate + def rewire (logger, file): + if os.path.islink (file): + s = os.readlink (file) + if s.startswith ('/') and self.settings.system_root not in s: + new_dest = os.path.join (self.settings.system_root, s[1:]) + loggedos.remove (logger, file) + loggedos.symlink (logger, new_dest, file) + +/vagrant/target/tools/install/perl-5.10.0-root +* +PackageGlobs +/ +/vagrant/target/tools/install/perl-5.10.0-root +/vagrant/target/tools/root +/vagrant/target/tools/packages/perl-5.10.0.tools.gup +Dump +/vagrant/target/tools/packages/perl.tools.hdr +CPATH= +CPLUS_INCLUDE_PATH=/vagrant/target/tools/root/usr/include +C_INCLUDE_PATH=/vagrant/target/tools/root/usr/include +LD_LIBRARY_PATH=/vagrant/target/tools/root +LD_PRELOAD= +LIBRARY_PATH=/vagrant/target/tools/root/usr/lib +PATH=/vagrant/target/tools/root/usr/bin:/vagrant/target/tools/root/usr/cross/bin:/vagrant/target/tools/root/usr/bin:/home/vagrant/bin:/home/vagrant/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin +PERL5LIB=foo:/vagrant/target/tools/root/usr/lib/perl5/5.10.0:/vagrant/target/tools/root/usr/lib/perl5/5.10.0/x86_64-linux:/vagrant/target/tools/root/usr/share/autoconf +__module__=perl +_created_name=perl +allbuilddir=/vagrant/target/tools/build +alllogdir=/vagrant/log +allsrcdir=/vagrant/target/tools/src +alltargetdir=/vagrant/target +architecture=tools +autodir=/vagrant/target/tools/src/perl-5.10.0 +ball_suffix=-5.10.0 +basename=perl-5.10.0 +bits=32 +branch= +build_architecture=x86_64-linux +build_bits=64 +build_cpu=x86_64 +build_dependencies_string=system::gcc;tools::file;tools::librestrict;tools::libtool;tools::make;tools::tar;tools::zlib +build_hardware_bits=64 +build_number=0 +build_os=linux +build_platform=linux-64 +builddir=/vagrant/target/tools/build/perl-5.10.0 +category= +checksum_file=/vagrant/target/tools/packages/perl.checksum +compile_command=make -j4 +compile_command_native=make -j4 +compile_flags= +config_cache_file=/vagrant/target/tools/build/perl-5.10.0/config.cache +config_cache_overrides= +configure_binary=/vagrant/target/tools/src/perl-5.10.0/configure.gnu +configure_command=/vagrant/target/tools/src/perl-5.10.0/configure.gnu -Dprefix=/vagrant/target/tools/root/usr -Dcc='gcc ' -Dtargetarch=x86_64-linux -Dusrinc=/vagrant/target/tools/root/usr/include -Dincpth=/ -Dlibpth=/vagrant/target/tools/root/usr/lib -Dsitelib=/vagrant/target/tools/root/usr/lib/perl5/5.10.0 -Dsitearch=/vagrant/target/tools/root/usr/lib/perl5/5.10.0 -Dusedl -Duseshrplib -Dlibperl=libperl.so -Dcccdlflags=-fPIC -Dlocallibpth=/ -Aldflags='-Wl,-rpath -Wl,\$$ORIGIN/../lib -Wl,-rpath -Wl,/vagrant/target/tools/root/usr/lib' -Alibs='-lm -lrt -ldl' +configure_flags= --prefix=/vagrant/target/tools/root/usr --enable-shared --enable-static --disable-silent-rules +configure_prefix=/vagrant/target/tools/root/usr +configure_variables= CFLAGS=-I/vagrant/target/tools/root/usr/include LDFLAGS='-L/vagrant/target/tools/root/usr/lib -Wl,-rpath -Wl,\$$ORIGIN/../lib -Wl,-rpath -Wl,/vagrant/target/tools/root/usr/lib ' +conflicts_string=; +core_prefix=/vagrant/target/tools/root/usr/cross/core +cpu=tools +cpu_count=2 +cpu_count_str=2 +cross_allsrcdir=/vagrant/target/tools/src/cross +cross_dir=/cross +cross_packages=/vagrant/target/tools/packages/cross +cross_prefix=/vagrant/target/tools/root/usr/cross +cross_statusdir=/vagrant/target/tools/status/cross +debian_branch=unstable +dependencies_string=; +description= +downloads=/vagrant/downloads +fakeroot=fakeroot -i -s +fakeroot_cache= +file_name=perl-5.10.0.tar +full_version=5.10.0 +gtk_version=2.8 +gubdir=/vagrant +gubdir_prefix=/vagrant +install_command=make DESTDIR=/vagrant/target/tools/install/perl-5.10.0-root install +install_flags= DESTDIR=/vagrant/target/tools/install/perl-5.10.0-root install +install_flags_destdir_broken= bindir=/vagrant/target/tools/install/perl-5.10.0-root//vagrant/target/tools/root/usr/bin aclocaldir=/vagrant/target/tools/install/perl-5.10.0-root//vagrant/target/tools/root/usr/share/aclocal datadir=/vagrant/target/tools/install/perl-5.10.0-root//vagrant/target/tools/root/usr/share exec_prefix=/vagrant/target/tools/install/perl-5.10.0-root//vagrant/target/tools/root/usr gcc_tooldir=/vagrant/target/tools/install/perl-5.10.0-root//vagrant/target/tools/root/usr includedir=/vagrant/target/tools/install/perl-5.10.0-root//vagrant/target/tools/root/usr/include infodir=/vagrant/target/tools/install/perl-5.10.0-root//vagrant/target/tools/root/usr/share/info libdir=/vagrant/target/tools/install/perl-5.10.0-root//vagrant/target/tools/root/usr/lib libexecdir=/vagrant/target/tools/install/perl-5.10.0-root//vagrant/target/tools/root/usr/lib mandir=/vagrant/target/tools/install/perl-5.10.0-root//vagrant/target/tools/root/usr/share/man prefix=/vagrant/target/tools/install/perl-5.10.0-root//vagrant/target/tools/root/usr sysconfdir=/vagrant/target/tools/install/perl-5.10.0-root//vagrant/target/tools/root/usr/etc tooldir=/vagrant/target/tools/install/perl-5.10.0-root//vagrant/target/tools/root/usr +install_prefix=/vagrant/target/tools/install/perl-5.10.0-root//vagrant/target/tools/root/usr +install_root=/vagrant/target/tools/install/perl-5.10.0-root +installdir=/vagrant/target/tools/install +job_spec=-j4 +libs= +logdir=/vagrant/target/tools/log +make_flags= +name=perl +name_version=perl-5.10.0 +nsisdir=/vagrant/nsis +os=tools +package_arch=amd64 +packages=/vagrant/target/tools/packages +packaging_suffix_dir=/vagrant/target/tools/root +patchdir=/vagrant/patches +platform=tools +platform_uploads=/vagrant/uploads/tools +prefix_dir=/usr +pretty_name=Perl +root_dir=/root +rpath=-Wl,-rpath -Wl,\$$ORIGIN/../lib -Wl,-rpath -Wl,/vagrant/target/tools/root/usr/lib +so_extension=.so +so_version=1 +source_checksum=perl-5.10.0 +source_name=perl +sourcefiledir=/vagrant/sourcefiles +specdir=/vagrant/gub/specs +split_ball=/vagrant/target/tools/packages/perl-5.10.0.tools.gup +split_hdr=/vagrant/target/tools/packages/perl.tools.hdr +split_name=perl +src_package_ball=/vagrant/target/tools/packages/perl-5.10.0-src.tools.tar.gz +src_package_uploads=/vagrant/target/tools/packages +srcdir=/vagrant/target/tools/src/perl-5.10.0 +stamp_file=/vagrant/target/tools/status/perl-5.10.0-perl-5.10.0 +statusdir=/vagrant/target/tools/status +sub_name= +system_cross_prefix=/vagrant/target/tools/root/usr/cross +system_prefix=/vagrant/target/tools/root/usr +system_root=/vagrant/target/tools/root +target_architecture=x86_64-linux +target_bits=64 +target_cpu=x86_64 +target_gcc_flags= +target_os=linux +target_platform=tools +targetdir=/vagrant/target/tools +toolchain_prefix= +tools32_prefix=/vagrant/target/tools32/root/usr +tools32_root=/vagrant/target/tools32/root +tools32_root_dir=/tools32/root +tools_archmatch_prefix=/vagrant/target/tools/root/usr +tools_cross_prefix=/vagrant/target/tools/root/usr/cross +tools_prefix=/vagrant/target/tools/root/usr +tools_root=/vagrant/target/tools/root +tools_root_dir=/tools/root +uploads=/vagrant/uploads +vc_branch= +vc_branch_suffix= +version=5.10.0 +workdir=/vagrant +workdir_prefix=/vagrant +rm -rf /vagrant/target/tools/install/perl-5.10.0-root +Dump +/vagrant/target/tools/status/perl-5.10.0-perl-5.10.0 +package +rm -rf /vagrant/target/tools/status/perl-5.10.0-perl-5.10.0 /vagrant/target/tools/install/perl-5.10.0-root +rm -rf /vagrant/target/tools/src/perl-5.10.0 /vagrant/target/tools/build/perl-5.10.0 building package: tools::perl *** Stage: download (perl, tools) *** Stage: untar (perl, tools) invoking rm -rf /vagrant/target/tools/src/perl-5.10.0 /vagrant/target/tools/build/perl-5.10.0 /vagrant/target/tools/install/perl-5.10.0-root invoking mkdir /vagrant/target/tools/src/perl-5.10.0 invoking tar -C /vagrant/target/tools/src/perl-5.10.0 --strip-component=1 -v -z -xf /vagrant/downloads/perl/perl-5.10.0.tar.gz perl-5.10.0/AUTHORS perl-5.10.0/Artistic perl-5.10.0/Changes perl-5.10.0/Changes5.000 perl-5.10.0/Changes5.001 perl-5.10.0/Changes5.002 perl-5.10.0/Changes5.003 perl-5.10.0/Changes5.004 perl-5.10.0/Changes5.005 perl-5.10.0/Changes5.6 perl-5.10.0/Changes5.8 perl-5.10.0/Configure perl-5.10.0/Copying perl-5.10.0/Cross/ perl-5.10.0/Cross/Makefile perl-5.10.0/Cross/Makefile.SH.patch perl-5.10.0/Cross/README perl-5.10.0/Cross/TODO perl-5.10.0/Cross/config perl-5.10.0/Cross/config.sh-arm-linux perl-5.10.0/Cross/generate_config_sh perl-5.10.0/Cross/installperl.patch perl-5.10.0/Cross/warp perl-5.10.0/Cross/config.sh-arm-linux-n770 perl-5.10.0/Cross/Makefile-cross-SH perl-5.10.0/Cross/build-arm-n770-sh perl-5.10.0/Cross/cflags-cross-arm perl-5.10.0/Cross/README.new perl-5.10.0/EXTERN.h perl-5.10.0/INSTALL perl-5.10.0/INTERN.h perl-5.10.0/MANIFEST perl-5.10.0/META.yml perl-5.10.0/Makefile.SH perl-5.10.0/Makefile.micro perl-5.10.0/NetWare/ perl-5.10.0/NetWare/CLIBsdio.h perl-5.10.0/NetWare/CLIBstr.h perl-5.10.0/NetWare/CLIBstuf.c perl-5.10.0/NetWare/CLIBstuf.h perl-5.10.0/NetWare/MP.imp perl-5.10.0/NetWare/Main.c perl-5.10.0/NetWare/Makefile perl-5.10.0/NetWare/NWTInfo.c perl-5.10.0/NetWare/NWUtil.c perl-5.10.0/NetWare/Nwmain.c perl-5.10.0/NetWare/Nwpipe.c perl-5.10.0/NetWare/bat/ perl-5.10.0/NetWare/bat/Buildtype.bat perl-5.10.0/NetWare/bat/SetCodeWar.bat perl-5.10.0/NetWare/bat/SetNWBld.bat perl-5.10.0/NetWare/bat/Setnlmsdk.bat perl-5.10.0/NetWare/bat/ToggleD2.bat perl-5.10.0/NetWare/config.wc perl-5.10.0/NetWare/config_H.wc perl-5.10.0/NetWare/config_h.PL perl-5.10.0/NetWare/config_sh.PL perl-5.10.0/NetWare/deb.h perl-5.10.0/NetWare/dl_netware.xs perl-5.10.0/NetWare/intdef.h perl-5.10.0/NetWare/interface.c perl-5.10.0/NetWare/interface.cpp perl-5.10.0/NetWare/interface.h perl-5.10.0/NetWare/iperlhost.h perl-5.10.0/NetWare/netware.h perl-5.10.0/NetWare/nw5.c perl-5.10.0/NetWare/nw5iop.h perl-5.10.0/NetWare/nw5sck.c perl-5.10.0/NetWare/nw5sck.h perl-5.10.0/NetWare/nw5thread.c perl-5.10.0/NetWare/nw5thread.h perl-5.10.0/NetWare/nwhashcls.cpp perl-5.10.0/NetWare/nwhashcls.h perl-5.10.0/NetWare/nwperlhost.h perl-5.10.0/NetWare/nwperlsys.c perl-5.10.0/NetWare/nwperlsys.h perl-5.10.0/NetWare/nwpipe.h perl-5.10.0/NetWare/nwplglob.c perl-5.10.0/NetWare/nwplglob.h perl-5.10.0/NetWare/nwstdio.h perl-5.10.0/NetWare/nwtinfo.h perl-5.10.0/NetWare/nwutil.h perl-5.10.0/NetWare/nwvmem.h perl-5.10.0/NetWare/perllib.cpp perl-5.10.0/NetWare/splittree.pl perl-5.10.0/NetWare/sv_nw.c perl-5.10.0/NetWare/t/ perl-5.10.0/NetWare/t/NWModify.pl perl-5.10.0/NetWare/t/NWScripts.pl perl-5.10.0/NetWare/t/Readme.txt perl-5.10.0/NetWare/testnlm/ perl-5.10.0/NetWare/testnlm/echo/ perl-5.10.0/NetWare/testnlm/echo/echo.c perl-5.10.0/NetWare/testnlm/type/ perl-5.10.0/NetWare/testnlm/type/type.c perl-5.10.0/NetWare/win32ish.h perl-5.10.0/Policy_sh.SH perl-5.10.0/Porting/ perl-5.10.0/Porting/Contract perl-5.10.0/Porting/Glossary perl-5.10.0/Porting/Maintainers perl-5.10.0/Porting/Maintainers.pl perl-5.10.0/Porting/Maintainers.pm perl-5.10.0/Porting/apply perl-5.10.0/Porting/check83.pl perl-5.10.0/Porting/checkAUTHORS.pl perl-5.10.0/Porting/checkURL.pl perl-5.10.0/Porting/checkVERSION.pl perl-5.10.0/Porting/checkcase.pl perl-5.10.0/Porting/checkcfgvar.pl perl-5.10.0/Porting/cmpVERSION.pl perl-5.10.0/Porting/config.sh perl-5.10.0/Porting/config_H perl-5.10.0/Porting/config_h.pl perl-5.10.0/Porting/corecpan.pl perl-5.10.0/Porting/corelist.pl perl-5.10.0/Porting/curliff.pl perl-5.10.0/Porting/findrfuncs perl-5.10.0/Porting/findvars perl-5.10.0/Porting/fixCORE perl-5.10.0/Porting/fixvars perl-5.10.0/Porting/genlog perl-5.10.0/Porting/makemeta perl-5.10.0/Porting/makerel perl-5.10.0/Porting/manicheck perl-5.10.0/Porting/p4d2p perl-5.10.0/Porting/p4genpatch perl-5.10.0/Porting/patching.pod perl-5.10.0/Porting/patchls perl-5.10.0/Porting/pumpkin.pod perl-5.10.0/Porting/repository.pod perl-5.10.0/Porting/sort_perldiag.pl perl-5.10.0/Porting/testall.atom perl-5.10.0/Porting/thirdclean perl-5.10.0/Porting/valgrindpp.pl perl-5.10.0/Porting/regcharclass.pl perl-5.10.0/Porting/add-package.pl perl-5.10.0/README perl-5.10.0/README.aix perl-5.10.0/README.amiga perl-5.10.0/README.apollo perl-5.10.0/README.beos perl-5.10.0/README.bs2000 perl-5.10.0/README.ce perl-5.10.0/README.cn perl-5.10.0/README.cygwin perl-5.10.0/README.dgux perl-5.10.0/README.dos perl-5.10.0/README.epoc perl-5.10.0/README.freebsd perl-5.10.0/README.hpux perl-5.10.0/README.hurd perl-5.10.0/README.irix perl-5.10.0/README.jp perl-5.10.0/README.ko perl-5.10.0/README.linux perl-5.10.0/README.machten perl-5.10.0/README.macos perl-5.10.0/README.macosx perl-5.10.0/README.micro perl-5.10.0/README.mint perl-5.10.0/README.mpeix perl-5.10.0/README.netware perl-5.10.0/README.openbsd perl-5.10.0/README.os2 perl-5.10.0/README.os390 perl-5.10.0/README.os400 perl-5.10.0/README.plan9 perl-5.10.0/README.qnx perl-5.10.0/README.riscos perl-5.10.0/README.solaris perl-5.10.0/README.symbian perl-5.10.0/README.tru64 perl-5.10.0/README.tw perl-5.10.0/README.uts perl-5.10.0/README.vmesa perl-5.10.0/README.vms perl-5.10.0/README.vos perl-5.10.0/README.win32 perl-5.10.0/Todo.micro perl-5.10.0/XSUB.h perl-5.10.0/apollo/ perl-5.10.0/apollo/netinet/ perl-5.10.0/apollo/netinet/in.h perl-5.10.0/autodoc.pl perl-5.10.0/av.c perl-5.10.0/av.h perl-5.10.0/beos/ perl-5.10.0/beos/beos.c perl-5.10.0/beos/beosish.h perl-5.10.0/beos/nm.c perl-5.10.0/pp_pack.c perl-5.10.0/cc_runtime.h perl-5.10.0/cflags.SH perl-5.10.0/config_h.SH perl-5.10.0/configpm perl-5.10.0/configure.com perl-5.10.0/configure.gnu perl-5.10.0/cop.h perl-5.10.0/cv.h perl-5.10.0/cygwin/ perl-5.10.0/cygwin/Makefile.SHs perl-5.10.0/cygwin/cygwin.c perl-5.10.0/deb.c perl-5.10.0/djgpp/ perl-5.10.0/djgpp/config.over perl-5.10.0/djgpp/configure.bat perl-5.10.0/djgpp/djgpp.c perl-5.10.0/djgpp/djgpp.h perl-5.10.0/djgpp/djgppsed.sh perl-5.10.0/djgpp/fixpmain perl-5.10.0/doio.c perl-5.10.0/doop.c perl-5.10.0/dosish.h perl-5.10.0/dump.c perl-5.10.0/emacs/ perl-5.10.0/emacs/cperl-mode.el perl-5.10.0/emacs/e2ctags.pl perl-5.10.0/emacs/ptags perl-5.10.0/embed.fnc perl-5.10.0/embed.h perl-5.10.0/embed.pl perl-5.10.0/embedvar.h perl-5.10.0/epoc/ perl-5.10.0/epoc/config.sh perl-5.10.0/epoc/createpkg.pl perl-5.10.0/epoc/epoc.c perl-5.10.0/epoc/epoc_stubs.c perl-5.10.0/epoc/epocish.c perl-5.10.0/epoc/epocish.h perl-5.10.0/epoc/link.pl perl-5.10.0/ext/ perl-5.10.0/ext/B/ perl-5.10.0/ext/B/B.pm perl-5.10.0/ext/B/B.xs perl-5.10.0/ext/B/B/ perl-5.10.0/ext/B/B/Concise.pm perl-5.10.0/ext/B/B/Debug.pm perl-5.10.0/ext/B/B/Deparse.pm perl-5.10.0/ext/B/B/Lint.pm perl-5.10.0/ext/B/B/Showlex.pm perl-5.10.0/ext/B/B/Terse.pm perl-5.10.0/ext/B/B/Xref.pm perl-5.10.0/ext/B/Makefile.PL perl-5.10.0/ext/B/O.pm perl-5.10.0/ext/B/defsubs_h.PL perl-5.10.0/ext/B/hints/ perl-5.10.0/ext/B/hints/darwin.pl perl-5.10.0/ext/B/hints/openbsd.pl perl-5.10.0/ext/B/t/ perl-5.10.0/ext/B/t/OptreeCheck.pm perl-5.10.0/ext/B/t/b.t perl-5.10.0/ext/B/t/concise-xs.t perl-5.10.0/ext/B/t/concise.t perl-5.10.0/ext/B/t/debug.t perl-5.10.0/ext/B/t/deparse.t perl-5.10.0/ext/B/t/f_map perl-5.10.0/ext/B/t/f_map.t perl-5.10.0/ext/B/t/f_sort perl-5.10.0/ext/B/t/f_sort.t perl-5.10.0/ext/B/t/lint.t perl-5.10.0/ext/B/t/o.t perl-5.10.0/ext/B/t/optree_check.t perl-5.10.0/ext/B/t/optree_concise.t perl-5.10.0/ext/B/t/optree_constants.t perl-5.10.0/ext/B/t/optree_misc.t perl-5.10.0/ext/B/t/optree_samples.t perl-5.10.0/ext/B/t/optree_sort.t perl-5.10.0/ext/B/t/optree_specials.t perl-5.10.0/ext/B/t/optree_varinit.t perl-5.10.0/ext/B/t/pluglib/ perl-5.10.0/ext/B/t/pluglib/B/ perl-5.10.0/ext/B/t/pluglib/B/Lint/ perl-5.10.0/ext/B/t/pluglib/B/Lint/Plugin/ perl-5.10.0/ext/B/t/pluglib/B/Lint/Plugin/Test.pm perl-5.10.0/ext/B/t/pragma.t perl-5.10.0/ext/B/t/showlex.t perl-5.10.0/ext/B/t/terse.t perl-5.10.0/ext/B/t/xref.t perl-5.10.0/ext/B/typemap perl-5.10.0/ext/Compress/ perl-5.10.0/ext/Compress/Raw/ perl-5.10.0/ext/Compress/Raw/Zlib/ perl-5.10.0/ext/Compress/Raw/Zlib/Changes perl-5.10.0/ext/Compress/Raw/Zlib/Makefile.PL perl-5.10.0/ext/Compress/Raw/Zlib/README perl-5.10.0/ext/Compress/Raw/Zlib/Zlib.xs perl-5.10.0/ext/Compress/Raw/Zlib/config.in perl-5.10.0/ext/Compress/Raw/Zlib/examples/ perl-5.10.0/ext/Compress/Raw/Zlib/examples/filtdef perl-5.10.0/ext/Compress/Raw/Zlib/examples/filtinf perl-5.10.0/ext/Compress/Raw/Zlib/fallback/ perl-5.10.0/ext/Compress/Raw/Zlib/fallback/constants.h perl-5.10.0/ext/Compress/Raw/Zlib/fallback/constants.xs perl-5.10.0/ext/Compress/Raw/Zlib/lib/ perl-5.10.0/ext/Compress/Raw/Zlib/lib/Compress/ perl-5.10.0/ext/Compress/Raw/Zlib/lib/Compress/Raw/ perl-5.10.0/ext/Compress/Raw/Zlib/lib/Compress/Raw/Zlib.pm perl-5.10.0/ext/Compress/Raw/Zlib/private/ perl-5.10.0/ext/Compress/Raw/Zlib/private/MakeUtil.pm perl-5.10.0/ext/Compress/Raw/Zlib/t/ perl-5.10.0/ext/Compress/Raw/Zlib/t/01version.t perl-5.10.0/ext/Compress/Raw/Zlib/t/02zlib.t perl-5.10.0/ext/Compress/Raw/Zlib/t/07bufsize.t perl-5.10.0/ext/Compress/Raw/Zlib/t/18lvalue.t perl-5.10.0/ext/Compress/Raw/Zlib/typemap perl-5.10.0/ext/Compress/Raw/Zlib/zlib-src/ perl-5.10.0/ext/Compress/Raw/Zlib/zlib-src/adler32.c perl-5.10.0/ext/Compress/Raw/Zlib/zlib-src/compress.c perl-5.10.0/ext/Compress/Raw/Zlib/zlib-src/crc32.c perl-5.10.0/ext/Compress/Raw/Zlib/zlib-src/crc32.h perl-5.10.0/ext/Compress/Raw/Zlib/zlib-src/deflate.c perl-5.10.0/ext/Compress/Raw/Zlib/zlib-src/deflate.h perl-5.10.0/ext/Compress/Raw/Zlib/zlib-src/infback.c perl-5.10.0/ext/Compress/Raw/Zlib/zlib-src/inffast.c perl-5.10.0/ext/Compress/Raw/Zlib/zlib-src/inffast.h perl-5.10.0/ext/Compress/Raw/Zlib/zlib-src/inffixed.h perl-5.10.0/ext/Compress/Raw/Zlib/zlib-src/inflate.c perl-5.10.0/ext/Compress/Raw/Zlib/zlib-src/inflate.h perl-5.10.0/ext/Compress/Raw/Zlib/zlib-src/inftrees.c perl-5.10.0/ext/Compress/Raw/Zlib/zlib-src/inftrees.h perl-5.10.0/ext/Compress/Raw/Zlib/zlib-src/trees.c perl-5.10.0/ext/Compress/Raw/Zlib/zlib-src/trees.h perl-5.10.0/ext/Compress/Raw/Zlib/zlib-src/uncompr.c perl-5.10.0/ext/Compress/Raw/Zlib/zlib-src/zconf.h perl-5.10.0/ext/Compress/Raw/Zlib/zlib-src/zlib.h perl-5.10.0/ext/Compress/Raw/Zlib/zlib-src/zutil.c perl-5.10.0/ext/Compress/Raw/Zlib/zlib-src/zutil.h perl-5.10.0/ext/Compress/Zlib/ perl-5.10.0/ext/Compress/Zlib/Changes perl-5.10.0/ext/Compress/Zlib/Makefile.PL perl-5.10.0/ext/Compress/Zlib/README perl-5.10.0/ext/Compress/Zlib/examples/ perl-5.10.0/ext/Compress/Zlib/examples/filtdef perl-5.10.0/ext/Compress/Zlib/examples/filtinf perl-5.10.0/ext/Compress/Zlib/examples/gzcat perl-5.10.0/ext/Compress/Zlib/examples/gzgrep perl-5.10.0/ext/Compress/Zlib/examples/gzstream perl-5.10.0/ext/Compress/Zlib/lib/ perl-5.10.0/ext/Compress/Zlib/lib/Compress/ perl-5.10.0/ext/Compress/Zlib/lib/Compress/Zlib.pm perl-5.10.0/ext/Compress/Zlib/private/ perl-5.10.0/ext/Compress/Zlib/private/MakeUtil.pm perl-5.10.0/ext/Compress/Zlib/t/ perl-5.10.0/ext/Compress/Zlib/t/01version.t perl-5.10.0/ext/Compress/Zlib/t/03zlib-v1.t perl-5.10.0/ext/Compress/Zlib/t/05examples.t perl-5.10.0/ext/Compress/Zlib/t/06gzsetp.t perl-5.10.0/ext/Compress/Zlib/t/08encoding.t perl-5.10.0/ext/Compress/Zlib/t/14gzopen.t perl-5.10.0/ext/Cwd/ perl-5.10.0/ext/Cwd/Changes perl-5.10.0/ext/Cwd/Cwd.xs perl-5.10.0/ext/Cwd/Makefile.PL perl-5.10.0/ext/Cwd/t/ perl-5.10.0/ext/Cwd/t/cwd.t perl-5.10.0/ext/Cwd/t/taint.t perl-5.10.0/ext/Cwd/t/win32.t perl-5.10.0/ext/DB_File/ perl-5.10.0/ext/DB_File/Changes perl-5.10.0/ext/DB_File/DB_File.pm perl-5.10.0/ext/DB_File/DB_File.xs perl-5.10.0/ext/DB_File/DB_File_BS perl-5.10.0/ext/DB_File/Makefile.PL perl-5.10.0/ext/DB_File/dbinfo perl-5.10.0/ext/DB_File/hints/ perl-5.10.0/ext/DB_File/hints/dynixptx.pl perl-5.10.0/ext/DB_File/hints/sco.pl perl-5.10.0/ext/DB_File/t/ perl-5.10.0/ext/DB_File/t/db-btree.t perl-5.10.0/ext/DB_File/t/db-hash.t perl-5.10.0/ext/DB_File/t/db-recno.t perl-5.10.0/ext/DB_File/typemap perl-5.10.0/ext/DB_File/version.c perl-5.10.0/ext/Data/ perl-5.10.0/ext/Data/Dumper/ perl-5.10.0/ext/Data/Dumper/Changes perl-5.10.0/ext/Data/Dumper/Dumper.pm perl-5.10.0/ext/Data/Dumper/Dumper.xs perl-5.10.0/ext/Data/Dumper/Makefile.PL perl-5.10.0/ext/Data/Dumper/Todo perl-5.10.0/ext/Data/Dumper/t/ perl-5.10.0/ext/Data/Dumper/t/bugs.t perl-5.10.0/ext/Data/Dumper/t/dumper.t perl-5.10.0/ext/Data/Dumper/t/freezer.t perl-5.10.0/ext/Data/Dumper/t/overload.t perl-5.10.0/ext/Data/Dumper/t/pair.t perl-5.10.0/ext/Data/Dumper/t/bless.t perl-5.10.0/ext/Devel/ perl-5.10.0/ext/Devel/DProf/ perl-5.10.0/ext/Devel/DProf/Changes perl-5.10.0/ext/Devel/DProf/DProf.pm perl-5.10.0/ext/Devel/DProf/DProf.xs perl-5.10.0/ext/Devel/DProf/Makefile.PL perl-5.10.0/ext/Devel/DProf/Todo perl-5.10.0/ext/Devel/DProf/t/ perl-5.10.0/ext/Devel/DProf/t/DProf.t perl-5.10.0/ext/Devel/PPPort/ perl-5.10.0/ext/Devel/PPPort/Changes perl-5.10.0/ext/Devel/PPPort/HACKERS perl-5.10.0/ext/Devel/PPPort/MANIFEST.SKIP perl-5.10.0/ext/Devel/PPPort/Makefile.PL perl-5.10.0/ext/Devel/PPPort/PPPort.xs perl-5.10.0/ext/Devel/PPPort/PPPort_pm.PL perl-5.10.0/ext/Devel/PPPort/PPPort_xs.PL perl-5.10.0/ext/Devel/PPPort/README perl-5.10.0/ext/Devel/PPPort/TODO perl-5.10.0/ext/Devel/PPPort/apicheck_c.PL perl-5.10.0/ext/Devel/PPPort/devel/ perl-5.10.0/ext/Devel/PPPort/devel/buildperl.pl perl-5.10.0/ext/Devel/PPPort/devel/devtools.pl perl-5.10.0/ext/Devel/PPPort/devel/mkapidoc.sh perl-5.10.0/ext/Devel/PPPort/devel/mktodo perl-5.10.0/ext/Devel/PPPort/devel/mktodo.pl perl-5.10.0/ext/Devel/PPPort/devel/regenerate perl-5.10.0/ext/Devel/PPPort/devel/scanprov perl-5.10.0/ext/Devel/PPPort/mktests.PL perl-5.10.0/ext/Devel/PPPort/module2.c perl-5.10.0/ext/Devel/PPPort/module3.c perl-5.10.0/ext/Devel/PPPort/parts/ perl-5.10.0/ext/Devel/PPPort/parts/apicheck.pl perl-5.10.0/ext/Devel/PPPort/parts/apidoc.fnc perl-5.10.0/ext/Devel/PPPort/parts/base/ perl-5.10.0/ext/Devel/PPPort/parts/base/5004000 perl-5.10.0/ext/Devel/PPPort/parts/base/5004010 perl-5.10.0/ext/Devel/PPPort/parts/base/5004020 perl-5.10.0/ext/Devel/PPPort/parts/base/5004030 perl-5.10.0/ext/Devel/PPPort/parts/base/5004040 perl-5.10.0/ext/Devel/PPPort/parts/base/5004050 perl-5.10.0/ext/Devel/PPPort/parts/base/5005000 perl-5.10.0/ext/Devel/PPPort/parts/base/5005010 perl-5.10.0/ext/Devel/PPPort/parts/base/5005020 perl-5.10.0/ext/Devel/PPPort/parts/base/5005030 perl-5.10.0/ext/Devel/PPPort/parts/base/5005040 perl-5.10.0/ext/Devel/PPPort/parts/base/5006000 perl-5.10.0/ext/Devel/PPPort/parts/base/5006001 perl-5.10.0/ext/Devel/PPPort/parts/base/5006002 perl-5.10.0/ext/Devel/PPPort/parts/base/5007000 perl-5.10.0/ext/Devel/PPPort/parts/base/5007001 perl-5.10.0/ext/Devel/PPPort/parts/base/5007002 perl-5.10.0/ext/Devel/PPPort/parts/base/5007003 perl-5.10.0/ext/Devel/PPPort/parts/base/5008000 perl-5.10.0/ext/Devel/PPPort/parts/base/5008001 perl-5.10.0/ext/Devel/PPPort/parts/base/5008002 perl-5.10.0/ext/Devel/PPPort/parts/base/5008003 perl-5.10.0/ext/Devel/PPPort/parts/base/5008004 perl-5.10.0/ext/Devel/PPPort/parts/base/5008005 perl-5.10.0/ext/Devel/PPPort/parts/base/5008006 perl-5.10.0/ext/Devel/PPPort/parts/base/5008007 perl-5.10.0/ext/Devel/PPPort/parts/base/5008008 perl-5.10.0/ext/Devel/PPPort/parts/base/5009000 perl-5.10.0/ext/Devel/PPPort/parts/base/5009001 perl-5.10.0/ext/Devel/PPPort/parts/base/5009002 perl-5.10.0/ext/Devel/PPPort/parts/base/5009003 perl-5.10.0/ext/Devel/PPPort/parts/base/5009004 perl-5.10.0/ext/Devel/PPPort/parts/base/5009005 perl-5.10.0/ext/Devel/PPPort/parts/embed.fnc perl-5.10.0/ext/Devel/PPPort/parts/inc/ perl-5.10.0/ext/Devel/PPPort/parts/inc/MY_CXT perl-5.10.0/ext/Devel/PPPort/parts/inc/SvPV perl-5.10.0/ext/Devel/PPPort/parts/inc/SvREFCNT perl-5.10.0/ext/Devel/PPPort/parts/inc/Sv_set perl-5.10.0/ext/Devel/PPPort/parts/inc/call perl-5.10.0/ext/Devel/PPPort/parts/inc/cop perl-5.10.0/ext/Devel/PPPort/parts/inc/exception perl-5.10.0/ext/Devel/PPPort/parts/inc/format perl-5.10.0/ext/Devel/PPPort/parts/inc/grok perl-5.10.0/ext/Devel/PPPort/parts/inc/limits perl-5.10.0/ext/Devel/PPPort/parts/inc/mPUSH perl-5.10.0/ext/Devel/PPPort/parts/inc/magic perl-5.10.0/ext/Devel/PPPort/parts/inc/memory perl-5.10.0/ext/Devel/PPPort/parts/inc/misc perl-5.10.0/ext/Devel/PPPort/parts/inc/newCONSTSUB perl-5.10.0/ext/Devel/PPPort/parts/inc/newRV perl-5.10.0/ext/Devel/PPPort/parts/inc/podtest perl-5.10.0/ext/Devel/PPPort/parts/inc/ppphbin perl-5.10.0/ext/Devel/PPPort/parts/inc/ppphdoc perl-5.10.0/ext/Devel/PPPort/parts/inc/ppphtest perl-5.10.0/ext/Devel/PPPort/parts/inc/pvs perl-5.10.0/ext/Devel/PPPort/parts/inc/snprintf perl-5.10.0/ext/Devel/PPPort/parts/inc/strlfuncs perl-5.10.0/ext/Devel/PPPort/parts/inc/sv_xpvf perl-5.10.0/ext/Devel/PPPort/parts/inc/threads perl-5.10.0/ext/Devel/PPPort/parts/inc/uv perl-5.10.0/ext/Devel/PPPort/parts/inc/variables perl-5.10.0/ext/Devel/PPPort/parts/inc/version perl-5.10.0/ext/Devel/PPPort/parts/inc/warn perl-5.10.0/ext/Devel/PPPort/parts/inc/shared_pv perl-5.10.0/ext/Devel/PPPort/parts/ppptools.pl perl-5.10.0/ext/Devel/PPPort/parts/todo/ perl-5.10.0/ext/Devel/PPPort/parts/todo/5004000 perl-5.10.0/ext/Devel/PPPort/parts/todo/5004010 perl-5.10.0/ext/Devel/PPPort/parts/todo/5004020 perl-5.10.0/ext/Devel/PPPort/parts/todo/5004030 perl-5.10.0/ext/Devel/PPPort/parts/todo/5004040 perl-5.10.0/ext/Devel/PPPort/parts/todo/5004050 perl-5.10.0/ext/Devel/PPPort/parts/todo/5005000 perl-5.10.0/ext/Devel/PPPort/parts/todo/5005010 perl-5.10.0/ext/Devel/PPPort/parts/todo/5005020 perl-5.10.0/ext/Devel/PPPort/parts/todo/5005030 perl-5.10.0/ext/Devel/PPPort/parts/todo/5005040 perl-5.10.0/ext/Devel/PPPort/parts/todo/5006000 perl-5.10.0/ext/Devel/PPPort/parts/todo/5006001 perl-5.10.0/ext/Devel/PPPort/parts/todo/5006002 perl-5.10.0/ext/Devel/PPPort/parts/todo/5007000 perl-5.10.0/ext/Devel/PPPort/parts/todo/5007001 perl-5.10.0/ext/Devel/PPPort/parts/todo/5007002 perl-5.10.0/ext/Devel/PPPort/parts/todo/5007003 perl-5.10.0/ext/Devel/PPPort/parts/todo/5008000 perl-5.10.0/ext/Devel/PPPort/parts/todo/5008001 perl-5.10.0/ext/Devel/PPPort/parts/todo/5008002 perl-5.10.0/ext/Devel/PPPort/parts/todo/5008003 perl-5.10.0/ext/Devel/PPPort/parts/todo/5008004 perl-5.10.0/ext/Devel/PPPort/parts/todo/5008005 perl-5.10.0/ext/Devel/PPPort/parts/todo/5008006 perl-5.10.0/ext/Devel/PPPort/parts/todo/5008007 perl-5.10.0/ext/Devel/PPPort/parts/todo/5008008 perl-5.10.0/ext/Devel/PPPort/parts/todo/5009000 perl-5.10.0/ext/Devel/PPPort/parts/todo/5009001 perl-5.10.0/ext/Devel/PPPort/parts/todo/5009002 perl-5.10.0/ext/Devel/PPPort/parts/todo/5009003 perl-5.10.0/ext/Devel/PPPort/parts/todo/5009004 perl-5.10.0/ext/Devel/PPPort/parts/todo/5009005 perl-5.10.0/ext/Devel/PPPort/parts/ppport.fnc perl-5.10.0/ext/Devel/PPPort/ppport_h.PL perl-5.10.0/ext/Devel/PPPort/soak perl-5.10.0/ext/Devel/PPPort/t/ perl-5.10.0/ext/Devel/PPPort/t/MY_CXT.t perl-5.10.0/ext/Devel/PPPort/t/SvPV.t perl-5.10.0/ext/Devel/PPPort/t/SvREFCNT.t perl-5.10.0/ext/Devel/PPPort/t/Sv_set.t perl-5.10.0/ext/Devel/PPPort/t/call.t perl-5.10.0/ext/Devel/PPPort/t/cop.t perl-5.10.0/ext/Devel/PPPort/t/exception.t perl-5.10.0/ext/Devel/PPPort/t/grok.t perl-5.10.0/ext/Devel/PPPort/t/limits.t perl-5.10.0/ext/Devel/PPPort/t/mPUSH.t perl-5.10.0/ext/Devel/PPPort/t/magic.t perl-5.10.0/ext/Devel/PPPort/t/memory.t perl-5.10.0/ext/Devel/PPPort/t/misc.t perl-5.10.0/ext/Devel/PPPort/t/newCONSTSUB.t perl-5.10.0/ext/Devel/PPPort/t/newRV.t perl-5.10.0/ext/Devel/PPPort/t/podtest.t perl-5.10.0/ext/Devel/PPPort/t/ppphtest.t perl-5.10.0/ext/Devel/PPPort/t/pvs.t perl-5.10.0/ext/Devel/PPPort/t/snprintf.t perl-5.10.0/ext/Devel/PPPort/t/strlfuncs.t perl-5.10.0/ext/Devel/PPPort/t/sv_xpvf.t perl-5.10.0/ext/Devel/PPPort/t/testutil.pl perl-5.10.0/ext/Devel/PPPort/t/threads.t perl-5.10.0/ext/Devel/PPPort/t/uv.t perl-5.10.0/ext/Devel/PPPort/t/variables.t perl-5.10.0/ext/Devel/PPPort/t/warn.t perl-5.10.0/ext/Devel/PPPort/t/shared_pv.t perl-5.10.0/ext/Devel/PPPort/typemap perl-5.10.0/ext/Devel/Peek/ perl-5.10.0/ext/Devel/Peek/Changes perl-5.10.0/ext/Devel/Peek/Makefile.PL perl-5.10.0/ext/Devel/Peek/Peek.pm perl-5.10.0/ext/Devel/Peek/Peek.xs perl-5.10.0/ext/Devel/Peek/t/ perl-5.10.0/ext/Devel/Peek/t/Peek.t perl-5.10.0/ext/Digest/ perl-5.10.0/ext/Digest/MD5/ perl-5.10.0/ext/Digest/MD5/Changes perl-5.10.0/ext/Digest/MD5/MD5.pm perl-5.10.0/ext/Digest/MD5/MD5.xs perl-5.10.0/ext/Digest/MD5/Makefile.PL perl-5.10.0/ext/Digest/MD5/README perl-5.10.0/ext/Digest/MD5/hints/ perl-5.10.0/ext/Digest/MD5/hints/MacOS.pl perl-5.10.0/ext/Digest/MD5/hints/dec_osf.pl perl-5.10.0/ext/Digest/MD5/hints/irix_6.pl perl-5.10.0/ext/Digest/MD5/t/ perl-5.10.0/ext/Digest/MD5/t/align.t perl-5.10.0/ext/Digest/MD5/t/badfile.t perl-5.10.0/ext/Digest/MD5/t/bits.t perl-5.10.0/ext/Digest/MD5/t/clone.t perl-5.10.0/ext/Digest/MD5/t/files.t perl-5.10.0/ext/Digest/MD5/t/md5-aaa.t perl-5.10.0/ext/Digest/MD5/t/utf8.t perl-5.10.0/ext/Digest/MD5/typemap perl-5.10.0/ext/Digest/SHA/ perl-5.10.0/ext/Digest/SHA/Changes perl-5.10.0/ext/Digest/SHA/Makefile.PL perl-5.10.0/ext/Digest/SHA/README perl-5.10.0/ext/Digest/SHA/SHA.pm perl-5.10.0/ext/Digest/SHA/SHA.xs perl-5.10.0/ext/Digest/SHA/bin/ perl-5.10.0/ext/Digest/SHA/bin/shasum perl-5.10.0/ext/Digest/SHA/src/ perl-5.10.0/ext/Digest/SHA/src/hmac.c perl-5.10.0/ext/Digest/SHA/src/hmac.h perl-5.10.0/ext/Digest/SHA/src/hmacxtra.c perl-5.10.0/ext/Digest/SHA/src/sha.c perl-5.10.0/ext/Digest/SHA/src/sha.h perl-5.10.0/ext/Digest/SHA/src/sha64bit.c perl-5.10.0/ext/Digest/SHA/src/sha64bit.h perl-5.10.0/ext/Digest/SHA/src/shaxtra.c perl-5.10.0/ext/Digest/SHA/t/ perl-5.10.0/ext/Digest/SHA/t/allfcns.t perl-5.10.0/ext/Digest/SHA/t/base64.t perl-5.10.0/ext/Digest/SHA/t/bitbuf.t perl-5.10.0/ext/Digest/SHA/t/dumpload.t perl-5.10.0/ext/Digest/SHA/t/fips198.t perl-5.10.0/ext/Digest/SHA/t/gglong.t perl-5.10.0/ext/Digest/SHA/t/gg.t perl-5.10.0/ext/Digest/SHA/t/hmacsha.t perl-5.10.0/ext/Digest/SHA/t/ireland.t perl-5.10.0/ext/Digest/SHA/t/methods.t perl-5.10.0/ext/Digest/SHA/t/nistbit.t perl-5.10.0/ext/Digest/SHA/t/nistbyte.t perl-5.10.0/ext/Digest/SHA/t/rfc2202.t perl-5.10.0/ext/Digest/SHA/t/sha1.t perl-5.10.0/ext/Digest/SHA/t/sha224.t perl-5.10.0/ext/Digest/SHA/t/sha256.t perl-5.10.0/ext/Digest/SHA/t/sha384.t perl-5.10.0/ext/Digest/SHA/t/sha512.t perl-5.10.0/ext/Digest/SHA/t/woodbury.t perl-5.10.0/ext/Digest/SHA/typemap perl-5.10.0/ext/DynaLoader/ perl-5.10.0/ext/DynaLoader/DynaLoader_pm.PL perl-5.10.0/ext/DynaLoader/Makefile.PL perl-5.10.0/ext/DynaLoader/README perl-5.10.0/ext/DynaLoader/XSLoader_pm.PL perl-5.10.0/ext/DynaLoader/dl_aix.xs perl-5.10.0/ext/DynaLoader/dl_beos.xs perl-5.10.0/ext/DynaLoader/dl_dld.xs perl-5.10.0/ext/DynaLoader/dl_dllload.xs perl-5.10.0/ext/DynaLoader/dl_dlopen.xs perl-5.10.0/ext/DynaLoader/dl_dyld.xs perl-5.10.0/ext/DynaLoader/dl_hpux.xs perl-5.10.0/ext/DynaLoader/dl_mac.xs perl-5.10.0/ext/DynaLoader/dl_mpeix.xs perl-5.10.0/ext/DynaLoader/dl_next.xs perl-5.10.0/ext/DynaLoader/dl_none.xs perl-5.10.0/ext/DynaLoader/dl_symbian.xs perl-5.10.0/ext/DynaLoader/dl_vmesa.xs perl-5.10.0/ext/DynaLoader/dl_vms.xs perl-5.10.0/ext/DynaLoader/dlutils.c perl-5.10.0/ext/DynaLoader/hints/ perl-5.10.0/ext/DynaLoader/hints/aix.pl perl-5.10.0/ext/DynaLoader/hints/gnukfreebsd.pl perl-5.10.0/ext/DynaLoader/hints/gnuknetbsd.pl perl-5.10.0/ext/DynaLoader/hints/linux.pl perl-5.10.0/ext/DynaLoader/hints/netbsd.pl perl-5.10.0/ext/DynaLoader/hints/openbsd.pl perl-5.10.0/ext/DynaLoader/t/ perl-5.10.0/ext/DynaLoader/t/DynaLoader.t perl-5.10.0/ext/DynaLoader/t/XSLoader.t perl-5.10.0/ext/Encode/ perl-5.10.0/ext/Encode/AUTHORS perl-5.10.0/ext/Encode/Byte/ perl-5.10.0/ext/Encode/Byte/Byte.pm perl-5.10.0/ext/Encode/Byte/Makefile.PL perl-5.10.0/ext/Encode/CN/ perl-5.10.0/ext/Encode/CN/CN.pm perl-5.10.0/ext/Encode/CN/Makefile.PL perl-5.10.0/ext/Encode/Changes perl-5.10.0/ext/Encode/EBCDIC/ perl-5.10.0/ext/Encode/EBCDIC/EBCDIC.pm perl-5.10.0/ext/Encode/EBCDIC/Makefile.PL perl-5.10.0/ext/Encode/Encode.pm perl-5.10.0/ext/Encode/Encode.xs perl-5.10.0/ext/Encode/Encode/ perl-5.10.0/ext/Encode/Encode/Changes.e2x perl-5.10.0/ext/Encode/Encode/ConfigLocal_PM.e2x perl-5.10.0/ext/Encode/Encode/Makefile_PL.e2x perl-5.10.0/ext/Encode/Encode/README.e2x perl-5.10.0/ext/Encode/Encode/_PM.e2x perl-5.10.0/ext/Encode/Encode/_T.e2x perl-5.10.0/ext/Encode/Encode/encode.h perl-5.10.0/ext/Encode/JP/ perl-5.10.0/ext/Encode/JP/JP.pm perl-5.10.0/ext/Encode/JP/Makefile.PL perl-5.10.0/ext/Encode/KR/ perl-5.10.0/ext/Encode/KR/KR.pm perl-5.10.0/ext/Encode/KR/Makefile.PL perl-5.10.0/ext/Encode/Makefile.PL perl-5.10.0/ext/Encode/README perl-5.10.0/ext/Encode/Symbol/ perl-5.10.0/ext/Encode/Symbol/Makefile.PL perl-5.10.0/ext/Encode/Symbol/Symbol.pm perl-5.10.0/ext/Encode/TW/ perl-5.10.0/ext/Encode/TW/Makefile.PL perl-5.10.0/ext/Encode/TW/TW.pm perl-5.10.0/ext/Encode/Unicode/ perl-5.10.0/ext/Encode/Unicode/Makefile.PL perl-5.10.0/ext/Encode/Unicode/Unicode.pm perl-5.10.0/ext/Encode/Unicode/Unicode.xs perl-5.10.0/ext/Encode/bin/ perl-5.10.0/ext/Encode/bin/enc2xs perl-5.10.0/ext/Encode/bin/piconv perl-5.10.0/ext/Encode/bin/ucm2table perl-5.10.0/ext/Encode/bin/ucmlint perl-5.10.0/ext/Encode/bin/ucmsort perl-5.10.0/ext/Encode/bin/unidump perl-5.10.0/ext/Encode/encengine.c perl-5.10.0/ext/Encode/encoding.pm perl-5.10.0/ext/Encode/lib/ perl-5.10.0/ext/Encode/lib/Encode/ perl-5.10.0/ext/Encode/lib/Encode/Alias.pm perl-5.10.0/ext/Encode/lib/Encode/CJKConstants.pm perl-5.10.0/ext/Encode/lib/Encode/CN/ perl-5.10.0/ext/Encode/lib/Encode/CN/HZ.pm perl-5.10.0/ext/Encode/lib/Encode/Config.pm perl-5.10.0/ext/Encode/lib/Encode/Encoder.pm perl-5.10.0/ext/Encode/lib/Encode/Encoding.pm perl-5.10.0/ext/Encode/lib/Encode/Guess.pm perl-5.10.0/ext/Encode/lib/Encode/JP/ perl-5.10.0/ext/Encode/lib/Encode/JP/H2Z.pm perl-5.10.0/ext/Encode/lib/Encode/JP/JIS7.pm perl-5.10.0/ext/Encode/lib/Encode/KR/ perl-5.10.0/ext/Encode/lib/Encode/KR/2022_KR.pm perl-5.10.0/ext/Encode/lib/Encode/MIME/ perl-5.10.0/ext/Encode/lib/Encode/MIME/Header.pm perl-5.10.0/ext/Encode/lib/Encode/MIME/Header/ perl-5.10.0/ext/Encode/lib/Encode/MIME/Header/ISO_2022_JP.pm perl-5.10.0/ext/Encode/lib/Encode/MIME/Name.pm perl-5.10.0/ext/Encode/lib/Encode/PerlIO.pod perl-5.10.0/ext/Encode/lib/Encode/Supported.pod perl-5.10.0/ext/Encode/lib/Encode/Unicode/ perl-5.10.0/ext/Encode/lib/Encode/Unicode/UTF7.pm perl-5.10.0/ext/Encode/lib/Encode/GSM0338.pm perl-5.10.0/ext/Encode/t/ perl-5.10.0/ext/Encode/t/Aliases.t perl-5.10.0/ext/Encode/t/CJKT.t perl-5.10.0/ext/Encode/t/Encode.t perl-5.10.0/ext/Encode/t/Encoder.t perl-5.10.0/ext/Encode/t/Mod_EUCJP.pm perl-5.10.0/ext/Encode/t/Unicode.t perl-5.10.0/ext/Encode/t/at-cn.t perl-5.10.0/ext/Encode/t/at-tw.t perl-5.10.0/ext/Encode/t/big5-eten.enc perl-5.10.0/ext/Encode/t/big5-eten.utf perl-5.10.0/ext/Encode/t/big5-hkscs.enc perl-5.10.0/ext/Encode/t/big5-hkscs.utf perl-5.10.0/ext/Encode/t/enc_data.t perl-5.10.0/ext/Encode/t/enc_eucjp.t perl-5.10.0/ext/Encode/t/enc_module.enc perl-5.10.0/ext/Encode/t/enc_module.t perl-5.10.0/ext/Encode/t/enc_utf8.t perl-5.10.0/ext/Encode/t/encoding.t perl-5.10.0/ext/Encode/t/fallback.t perl-5.10.0/ext/Encode/t/from_to.t perl-5.10.0/ext/Encode/t/gb2312.enc perl-5.10.0/ext/Encode/t/gb2312.utf perl-5.10.0/ext/Encode/t/grow.t perl-5.10.0/ext/Encode/t/gsm0338.t perl-5.10.0/ext/Encode/t/guess.t perl-5.10.0/ext/Encode/t/jisx0201.enc perl-5.10.0/ext/Encode/t/jisx0201.utf perl-5.10.0/ext/Encode/t/jisx0208.enc perl-5.10.0/ext/Encode/t/jisx0208.utf perl-5.10.0/ext/Encode/t/jisx0212.enc perl-5.10.0/ext/Encode/t/jisx0212.utf perl-5.10.0/ext/Encode/t/jperl.t perl-5.10.0/ext/Encode/t/ksc5601.enc perl-5.10.0/ext/Encode/t/ksc5601.utf perl-5.10.0/ext/Encode/t/mime-header.t perl-5.10.0/ext/Encode/t/mime_header_iso2022jp.t perl-5.10.0/ext/Encode/t/perlio.t perl-5.10.0/ext/Encode/t/rt.pl perl-5.10.0/ext/Encode/t/unibench.pl perl-5.10.0/ext/Encode/t/utf8strict.t perl-5.10.0/ext/Encode/t/mime-name.t perl-5.10.0/ext/Encode/ucm/ perl-5.10.0/ext/Encode/ucm/8859-1.ucm perl-5.10.0/ext/Encode/ucm/8859-10.ucm perl-5.10.0/ext/Encode/ucm/8859-11.ucm perl-5.10.0/ext/Encode/ucm/8859-13.ucm perl-5.10.0/ext/Encode/ucm/8859-14.ucm perl-5.10.0/ext/Encode/ucm/8859-15.ucm perl-5.10.0/ext/Encode/ucm/8859-16.ucm perl-5.10.0/ext/Encode/ucm/8859-2.ucm perl-5.10.0/ext/Encode/ucm/8859-3.ucm perl-5.10.0/ext/Encode/ucm/8859-4.ucm perl-5.10.0/ext/Encode/ucm/8859-5.ucm perl-5.10.0/ext/Encode/ucm/8859-6.ucm perl-5.10.0/ext/Encode/ucm/8859-7.ucm perl-5.10.0/ext/Encode/ucm/8859-8.ucm perl-5.10.0/ext/Encode/ucm/8859-9.ucm perl-5.10.0/ext/Encode/ucm/adobeStdenc.ucm perl-5.10.0/ext/Encode/ucm/adobeSymbol.ucm perl-5.10.0/ext/Encode/ucm/adobeZdingbat.ucm perl-5.10.0/ext/Encode/ucm/ascii.ucm perl-5.10.0/ext/Encode/ucm/big5-eten.ucm perl-5.10.0/ext/Encode/ucm/big5-hkscs.ucm perl-5.10.0/ext/Encode/ucm/cp037.ucm perl-5.10.0/ext/Encode/ucm/cp1006.ucm perl-5.10.0/ext/Encode/ucm/cp1026.ucm perl-5.10.0/ext/Encode/ucm/cp1047.ucm perl-5.10.0/ext/Encode/ucm/cp1250.ucm perl-5.10.0/ext/Encode/ucm/cp1251.ucm perl-5.10.0/ext/Encode/ucm/cp1252.ucm perl-5.10.0/ext/Encode/ucm/cp1253.ucm perl-5.10.0/ext/Encode/ucm/cp1254.ucm perl-5.10.0/ext/Encode/ucm/cp1255.ucm perl-5.10.0/ext/Encode/ucm/cp1256.ucm perl-5.10.0/ext/Encode/ucm/cp1257.ucm perl-5.10.0/ext/Encode/ucm/cp1258.ucm perl-5.10.0/ext/Encode/ucm/cp424.ucm perl-5.10.0/ext/Encode/ucm/cp437.ucm perl-5.10.0/ext/Encode/ucm/cp500.ucm perl-5.10.0/ext/Encode/ucm/cp737.ucm perl-5.10.0/ext/Encode/ucm/cp775.ucm perl-5.10.0/ext/Encode/ucm/cp850.ucm perl-5.10.0/ext/Encode/ucm/cp852.ucm perl-5.10.0/ext/Encode/ucm/cp855.ucm perl-5.10.0/ext/Encode/ucm/cp856.ucm perl-5.10.0/ext/Encode/ucm/cp857.ucm perl-5.10.0/ext/Encode/ucm/cp860.ucm perl-5.10.0/ext/Encode/ucm/cp861.ucm perl-5.10.0/ext/Encode/ucm/cp862.ucm perl-5.10.0/ext/Encode/ucm/cp863.ucm perl-5.10.0/ext/Encode/ucm/cp864.ucm perl-5.10.0/ext/Encode/ucm/cp865.ucm perl-5.10.0/ext/Encode/ucm/cp866.ucm perl-5.10.0/ext/Encode/ucm/cp869.ucm perl-5.10.0/ext/Encode/ucm/cp874.ucm perl-5.10.0/ext/Encode/ucm/cp875.ucm perl-5.10.0/ext/Encode/ucm/cp932.ucm perl-5.10.0/ext/Encode/ucm/cp936.ucm perl-5.10.0/ext/Encode/ucm/cp949.ucm perl-5.10.0/ext/Encode/ucm/cp950.ucm perl-5.10.0/ext/Encode/ucm/ctrl.ucm perl-5.10.0/ext/Encode/ucm/dingbats.ucm perl-5.10.0/ext/Encode/ucm/euc-cn.ucm perl-5.10.0/ext/Encode/ucm/euc-jp.ucm perl-5.10.0/ext/Encode/ucm/euc-kr.ucm perl-5.10.0/ext/Encode/ucm/gb12345.ucm perl-5.10.0/ext/Encode/ucm/gb2312.ucm perl-5.10.0/ext/Encode/ucm/gsm0338.ucm perl-5.10.0/ext/Encode/ucm/hp-roman8.ucm perl-5.10.0/ext/Encode/ucm/ir-165.ucm perl-5.10.0/ext/Encode/ucm/jis0201.ucm perl-5.10.0/ext/Encode/ucm/jis0208.ucm perl-5.10.0/ext/Encode/ucm/jis0212.ucm perl-5.10.0/ext/Encode/ucm/johab.ucm perl-5.10.0/ext/Encode/ucm/koi8-f.ucm perl-5.10.0/ext/Encode/ucm/koi8-r.ucm perl-5.10.0/ext/Encode/ucm/koi8-u.ucm perl-5.10.0/ext/Encode/ucm/ksc5601.ucm perl-5.10.0/ext/Encode/ucm/macArabic.ucm perl-5.10.0/ext/Encode/ucm/macCentEuro.ucm perl-5.10.0/ext/Encode/ucm/macChinsimp.ucm perl-5.10.0/ext/Encode/ucm/macChintrad.ucm perl-5.10.0/ext/Encode/ucm/macCroatian.ucm perl-5.10.0/ext/Encode/ucm/macCyrillic.ucm perl-5.10.0/ext/Encode/ucm/macDingbats.ucm perl-5.10.0/ext/Encode/ucm/macFarsi.ucm perl-5.10.0/ext/Encode/ucm/macGreek.ucm perl-5.10.0/ext/Encode/ucm/macHebrew.ucm perl-5.10.0/ext/Encode/ucm/macIceland.ucm perl-5.10.0/ext/Encode/ucm/macJapanese.ucm perl-5.10.0/ext/Encode/ucm/macKorean.ucm perl-5.10.0/ext/Encode/ucm/macROMnn.ucm perl-5.10.0/ext/Encode/ucm/macRUMnn.ucm perl-5.10.0/ext/Encode/ucm/macRoman.ucm perl-5.10.0/ext/Encode/ucm/macSami.ucm perl-5.10.0/ext/Encode/ucm/macSymbol.ucm perl-5.10.0/ext/Encode/ucm/macThai.ucm perl-5.10.0/ext/Encode/ucm/macTurkish.ucm perl-5.10.0/ext/Encode/ucm/macUkraine.ucm perl-5.10.0/ext/Encode/ucm/nextstep.ucm perl-5.10.0/ext/Encode/ucm/null.ucm perl-5.10.0/ext/Encode/ucm/posix-bc.ucm perl-5.10.0/ext/Encode/ucm/shiftjis.ucm perl-5.10.0/ext/Encode/ucm/symbol.ucm perl-5.10.0/ext/Encode/ucm/viscii.ucm perl-5.10.0/ext/Errno/ perl-5.10.0/ext/Errno/ChangeLog perl-5.10.0/ext/Errno/Errno_pm.PL perl-5.10.0/ext/Errno/Makefile.PL perl-5.10.0/ext/Errno/t/ perl-5.10.0/ext/Errno/t/Errno.t perl-5.10.0/ext/Fcntl/ perl-5.10.0/ext/Fcntl/Fcntl.pm perl-5.10.0/ext/Fcntl/Fcntl.xs perl-5.10.0/ext/Fcntl/Makefile.PL perl-5.10.0/ext/Fcntl/t/ perl-5.10.0/ext/Fcntl/t/fcntl.t perl-5.10.0/ext/Fcntl/t/syslfs.t perl-5.10.0/ext/Fcntl/t/mode.t perl-5.10.0/ext/File/ perl-5.10.0/ext/File/Glob/ perl-5.10.0/ext/File/Glob/Changes perl-5.10.0/ext/File/Glob/Glob.pm perl-5.10.0/ext/File/Glob/Glob.xs perl-5.10.0/ext/File/Glob/Makefile.PL perl-5.10.0/ext/File/Glob/TODO perl-5.10.0/ext/File/Glob/bsd_glob.c perl-5.10.0/ext/File/Glob/bsd_glob.h perl-5.10.0/ext/File/Glob/t/ perl-5.10.0/ext/File/Glob/t/basic.t perl-5.10.0/ext/File/Glob/t/case.t perl-5.10.0/ext/File/Glob/t/global.t perl-5.10.0/ext/File/Glob/t/taint.t perl-5.10.0/ext/Filter/ perl-5.10.0/ext/Filter/Util/ perl-5.10.0/ext/Filter/Util/Call/ perl-5.10.0/ext/Filter/Util/Call/Call.pm perl-5.10.0/ext/Filter/Util/Call/Call.xs perl-5.10.0/ext/Filter/Util/Call/Makefile.PL perl-5.10.0/ext/Filter/t/ perl-5.10.0/ext/Filter/t/call.t perl-5.10.0/ext/GDBM_File/ perl-5.10.0/ext/GDBM_File/GDBM_File.pm perl-5.10.0/ext/GDBM_File/GDBM_File.xs perl-5.10.0/ext/GDBM_File/Makefile.PL perl-5.10.0/ext/GDBM_File/hints/ perl-5.10.0/ext/GDBM_File/hints/sco.pl perl-5.10.0/ext/GDBM_File/t/ perl-5.10.0/ext/GDBM_File/t/gdbm.t perl-5.10.0/ext/GDBM_File/typemap perl-5.10.0/ext/Hash/ perl-5.10.0/ext/Hash/Util/ perl-5.10.0/ext/Hash/Util/Changes perl-5.10.0/ext/Hash/Util/FieldHash/ perl-5.10.0/ext/Hash/Util/FieldHash/Changes perl-5.10.0/ext/Hash/Util/FieldHash/FieldHash.xs perl-5.10.0/ext/Hash/Util/FieldHash/Makefile.PL perl-5.10.0/ext/Hash/Util/FieldHash/lib/ perl-5.10.0/ext/Hash/Util/FieldHash/lib/Hash/ perl-5.10.0/ext/Hash/Util/FieldHash/lib/Hash/Util/ perl-5.10.0/ext/Hash/Util/FieldHash/lib/Hash/Util/FieldHash.pm perl-5.10.0/ext/Hash/Util/FieldHash/t/ perl-5.10.0/ext/Hash/Util/FieldHash/t/01_load.t perl-5.10.0/ext/Hash/Util/FieldHash/t/02_function.t perl-5.10.0/ext/Hash/Util/FieldHash/t/03_class.t perl-5.10.0/ext/Hash/Util/FieldHash/t/04_thread.t perl-5.10.0/ext/Hash/Util/FieldHash/t/05_perlhook.t perl-5.10.0/ext/Hash/Util/FieldHash/t/10_hash.t perl-5.10.0/ext/Hash/Util/FieldHash/t/11_hashassign.t perl-5.10.0/ext/Hash/Util/FieldHash/t/12_hashwarn.t perl-5.10.0/ext/Hash/Util/Makefile.PL perl-5.10.0/ext/Hash/Util/Util.xs perl-5.10.0/ext/Hash/Util/lib/ perl-5.10.0/ext/Hash/Util/lib/Hash/ perl-5.10.0/ext/Hash/Util/lib/Hash/Util.pm perl-5.10.0/ext/Hash/Util/t/ perl-5.10.0/ext/Hash/Util/t/Util.t perl-5.10.0/ext/I18N/ perl-5.10.0/ext/I18N/Langinfo/ perl-5.10.0/ext/I18N/Langinfo/Langinfo.pm perl-5.10.0/ext/I18N/Langinfo/Langinfo.xs perl-5.10.0/ext/I18N/Langinfo/Makefile.PL perl-5.10.0/ext/I18N/Langinfo/fallback/ perl-5.10.0/ext/I18N/Langinfo/fallback/const-c.inc perl-5.10.0/ext/I18N/Langinfo/fallback/const-xs.inc perl-5.10.0/ext/I18N/Langinfo/t/ perl-5.10.0/ext/I18N/Langinfo/t/Langinfo.t perl-5.10.0/ext/IO/ perl-5.10.0/ext/IO/ChangeLog perl-5.10.0/ext/IO/IO.pm perl-5.10.0/ext/IO/IO.xs perl-5.10.0/ext/IO/Makefile.PL perl-5.10.0/ext/IO/README perl-5.10.0/ext/IO/hints/ perl-5.10.0/ext/IO/hints/sco.pl perl-5.10.0/ext/IO/lib/ perl-5.10.0/ext/IO/lib/IO/ perl-5.10.0/ext/IO/lib/IO/Dir.pm perl-5.10.0/ext/IO/lib/IO/File.pm perl-5.10.0/ext/IO/lib/IO/Handle.pm perl-5.10.0/ext/IO/lib/IO/Pipe.pm perl-5.10.0/ext/IO/lib/IO/Poll.pm perl-5.10.0/ext/IO/lib/IO/Seekable.pm perl-5.10.0/ext/IO/lib/IO/Select.pm perl-5.10.0/ext/IO/lib/IO/Socket.pm perl-5.10.0/ext/IO/lib/IO/Socket/ perl-5.10.0/ext/IO/lib/IO/Socket/INET.pm perl-5.10.0/ext/IO/lib/IO/Socket/UNIX.pm perl-5.10.0/ext/IO/poll.c perl-5.10.0/ext/IO/poll.h perl-5.10.0/ext/IO/t/ perl-5.10.0/ext/IO/t/IO.t perl-5.10.0/ext/IO/t/io_const.t perl-5.10.0/ext/IO/t/io_dir.t perl-5.10.0/ext/IO/t/io_dup.t perl-5.10.0/ext/IO/t/io_file.t perl-5.10.0/ext/IO/t/io_linenum.t perl-5.10.0/ext/IO/t/io_multihomed.t perl-5.10.0/ext/IO/t/io_pipe.t perl-5.10.0/ext/IO/t/io_poll.t perl-5.10.0/ext/IO/t/io_sel.t perl-5.10.0/ext/IO/t/io_sock.t perl-5.10.0/ext/IO/t/io_taint.t perl-5.10.0/ext/IO/t/io_tell.t perl-5.10.0/ext/IO/t/io_udp.t perl-5.10.0/ext/IO/t/io_unix.t perl-5.10.0/ext/IO/t/io_utf8.t perl-5.10.0/ext/IO/t/io_xs.t perl-5.10.0/ext/IPC/ perl-5.10.0/ext/IPC/SysV/ perl-5.10.0/ext/IPC/SysV/ChangeLog perl-5.10.0/ext/IPC/SysV/MANIFEST perl-5.10.0/ext/IPC/SysV/Makefile.PL perl-5.10.0/ext/IPC/SysV/Msg.pm perl-5.10.0/ext/IPC/SysV/README perl-5.10.0/ext/IPC/SysV/Semaphore.pm perl-5.10.0/ext/IPC/SysV/SysV.pm perl-5.10.0/ext/IPC/SysV/SysV.xs perl-5.10.0/ext/IPC/SysV/hints/ perl-5.10.0/ext/IPC/SysV/hints/cygwin.pl perl-5.10.0/ext/IPC/SysV/hints/next_3.pl perl-5.10.0/ext/IPC/SysV/t/ perl-5.10.0/ext/IPC/SysV/t/ipcsysv.t perl-5.10.0/ext/IPC/SysV/t/msg.t perl-5.10.0/ext/IPC/SysV/t/sem.t perl-5.10.0/ext/List/ perl-5.10.0/ext/List/Util/ perl-5.10.0/ext/List/Util/Changes perl-5.10.0/ext/List/Util/Makefile.PL perl-5.10.0/ext/List/Util/README perl-5.10.0/ext/List/Util/Util.xs perl-5.10.0/ext/List/Util/lib/ perl-5.10.0/ext/List/Util/lib/List/ perl-5.10.0/ext/List/Util/lib/List/Util.pm perl-5.10.0/ext/List/Util/lib/Scalar/ perl-5.10.0/ext/List/Util/lib/Scalar/Util.pm perl-5.10.0/ext/List/Util/multicall.h perl-5.10.0/ext/List/Util/t/ perl-5.10.0/ext/List/Util/t/00version.t perl-5.10.0/ext/List/Util/t/blessed.t perl-5.10.0/ext/List/Util/t/dualvar.t perl-5.10.0/ext/List/Util/t/first.t perl-5.10.0/ext/List/Util/t/isvstring.t perl-5.10.0/ext/List/Util/t/lln.t perl-5.10.0/ext/List/Util/t/max.t perl-5.10.0/ext/List/Util/t/maxstr.t perl-5.10.0/ext/List/Util/t/min.t perl-5.10.0/ext/List/Util/t/minstr.t perl-5.10.0/ext/List/Util/t/openhan.t perl-5.10.0/ext/List/Util/t/p_blessed.t perl-5.10.0/ext/List/Util/t/p_first.t perl-5.10.0/ext/List/Util/t/p_lln.t perl-5.10.0/ext/List/Util/t/p_max.t perl-5.10.0/ext/List/Util/t/p_maxstr.t perl-5.10.0/ext/List/Util/t/p_min.t perl-5.10.0/ext/List/Util/t/p_minstr.t perl-5.10.0/ext/List/Util/t/p_openhan.t perl-5.10.0/ext/List/Util/t/p_readonly.t perl-5.10.0/ext/List/Util/t/p_reduce.t perl-5.10.0/ext/List/Util/t/p_refaddr.t perl-5.10.0/ext/List/Util/t/p_reftype.t perl-5.10.0/ext/List/Util/t/p_shuffle.t perl-5.10.0/ext/List/Util/t/p_sum.t perl-5.10.0/ext/List/Util/t/p_tainted.t perl-5.10.0/ext/List/Util/t/proto.t perl-5.10.0/ext/List/Util/t/readonly.t perl-5.10.0/ext/List/Util/t/reduce.t perl-5.10.0/ext/List/Util/t/refaddr.t perl-5.10.0/ext/List/Util/t/reftype.t perl-5.10.0/ext/List/Util/t/shuffle.t perl-5.10.0/ext/List/Util/t/sum.t perl-5.10.0/ext/List/Util/t/tainted.t perl-5.10.0/ext/List/Util/t/weak.t perl-5.10.0/ext/MIME/ perl-5.10.0/ext/MIME/Base64/ perl-5.10.0/ext/MIME/Base64/Base64.pm perl-5.10.0/ext/MIME/Base64/Base64.xs perl-5.10.0/ext/MIME/Base64/Changes perl-5.10.0/ext/MIME/Base64/Makefile.PL perl-5.10.0/ext/MIME/Base64/QuotedPrint.pm perl-5.10.0/ext/MIME/Base64/README perl-5.10.0/ext/MIME/Base64/t/ perl-5.10.0/ext/MIME/Base64/t/base64.t perl-5.10.0/ext/MIME/Base64/t/quoted-print.t perl-5.10.0/ext/MIME/Base64/t/unicode.t perl-5.10.0/ext/MIME/Base64/t/warn.t perl-5.10.0/ext/Math/ perl-5.10.0/ext/Math/BigInt/ perl-5.10.0/ext/Math/BigInt/FastCalc/ perl-5.10.0/ext/Math/BigInt/FastCalc/FastCalc.pm perl-5.10.0/ext/Math/BigInt/FastCalc/FastCalc.xs perl-5.10.0/ext/Math/BigInt/FastCalc/Makefile.PL perl-5.10.0/ext/Math/BigInt/FastCalc/t/ perl-5.10.0/ext/Math/BigInt/FastCalc/t/bigintfc.t perl-5.10.0/ext/Math/BigInt/FastCalc/t/bootstrap.t perl-5.10.0/ext/Math/BigInt/FastCalc/t/mbi_rand.t perl-5.10.0/ext/Math/BigInt/FastCalc/t/leak.t perl-5.10.0/ext/NDBM_File/ perl-5.10.0/ext/NDBM_File/Makefile.PL perl-5.10.0/ext/NDBM_File/NDBM_File.pm perl-5.10.0/ext/NDBM_File/NDBM_File.xs perl-5.10.0/ext/NDBM_File/hints/ perl-5.10.0/ext/NDBM_File/hints/cygwin.pl perl-5.10.0/ext/NDBM_File/hints/dec_osf.pl perl-5.10.0/ext/NDBM_File/hints/dynixptx.pl perl-5.10.0/ext/NDBM_File/hints/gnukfreebsd.pl perl-5.10.0/ext/NDBM_File/hints/gnuknetbsd.pl perl-5.10.0/ext/NDBM_File/hints/linux.pl perl-5.10.0/ext/NDBM_File/hints/sco.pl perl-5.10.0/ext/NDBM_File/hints/solaris.pl perl-5.10.0/ext/NDBM_File/hints/svr4.pl perl-5.10.0/ext/NDBM_File/t/ perl-5.10.0/ext/NDBM_File/t/ndbm.t perl-5.10.0/ext/NDBM_File/typemap perl-5.10.0/ext/ODBM_File/ perl-5.10.0/ext/ODBM_File/Makefile.PL perl-5.10.0/ext/ODBM_File/ODBM_File.pm perl-5.10.0/ext/ODBM_File/ODBM_File.xs perl-5.10.0/ext/ODBM_File/hints/ perl-5.10.0/ext/ODBM_File/hints/cygwin.pl perl-5.10.0/ext/ODBM_File/hints/dec_osf.pl perl-5.10.0/ext/ODBM_File/hints/gnukfreebsd.pl perl-5.10.0/ext/ODBM_File/hints/gnuknetbsd.pl perl-5.10.0/ext/ODBM_File/hints/hpux.pl perl-5.10.0/ext/ODBM_File/hints/linux.pl perl-5.10.0/ext/ODBM_File/hints/sco.pl perl-5.10.0/ext/ODBM_File/hints/solaris.pl perl-5.10.0/ext/ODBM_File/hints/svr4.pl perl-5.10.0/ext/ODBM_File/hints/ultrix.pl perl-5.10.0/ext/ODBM_File/t/ perl-5.10.0/ext/ODBM_File/t/odbm.t perl-5.10.0/ext/ODBM_File/typemap perl-5.10.0/ext/Opcode/ perl-5.10.0/ext/Opcode/Makefile.PL perl-5.10.0/ext/Opcode/Opcode.pm perl-5.10.0/ext/Opcode/Opcode.xs perl-5.10.0/ext/Opcode/Safe.pm perl-5.10.0/ext/Opcode/ops.pm perl-5.10.0/ext/Opcode/t/ perl-5.10.0/ext/Opcode/t/Opcode.t perl-5.10.0/ext/Opcode/t/ops.t perl-5.10.0/ext/POSIX/ perl-5.10.0/ext/POSIX/Makefile.PL perl-5.10.0/ext/POSIX/POSIX.pm perl-5.10.0/ext/POSIX/POSIX.pod perl-5.10.0/ext/POSIX/POSIX.xs perl-5.10.0/ext/POSIX/hints/ perl-5.10.0/ext/POSIX/hints/bsdos.pl perl-5.10.0/ext/POSIX/hints/dynixptx.pl perl-5.10.0/ext/POSIX/hints/freebsd.pl perl-5.10.0/ext/POSIX/hints/gnukfreebsd.pl perl-5.10.0/ext/POSIX/hints/gnuknetbsd.pl perl-5.10.0/ext/POSIX/hints/linux.pl perl-5.10.0/ext/POSIX/hints/mint.pl perl-5.10.0/ext/POSIX/hints/netbsd.pl perl-5.10.0/ext/POSIX/hints/next_3.pl perl-5.10.0/ext/POSIX/hints/openbsd.pl perl-5.10.0/ext/POSIX/hints/sunos_4.pl perl-5.10.0/ext/POSIX/hints/svr4.pl perl-5.10.0/ext/POSIX/hints/uts.pl perl-5.10.0/ext/POSIX/t/ perl-5.10.0/ext/POSIX/t/is.t perl-5.10.0/ext/POSIX/t/math.t perl-5.10.0/ext/POSIX/t/posix.t perl-5.10.0/ext/POSIX/t/sigaction.t perl-5.10.0/ext/POSIX/t/sysconf.t perl-5.10.0/ext/POSIX/t/taint.t perl-5.10.0/ext/POSIX/t/termios.t perl-5.10.0/ext/POSIX/t/time.t perl-5.10.0/ext/POSIX/t/waitpid.t perl-5.10.0/ext/POSIX/typemap perl-5.10.0/ext/PerlIO/ perl-5.10.0/ext/PerlIO/encoding/ perl-5.10.0/ext/PerlIO/encoding/MANIFEST perl-5.10.0/ext/PerlIO/encoding/Makefile.PL perl-5.10.0/ext/PerlIO/encoding/encoding.pm perl-5.10.0/ext/PerlIO/encoding/encoding.xs perl-5.10.0/ext/PerlIO/encoding/t/ perl-5.10.0/ext/PerlIO/encoding/t/nolooping.t perl-5.10.0/ext/PerlIO/scalar/ perl-5.10.0/ext/PerlIO/scalar/Makefile.PL perl-5.10.0/ext/PerlIO/scalar/scalar.pm perl-5.10.0/ext/PerlIO/scalar/scalar.xs perl-5.10.0/ext/PerlIO/t/ perl-5.10.0/ext/PerlIO/t/PerlIO.t perl-5.10.0/ext/PerlIO/t/encoding.t perl-5.10.0/ext/PerlIO/t/fail.t perl-5.10.0/ext/PerlIO/t/fallback.t perl-5.10.0/ext/PerlIO/t/open.t perl-5.10.0/ext/PerlIO/t/scalar.t perl-5.10.0/ext/PerlIO/t/via.t perl-5.10.0/ext/PerlIO/via/ perl-5.10.0/ext/PerlIO/via/Makefile.PL perl-5.10.0/ext/PerlIO/via/hints/ perl-5.10.0/ext/PerlIO/via/hints/aix.pl perl-5.10.0/ext/PerlIO/via/via.pm perl-5.10.0/ext/PerlIO/via/via.xs perl-5.10.0/ext/SDBM_File/ perl-5.10.0/ext/SDBM_File/Makefile.PL perl-5.10.0/ext/SDBM_File/SDBM_File.pm perl-5.10.0/ext/SDBM_File/SDBM_File.xs perl-5.10.0/ext/SDBM_File/sdbm/ perl-5.10.0/ext/SDBM_File/sdbm/CHANGES perl-5.10.0/ext/SDBM_File/sdbm/COMPARE perl-5.10.0/ext/SDBM_File/sdbm/Makefile.PL perl-5.10.0/ext/SDBM_File/sdbm/README perl-5.10.0/ext/SDBM_File/sdbm/README.too perl-5.10.0/ext/SDBM_File/sdbm/biblio perl-5.10.0/ext/SDBM_File/sdbm/dba.c perl-5.10.0/ext/SDBM_File/sdbm/dbd.c perl-5.10.0/ext/SDBM_File/sdbm/dbe.1 perl-5.10.0/ext/SDBM_File/sdbm/dbe.c perl-5.10.0/ext/SDBM_File/sdbm/dbu.c perl-5.10.0/ext/SDBM_File/sdbm/grind perl-5.10.0/ext/SDBM_File/sdbm/hash.c perl-5.10.0/ext/SDBM_File/sdbm/linux.patches perl-5.10.0/ext/SDBM_File/sdbm/makefile.sdbm perl-5.10.0/ext/SDBM_File/sdbm/pair.c perl-5.10.0/ext/SDBM_File/sdbm/pair.h perl-5.10.0/ext/SDBM_File/sdbm/readme.ms perl-5.10.0/ext/SDBM_File/sdbm/sdbm.3 perl-5.10.0/ext/SDBM_File/sdbm/sdbm.c perl-5.10.0/ext/SDBM_File/sdbm/sdbm.h perl-5.10.0/ext/SDBM_File/sdbm/tune.h perl-5.10.0/ext/SDBM_File/sdbm/util.c perl-5.10.0/ext/SDBM_File/t/ perl-5.10.0/ext/SDBM_File/t/sdbm.t perl-5.10.0/ext/SDBM_File/typemap perl-5.10.0/ext/Safe/ perl-5.10.0/ext/Safe/t/ perl-5.10.0/ext/Safe/t/safe1.t perl-5.10.0/ext/Safe/t/safe2.t perl-5.10.0/ext/Safe/t/safe3.t perl-5.10.0/ext/Safe/t/safeops.t perl-5.10.0/ext/Safe/t/safeuniversal.t perl-5.10.0/ext/Socket/ perl-5.10.0/ext/Socket/Makefile.PL perl-5.10.0/ext/Socket/Socket.pm perl-5.10.0/ext/Socket/Socket.xs perl-5.10.0/ext/Socket/t/ perl-5.10.0/ext/Socket/t/Socket.t perl-5.10.0/ext/Socket/t/socketpair.t perl-5.10.0/ext/Storable/ perl-5.10.0/ext/Storable/ChangeLog perl-5.10.0/ext/Storable/MANIFEST perl-5.10.0/ext/Storable/Makefile.PL perl-5.10.0/ext/Storable/README perl-5.10.0/ext/Storable/Storable.pm perl-5.10.0/ext/Storable/Storable.xs perl-5.10.0/ext/Storable/hints/ perl-5.10.0/ext/Storable/hints/gnukfreebsd.pl perl-5.10.0/ext/Storable/hints/gnuknetbsd.pl perl-5.10.0/ext/Storable/hints/linux.pl perl-5.10.0/ext/Storable/t/ perl-5.10.0/ext/Storable/t/HAS_ATTACH.pm perl-5.10.0/ext/Storable/t/HAS_HOOK.pm perl-5.10.0/ext/Storable/t/HAS_OVERLOAD.pm perl-5.10.0/ext/Storable/t/attach_errors.t perl-5.10.0/ext/Storable/t/attach_singleton.t perl-5.10.0/ext/Storable/t/blessed.t perl-5.10.0/ext/Storable/t/canonical.t perl-5.10.0/ext/Storable/t/circular_hook.t perl-5.10.0/ext/Storable/t/code.t perl-5.10.0/ext/Storable/t/compat01.t perl-5.10.0/ext/Storable/t/compat06.t perl-5.10.0/ext/Storable/t/croak.t perl-5.10.0/ext/Storable/t/dclone.t perl-5.10.0/ext/Storable/t/downgrade.t perl-5.10.0/ext/Storable/t/file_magic.t perl-5.10.0/ext/Storable/t/forgive.t perl-5.10.0/ext/Storable/t/freeze.t perl-5.10.0/ext/Storable/t/integer.t perl-5.10.0/ext/Storable/t/interwork56.t perl-5.10.0/ext/Storable/t/just_plain_nasty.t perl-5.10.0/ext/Storable/t/lock.t perl-5.10.0/ext/Storable/t/make_56_interwork.pl perl-5.10.0/ext/Storable/t/make_downgrade.pl perl-5.10.0/ext/Storable/t/make_overload.pl perl-5.10.0/ext/Storable/t/malice.t perl-5.10.0/ext/Storable/t/overload.t perl-5.10.0/ext/Storable/t/recurse.t perl-5.10.0/ext/Storable/t/restrict.t perl-5.10.0/ext/Storable/t/retrieve.t perl-5.10.0/ext/Storable/t/sig_die.t perl-5.10.0/ext/Storable/t/st-dump.pl perl-5.10.0/ext/Storable/t/store.t perl-5.10.0/ext/Storable/t/testlib.pl perl-5.10.0/ext/Storable/t/threads.t perl-5.10.0/ext/Storable/t/tied.t perl-5.10.0/ext/Storable/t/tied_hook.t perl-5.10.0/ext/Storable/t/tied_items.t perl-5.10.0/ext/Storable/t/utf8.t perl-5.10.0/ext/Storable/t/utf8hash.t perl-5.10.0/ext/Storable/t/weak.t perl-5.10.0/ext/Sys/ perl-5.10.0/ext/Sys/Hostname/ perl-5.10.0/ext/Sys/Hostname/Hostname.pm perl-5.10.0/ext/Sys/Hostname/Hostname.xs perl-5.10.0/ext/Sys/Hostname/Makefile.PL perl-5.10.0/ext/Sys/Hostname/t/ perl-5.10.0/ext/Sys/Hostname/t/Hostname.t perl-5.10.0/ext/Sys/Syslog/ perl-5.10.0/ext/Sys/Syslog/Changes perl-5.10.0/ext/Sys/Syslog/Makefile.PL perl-5.10.0/ext/Sys/Syslog/README perl-5.10.0/ext/Sys/Syslog/Syslog.pm perl-5.10.0/ext/Sys/Syslog/Syslog.xs perl-5.10.0/ext/Sys/Syslog/fallback/ perl-5.10.0/ext/Sys/Syslog/fallback/const-c.inc perl-5.10.0/ext/Sys/Syslog/fallback/const-xs.inc perl-5.10.0/ext/Sys/Syslog/t/ perl-5.10.0/ext/Sys/Syslog/t/00-load.t perl-5.10.0/ext/Sys/Syslog/t/constants.t perl-5.10.0/ext/Sys/Syslog/t/syslog.t perl-5.10.0/ext/Sys/Syslog/win32/ perl-5.10.0/ext/Sys/Syslog/win32/PerlLog.mc perl-5.10.0/ext/Sys/Syslog/win32/PerlLog_RES.uu perl-5.10.0/ext/Sys/Syslog/win32/PerlLog_dll.uu perl-5.10.0/ext/Sys/Syslog/win32/Win32.pm perl-5.10.0/ext/Sys/Syslog/win32/compile.pl perl-5.10.0/ext/Sys/Syslog/README.win32 perl-5.10.0/ext/Text/ perl-5.10.0/ext/Text/Soundex/ perl-5.10.0/ext/Text/Soundex/Changes perl-5.10.0/ext/Text/Soundex/Makefile.PL perl-5.10.0/ext/Text/Soundex/README perl-5.10.0/ext/Text/Soundex/Soundex.pm perl-5.10.0/ext/Text/Soundex/Soundex.xs perl-5.10.0/ext/Text/Soundex/t/ perl-5.10.0/ext/Text/Soundex/t/Soundex.t perl-5.10.0/ext/Time/ perl-5.10.0/ext/Time/HiRes/ perl-5.10.0/ext/Time/HiRes/Changes perl-5.10.0/ext/Time/HiRes/HiRes.pm perl-5.10.0/ext/Time/HiRes/HiRes.xs perl-5.10.0/ext/Time/HiRes/Makefile.PL perl-5.10.0/ext/Time/HiRes/fallback/ perl-5.10.0/ext/Time/HiRes/fallback/const-c.inc perl-5.10.0/ext/Time/HiRes/fallback/const-xs.inc perl-5.10.0/ext/Time/HiRes/hints/ perl-5.10.0/ext/Time/HiRes/hints/aix.pl perl-5.10.0/ext/Time/HiRes/hints/dec_osf.pl perl-5.10.0/ext/Time/HiRes/hints/dynixptx.pl perl-5.10.0/ext/Time/HiRes/hints/irix.pl perl-5.10.0/ext/Time/HiRes/hints/linux.pl perl-5.10.0/ext/Time/HiRes/hints/sco.pl perl-5.10.0/ext/Time/HiRes/hints/solaris.pl perl-5.10.0/ext/Time/HiRes/hints/svr4.pl perl-5.10.0/ext/Time/HiRes/t/ perl-5.10.0/ext/Time/HiRes/t/HiRes.t perl-5.10.0/ext/Time/HiRes/typemap perl-5.10.0/ext/Time/Piece/ perl-5.10.0/ext/Time/Piece/Changes perl-5.10.0/ext/Time/Piece/Makefile.PL perl-5.10.0/ext/Time/Piece/Piece.pm perl-5.10.0/ext/Time/Piece/Piece.xs perl-5.10.0/ext/Time/Piece/README perl-5.10.0/ext/Time/Piece/Seconds.pm perl-5.10.0/ext/Time/Piece/t/ perl-5.10.0/ext/Time/Piece/t/01base.t perl-5.10.0/ext/Time/Piece/t/02core.t perl-5.10.0/ext/Time/Piece/t/03compare.t perl-5.10.0/ext/Time/Piece/t/04mjd.t perl-5.10.0/ext/Time/Piece/t/05overload.t perl-5.10.0/ext/Time/Piece/t/06subclass.t perl-5.10.0/ext/Unicode/ perl-5.10.0/ext/Unicode/Normalize/ perl-5.10.0/ext/Unicode/Normalize/Changes perl-5.10.0/ext/Unicode/Normalize/Makefile.PL perl-5.10.0/ext/Unicode/Normalize/Normalize.pm perl-5.10.0/ext/Unicode/Normalize/Normalize.xs perl-5.10.0/ext/Unicode/Normalize/README perl-5.10.0/ext/Unicode/Normalize/mkheader perl-5.10.0/ext/Unicode/Normalize/t/ perl-5.10.0/ext/Unicode/Normalize/t/fcdc.t perl-5.10.0/ext/Unicode/Normalize/t/form.t perl-5.10.0/ext/Unicode/Normalize/t/func.t perl-5.10.0/ext/Unicode/Normalize/t/illegal.t perl-5.10.0/ext/Unicode/Normalize/t/norm.t perl-5.10.0/ext/Unicode/Normalize/t/null.t perl-5.10.0/ext/Unicode/Normalize/t/proto.t perl-5.10.0/ext/Unicode/Normalize/t/split.t perl-5.10.0/ext/Unicode/Normalize/t/test.t perl-5.10.0/ext/Unicode/Normalize/t/tie.t perl-5.10.0/ext/Win32/ perl-5.10.0/ext/Win32/Makefile.PL perl-5.10.0/ext/Win32/Win32.pm perl-5.10.0/ext/Win32/Win32.xs perl-5.10.0/ext/Win32/t/ perl-5.10.0/ext/Win32/t/ExpandEnvironmentStrings.t perl-5.10.0/ext/Win32/t/GetFileVersion.t perl-5.10.0/ext/Win32/t/GetFolderPath.t perl-5.10.0/ext/Win32/t/GetFullPathName.t perl-5.10.0/ext/Win32/t/GetLongPathName.t perl-5.10.0/ext/Win32/t/GetOSVersion.t perl-5.10.0/ext/Win32/t/GuidGen.t perl-5.10.0/ext/Win32/t/CreateFile.t perl-5.10.0/ext/Win32/t/GetCurrentThreadId.t perl-5.10.0/ext/Win32/t/Unicode.t perl-5.10.0/ext/Win32/t/GetShortPathName.t perl-5.10.0/ext/Win32/t/Names.t perl-5.10.0/ext/Win32/longpath.inc perl-5.10.0/ext/Win32/Changes perl-5.10.0/ext/XS/ perl-5.10.0/ext/XS/APItest/ perl-5.10.0/ext/XS/APItest/APItest.pm perl-5.10.0/ext/XS/APItest/APItest.xs perl-5.10.0/ext/XS/APItest/MANIFEST perl-5.10.0/ext/XS/APItest/Makefile.PL perl-5.10.0/ext/XS/APItest/README perl-5.10.0/ext/XS/APItest/core.c perl-5.10.0/ext/XS/APItest/core_or_not.inc perl-5.10.0/ext/XS/APItest/exception.c perl-5.10.0/ext/XS/APItest/notcore.c perl-5.10.0/ext/XS/APItest/t/ perl-5.10.0/ext/XS/APItest/t/call.t perl-5.10.0/ext/XS/APItest/t/exception.t perl-5.10.0/ext/XS/APItest/t/hash.t perl-5.10.0/ext/XS/APItest/t/my_cxt.t perl-5.10.0/ext/XS/APItest/t/op.t perl-5.10.0/ext/XS/APItest/t/printf.t perl-5.10.0/ext/XS/APItest/t/push.t perl-5.10.0/ext/XS/APItest/t/svsetsv.t perl-5.10.0/ext/XS/APItest/t/xs_special_subs.t perl-5.10.0/ext/XS/APItest/t/xs_special_subs_require.t perl-5.10.0/ext/XS/Typemap/ perl-5.10.0/ext/XS/Typemap/Makefile.PL perl-5.10.0/ext/XS/Typemap/README perl-5.10.0/ext/XS/Typemap/Typemap.pm perl-5.10.0/ext/XS/Typemap/Typemap.xs perl-5.10.0/ext/XS/Typemap/stdio.c perl-5.10.0/ext/XS/Typemap/t/ perl-5.10.0/ext/XS/Typemap/t/Typemap.t perl-5.10.0/ext/XS/Typemap/typemap perl-5.10.0/ext/attrs/ perl-5.10.0/ext/attrs/Makefile.PL perl-5.10.0/ext/attrs/attrs.pm perl-5.10.0/ext/attrs/attrs.xs perl-5.10.0/ext/attrs/t/ perl-5.10.0/ext/attrs/t/attrs.t perl-5.10.0/ext/re/ perl-5.10.0/ext/re/Makefile.PL perl-5.10.0/ext/re/hints/ perl-5.10.0/ext/re/hints/mpeix.pl perl-5.10.0/ext/re/re.pm perl-5.10.0/ext/re/re.xs perl-5.10.0/ext/re/re_comp.h perl-5.10.0/ext/re/re_top.h perl-5.10.0/ext/re/t/ perl-5.10.0/ext/re/t/lexical_debug.pl perl-5.10.0/ext/re/t/lexical_debug.t perl-5.10.0/ext/re/t/re.t perl-5.10.0/ext/re/t/re_funcs.t perl-5.10.0/ext/re/t/regop.pl perl-5.10.0/ext/re/t/regop.t perl-5.10.0/ext/re/t/qr.t perl-5.10.0/ext/threads/ perl-5.10.0/ext/threads/Makefile.PL perl-5.10.0/ext/threads/hints/ perl-5.10.0/ext/threads/hints/hpux.pl perl-5.10.0/ext/threads/hints/linux.pl perl-5.10.0/ext/threads/shared/ perl-5.10.0/ext/threads/shared/Makefile.PL perl-5.10.0/ext/threads/shared/hints/ perl-5.10.0/ext/threads/shared/hints/linux.pl perl-5.10.0/ext/threads/shared/shared.pm perl-5.10.0/ext/threads/shared/shared.xs perl-5.10.0/ext/threads/shared/t/ perl-5.10.0/ext/threads/shared/t/0nothread.t perl-5.10.0/ext/threads/shared/t/av_refs.t perl-5.10.0/ext/threads/shared/t/av_simple.t perl-5.10.0/ext/threads/shared/t/blessed.t perl-5.10.0/ext/threads/shared/t/cond.t perl-5.10.0/ext/threads/shared/t/disabled.t perl-5.10.0/ext/threads/shared/t/hv_refs.t perl-5.10.0/ext/threads/shared/t/hv_simple.t perl-5.10.0/ext/threads/shared/t/no_share.t perl-5.10.0/ext/threads/shared/t/shared_attr.t perl-5.10.0/ext/threads/shared/t/sv_refs.t perl-5.10.0/ext/threads/shared/t/sv_simple.t perl-5.10.0/ext/threads/shared/t/wait.t perl-5.10.0/ext/threads/shared/t/waithires.t perl-5.10.0/ext/threads/shared/t/stress.t perl-5.10.0/ext/threads/t/ perl-5.10.0/ext/threads/t/basic.t perl-5.10.0/ext/threads/t/blocks.t perl-5.10.0/ext/threads/t/context.t perl-5.10.0/ext/threads/t/end.t perl-5.10.0/ext/threads/t/err.t perl-5.10.0/ext/threads/t/exit.t perl-5.10.0/ext/threads/t/free.t perl-5.10.0/ext/threads/t/free2.t perl-5.10.0/ext/threads/t/join.t perl-5.10.0/ext/threads/t/kill.t perl-5.10.0/ext/threads/t/libc.t perl-5.10.0/ext/threads/t/list.t perl-5.10.0/ext/threads/t/problems.t perl-5.10.0/ext/threads/t/stack.t perl-5.10.0/ext/threads/t/stack_env.t perl-5.10.0/ext/threads/t/state.t perl-5.10.0/ext/threads/t/stress_cv.t perl-5.10.0/ext/threads/t/stress_re.t perl-5.10.0/ext/threads/t/stress_string.t perl-5.10.0/ext/threads/t/thread.t perl-5.10.0/ext/threads/threads.pm perl-5.10.0/ext/threads/threads.xs perl-5.10.0/ext/util/ perl-5.10.0/ext/util/make_ext perl-5.10.0/ext/util/make_ext_cross perl-5.10.0/ext/Win32API/ perl-5.10.0/ext/Win32API/File/ perl-5.10.0/ext/Win32API/File/Changes perl-5.10.0/ext/Win32API/File/ExtUtils/ perl-5.10.0/ext/Win32API/File/ExtUtils/Myconst2perl.pm perl-5.10.0/ext/Win32API/File/File.pm perl-5.10.0/ext/Win32API/File/File.xs perl-5.10.0/ext/Win32API/File/Makefile.PL perl-5.10.0/ext/Win32API/File/README perl-5.10.0/ext/Win32API/File/buffers.h perl-5.10.0/ext/Win32API/File/cFile.h perl-5.10.0/ext/Win32API/File/cFile.pc perl-5.10.0/ext/Win32API/File/const2perl.h perl-5.10.0/ext/Win32API/File/t/ perl-5.10.0/ext/Win32API/File/t/file.t perl-5.10.0/ext/Win32API/File/t/tie.t perl-5.10.0/ext/Win32API/File/typemap perl-5.10.0/ext/Win32CORE/ perl-5.10.0/ext/Win32CORE/Makefile.PL perl-5.10.0/ext/Win32CORE/Win32CORE.c perl-5.10.0/ext/Win32CORE/Win32CORE.pm perl-5.10.0/ext/Win32CORE/t/ perl-5.10.0/ext/Win32CORE/t/win32core.t perl-5.10.0/ext/IO_Compress_Base/ perl-5.10.0/ext/IO_Compress_Base/Changes perl-5.10.0/ext/IO_Compress_Base/Makefile.PL perl-5.10.0/ext/IO_Compress_Base/README perl-5.10.0/ext/IO_Compress_Base/lib/ perl-5.10.0/ext/IO_Compress_Base/lib/File/ perl-5.10.0/ext/IO_Compress_Base/lib/File/GlobMapper.pm perl-5.10.0/ext/IO_Compress_Base/lib/IO/ perl-5.10.0/ext/IO_Compress_Base/lib/IO/Compress/ perl-5.10.0/ext/IO_Compress_Base/lib/IO/Compress/Base.pm perl-5.10.0/ext/IO_Compress_Base/lib/IO/Compress/Base/ perl-5.10.0/ext/IO_Compress_Base/lib/IO/Compress/Base/Common.pm perl-5.10.0/ext/IO_Compress_Base/lib/IO/Uncompress/ perl-5.10.0/ext/IO_Compress_Base/lib/IO/Uncompress/AnyUncompress.pm perl-5.10.0/ext/IO_Compress_Base/lib/IO/Uncompress/Base.pm perl-5.10.0/ext/IO_Compress_Base/private/ perl-5.10.0/ext/IO_Compress_Base/private/MakeUtil.pm perl-5.10.0/ext/IO_Compress_Base/t/ perl-5.10.0/ext/IO_Compress_Base/t/01misc.t perl-5.10.0/ext/IO_Compress_Base/t/globmapper.t perl-5.10.0/ext/IO_Compress_Zlib/ perl-5.10.0/ext/IO_Compress_Zlib/Changes perl-5.10.0/ext/IO_Compress_Zlib/Makefile.PL perl-5.10.0/ext/IO_Compress_Zlib/README perl-5.10.0/ext/IO_Compress_Zlib/examples/ perl-5.10.0/ext/IO_Compress_Zlib/examples/gzappend perl-5.10.0/ext/IO_Compress_Zlib/examples/gzcat perl-5.10.0/ext/IO_Compress_Zlib/examples/gzgrep perl-5.10.0/ext/IO_Compress_Zlib/examples/gzstream perl-5.10.0/ext/IO_Compress_Zlib/examples/unzip perl-5.10.0/ext/IO_Compress_Zlib/lib/ perl-5.10.0/ext/IO_Compress_Zlib/lib/IO/ perl-5.10.0/ext/IO_Compress_Zlib/lib/IO/Compress/ perl-5.10.0/ext/IO_Compress_Zlib/lib/IO/Compress/Adapter/ perl-5.10.0/ext/IO_Compress_Zlib/lib/IO/Compress/Adapter/Deflate.pm perl-5.10.0/ext/IO_Compress_Zlib/lib/IO/Compress/Adapter/Identity.pm perl-5.10.0/ext/IO_Compress_Zlib/lib/IO/Compress/Deflate.pm perl-5.10.0/ext/IO_Compress_Zlib/lib/IO/Compress/Gzip.pm perl-5.10.0/ext/IO_Compress_Zlib/lib/IO/Compress/Gzip/ perl-5.10.0/ext/IO_Compress_Zlib/lib/IO/Compress/Gzip/Constants.pm perl-5.10.0/ext/IO_Compress_Zlib/lib/IO/Compress/RawDeflate.pm perl-5.10.0/ext/IO_Compress_Zlib/lib/IO/Compress/Zip.pm perl-5.10.0/ext/IO_Compress_Zlib/lib/IO/Compress/Zip/ perl-5.10.0/ext/IO_Compress_Zlib/lib/IO/Compress/Zip/Constants.pm perl-5.10.0/ext/IO_Compress_Zlib/lib/IO/Compress/Zlib/ perl-5.10.0/ext/IO_Compress_Zlib/lib/IO/Compress/Zlib/Constants.pm perl-5.10.0/ext/IO_Compress_Zlib/lib/IO/Compress/Zlib/Extra.pm perl-5.10.0/ext/IO_Compress_Zlib/lib/IO/Uncompress/ perl-5.10.0/ext/IO_Compress_Zlib/lib/IO/Uncompress/Adapter/ perl-5.10.0/ext/IO_Compress_Zlib/lib/IO/Uncompress/Adapter/Identity.pm perl-5.10.0/ext/IO_Compress_Zlib/lib/IO/Uncompress/Adapter/Inflate.pm perl-5.10.0/ext/IO_Compress_Zlib/lib/IO/Uncompress/AnyInflate.pm perl-5.10.0/ext/IO_Compress_Zlib/lib/IO/Uncompress/Gunzip.pm perl-5.10.0/ext/IO_Compress_Zlib/lib/IO/Uncompress/Inflate.pm perl-5.10.0/ext/IO_Compress_Zlib/lib/IO/Uncompress/RawInflate.pm perl-5.10.0/ext/IO_Compress_Zlib/lib/IO/Uncompress/Unzip.pm perl-5.10.0/ext/IO_Compress_Zlib/private/ perl-5.10.0/ext/IO_Compress_Zlib/private/MakeUtil.pm perl-5.10.0/ext/IO_Compress_Zlib/t/ perl-5.10.0/ext/IO_Compress_Zlib/t/001zlib-generic-deflate.t perl-5.10.0/ext/IO_Compress_Zlib/t/001zlib-generic-gzip.t perl-5.10.0/ext/IO_Compress_Zlib/t/001zlib-generic-rawdeflate.t perl-5.10.0/ext/IO_Compress_Zlib/t/001zlib-generic-zip.t perl-5.10.0/ext/IO_Compress_Zlib/t/002any-deflate.t perl-5.10.0/ext/IO_Compress_Zlib/t/002any-gzip.t perl-5.10.0/ext/IO_Compress_Zlib/t/002any-rawdeflate.t perl-5.10.0/ext/IO_Compress_Zlib/t/002any-transparent.t perl-5.10.0/ext/IO_Compress_Zlib/t/002any-zip.t perl-5.10.0/ext/IO_Compress_Zlib/t/004gziphdr.t perl-5.10.0/ext/IO_Compress_Zlib/t/005defhdr.t perl-5.10.0/ext/IO_Compress_Zlib/t/010examples.t perl-5.10.0/ext/IO_Compress_Zlib/t/020isize.t perl-5.10.0/ext/IO_Compress_Zlib/t/050interop-gzip.t perl-5.10.0/ext/IO_Compress_Zlib/t/100generic-deflate.t perl-5.10.0/ext/IO_Compress_Zlib/t/100generic-gzip.t perl-5.10.0/ext/IO_Compress_Zlib/t/100generic-rawdeflate.t perl-5.10.0/ext/IO_Compress_Zlib/t/100generic-zip.t perl-5.10.0/ext/IO_Compress_Zlib/t/101truncate-deflate.t perl-5.10.0/ext/IO_Compress_Zlib/t/101truncate-gzip.t perl-5.10.0/ext/IO_Compress_Zlib/t/101truncate-rawdeflate.t perl-5.10.0/ext/IO_Compress_Zlib/t/101truncate-zip.t perl-5.10.0/ext/IO_Compress_Zlib/t/102tied-deflate.t perl-5.10.0/ext/IO_Compress_Zlib/t/102tied-gzip.t perl-5.10.0/ext/IO_Compress_Zlib/t/102tied-rawdeflate.t perl-5.10.0/ext/IO_Compress_Zlib/t/102tied-zip.t perl-5.10.0/ext/IO_Compress_Zlib/t/103newtied-deflate.t perl-5.10.0/ext/IO_Compress_Zlib/t/103newtied-gzip.t perl-5.10.0/ext/IO_Compress_Zlib/t/103newtied-rawdeflate.t perl-5.10.0/ext/IO_Compress_Zlib/t/103newtied-zip.t perl-5.10.0/ext/IO_Compress_Zlib/t/104destroy-deflate.t perl-5.10.0/ext/IO_Compress_Zlib/t/104destroy-gzip.t perl-5.10.0/ext/IO_Compress_Zlib/t/104destroy-rawdeflate.t perl-5.10.0/ext/IO_Compress_Zlib/t/104destroy-zip.t perl-5.10.0/ext/IO_Compress_Zlib/t/105oneshot-deflate.t perl-5.10.0/ext/IO_Compress_Zlib/t/105oneshot-gzip-only.t perl-5.10.0/ext/IO_Compress_Zlib/t/105oneshot-gzip.t perl-5.10.0/ext/IO_Compress_Zlib/t/105oneshot-rawdeflate.t perl-5.10.0/ext/IO_Compress_Zlib/t/105oneshot-zip-only.t perl-5.10.0/ext/IO_Compress_Zlib/t/105oneshot-zip.t perl-5.10.0/ext/IO_Compress_Zlib/t/106prime-deflate.t perl-5.10.0/ext/IO_Compress_Zlib/t/106prime-gzip.t perl-5.10.0/ext/IO_Compress_Zlib/t/106prime-rawdeflate.t perl-5.10.0/ext/IO_Compress_Zlib/t/106prime-zip.t perl-5.10.0/ext/IO_Compress_Zlib/t/107multi-deflate.t perl-5.10.0/ext/IO_Compress_Zlib/t/107multi-gzip.t perl-5.10.0/ext/IO_Compress_Zlib/t/107multi-rawdeflate.t perl-5.10.0/ext/IO_Compress_Zlib/t/107multi-zip.t perl-5.10.0/ext/IO_Compress_Zlib/t/108anyunc-deflate.t perl-5.10.0/ext/IO_Compress_Zlib/t/108anyunc-gzip.t perl-5.10.0/ext/IO_Compress_Zlib/t/108anyunc-rawdeflate.t perl-5.10.0/ext/IO_Compress_Zlib/t/108anyunc-transparent.t perl-5.10.0/ext/IO_Compress_Zlib/t/108anyunc-zip.t perl-5.10.0/ext/IO_Compress_Zlib/t/109merge-deflate.t perl-5.10.0/ext/IO_Compress_Zlib/t/109merge-gzip.t perl-5.10.0/ext/IO_Compress_Zlib/t/109merge-rawdeflate.t perl-5.10.0/ext/IO_Compress_Zlib/t/109merge-zip.t perl-5.10.0/ext/IO_Compress_Zlib/t/110encode-deflate.t perl-5.10.0/ext/IO_Compress_Zlib/t/110encode-gzip.t perl-5.10.0/ext/IO_Compress_Zlib/t/110encode-rawdeflate.t perl-5.10.0/ext/IO_Compress_Zlib/t/110encode-zip.t perl-5.10.0/fakesdio.h perl-5.10.0/fakethr.h perl-5.10.0/form.h perl-5.10.0/genpacksizetables.pl perl-5.10.0/global.sym perl-5.10.0/globals.c perl-5.10.0/globvar.sym perl-5.10.0/gv.c perl-5.10.0/gv.h perl-5.10.0/h2pl/ perl-5.10.0/h2pl/README perl-5.10.0/h2pl/cbreak.pl perl-5.10.0/h2pl/cbreak2.pl perl-5.10.0/h2pl/eg/ perl-5.10.0/h2pl/eg/sizeof.ph perl-5.10.0/h2pl/eg/sys/ perl-5.10.0/h2pl/eg/sys/errno.pl perl-5.10.0/h2pl/eg/sys/ioctl.pl perl-5.10.0/h2pl/eg/sysexits.pl perl-5.10.0/h2pl/getioctlsizes perl-5.10.0/h2pl/mksizes perl-5.10.0/h2pl/mkvars perl-5.10.0/h2pl/tcbreak perl-5.10.0/h2pl/tcbreak2 perl-5.10.0/handy.h perl-5.10.0/hints/ perl-5.10.0/hints/3b1.sh perl-5.10.0/hints/3b1cc perl-5.10.0/hints/README.hints perl-5.10.0/hints/aix.sh perl-5.10.0/hints/aix_3.sh perl-5.10.0/hints/aix_4.sh perl-5.10.0/hints/altos486.sh perl-5.10.0/hints/amigaos.sh perl-5.10.0/hints/apollo.sh perl-5.10.0/hints/atheos.sh perl-5.10.0/hints/aux_3.sh perl-5.10.0/hints/beos.sh perl-5.10.0/hints/broken-db.msg perl-5.10.0/hints/bsdos.sh perl-5.10.0/hints/convexos.sh perl-5.10.0/hints/cxux.sh perl-5.10.0/hints/cygwin.sh perl-5.10.0/hints/darwin.sh perl-5.10.0/hints/dcosx.sh perl-5.10.0/hints/dec_osf.sh perl-5.10.0/hints/dgux.sh perl-5.10.0/hints/dos_djgpp.sh perl-5.10.0/hints/dragonfly.sh perl-5.10.0/hints/dynix.sh perl-5.10.0/hints/dynixptx.sh perl-5.10.0/hints/epix.sh perl-5.10.0/hints/esix4.sh perl-5.10.0/hints/fps.sh perl-5.10.0/hints/freebsd.sh perl-5.10.0/hints/genix.sh perl-5.10.0/hints/gnu.sh perl-5.10.0/hints/gnukfreebsd.sh perl-5.10.0/hints/gnuknetbsd.sh perl-5.10.0/hints/greenhills.sh perl-5.10.0/hints/hpux.sh perl-5.10.0/hints/i386.sh perl-5.10.0/hints/interix.sh perl-5.10.0/hints/irix_4.sh perl-5.10.0/hints/irix_5.sh perl-5.10.0/hints/irix_6.sh perl-5.10.0/hints/irix_6_0.sh perl-5.10.0/hints/irix_6_1.sh perl-5.10.0/hints/isc.sh perl-5.10.0/hints/isc_2.sh perl-5.10.0/hints/linux.sh perl-5.10.0/hints/lynxos.sh perl-5.10.0/hints/machten.sh perl-5.10.0/hints/machten_2.sh perl-5.10.0/hints/midnightbsd.sh perl-5.10.0/hints/mint.sh perl-5.10.0/hints/mips.sh perl-5.10.0/hints/mpc.sh perl-5.10.0/hints/mpeix.sh perl-5.10.0/hints/ncr_tower.sh perl-5.10.0/hints/netbsd.sh perl-5.10.0/hints/newsos4.sh perl-5.10.0/hints/next_3.sh perl-5.10.0/hints/next_3_0.sh perl-5.10.0/hints/next_4.sh perl-5.10.0/hints/nonstopux.sh perl-5.10.0/hints/openbsd.sh perl-5.10.0/hints/opus.sh perl-5.10.0/hints/os2.sh perl-5.10.0/hints/os390.sh perl-5.10.0/hints/os400.sh perl-5.10.0/hints/posix-bc.sh perl-5.10.0/hints/powerux.sh perl-5.10.0/hints/qnx.sh perl-5.10.0/hints/rhapsody.sh perl-5.10.0/hints/riscos.sh perl-5.10.0/hints/sco.sh perl-5.10.0/hints/sco_2_3_0.sh perl-5.10.0/hints/sco_2_3_1.sh perl-5.10.0/hints/sco_2_3_2.sh perl-5.10.0/hints/sco_2_3_3.sh perl-5.10.0/hints/sco_2_3_4.sh perl-5.10.0/hints/solaris_2.sh perl-5.10.0/hints/stellar.sh perl-5.10.0/hints/sunos_4_0.sh perl-5.10.0/hints/sunos_4_1.sh perl-5.10.0/hints/super-ux.sh perl-5.10.0/hints/svr4.sh perl-5.10.0/hints/svr5.sh perl-5.10.0/hints/t001.c perl-5.10.0/hints/ti1500.sh perl-5.10.0/hints/titanos.sh perl-5.10.0/hints/ultrix_4.sh perl-5.10.0/hints/umips.sh perl-5.10.0/hints/unicos.sh perl-5.10.0/hints/unicosmk.sh perl-5.10.0/hints/unisysdynix.sh perl-5.10.0/hints/utekv.sh perl-5.10.0/hints/uts.sh perl-5.10.0/hints/uwin.sh perl-5.10.0/hints/vmesa.sh perl-5.10.0/hints/vos.sh perl-5.10.0/hints/catamount.sh perl-5.10.0/hv.c perl-5.10.0/hv.h perl-5.10.0/installhtml perl-5.10.0/installman perl-5.10.0/installperl perl-5.10.0/intrpvar.h perl-5.10.0/iperlsys.h perl-5.10.0/keywords.h perl-5.10.0/keywords.pl perl-5.10.0/lib/ perl-5.10.0/lib/AnyDBM_File.pm perl-5.10.0/lib/AnyDBM_File.t perl-5.10.0/lib/Archive/ perl-5.10.0/lib/Archive/Extract.pm perl-5.10.0/lib/Archive/Extract/ perl-5.10.0/lib/Archive/Extract/t/ perl-5.10.0/lib/Archive/Extract/t/01_Archive-Extract.t perl-5.10.0/lib/Archive/Extract/t/src/ perl-5.10.0/lib/Archive/Extract/t/src/double_dir.zip.packed perl-5.10.0/lib/Archive/Extract/t/src/x.bz2.packed perl-5.10.0/lib/Archive/Extract/t/src/x.gz.packed perl-5.10.0/lib/Archive/Extract/t/src/x.jar.packed perl-5.10.0/lib/Archive/Extract/t/src/x.par.packed perl-5.10.0/lib/Archive/Extract/t/src/x.tar.gz.packed perl-5.10.0/lib/Archive/Extract/t/src/x.tar.packed perl-5.10.0/lib/Archive/Extract/t/src/x.tgz.packed perl-5.10.0/lib/Archive/Extract/t/src/x.zip.packed perl-5.10.0/lib/Archive/Extract/t/src/y.jar.packed perl-5.10.0/lib/Archive/Extract/t/src/y.par.packed perl-5.10.0/lib/Archive/Extract/t/src/y.tar.bz2.packed perl-5.10.0/lib/Archive/Extract/t/src/y.tar.gz.packed perl-5.10.0/lib/Archive/Extract/t/src/y.tar.packed perl-5.10.0/lib/Archive/Extract/t/src/y.tbz.packed perl-5.10.0/lib/Archive/Extract/t/src/y.tgz.packed perl-5.10.0/lib/Archive/Extract/t/src/y.zip.packed perl-5.10.0/lib/Archive/Extract/t/src/x.Z.packed perl-5.10.0/lib/Archive/Tar.pm perl-5.10.0/lib/Archive/Tar/ perl-5.10.0/lib/Archive/Tar/Constant.pm perl-5.10.0/lib/Archive/Tar/File.pm perl-5.10.0/lib/Archive/Tar/bin/ perl-5.10.0/lib/Archive/Tar/bin/ptar perl-5.10.0/lib/Archive/Tar/bin/ptardiff perl-5.10.0/lib/Archive/Tar/t/ perl-5.10.0/lib/Archive/Tar/t/01_use.t perl-5.10.0/lib/Archive/Tar/t/02_methods.t perl-5.10.0/lib/Archive/Tar/t/03_file.t perl-5.10.0/lib/Archive/Tar/t/04_resolved_issues.t perl-5.10.0/lib/Archive/Tar/t/src/ perl-5.10.0/lib/Archive/Tar/t/src/long/ perl-5.10.0/lib/Archive/Tar/t/src/long/b perl-5.10.0/lib/Archive/Tar/t/src/long/bar.tar.packed perl-5.10.0/lib/Archive/Tar/t/src/long/foo.tgz.packed perl-5.10.0/lib/Archive/Tar/t/src/short/ perl-5.10.0/lib/Archive/Tar/t/src/short/b perl-5.10.0/lib/Archive/Tar/t/src/short/bar.tar.packed perl-5.10.0/lib/Archive/Tar/t/src/short/foo.tgz.packed perl-5.10.0/lib/Attribute/ perl-5.10.0/lib/Attribute/Handlers.pm perl-5.10.0/lib/Attribute/Handlers/ perl-5.10.0/lib/Attribute/Handlers/Changes perl-5.10.0/lib/Attribute/Handlers/README perl-5.10.0/lib/Attribute/Handlers/demo/ perl-5.10.0/lib/Attribute/Handlers/demo/Demo.pm perl-5.10.0/lib/Attribute/Handlers/demo/Descriptions.pm perl-5.10.0/lib/Attribute/Handlers/demo/MyClass.pm perl-5.10.0/lib/Attribute/Handlers/demo/demo.pl perl-5.10.0/lib/Attribute/Handlers/demo/demo2.pl perl-5.10.0/lib/Attribute/Handlers/demo/demo3.pl perl-5.10.0/lib/Attribute/Handlers/demo/demo4.pl perl-5.10.0/lib/Attribute/Handlers/demo/demo_call.pl perl-5.10.0/lib/Attribute/Handlers/demo/demo_chain.pl perl-5.10.0/lib/Attribute/Handlers/demo/demo_cycle.pl perl-5.10.0/lib/Attribute/Handlers/demo/demo_hashdir.pl perl-5.10.0/lib/Attribute/Handlers/demo/demo_phases.pl perl-5.10.0/lib/Attribute/Handlers/demo/demo_range.pl perl-5.10.0/lib/Attribute/Handlers/demo/demo_rawdata.pl perl-5.10.0/lib/Attribute/Handlers/t/ perl-5.10.0/lib/Attribute/Handlers/t/constants.t perl-5.10.0/lib/Attribute/Handlers/t/linerep.t perl-5.10.0/lib/Attribute/Handlers/t/multi.t perl-5.10.0/lib/Attribute/Handlers/t/data_convert.t perl-5.10.0/lib/AutoLoader.pm perl-5.10.0/lib/AutoLoader.t perl-5.10.0/lib/AutoSplit.pm perl-5.10.0/lib/AutoSplit.t perl-5.10.0/lib/Benchmark.pm perl-5.10.0/lib/Benchmark.t perl-5.10.0/lib/CGI.pm perl-5.10.0/lib/CGI/ perl-5.10.0/lib/CGI/Apache.pm perl-5.10.0/lib/CGI/Carp.pm perl-5.10.0/lib/CGI/Changes perl-5.10.0/lib/CGI/Cookie.pm perl-5.10.0/lib/CGI/Fast.pm perl-5.10.0/lib/CGI/Pretty.pm perl-5.10.0/lib/CGI/Push.pm perl-5.10.0/lib/CGI/Switch.pm perl-5.10.0/lib/CGI/Util.pm perl-5.10.0/lib/CGI/eg/ perl-5.10.0/lib/CGI/eg/RunMeFirst perl-5.10.0/lib/CGI/eg/caution.xbm perl-5.10.0/lib/CGI/eg/clickable_image.cgi perl-5.10.0/lib/CGI/eg/cookie.cgi perl-5.10.0/lib/CGI/eg/crash.cgi perl-5.10.0/lib/CGI/eg/customize.cgi perl-5.10.0/lib/CGI/eg/diff_upload.cgi perl-5.10.0/lib/CGI/eg/dna_small_gif.uu perl-5.10.0/lib/CGI/eg/file_upload.cgi perl-5.10.0/lib/CGI/eg/frameset.cgi perl-5.10.0/lib/CGI/eg/index.html perl-5.10.0/lib/CGI/eg/internal_links.cgi perl-5.10.0/lib/CGI/eg/javascript.cgi perl-5.10.0/lib/CGI/eg/make_links.pl perl-5.10.0/lib/CGI/eg/monty.cgi perl-5.10.0/lib/CGI/eg/multiple_forms.cgi perl-5.10.0/lib/CGI/eg/nph-clock.cgi perl-5.10.0/lib/CGI/eg/nph-multipart.cgi perl-5.10.0/lib/CGI/eg/popup.cgi perl-5.10.0/lib/CGI/eg/save_state.cgi perl-5.10.0/lib/CGI/eg/tryit.cgi perl-5.10.0/lib/CGI/eg/wilogo_gif.uu perl-5.10.0/lib/CGI/t/ perl-5.10.0/lib/CGI/t/apache.t perl-5.10.0/lib/CGI/t/can.t perl-5.10.0/lib/CGI/t/carp.t perl-5.10.0/lib/CGI/t/cookie.t perl-5.10.0/lib/CGI/t/fast.t perl-5.10.0/lib/CGI/t/form.t perl-5.10.0/lib/CGI/t/function.t perl-5.10.0/lib/CGI/t/html.t perl-5.10.0/lib/CGI/t/no_tabindex.t perl-5.10.0/lib/CGI/t/pretty.t perl-5.10.0/lib/CGI/t/push.t perl-5.10.0/lib/CGI/t/request.t perl-5.10.0/lib/CGI/t/start_end_asterisk.t perl-5.10.0/lib/CGI/t/start_end_end.t perl-5.10.0/lib/CGI/t/start_end_start.t perl-5.10.0/lib/CGI/t/switch.t perl-5.10.0/lib/CGI/t/util-58.t perl-5.10.0/lib/CGI/t/util.t perl-5.10.0/lib/CPAN.pm perl-5.10.0/lib/CPAN/ perl-5.10.0/lib/CPAN/Debug.pm perl-5.10.0/lib/CPAN/FirstTime.pm perl-5.10.0/lib/CPAN/HandleConfig.pm perl-5.10.0/lib/CPAN/Kwalify.pm perl-5.10.0/lib/CPAN/Kwalify/ perl-5.10.0/lib/CPAN/Kwalify/distroprefs.dd perl-5.10.0/lib/CPAN/Kwalify/distroprefs.yml perl-5.10.0/lib/CPAN/Nox.pm perl-5.10.0/lib/CPAN/PAUSE2003.pub perl-5.10.0/lib/CPAN/PAUSE2005.pub perl-5.10.0/lib/CPAN/PAUSE2007.pub perl-5.10.0/lib/CPAN/Queue.pm perl-5.10.0/lib/CPAN/SIGNATURE perl-5.10.0/lib/CPAN/Tarzip.pm perl-5.10.0/lib/CPAN/Version.pm perl-5.10.0/lib/CPAN/bin/ perl-5.10.0/lib/CPAN/bin/cpan perl-5.10.0/lib/CPAN/t/ perl-5.10.0/lib/CPAN/t/01loadme.t perl-5.10.0/lib/CPAN/t/02nox.t perl-5.10.0/lib/CPAN/t/03pkgs.t perl-5.10.0/lib/CPAN/t/10version.t perl-5.10.0/lib/CPAN/t/11mirroredby.t perl-5.10.0/lib/CPAN/API/ perl-5.10.0/lib/CPAN/API/HOWTO.pm perl-5.10.0/lib/CPAN/DeferedCode.pm perl-5.10.0/lib/Carp.pm perl-5.10.0/lib/Carp.t perl-5.10.0/lib/Carp/ perl-5.10.0/lib/Carp/Heavy.pm perl-5.10.0/lib/Class/ perl-5.10.0/lib/Class/ISA.pm perl-5.10.0/lib/Class/ISA/ perl-5.10.0/lib/Class/ISA/ChangeLog perl-5.10.0/lib/Class/ISA/t/ perl-5.10.0/lib/Class/ISA/t/00_about_verbose.t perl-5.10.0/lib/Class/ISA/t/01_old_junk.t perl-5.10.0/lib/Class/Struct.pm perl-5.10.0/lib/Class/Struct.t perl-5.10.0/lib/Config.t perl-5.10.0/lib/Config/ perl-5.10.0/lib/Config/Extensions.pm perl-5.10.0/lib/Config/Extensions.t perl-5.10.0/lib/Cwd.pm perl-5.10.0/lib/DB.pm perl-5.10.0/lib/DB.t perl-5.10.0/lib/DBM_Filter.pm perl-5.10.0/lib/DBM_Filter/ perl-5.10.0/lib/DBM_Filter/Changes perl-5.10.0/lib/DBM_Filter/compress.pm perl-5.10.0/lib/DBM_Filter/encode.pm perl-5.10.0/lib/DBM_Filter/int32.pm perl-5.10.0/lib/DBM_Filter/null.pm perl-5.10.0/lib/DBM_Filter/t/ perl-5.10.0/lib/DBM_Filter/t/01error.t perl-5.10.0/lib/DBM_Filter/t/02core.t perl-5.10.0/lib/DBM_Filter/t/compress.t perl-5.10.0/lib/DBM_Filter/t/encode.t perl-5.10.0/lib/DBM_Filter/t/int32.t perl-5.10.0/lib/DBM_Filter/t/null.t perl-5.10.0/lib/DBM_Filter/t/utf8.t perl-5.10.0/lib/DBM_Filter/utf8.pm perl-5.10.0/lib/Devel/ perl-5.10.0/lib/Devel/InnerPackage.pm perl-5.10.0/lib/Devel/SelfStubber.pm perl-5.10.0/lib/Devel/SelfStubber.t perl-5.10.0/lib/Digest.pm perl-5.10.0/lib/Digest/ perl-5.10.0/lib/Digest/Changes perl-5.10.0/lib/Digest/base.pm perl-5.10.0/lib/Digest/file.pm perl-5.10.0/lib/Digest/t/ perl-5.10.0/lib/Digest/t/base.t perl-5.10.0/lib/Digest/t/digest.t perl-5.10.0/lib/Digest/t/file.t perl-5.10.0/lib/DirHandle.pm perl-5.10.0/lib/DirHandle.t perl-5.10.0/lib/Dumpvalue.pm perl-5.10.0/lib/Dumpvalue.t perl-5.10.0/lib/English.pm perl-5.10.0/lib/English.t perl-5.10.0/lib/Env.pm perl-5.10.0/lib/Env/ perl-5.10.0/lib/Env/t/ perl-5.10.0/lib/Env/t/array.t perl-5.10.0/lib/Env/t/env.t perl-5.10.0/lib/Exporter.pm perl-5.10.0/lib/Exporter.t perl-5.10.0/lib/Exporter/ perl-5.10.0/lib/Exporter/Heavy.pm perl-5.10.0/lib/ExtUtils/ perl-5.10.0/lib/ExtUtils/CBuilder.pm perl-5.10.0/lib/ExtUtils/CBuilder/ perl-5.10.0/lib/ExtUtils/CBuilder/Base.pm perl-5.10.0/lib/ExtUtils/CBuilder/Changes perl-5.10.0/lib/ExtUtils/CBuilder/Platform/ perl-5.10.0/lib/ExtUtils/CBuilder/Platform/Unix.pm perl-5.10.0/lib/ExtUtils/CBuilder/Platform/VMS.pm perl-5.10.0/lib/ExtUtils/CBuilder/Platform/Windows.pm perl-5.10.0/lib/ExtUtils/CBuilder/Platform/aix.pm perl-5.10.0/lib/ExtUtils/CBuilder/Platform/cygwin.pm perl-5.10.0/lib/ExtUtils/CBuilder/Platform/darwin.pm perl-5.10.0/lib/ExtUtils/CBuilder/Platform/dec_osf.pm perl-5.10.0/lib/ExtUtils/CBuilder/Platform/os2.pm perl-5.10.0/lib/ExtUtils/CBuilder/t/ perl-5.10.0/lib/ExtUtils/CBuilder/t/01-basic.t perl-5.10.0/lib/ExtUtils/CBuilder/t/02-link.t perl-5.10.0/lib/ExtUtils/Changes perl-5.10.0/lib/ExtUtils/Command.pm perl-5.10.0/lib/ExtUtils/Command/ perl-5.10.0/lib/ExtUtils/Command/MM.pm perl-5.10.0/lib/ExtUtils/Constant.pm perl-5.10.0/lib/ExtUtils/Constant/ perl-5.10.0/lib/ExtUtils/Constant/Base.pm perl-5.10.0/lib/ExtUtils/Constant/ProxySubs.pm perl-5.10.0/lib/ExtUtils/Constant/Utils.pm perl-5.10.0/lib/ExtUtils/Constant/XS.pm perl-5.10.0/lib/ExtUtils/Embed.pm perl-5.10.0/lib/ExtUtils/Install.pm perl-5.10.0/lib/ExtUtils/Installed.pm perl-5.10.0/lib/ExtUtils/Liblist.pm perl-5.10.0/lib/ExtUtils/Liblist/ perl-5.10.0/lib/ExtUtils/Liblist/Kid.pm perl-5.10.0/lib/ExtUtils/MANIFEST.SKIP perl-5.10.0/lib/ExtUtils/MM.pm perl-5.10.0/lib/ExtUtils/MM_AIX.pm perl-5.10.0/lib/ExtUtils/MM_Any.pm perl-5.10.0/lib/ExtUtils/MM_BeOS.pm perl-5.10.0/lib/ExtUtils/MM_Cygwin.pm perl-5.10.0/lib/ExtUtils/MM_DOS.pm perl-5.10.0/lib/ExtUtils/MM_MacOS.pm perl-5.10.0/lib/ExtUtils/MM_NW5.pm perl-5.10.0/lib/ExtUtils/MM_OS2.pm perl-5.10.0/lib/ExtUtils/MM_QNX.pm perl-5.10.0/lib/ExtUtils/MM_UWIN.pm perl-5.10.0/lib/ExtUtils/MM_Unix.pm perl-5.10.0/lib/ExtUtils/MM_VMS.pm perl-5.10.0/lib/ExtUtils/MM_VOS.pm perl-5.10.0/lib/ExtUtils/MM_Win32.pm perl-5.10.0/lib/ExtUtils/MM_Win95.pm perl-5.10.0/lib/ExtUtils/MY.pm perl-5.10.0/lib/ExtUtils/MakeMaker.pm perl-5.10.0/lib/ExtUtils/MakeMaker/ perl-5.10.0/lib/ExtUtils/MakeMaker/Config.pm perl-5.10.0/lib/ExtUtils/MakeMaker/FAQ.pod perl-5.10.0/lib/ExtUtils/MakeMaker/Tutorial.pod perl-5.10.0/lib/ExtUtils/MakeMaker/bytes.pm perl-5.10.0/lib/ExtUtils/MakeMaker/vmsish.pm perl-5.10.0/lib/ExtUtils/Manifest.pm perl-5.10.0/lib/ExtUtils/Mkbootstrap.pm perl-5.10.0/lib/ExtUtils/Mksymlists.pm perl-5.10.0/lib/ExtUtils/NOTES perl-5.10.0/lib/ExtUtils/PATCHING perl-5.10.0/lib/ExtUtils/Packlist.pm perl-5.10.0/lib/ExtUtils/ParseXS.pm perl-5.10.0/lib/ExtUtils/ParseXS/ perl-5.10.0/lib/ExtUtils/ParseXS/t/ perl-5.10.0/lib/ExtUtils/ParseXS/t/XSTest.pm perl-5.10.0/lib/ExtUtils/ParseXS/t/XSTest.xs perl-5.10.0/lib/ExtUtils/ParseXS/t/basic.t perl-5.10.0/lib/ExtUtils/README perl-5.10.0/lib/ExtUtils/TODO perl-5.10.0/lib/ExtUtils/instmodsh perl-5.10.0/lib/ExtUtils/t/ perl-5.10.0/lib/ExtUtils/t/00compile.t perl-5.10.0/lib/ExtUtils/t/Constant.t perl-5.10.0/lib/ExtUtils/t/Embed.t perl-5.10.0/lib/ExtUtils/t/FIRST_MAKEFILE.t perl-5.10.0/lib/ExtUtils/t/INST.t perl-5.10.0/lib/ExtUtils/t/INSTALL_BASE.t perl-5.10.0/lib/ExtUtils/t/INST_PREFIX.t perl-5.10.0/lib/ExtUtils/t/Install.t perl-5.10.0/lib/ExtUtils/t/Installed.t perl-5.10.0/lib/ExtUtils/t/Liblist.t perl-5.10.0/lib/ExtUtils/t/MM_Any.t perl-5.10.0/lib/ExtUtils/t/MM_BeOS.t perl-5.10.0/lib/ExtUtils/t/MM_Cygwin.t perl-5.10.0/lib/ExtUtils/t/MM_NW5.t perl-5.10.0/lib/ExtUtils/t/MM_OS2.t perl-5.10.0/lib/ExtUtils/t/MM_Unix.t perl-5.10.0/lib/ExtUtils/t/MM_VMS.t perl-5.10.0/lib/ExtUtils/t/MM_Win32.t perl-5.10.0/lib/ExtUtils/t/Manifest.t perl-5.10.0/lib/ExtUtils/t/Mkbootstrap.t perl-5.10.0/lib/ExtUtils/t/PL_FILES.t perl-5.10.0/lib/ExtUtils/t/Packlist.t perl-5.10.0/lib/ExtUtils/t/VERSION_FROM.t perl-5.10.0/lib/ExtUtils/t/backwards.t perl-5.10.0/lib/ExtUtils/t/basic.t perl-5.10.0/lib/ExtUtils/t/build_man.t perl-5.10.0/lib/ExtUtils/t/bytes.t perl-5.10.0/lib/ExtUtils/t/config.t perl-5.10.0/lib/ExtUtils/t/dir_target.t perl-5.10.0/lib/ExtUtils/t/eu_command.t perl-5.10.0/lib/ExtUtils/t/hints.t perl-5.10.0/lib/ExtUtils/t/make.t perl-5.10.0/lib/ExtUtils/t/oneliner.t perl-5.10.0/lib/ExtUtils/t/parse_version.t perl-5.10.0/lib/ExtUtils/t/pm.t perl-5.10.0/lib/ExtUtils/t/postamble.t perl-5.10.0/lib/ExtUtils/t/prefixify.t perl-5.10.0/lib/ExtUtils/t/prereq_print.t perl-5.10.0/lib/ExtUtils/t/problems.t perl-5.10.0/lib/ExtUtils/t/prompt.t perl-5.10.0/lib/ExtUtils/t/recurs.t perl-5.10.0/lib/ExtUtils/t/revision.t perl-5.10.0/lib/ExtUtils/t/split_command.t perl-5.10.0/lib/ExtUtils/t/testlib.t perl-5.10.0/lib/ExtUtils/t/vmsish.t perl-5.10.0/lib/ExtUtils/t/writemakefile_args.t perl-5.10.0/lib/ExtUtils/t/xs.t perl-5.10.0/lib/ExtUtils/t/WriteEmptyMakefile.t perl-5.10.0/lib/ExtUtils/t/cd.t perl-5.10.0/lib/ExtUtils/t/fixin.t perl-5.10.0/lib/ExtUtils/t/prereq.t perl-5.10.0/lib/ExtUtils/t/maketext_filter.t perl-5.10.0/lib/ExtUtils/testlib.pm perl-5.10.0/lib/ExtUtils/typemap perl-5.10.0/lib/ExtUtils/xsubpp perl-5.10.0/lib/Fatal.pm perl-5.10.0/lib/Fatal.t perl-5.10.0/lib/File/ perl-5.10.0/lib/File/Basename.pm perl-5.10.0/lib/File/Basename.t perl-5.10.0/lib/File/CheckTree.pm perl-5.10.0/lib/File/CheckTree.t perl-5.10.0/lib/File/Compare.pm perl-5.10.0/lib/File/Compare.t perl-5.10.0/lib/File/Copy.pm perl-5.10.0/lib/File/Copy.t perl-5.10.0/lib/File/DosGlob.pm perl-5.10.0/lib/File/DosGlob.t perl-5.10.0/lib/File/Fetch.pm perl-5.10.0/lib/File/Fetch/ perl-5.10.0/lib/File/Fetch/t/ perl-5.10.0/lib/File/Fetch/t/01_File-Fetch.t perl-5.10.0/lib/File/Find.pm perl-5.10.0/lib/File/Find/ perl-5.10.0/lib/File/Find/t/ perl-5.10.0/lib/File/Find/t/find.t perl-5.10.0/lib/File/Find/t/taint.t perl-5.10.0/lib/File/Path.pm perl-5.10.0/lib/File/Path.t perl-5.10.0/lib/File/Spec.pm perl-5.10.0/lib/File/Spec/ perl-5.10.0/lib/File/Spec/Cygwin.pm perl-5.10.0/lib/File/Spec/Epoc.pm perl-5.10.0/lib/File/Spec/Functions.pm perl-5.10.0/lib/File/Spec/Mac.pm perl-5.10.0/lib/File/Spec/OS2.pm perl-5.10.0/lib/File/Spec/Unix.pm perl-5.10.0/lib/File/Spec/VMS.pm perl-5.10.0/lib/File/Spec/Win32.pm perl-5.10.0/lib/File/Spec/t/ perl-5.10.0/lib/File/Spec/t/Functions.t perl-5.10.0/lib/File/Spec/t/Spec.t perl-5.10.0/lib/File/Spec/t/crossplatform.t perl-5.10.0/lib/File/Spec/t/rel2abs2rel.t perl-5.10.0/lib/File/Spec/t/tmpdir.t perl-5.10.0/lib/File/Temp.pm perl-5.10.0/lib/File/Temp/ perl-5.10.0/lib/File/Temp/t/ perl-5.10.0/lib/File/Temp/t/cmp.t perl-5.10.0/lib/File/Temp/t/mktemp.t perl-5.10.0/lib/File/Temp/t/object.t perl-5.10.0/lib/File/Temp/t/posix.t perl-5.10.0/lib/File/Temp/t/security.t perl-5.10.0/lib/File/Temp/t/seekable.t perl-5.10.0/lib/File/Temp/t/tempfile.t perl-5.10.0/lib/File/stat.pm perl-5.10.0/lib/File/stat.t perl-5.10.0/lib/FileCache.pm perl-5.10.0/lib/FileCache/ perl-5.10.0/lib/FileCache/t/ perl-5.10.0/lib/FileCache/t/01open.t perl-5.10.0/lib/FileCache/t/02maxopen.t perl-5.10.0/lib/FileCache/t/03append.t perl-5.10.0/lib/FileCache/t/04twoarg.t perl-5.10.0/lib/FileCache/t/05override.t perl-5.10.0/lib/FileCache/t/06export.t perl-5.10.0/lib/FileCache/t/07noimport.t perl-5.10.0/lib/FileHandle.pm perl-5.10.0/lib/FileHandle.t perl-5.10.0/lib/Filter/ perl-5.10.0/lib/Filter/Simple.pm perl-5.10.0/lib/Filter/Simple/ perl-5.10.0/lib/Filter/Simple/Changes perl-5.10.0/lib/Filter/Simple/README perl-5.10.0/lib/Filter/Simple/t/ perl-5.10.0/lib/Filter/Simple/t/data.t perl-5.10.0/lib/Filter/Simple/t/export.t perl-5.10.0/lib/Filter/Simple/t/filter.t perl-5.10.0/lib/Filter/Simple/t/filter_only.t perl-5.10.0/lib/Filter/Simple/t/import.t perl-5.10.0/lib/FindBin.pm perl-5.10.0/lib/FindBin.t perl-5.10.0/lib/Getopt/ perl-5.10.0/lib/Getopt/Long.pm perl-5.10.0/lib/Getopt/Long/ perl-5.10.0/lib/Getopt/Long/CHANGES perl-5.10.0/lib/Getopt/Long/README perl-5.10.0/lib/Getopt/Long/t/ perl-5.10.0/lib/Getopt/Long/t/gol-basic.t perl-5.10.0/lib/Getopt/Long/t/gol-compat.t perl-5.10.0/lib/Getopt/Long/t/gol-linkage.t perl-5.10.0/lib/Getopt/Long/t/gol-oo.t perl-5.10.0/lib/Getopt/Long/t/gol-xargv.t perl-5.10.0/lib/Getopt/Long/t/gol-xstring.t perl-5.10.0/lib/Getopt/Std.pm perl-5.10.0/lib/Getopt/Std.t perl-5.10.0/lib/I18N/ perl-5.10.0/lib/I18N/Collate.pm perl-5.10.0/lib/I18N/Collate.t perl-5.10.0/lib/I18N/LangTags.pm perl-5.10.0/lib/I18N/LangTags/ perl-5.10.0/lib/I18N/LangTags/ChangeLog perl-5.10.0/lib/I18N/LangTags/Detect.pm perl-5.10.0/lib/I18N/LangTags/List.pm perl-5.10.0/lib/I18N/LangTags/README perl-5.10.0/lib/I18N/LangTags/t/ perl-5.10.0/lib/I18N/LangTags/t/01_about_verbose.t perl-5.10.0/lib/I18N/LangTags/t/05_main.t perl-5.10.0/lib/I18N/LangTags/t/07_listy.t perl-5.10.0/lib/I18N/LangTags/t/10_http.t perl-5.10.0/lib/I18N/LangTags/t/20_locales.t perl-5.10.0/lib/I18N/LangTags/t/50_super.t perl-5.10.0/lib/I18N/LangTags/t/55_supers_strict.t perl-5.10.0/lib/I18N/LangTags/t/80_all_env.t perl-5.10.0/lib/IO/ perl-5.10.0/lib/IO/Zlib.pm perl-5.10.0/lib/IO/Zlib/ perl-5.10.0/lib/IO/Zlib/t/ perl-5.10.0/lib/IO/Zlib/t/basic.t perl-5.10.0/lib/IO/Zlib/t/external.t perl-5.10.0/lib/IO/Zlib/t/getc.t perl-5.10.0/lib/IO/Zlib/t/getline.t perl-5.10.0/lib/IO/Zlib/t/import.t perl-5.10.0/lib/IO/Zlib/t/large.t perl-5.10.0/lib/IO/Zlib/t/tied.t perl-5.10.0/lib/IO/Zlib/t/uncomp1.t perl-5.10.0/lib/IO/Zlib/t/uncomp2.t perl-5.10.0/lib/IPC/ perl-5.10.0/lib/IPC/Cmd.pm perl-5.10.0/lib/IPC/Cmd/ perl-5.10.0/lib/IPC/Cmd/t/ perl-5.10.0/lib/IPC/Cmd/t/01_IPC-Cmd.t perl-5.10.0/lib/IPC/Cmd/t/02_Interactive.t perl-5.10.0/lib/IPC/Cmd/t/src/ perl-5.10.0/lib/IPC/Cmd/t/src/child.pl perl-5.10.0/lib/IPC/Open2.pm perl-5.10.0/lib/IPC/Open2.t perl-5.10.0/lib/IPC/Open3.pm perl-5.10.0/lib/IPC/Open3.t perl-5.10.0/lib/Internals.t perl-5.10.0/lib/Locale/ perl-5.10.0/lib/Locale/Codes/ perl-5.10.0/lib/Locale/Codes/ChangeLog perl-5.10.0/lib/Locale/Codes/README perl-5.10.0/lib/Locale/Codes/t/ perl-5.10.0/lib/Locale/Codes/t/all.t perl-5.10.0/lib/Locale/Codes/t/constants.t perl-5.10.0/lib/Locale/Codes/t/country.t perl-5.10.0/lib/Locale/Codes/t/currency.t perl-5.10.0/lib/Locale/Codes/t/languages.t perl-5.10.0/lib/Locale/Codes/t/rename.t perl-5.10.0/lib/Locale/Codes/t/script.t perl-5.10.0/lib/Locale/Codes/t/uk.t perl-5.10.0/lib/Locale/Constants.pm perl-5.10.0/lib/Locale/Constants.pod perl-5.10.0/lib/Locale/Country.pm perl-5.10.0/lib/Locale/Country.pod perl-5.10.0/lib/Locale/Currency.pm perl-5.10.0/lib/Locale/Currency.pod perl-5.10.0/lib/Locale/Language.pm perl-5.10.0/lib/Locale/Language.pod perl-5.10.0/lib/Locale/Maketext.pm perl-5.10.0/lib/Locale/Maketext.pod perl-5.10.0/lib/Locale/Maketext/ perl-5.10.0/lib/Locale/Maketext/ChangeLog perl-5.10.0/lib/Locale/Maketext/Guts.pm perl-5.10.0/lib/Locale/Maketext/GutsLoader.pm perl-5.10.0/lib/Locale/Maketext/README perl-5.10.0/lib/Locale/Maketext/Simple.pm perl-5.10.0/lib/Locale/Maketext/Simple/ perl-5.10.0/lib/Locale/Maketext/Simple/t/ perl-5.10.0/lib/Locale/Maketext/Simple/t/0-signature.t perl-5.10.0/lib/Locale/Maketext/Simple/t/1-basic.t perl-5.10.0/lib/Locale/Maketext/TPJ13.pod perl-5.10.0/lib/Locale/Maketext/t/ perl-5.10.0/lib/Locale/Maketext/t/01_about_verbose.t perl-5.10.0/lib/Locale/Maketext/t/10_make.t perl-5.10.0/lib/Locale/Maketext/t/20_get.t perl-5.10.0/lib/Locale/Maketext/t/30_local.t perl-5.10.0/lib/Locale/Maketext/t/40_super.t perl-5.10.0/lib/Locale/Maketext/t/50_super.t perl-5.10.0/lib/Locale/Maketext/t/60_super.t perl-5.10.0/lib/Locale/Maketext/t/90_utf8.t perl-5.10.0/lib/Locale/Script.pm perl-5.10.0/lib/Locale/Script.pod perl-5.10.0/lib/Log/ perl-5.10.0/lib/Log/Message.pm perl-5.10.0/lib/Log/Message/ perl-5.10.0/lib/Log/Message/Config.pm perl-5.10.0/lib/Log/Message/Handlers.pm perl-5.10.0/lib/Log/Message/Item.pm perl-5.10.0/lib/Log/Message/Simple.pm perl-5.10.0/lib/Log/Message/Simple/ perl-5.10.0/lib/Log/Message/Simple/t/ perl-5.10.0/lib/Log/Message/Simple/t/01_use.t perl-5.10.0/lib/Log/Message/Simple/t/02_imports.t perl-5.10.0/lib/Log/Message/Simple/t/03_functions.t perl-5.10.0/lib/Log/Message/t/ perl-5.10.0/lib/Log/Message/t/01_Log-Message-Config.t perl-5.10.0/lib/Log/Message/t/02_Log-Message.t perl-5.10.0/lib/Log/Message/t/conf/ perl-5.10.0/lib/Log/Message/t/conf/LoadMe.pl perl-5.10.0/lib/Log/Message/t/conf/config_file perl-5.10.0/lib/Math/ perl-5.10.0/lib/Math/BigFloat.pm perl-5.10.0/lib/Math/BigFloat/ perl-5.10.0/lib/Math/BigFloat/Trace.pm perl-5.10.0/lib/Math/BigInt.pm perl-5.10.0/lib/Math/BigInt/ perl-5.10.0/lib/Math/BigInt/Calc.pm perl-5.10.0/lib/Math/BigInt/CalcEmu.pm perl-5.10.0/lib/Math/BigInt/Trace.pm perl-5.10.0/lib/Math/BigInt/t/ perl-5.10.0/lib/Math/BigInt/t/_e_math.t perl-5.10.0/lib/Math/BigInt/t/alias.inc perl-5.10.0/lib/Math/BigInt/t/bare_mbf.t perl-5.10.0/lib/Math/BigInt/t/bare_mbi.t perl-5.10.0/lib/Math/BigInt/t/bare_mif.t perl-5.10.0/lib/Math/BigInt/t/bigfltpm.inc perl-5.10.0/lib/Math/BigInt/t/bigfltpm.t perl-5.10.0/lib/Math/BigInt/t/bigintc.t perl-5.10.0/lib/Math/BigInt/t/bigintpm.inc perl-5.10.0/lib/Math/BigInt/t/bigintpm.t perl-5.10.0/lib/Math/BigInt/t/bigints.t perl-5.10.0/lib/Math/BigInt/t/biglog.t perl-5.10.0/lib/Math/BigInt/t/bigroot.t perl-5.10.0/lib/Math/BigInt/t/calling.t perl-5.10.0/lib/Math/BigInt/t/config.t perl-5.10.0/lib/Math/BigInt/t/const_mbf.t perl-5.10.0/lib/Math/BigInt/t/constant.t perl-5.10.0/lib/Math/BigInt/t/downgrade.t perl-5.10.0/lib/Math/BigInt/t/big_pi_e.t perl-5.10.0/lib/Math/BigInt/t/inf_nan.t perl-5.10.0/lib/Math/BigInt/t/isa.t perl-5.10.0/lib/Math/BigInt/t/lib_load.t perl-5.10.0/lib/Math/BigInt/t/mbf_ali.t perl-5.10.0/lib/Math/BigInt/t/mbi_ali.t perl-5.10.0/lib/Math/BigInt/t/mbi_rand.t perl-5.10.0/lib/Math/BigInt/t/mbimbf.inc perl-5.10.0/lib/Math/BigInt/t/mbimbf.t perl-5.10.0/lib/Math/BigInt/t/req_mbf0.t perl-5.10.0/lib/Math/BigInt/t/req_mbf1.t perl-5.10.0/lib/Math/BigInt/t/req_mbfa.t perl-5.10.0/lib/Math/BigInt/t/req_mbfi.t perl-5.10.0/lib/Math/BigInt/t/req_mbfn.t perl-5.10.0/lib/Math/BigInt/t/req_mbfw.t perl-5.10.0/lib/Math/BigInt/t/require.t perl-5.10.0/lib/Math/BigInt/t/sub_ali.t perl-5.10.0/lib/Math/BigInt/t/sub_mbf.t perl-5.10.0/lib/Math/BigInt/t/sub_mbi.t perl-5.10.0/lib/Math/BigInt/t/sub_mif.t perl-5.10.0/lib/Math/BigInt/t/trap.t perl-5.10.0/lib/Math/BigInt/t/upgrade.inc perl-5.10.0/lib/Math/BigInt/t/upgrade.t perl-5.10.0/lib/Math/BigInt/t/upgradef.t perl-5.10.0/lib/Math/BigInt/t/use.t perl-5.10.0/lib/Math/BigInt/t/use_lib1.t perl-5.10.0/lib/Math/BigInt/t/use_lib2.t perl-5.10.0/lib/Math/BigInt/t/use_lib3.t perl-5.10.0/lib/Math/BigInt/t/use_lib4.t perl-5.10.0/lib/Math/BigInt/t/use_mbfw.t perl-5.10.0/lib/Math/BigInt/t/with_sub.t perl-5.10.0/lib/Math/BigInt/t/nan_cmp.t perl-5.10.0/lib/Math/BigInt/t/new_ovld.t perl-5.10.0/lib/Math/BigInt/t/round.t perl-5.10.0/lib/Math/BigRat.pm perl-5.10.0/lib/Math/BigRat/ perl-5.10.0/lib/Math/BigRat/t/ perl-5.10.0/lib/Math/BigRat/t/big_ap.t perl-5.10.0/lib/Math/BigRat/t/bigfltpm.inc perl-5.10.0/lib/Math/BigRat/t/bigfltrt.t perl-5.10.0/lib/Math/BigRat/t/bigrat.t perl-5.10.0/lib/Math/BigRat/t/bigratpm.inc perl-5.10.0/lib/Math/BigRat/t/bigratpm.t perl-5.10.0/lib/Math/BigRat/t/bigratup.t perl-5.10.0/lib/Math/BigRat/t/requirer.t perl-5.10.0/lib/Math/BigRat/t/trap.t perl-5.10.0/lib/Math/BigRat/t/biglog.t perl-5.10.0/lib/Math/BigRat/t/bigroot.t perl-5.10.0/lib/Math/Complex.pm perl-5.10.0/lib/Math/Complex.t perl-5.10.0/lib/Math/Trig.pm perl-5.10.0/lib/Math/Trig.t perl-5.10.0/lib/Memoize.pm perl-5.10.0/lib/Memoize/ perl-5.10.0/lib/Memoize/AnyDBM_File.pm perl-5.10.0/lib/Memoize/Expire.pm perl-5.10.0/lib/Memoize/ExpireFile.pm perl-5.10.0/lib/Memoize/ExpireTest.pm perl-5.10.0/lib/Memoize/NDBM_File.pm perl-5.10.0/lib/Memoize/README perl-5.10.0/lib/Memoize/SDBM_File.pm perl-5.10.0/lib/Memoize/Storable.pm perl-5.10.0/lib/Memoize/TODO perl-5.10.0/lib/Memoize/t/ perl-5.10.0/lib/Memoize/t/array.t perl-5.10.0/lib/Memoize/t/array_confusion.t perl-5.10.0/lib/Memoize/t/correctness.t perl-5.10.0/lib/Memoize/t/errors.t perl-5.10.0/lib/Memoize/t/expfile.t perl-5.10.0/lib/Memoize/t/expire.t perl-5.10.0/lib/Memoize/t/expmod_n.t perl-5.10.0/lib/Memoize/t/expmod_t.t perl-5.10.0/lib/Memoize/t/flush.t perl-5.10.0/lib/Memoize/t/normalize.t perl-5.10.0/lib/Memoize/t/prototype.t perl-5.10.0/lib/Memoize/t/speed.t perl-5.10.0/lib/Memoize/t/tie.t perl-5.10.0/lib/Memoize/t/tie_gdbm.t perl-5.10.0/lib/Memoize/t/tie_ndbm.t perl-5.10.0/lib/Memoize/t/tie_sdbm.t perl-5.10.0/lib/Memoize/t/tie_storable.t perl-5.10.0/lib/Memoize/t/tiefeatures.t perl-5.10.0/lib/Memoize/t/unmemoize.t perl-5.10.0/lib/Module/ perl-5.10.0/lib/Module/Build.pm perl-5.10.0/lib/Module/Build/ perl-5.10.0/lib/Module/Build/API.pod perl-5.10.0/lib/Module/Build/Authoring.pod perl-5.10.0/lib/Module/Build/Base.pm perl-5.10.0/lib/Module/Build/Changes perl-5.10.0/lib/Module/Build/Compat.pm perl-5.10.0/lib/Module/Build/Config.pm perl-5.10.0/lib/Module/Build/ConfigData.pm perl-5.10.0/lib/Module/Build/Cookbook.pm perl-5.10.0/lib/Module/Build/ModuleInfo.pm perl-5.10.0/lib/Module/Build/Notes.pm perl-5.10.0/lib/Module/Build/PPMMaker.pm perl-5.10.0/lib/Module/Build/Platform/ perl-5.10.0/lib/Module/Build/Platform/Amiga.pm perl-5.10.0/lib/Module/Build/Platform/Default.pm perl-5.10.0/lib/Module/Build/Platform/EBCDIC.pm perl-5.10.0/lib/Module/Build/Platform/MPEiX.pm perl-5.10.0/lib/Module/Build/Platform/MacOS.pm perl-5.10.0/lib/Module/Build/Platform/RiscOS.pm perl-5.10.0/lib/Module/Build/Platform/Unix.pm perl-5.10.0/lib/Module/Build/Platform/VMS.pm perl-5.10.0/lib/Module/Build/Platform/VOS.pm perl-5.10.0/lib/Module/Build/Platform/Windows.pm perl-5.10.0/lib/Module/Build/Platform/aix.pm perl-5.10.0/lib/Module/Build/Platform/cygwin.pm perl-5.10.0/lib/Module/Build/Platform/darwin.pm perl-5.10.0/lib/Module/Build/Platform/os2.pm perl-5.10.0/lib/Module/Build/PodParser.pm perl-5.10.0/lib/Module/Build/Version.pm perl-5.10.0/lib/Module/Build/YAML.pm perl-5.10.0/lib/Module/Build/scripts/ perl-5.10.0/lib/Module/Build/scripts/config_data perl-5.10.0/lib/Module/Build/t/ perl-5.10.0/lib/Module/Build/t/basic.t perl-5.10.0/lib/Module/Build/t/bundled/ perl-5.10.0/lib/Module/Build/t/bundled/Tie/ perl-5.10.0/lib/Module/Build/t/bundled/Tie/CPHash.pm perl-5.10.0/lib/Module/Build/t/compat.t perl-5.10.0/lib/Module/Build/t/destinations.t perl-5.10.0/lib/Module/Build/t/ext.t perl-5.10.0/lib/Module/Build/t/extend.t perl-5.10.0/lib/Module/Build/t/files.t perl-5.10.0/lib/Module/Build/t/install.t perl-5.10.0/lib/Module/Build/t/lib/ perl-5.10.0/lib/Module/Build/t/lib/DistGen.pm perl-5.10.0/lib/Module/Build/t/lib/MBTest.pm perl-5.10.0/lib/Module/Build/t/manifypods.t perl-5.10.0/lib/Module/Build/t/mbyaml.t perl-5.10.0/lib/Module/Build/t/metadata.t perl-5.10.0/lib/Module/Build/t/metadata2.t perl-5.10.0/lib/Module/Build/t/moduleinfo.t perl-5.10.0/lib/Module/Build/t/notes.t perl-5.10.0/lib/Module/Build/t/parents.t perl-5.10.0/lib/Module/Build/t/pod_parser.t perl-5.10.0/lib/Module/Build/t/ppm.t perl-5.10.0/lib/Module/Build/t/runthrough.t perl-5.10.0/lib/Module/Build/t/xs.t perl-5.10.0/lib/Module/Build/t/tilde.t perl-5.10.0/lib/Module/Build/t/versions.t perl-5.10.0/lib/Module/Build/t/new_from_context.t perl-5.10.0/lib/Module/Build/t/test_type.t perl-5.10.0/lib/Module/Build/t/test_types.t perl-5.10.0/lib/Module/Build/t/help.t perl-5.10.0/lib/Module/Build/Dumper.pm perl-5.10.0/lib/Module/CoreList.pm perl-5.10.0/lib/Module/CoreList/ perl-5.10.0/lib/Module/CoreList/bin/ perl-5.10.0/lib/Module/CoreList/bin/corelist perl-5.10.0/lib/Module/CoreList/t/ perl-5.10.0/lib/Module/CoreList/t/corelist.t perl-5.10.0/lib/Module/CoreList/t/find_modules.t perl-5.10.0/lib/Module/Load.pm perl-5.10.0/lib/Module/Load/ perl-5.10.0/lib/Module/Load/Conditional.pm perl-5.10.0/lib/Module/Load/Conditional/ perl-5.10.0/lib/Module/Load/Conditional/t/ perl-5.10.0/lib/Module/Load/Conditional/t/01_Module_Load_Conditional.t perl-5.10.0/lib/Module/Load/Conditional/t/02_Parse_Version.t perl-5.10.0/lib/Module/Load/Conditional/t/to_load/ perl-5.10.0/lib/Module/Load/Conditional/t/to_load/Commented.pm perl-5.10.0/lib/Module/Load/Conditional/t/to_load/InPod.pm perl-5.10.0/lib/Module/Load/Conditional/t/to_load/LoadIt.pm perl-5.10.0/lib/Module/Load/Conditional/t/to_load/LoadMe.pl perl-5.10.0/lib/Module/Load/Conditional/t/to_load/ToBeLoaded perl-5.10.0/lib/Module/Load/Conditional/t/to_load/MustBe/ perl-5.10.0/lib/Module/Load/Conditional/t/to_load/MustBe/Loaded.pm perl-5.10.0/lib/Module/Load/t/ perl-5.10.0/lib/Module/Load/t/01_Module-Load.t perl-5.10.0/lib/Module/Load/t/to_load/ perl-5.10.0/lib/Module/Load/t/to_load/LoadIt.pm perl-5.10.0/lib/Module/Load/t/to_load/LoadMe.pl perl-5.10.0/lib/Module/Load/t/to_load/Must/ perl-5.10.0/lib/Module/Load/t/to_load/Must/Be/ perl-5.10.0/lib/Module/Load/t/to_load/Must/Be/Loaded.pm perl-5.10.0/lib/Module/Load/t/to_load/TestModule.pm perl-5.10.0/lib/Module/Load/t/to_load/ToBeLoaded perl-5.10.0/lib/Module/Load/t/to_load/config_file perl-5.10.0/lib/Module/Loaded.pm perl-5.10.0/lib/Module/Loaded/ perl-5.10.0/lib/Module/Loaded/t/ perl-5.10.0/lib/Module/Loaded/t/01_Module-Loaded.t perl-5.10.0/lib/Module/Pluggable.pm perl-5.10.0/lib/Module/Pluggable/ perl-5.10.0/lib/Module/Pluggable/Object.pm perl-5.10.0/lib/NEXT.pm perl-5.10.0/lib/NEXT/ perl-5.10.0/lib/NEXT/Changes perl-5.10.0/lib/NEXT/README perl-5.10.0/lib/NEXT/t/ perl-5.10.0/lib/NEXT/t/actual.t perl-5.10.0/lib/NEXT/t/actuns.t perl-5.10.0/lib/NEXT/t/next.t perl-5.10.0/lib/NEXT/t/unseen.t perl-5.10.0/lib/Net/ perl-5.10.0/lib/Net/Cmd.pm perl-5.10.0/lib/Net/Config.eg perl-5.10.0/lib/Net/Config.pm perl-5.10.0/lib/Net/Domain.pm perl-5.10.0/lib/Net/FTP.pm perl-5.10.0/lib/Net/FTP/ perl-5.10.0/lib/Net/FTP/A.pm perl-5.10.0/lib/Net/FTP/E.pm perl-5.10.0/lib/Net/FTP/I.pm perl-5.10.0/lib/Net/FTP/L.pm perl-5.10.0/lib/Net/FTP/dataconn.pm perl-5.10.0/lib/Net/NNTP.pm perl-5.10.0/lib/Net/Netrc.pm perl-5.10.0/lib/Net/POP3.pm perl-5.10.0/lib/Net/Ping.pm perl-5.10.0/lib/Net/Ping/ perl-5.10.0/lib/Net/Ping/Changes perl-5.10.0/lib/Net/Ping/t/ perl-5.10.0/lib/Net/Ping/t/100_load.t perl-5.10.0/lib/Net/Ping/t/110_icmp_inst.t perl-5.10.0/lib/Net/Ping/t/120_udp_inst.t perl-5.10.0/lib/Net/Ping/t/130_tcp_inst.t perl-5.10.0/lib/Net/Ping/t/140_stream_inst.t perl-5.10.0/lib/Net/Ping/t/150_syn_inst.t perl-5.10.0/lib/Net/Ping/t/190_alarm.t perl-5.10.0/lib/Net/Ping/t/200_ping_tcp.t perl-5.10.0/lib/Net/Ping/t/250_ping_hires.t perl-5.10.0/lib/Net/Ping/t/300_ping_stream.t perl-5.10.0/lib/Net/Ping/t/400_ping_syn.t perl-5.10.0/lib/Net/Ping/t/410_syn_host.t perl-5.10.0/lib/Net/Ping/t/450_service.t perl-5.10.0/lib/Net/Ping/t/500_ping_icmp.t perl-5.10.0/lib/Net/Ping/t/510_ping_udp.t perl-5.10.0/lib/Net/Changes perl-5.10.0/lib/Net/SMTP.pm perl-5.10.0/lib/Net/Time.pm perl-5.10.0/lib/Net/demos/ perl-5.10.0/lib/Net/demos/ftp perl-5.10.0/lib/Net/demos/inetd perl-5.10.0/lib/Net/demos/nntp perl-5.10.0/lib/Net/demos/nntp.mirror perl-5.10.0/lib/Net/demos/pop3 perl-5.10.0/lib/Net/demos/smtp.self perl-5.10.0/lib/Net/demos/time perl-5.10.0/lib/Net/hostent.pm perl-5.10.0/lib/Net/hostent.t perl-5.10.0/lib/Net/libnetFAQ.pod perl-5.10.0/lib/Net/netent.pm perl-5.10.0/lib/Net/netent.t perl-5.10.0/lib/Net/protoent.pm perl-5.10.0/lib/Net/protoent.t perl-5.10.0/lib/Net/servent.pm perl-5.10.0/lib/Net/servent.t perl-5.10.0/lib/Net/t/ perl-5.10.0/lib/Net/t/config.t perl-5.10.0/lib/Net/t/datasend.t perl-5.10.0/lib/Net/t/ftp.t perl-5.10.0/lib/Net/t/hostname.t perl-5.10.0/lib/Net/t/libnet_t.pl perl-5.10.0/lib/Net/t/netrc.t perl-5.10.0/lib/Net/t/nntp.t perl-5.10.0/lib/Net/t/require.t perl-5.10.0/lib/Net/t/smtp.t perl-5.10.0/lib/Net/t/time.t perl-5.10.0/lib/Net/Hostname.pm.eg perl-5.10.0/lib/Net/README perl-5.10.0/lib/Object/ perl-5.10.0/lib/Object/Accessor.pm perl-5.10.0/lib/Object/Accessor/ perl-5.10.0/lib/Object/Accessor/t/ perl-5.10.0/lib/Object/Accessor/t/00_Object-Accessor.t perl-5.10.0/lib/Object/Accessor/t/01_Object-Accessor-Subclassed.t perl-5.10.0/lib/Object/Accessor/t/02_Object-Accessor-allow.t perl-5.10.0/lib/Object/Accessor/t/03_Object-Accessor-local.t perl-5.10.0/lib/Object/Accessor/t/04_Object-Accessor-lvalue.t perl-5.10.0/lib/Object/Accessor/t/05_Object-Accessor-callback.t perl-5.10.0/lib/Package/ perl-5.10.0/lib/Package/Constants.pm perl-5.10.0/lib/Package/Constants/ perl-5.10.0/lib/Package/Constants/t/ perl-5.10.0/lib/Package/Constants/t/01_list.t perl-5.10.0/lib/Params/ perl-5.10.0/lib/Params/Check.pm perl-5.10.0/lib/Params/Check/ perl-5.10.0/lib/Params/Check/t/ perl-5.10.0/lib/Params/Check/t/01_Params-Check.t perl-5.10.0/lib/PerlIO.pm perl-5.10.0/lib/PerlIO/ perl-5.10.0/lib/PerlIO/via/ perl-5.10.0/lib/PerlIO/via/QuotedPrint.pm perl-5.10.0/lib/PerlIO/via/t/ perl-5.10.0/lib/PerlIO/via/t/QuotedPrint.t perl-5.10.0/lib/Pod/ perl-5.10.0/lib/Pod/Checker.pm perl-5.10.0/lib/Pod/Escapes.pm perl-5.10.0/lib/Pod/Escapes/ perl-5.10.0/lib/Pod/Escapes/ChangeLog perl-5.10.0/lib/Pod/Escapes/README perl-5.10.0/lib/Pod/Escapes/t/ perl-5.10.0/lib/Pod/Escapes/t/01_about_verbose.t perl-5.10.0/lib/Pod/Escapes/t/10_main.t perl-5.10.0/lib/Pod/Escapes/t/15_name2charnum.t perl-5.10.0/lib/Pod/Find.pm perl-5.10.0/lib/Pod/Functions.pm perl-5.10.0/lib/Pod/Html.pm perl-5.10.0/lib/Pod/InputObjects.pm perl-5.10.0/lib/Pod/LaTeX.pm perl-5.10.0/lib/Pod/Man.pm perl-5.10.0/lib/Pod/ParseLink.pm perl-5.10.0/lib/Pod/ParseUtils.pm perl-5.10.0/lib/Pod/Parser.pm perl-5.10.0/lib/Pod/Perldoc.pm perl-5.10.0/lib/Pod/Perldoc/ perl-5.10.0/lib/Pod/Perldoc/BaseTo.pm perl-5.10.0/lib/Pod/Perldoc/GetOptsOO.pm perl-5.10.0/lib/Pod/Perldoc/ToChecker.pm perl-5.10.0/lib/Pod/Perldoc/ToMan.pm perl-5.10.0/lib/Pod/Perldoc/ToNroff.pm perl-5.10.0/lib/Pod/Perldoc/ToPod.pm perl-5.10.0/lib/Pod/Perldoc/ToRtf.pm perl-5.10.0/lib/Pod/Perldoc/ToText.pm perl-5.10.0/lib/Pod/Perldoc/ToTk.pm perl-5.10.0/lib/Pod/Perldoc/ToXml.pm perl-5.10.0/lib/Pod/Perldoc/t/ perl-5.10.0/lib/Pod/Perldoc/t/01_about_verbose.t perl-5.10.0/lib/Pod/Perldoc/t/checkerbasic.t perl-5.10.0/lib/Pod/Perldoc/t/perldocbasic.t perl-5.10.0/lib/Pod/Perldoc/t/textbasic.t perl-5.10.0/lib/Pod/PlainText.pm perl-5.10.0/lib/Pod/Plainer.pm perl-5.10.0/lib/Pod/Select.pm perl-5.10.0/lib/Pod/Simple.pm perl-5.10.0/lib/Pod/Simple.pod perl-5.10.0/lib/Pod/Simple/ perl-5.10.0/lib/Pod/Simple/BlackBox.pm perl-5.10.0/lib/Pod/Simple/ChangeLog perl-5.10.0/lib/Pod/Simple/Checker.pm perl-5.10.0/lib/Pod/Simple/Debug.pm perl-5.10.0/lib/Pod/Simple/DumpAsText.pm perl-5.10.0/lib/Pod/Simple/DumpAsXML.pm perl-5.10.0/lib/Pod/Simple/HTML.pm perl-5.10.0/lib/Pod/Simple/HTMLBatch.pm perl-5.10.0/lib/Pod/Simple/HTMLLegacy.pm perl-5.10.0/lib/Pod/Simple/LinkSection.pm perl-5.10.0/lib/Pod/Simple/Methody.pm perl-5.10.0/lib/Pod/Simple/Progress.pm perl-5.10.0/lib/Pod/Simple/PullParser.pm perl-5.10.0/lib/Pod/Simple/PullParserEndToken.pm perl-5.10.0/lib/Pod/Simple/PullParserStartToken.pm perl-5.10.0/lib/Pod/Simple/PullParserTextToken.pm perl-5.10.0/lib/Pod/Simple/PullParserToken.pm perl-5.10.0/lib/Pod/Simple/README perl-5.10.0/lib/Pod/Simple/RTF.pm perl-5.10.0/lib/Pod/Simple/Search.pm perl-5.10.0/lib/Pod/Simple/SimpleTree.pm perl-5.10.0/lib/Pod/Simple/Subclassing.pod perl-5.10.0/lib/Pod/Simple/Text.pm perl-5.10.0/lib/Pod/Simple/TextContent.pm perl-5.10.0/lib/Pod/Simple/TiedOutFH.pm perl-5.10.0/lib/Pod/Simple/Transcode.pm perl-5.10.0/lib/Pod/Simple/TranscodeDumb.pm perl-5.10.0/lib/Pod/Simple/TranscodeSmart.pm perl-5.10.0/lib/Pod/Simple/XMLOutStream.pm perl-5.10.0/lib/Pod/Simple/t/ perl-5.10.0/lib/Pod/Simple/t/00about.t perl-5.10.0/lib/Pod/Simple/t/20_skip.t perl-5.10.0/lib/Pod/Simple/t/accept01.t perl-5.10.0/lib/Pod/Simple/t/accept05.t perl-5.10.0/lib/Pod/Simple/t/begin.t perl-5.10.0/lib/Pod/Simple/t/ac_d.t perl-5.10.0/lib/Pod/Simple/t/basic.t perl-5.10.0/lib/Pod/Simple/t/corpus.t perl-5.10.0/lib/Pod/Simple/t/cbacks.t perl-5.10.0/lib/Pod/Simple/t/chunking.t perl-5.10.0/lib/Pod/Simple/t/closeys.t perl-5.10.0/lib/Pod/Simple/t/corpus/ perl-5.10.0/lib/Pod/Simple/t/corpus/2202jp.txt.packed perl-5.10.0/lib/Pod/Simple/t/corpus/2202jp.xml perl-5.10.0/lib/Pod/Simple/t/corpus/2202jpx.txt.packed perl-5.10.0/lib/Pod/Simple/t/corpus/2202jpx.xml perl-5.10.0/lib/Pod/Simple/t/corpus/2202jpy.txt.packed perl-5.10.0/lib/Pod/Simple/t/corpus/2202jpy.xml perl-5.10.0/lib/Pod/Simple/t/corpus/2202jpz.txt perl-5.10.0/lib/Pod/Simple/t/corpus/2202jpz.xml perl-5.10.0/lib/Pod/Simple/t/corpus/8859_7.pod perl-5.10.0/lib/Pod/Simple/t/corpus/8859_7.xml perl-5.10.0/lib/Pod/Simple/t/corpus/cp1256.txt perl-5.10.0/lib/Pod/Simple/t/corpus/cp1256.xml perl-5.10.0/lib/Pod/Simple/t/corpus/fet_cont.txt perl-5.10.0/lib/Pod/Simple/t/corpus/fet_cont.xml perl-5.10.0/lib/Pod/Simple/t/corpus/fet_dup.txt perl-5.10.0/lib/Pod/Simple/t/corpus/fet_dup.xml perl-5.10.0/lib/Pod/Simple/t/corpus/iso6.txt perl-5.10.0/lib/Pod/Simple/t/corpus/iso6.xml perl-5.10.0/lib/Pod/Simple/t/corpus/koi8r.txt perl-5.10.0/lib/Pod/Simple/t/corpus/koi8r.xml perl-5.10.0/lib/Pod/Simple/t/corpus/lat1fr.txt perl-5.10.0/lib/Pod/Simple/t/corpus/lat1fr.xml perl-5.10.0/lib/Pod/Simple/t/corpus/lat1frim.txt perl-5.10.0/lib/Pod/Simple/t/corpus/lat1frim.xml perl-5.10.0/lib/Pod/Simple/t/corpus/laozi38.txt perl-5.10.0/lib/Pod/Simple/t/corpus/laozi38.xml perl-5.10.0/lib/Pod/Simple/t/corpus/laozi38b.txt perl-5.10.0/lib/Pod/Simple/t/corpus/laozi38b.xml perl-5.10.0/lib/Pod/Simple/t/corpus/laozi38p.pod perl-5.10.0/lib/Pod/Simple/t/corpus/laozi38p.xml perl-5.10.0/lib/Pod/Simple/t/corpus/nonesuch.txt perl-5.10.0/lib/Pod/Simple/t/corpus/nonesuch.xml perl-5.10.0/lib/Pod/Simple/t/corpus/pasternak_cp1251.txt perl-5.10.0/lib/Pod/Simple/t/corpus/pasternak_cp1251.xml perl-5.10.0/lib/Pod/Simple/t/corpus/plain.txt perl-5.10.0/lib/Pod/Simple/t/corpus/plain.xml perl-5.10.0/lib/Pod/Simple/t/corpus/plain_explicit.txt perl-5.10.0/lib/Pod/Simple/t/corpus/plain_explicit.xml perl-5.10.0/lib/Pod/Simple/t/corpus/plain_latin1.txt perl-5.10.0/lib/Pod/Simple/t/corpus/plain_latin1.xml perl-5.10.0/lib/Pod/Simple/t/corpus/plain_utf8.txt perl-5.10.0/lib/Pod/Simple/t/corpus/plain_utf8.xml perl-5.10.0/lib/Pod/Simple/t/corpus/polish_utf8.txt perl-5.10.0/lib/Pod/Simple/t/corpus/polish_utf8.xml perl-5.10.0/lib/Pod/Simple/t/corpus/s2763_sjis.txt perl-5.10.0/lib/Pod/Simple/t/corpus/s2763_sjis.xml perl-5.10.0/lib/Pod/Simple/t/corpus/thai_iso11.txt perl-5.10.0/lib/Pod/Simple/t/corpus/thai_iso11.xml perl-5.10.0/lib/Pod/Simple/t/corpus2/ perl-5.10.0/lib/Pod/Simple/t/corpus2/fiqhakbar_iso6.txt perl-5.10.0/lib/Pod/Simple/t/corpus2/fiqhakbar_iso6.xml perl-5.10.0/lib/Pod/Simple/t/corpus2/polish_implicit_utf8.txt perl-5.10.0/lib/Pod/Simple/t/corpus2/polish_utf16be_bom.txt.packed perl-5.10.0/lib/Pod/Simple/t/corpus2/polish_utf16le_bom.txt.packed perl-5.10.0/lib/Pod/Simple/t/corpus2/polish_utf8_bom.txt perl-5.10.0/lib/Pod/Simple/t/corpus2/polish_utf8_bom.xml perl-5.10.0/lib/Pod/Simple/t/corpus2/polish_utf8_bom2.txt perl-5.10.0/lib/Pod/Simple/t/corpus2/polish_utf8_bom2.xml perl-5.10.0/lib/Pod/Simple/t/encod01.t perl-5.10.0/lib/Pod/Simple/t/encod02.t perl-5.10.0/lib/Pod/Simple/t/encod03.t perl-5.10.0/lib/Pod/Simple/t/end_over.t perl-5.10.0/lib/Pod/Simple/t/fcodes_e.t perl-5.10.0/lib/Pod/Simple/t/fcodes_l.t perl-5.10.0/lib/Pod/Simple/t/fcodes.t perl-5.10.0/lib/Pod/Simple/t/fcodes_s.t perl-5.10.0/lib/Pod/Simple/t/fullstop.t perl-5.10.0/lib/Pod/Simple/t/html01.t perl-5.10.0/lib/Pod/Simple/t/for.t perl-5.10.0/lib/Pod/Simple/t/fornot.t perl-5.10.0/lib/Pod/Simple/t/html02.t perl-5.10.0/lib/Pod/Simple/t/html03.t perl-5.10.0/lib/Pod/Simple/t/htmlbat.t perl-5.10.0/lib/Pod/Simple/t/heads.t perl-5.10.0/lib/Pod/Simple/t/items02.t perl-5.10.0/lib/Pod/Simple/t/junk1o.txt perl-5.10.0/lib/Pod/Simple/t/junk2o.txt perl-5.10.0/lib/Pod/Simple/t/linkclas.t perl-5.10.0/lib/Pod/Simple/t/perlcygo.txt perl-5.10.0/lib/Pod/Simple/t/items.t perl-5.10.0/lib/Pod/Simple/t/itemstar.t perl-5.10.0/lib/Pod/Simple/t/junk1.pod perl-5.10.0/lib/Pod/Simple/t/perlfaq.pod perl-5.10.0/lib/Pod/Simple/t/junk2.pod perl-5.10.0/lib/Pod/Simple/t/perlfaqo.txt perl-5.10.0/lib/Pod/Simple/t/perlvaro.txt perl-5.10.0/lib/Pod/Simple/t/pulltitl.t perl-5.10.0/lib/Pod/Simple/t/perlcyg.pod perl-5.10.0/lib/Pod/Simple/t/reinit.t perl-5.10.0/lib/Pod/Simple/t/search05.t perl-5.10.0/lib/Pod/Simple/t/search10.t perl-5.10.0/lib/Pod/Simple/t/perlvar.pod perl-5.10.0/lib/Pod/Simple/t/search12.t perl-5.10.0/lib/Pod/Simple/t/puller.t perl-5.10.0/lib/Pod/Simple/t/search20.t perl-5.10.0/lib/Pod/Simple/t/render.t perl-5.10.0/lib/Pod/Simple/t/search22.t perl-5.10.0/lib/Pod/Simple/t/search25.t perl-5.10.0/lib/Pod/Simple/t/search26.t perl-5.10.0/lib/Pod/Simple/t/search27.t perl-5.10.0/lib/Pod/Simple/t/search28.t perl-5.10.0/lib/Pod/Simple/t/search29.t perl-5.10.0/lib/Pod/Simple/t/search50.t perl-5.10.0/lib/Pod/Simple/t/testlib1/ perl-5.10.0/lib/Pod/Simple/t/testlib1/Blorm.pm perl-5.10.0/lib/Pod/Simple/t/testlib1/Zonk/ perl-5.10.0/lib/Pod/Simple/t/testlib1/Zonk/Fiddle.txt perl-5.10.0/lib/Pod/Simple/t/testlib1/Zonk/Pronk.pm perl-5.10.0/lib/Pod/Simple/t/testlib1/Zonk/Veng.pm perl-5.10.0/lib/Pod/Simple/t/testlib1/hinkhonk/ perl-5.10.0/lib/Pod/Simple/t/testlib1/hinkhonk/Glunk.pod perl-5.10.0/lib/Pod/Simple/t/testlib1/hinkhonk/Vliff.pm perl-5.10.0/lib/Pod/Simple/t/testlib1/hinkhonk/readme.txt perl-5.10.0/lib/Pod/Simple/t/testlib1/pod/ perl-5.10.0/lib/Pod/Simple/t/testlib1/pod/perlflif.pod perl-5.10.0/lib/Pod/Simple/t/testlib1/pod/perlthng.pod perl-5.10.0/lib/Pod/Simple/t/testlib1/squaa.pm perl-5.10.0/lib/Pod/Simple/t/testlib1/squaa/ perl-5.10.0/lib/Pod/Simple/t/testlib1/squaa/Glunk.pod perl-5.10.0/lib/Pod/Simple/t/testlib1/squaa/Vliff.pm perl-5.10.0/lib/Pod/Simple/t/testlib1/zikzik.pod perl-5.10.0/lib/Pod/Simple/t/testlib2/ perl-5.10.0/lib/Pod/Simple/t/testlib2/Suzzle.pm perl-5.10.0/lib/Pod/Simple/t/testlib2/hinkhonk/ perl-5.10.0/lib/Pod/Simple/t/testlib2/hinkhonk/Glunk.pod perl-5.10.0/lib/Pod/Simple/t/testlib2/hinkhonk/Vliff.pm perl-5.10.0/lib/Pod/Simple/t/testlib2/hinkhonk/readme.txt perl-5.10.0/lib/Pod/Simple/t/testlib2/pod/ perl-5.10.0/lib/Pod/Simple/t/testlib2/pod/perlthng.pod perl-5.10.0/lib/Pod/Simple/t/testlib2/pod/perlzuk.pod perl-5.10.0/lib/Pod/Simple/t/testlib2/squaa/ perl-5.10.0/lib/Pod/Simple/t/testlib2/squaa/Vliff.pm perl-5.10.0/lib/Pod/Simple/t/testlib2/squaa/Wowo.pod perl-5.10.0/lib/Pod/Simple/t/testlib3/ perl-5.10.0/lib/Pod/Simple/t/testlib3/squaa/ perl-5.10.0/lib/Pod/Simple/t/testlib3/squaa/Vliff.pm perl-5.10.0/lib/Pod/Simple/t/tiedfh.t perl-5.10.0/lib/Pod/Simple/t/verb_fmt.t perl-5.10.0/lib/Pod/Simple/t/verbatim.t perl-5.10.0/lib/Pod/Simple/t/stree.t perl-5.10.0/lib/Pod/Simple/t/x_nixer.t perl-5.10.0/lib/Pod/Text.pm perl-5.10.0/lib/Pod/Text/ perl-5.10.0/lib/Pod/Text/Color.pm perl-5.10.0/lib/Pod/Text/Overstrike.pm perl-5.10.0/lib/Pod/Text/Termcap.pm perl-5.10.0/lib/Pod/Usage.pm perl-5.10.0/lib/Pod/t/ perl-5.10.0/lib/Pod/t/Functions.t perl-5.10.0/lib/Pod/t/InputObjects.t perl-5.10.0/lib/Pod/t/Select.t perl-5.10.0/lib/Pod/t/Usage.t perl-5.10.0/lib/Pod/t/basic.cap perl-5.10.0/lib/Pod/t/basic.clr perl-5.10.0/lib/Pod/t/basic.man perl-5.10.0/lib/Pod/t/basic.ovr perl-5.10.0/lib/Pod/t/basic.pod perl-5.10.0/lib/Pod/t/basic.t perl-5.10.0/lib/Pod/t/basic.txt perl-5.10.0/lib/Pod/t/color.t perl-5.10.0/lib/Pod/t/contains_pod.t perl-5.10.0/lib/Pod/t/eol.t perl-5.10.0/lib/Pod/t/filehandle.t perl-5.10.0/lib/Pod/t/htmlescp.pod perl-5.10.0/lib/Pod/t/htmlescp.t perl-5.10.0/lib/Pod/t/htmllink.pod perl-5.10.0/lib/Pod/t/htmllink.t perl-5.10.0/lib/Pod/t/htmlview.pod perl-5.10.0/lib/Pod/t/htmlview.t perl-5.10.0/lib/Pod/t/man.t perl-5.10.0/lib/Pod/t/parselink.t perl-5.10.0/lib/Pod/t/pod-parser.t perl-5.10.0/lib/Pod/t/pod2html-lib.pl perl-5.10.0/lib/Pod/t/pod2latex.t perl-5.10.0/lib/Pod/t/termcap.t perl-5.10.0/lib/Pod/t/text-options.t perl-5.10.0/lib/Pod/t/text.t perl-5.10.0/lib/Pod/t/user.t perl-5.10.0/lib/Pod/t/utils.t perl-5.10.0/lib/Search/ perl-5.10.0/lib/Search/Dict.pm perl-5.10.0/lib/Search/Dict.t perl-5.10.0/lib/SelectSaver.pm perl-5.10.0/lib/SelectSaver.t perl-5.10.0/lib/SelfLoader-buggy.t perl-5.10.0/lib/SelfLoader.pm perl-5.10.0/lib/SelfLoader.t perl-5.10.0/lib/Shell.pm perl-5.10.0/lib/Shell.t perl-5.10.0/lib/Switch.pm perl-5.10.0/lib/Switch/ perl-5.10.0/lib/Switch/t/ perl-5.10.0/lib/Switch/t/given.t perl-5.10.0/lib/Switch/t/nested.t perl-5.10.0/lib/Switch/t/switch.t perl-5.10.0/lib/Symbol.pm perl-5.10.0/lib/Symbol.t perl-5.10.0/lib/Term/ perl-5.10.0/lib/Term/ANSIColor.pm perl-5.10.0/lib/Term/ANSIColor/ perl-5.10.0/lib/Term/ANSIColor/ChangeLog perl-5.10.0/lib/Term/ANSIColor/README perl-5.10.0/lib/Term/ANSIColor/t/ perl-5.10.0/lib/Term/ANSIColor/t/basic.t perl-5.10.0/lib/Term/Cap.pm perl-5.10.0/lib/Term/Cap.t perl-5.10.0/lib/Term/Complete.pm perl-5.10.0/lib/Term/Complete.t perl-5.10.0/lib/Term/ReadLine.pm perl-5.10.0/lib/Term/ReadLine.t perl-5.10.0/lib/Term/UI.pm perl-5.10.0/lib/Term/UI/ perl-5.10.0/lib/Term/UI/History.pm perl-5.10.0/lib/Term/UI/t/ perl-5.10.0/lib/Term/UI/t/00_load.t perl-5.10.0/lib/Term/UI/t/01_history.t perl-5.10.0/lib/Term/UI/t/02_ui.t perl-5.10.0/lib/Test.pm perl-5.10.0/lib/Test/ perl-5.10.0/lib/Test/Builder.pm perl-5.10.0/lib/Test/Builder/ perl-5.10.0/lib/Test/Builder/Module.pm perl-5.10.0/lib/Test/Builder/Tester.pm perl-5.10.0/lib/Test/Builder/Tester/ perl-5.10.0/lib/Test/Builder/Tester/Color.pm perl-5.10.0/lib/Test/Harness.pm perl-5.10.0/lib/Test/Harness/ perl-5.10.0/lib/Test/Harness/Assert.pm perl-5.10.0/lib/Test/Harness/Changes perl-5.10.0/lib/Test/Harness/Iterator.pm perl-5.10.0/lib/Test/Harness/Point.pm perl-5.10.0/lib/Test/Harness/Results.pm perl-5.10.0/lib/Test/Harness/Straps.pm perl-5.10.0/lib/Test/Harness/TAP.pod perl-5.10.0/lib/Test/Harness/Util.pm perl-5.10.0/lib/Test/Harness/bin/ perl-5.10.0/lib/Test/Harness/bin/prove perl-5.10.0/lib/Test/Harness/t/ perl-5.10.0/lib/Test/Harness/t/00compile.t perl-5.10.0/lib/Test/Harness/t/assert.t perl-5.10.0/lib/Test/Harness/t/base.t perl-5.10.0/lib/Test/Harness/t/callback.t perl-5.10.0/lib/Test/Harness/t/failure.t perl-5.10.0/lib/Test/Harness/t/from_line.t perl-5.10.0/lib/Test/Harness/t/harness.t perl-5.10.0/lib/Test/Harness/t/inc_taint.t perl-5.10.0/lib/Test/Harness/t/nonumbers.t perl-5.10.0/lib/Test/Harness/t/ok.t perl-5.10.0/lib/Test/Harness/t/point-parse.t perl-5.10.0/lib/Test/Harness/t/point.t perl-5.10.0/lib/Test/Harness/t/prove-globbing.t perl-5.10.0/lib/Test/Harness/t/prove-switches.t perl-5.10.0/lib/Test/Harness/t/strap-analyze.t perl-5.10.0/lib/Test/Harness/t/strap.t perl-5.10.0/lib/Test/Harness/t/test-harness.t perl-5.10.0/lib/Test/Harness/t/version.t perl-5.10.0/lib/Test/More.pm perl-5.10.0/lib/Test/Simple.pm perl-5.10.0/lib/Test/Simple/ perl-5.10.0/lib/Test/Simple/Changes perl-5.10.0/lib/Test/Simple/README perl-5.10.0/lib/Test/Simple/TODO perl-5.10.0/lib/Test/Simple/t/ perl-5.10.0/lib/Test/Simple/t/00test_harness_check.t perl-5.10.0/lib/Test/Simple/t/Builder.t perl-5.10.0/lib/Test/Simple/t/More.t perl-5.10.0/lib/Test/Simple/t/bad_plan.t perl-5.10.0/lib/Test/Simple/t/bail_out.t perl-5.10.0/lib/Test/Simple/t/buffer.t perl-5.10.0/lib/Test/Simple/t/carp.t perl-5.10.0/lib/Test/Simple/t/circular_data.t perl-5.10.0/lib/Test/Simple/t/create.t perl-5.10.0/lib/Test/Simple/t/curr_test.t perl-5.10.0/lib/Test/Simple/t/details.t perl-5.10.0/lib/Test/Simple/t/diag.t perl-5.10.0/lib/Test/Simple/t/eq_set.t perl-5.10.0/lib/Test/Simple/t/exit.t perl-5.10.0/lib/Test/Simple/t/extra.t perl-5.10.0/lib/Test/Simple/t/extra_one.t perl-5.10.0/lib/Test/Simple/t/fail-like.t perl-5.10.0/lib/Test/Simple/t/fail-more.t perl-5.10.0/lib/Test/Simple/t/fail.t perl-5.10.0/lib/Test/Simple/t/fail_one.t perl-5.10.0/lib/Test/Simple/t/filehandles.t perl-5.10.0/lib/Test/Simple/t/fork.t perl-5.10.0/lib/Test/Simple/t/harness_active.t perl-5.10.0/lib/Test/Simple/t/has_plan.t perl-5.10.0/lib/Test/Simple/t/has_plan2.t perl-5.10.0/lib/Test/Simple/t/import.t perl-5.10.0/lib/Test/Simple/t/is_deeply_fail.t perl-5.10.0/lib/Test/Simple/t/is_fh.t perl-5.10.0/lib/Test/Simple/t/maybe_regex.t perl-5.10.0/lib/Test/Simple/t/missing.t perl-5.10.0/lib/Test/Simple/t/no_diag.t perl-5.10.0/lib/Test/Simple/t/no_ending.t perl-5.10.0/lib/Test/Simple/t/no_header.t perl-5.10.0/lib/Test/Simple/t/no_plan.t perl-5.10.0/lib/Test/Simple/t/ok_obj.t perl-5.10.0/lib/Test/Simple/t/output.t perl-5.10.0/lib/Test/Simple/t/overload.t perl-5.10.0/lib/Test/Simple/t/overload_threads.t perl-5.10.0/lib/Test/Simple/t/plan.t perl-5.10.0/lib/Test/Simple/t/plan_bad.t perl-5.10.0/lib/Test/Simple/t/plan_is_noplan.t perl-5.10.0/lib/Test/Simple/t/plan_no_plan.t perl-5.10.0/lib/Test/Simple/t/plan_shouldnt_import.t perl-5.10.0/lib/Test/Simple/t/plan_skip_all.t perl-5.10.0/lib/Test/Simple/t/require_ok.t perl-5.10.0/lib/Test/Simple/t/reset.t perl-5.10.0/lib/Test/Simple/t/simple.t perl-5.10.0/lib/Test/Simple/t/skip.t perl-5.10.0/lib/Test/Simple/t/skipall.t perl-5.10.0/lib/Test/Simple/t/lib/ perl-5.10.0/lib/Test/Simple/t/lib/Dummy.pm perl-5.10.0/lib/Test/Simple/t/lib/MyOverload.pm perl-5.10.0/lib/Test/Simple/t/tbt_01basic.t perl-5.10.0/lib/Test/Simple/t/tbt_02fhrestore.t perl-5.10.0/lib/Test/Simple/t/tbt_03die.t perl-5.10.0/lib/Test/Simple/t/tbt_04line_num.t perl-5.10.0/lib/Test/Simple/t/tbt_05faildiag.t perl-5.10.0/lib/Test/Simple/t/tbt_06errormess.t perl-5.10.0/lib/Test/Simple/t/tbt_07args.t perl-5.10.0/lib/Test/Simple/t/thread_taint.t perl-5.10.0/lib/Test/Simple/t/threads.t perl-5.10.0/lib/Test/Simple/t/todo.t perl-5.10.0/lib/Test/Simple/t/undef.t perl-5.10.0/lib/Test/Simple/t/use_ok.t perl-5.10.0/lib/Test/Simple/t/useing.t perl-5.10.0/lib/Test/Simple/t/cmp_ok.t perl-5.10.0/lib/Test/Simple/t/is_deeply_dne_bug.t perl-5.10.0/lib/Test/Simple/t/is_deeply_with_threads.t perl-5.10.0/lib/Test/Simple/t/try.t perl-5.10.0/lib/Test/Tutorial.pod perl-5.10.0/lib/Test/t/ perl-5.10.0/lib/Test/t/05_about_verbose.t perl-5.10.0/lib/Test/t/fail.t perl-5.10.0/lib/Test/t/mix.t perl-5.10.0/lib/Test/t/multiline.t perl-5.10.0/lib/Test/t/onfail.t perl-5.10.0/lib/Test/t/qr.t perl-5.10.0/lib/Test/t/skip.t perl-5.10.0/lib/Test/t/success.t perl-5.10.0/lib/Test/t/todo.t perl-5.10.0/lib/Text/ perl-5.10.0/lib/Text/Abbrev.pm perl-5.10.0/lib/Text/Abbrev.t perl-5.10.0/lib/Text/Balanced.pm perl-5.10.0/lib/Text/Balanced/ perl-5.10.0/lib/Text/Balanced/Changes perl-5.10.0/lib/Text/Balanced/README perl-5.10.0/lib/Text/Balanced/t/ perl-5.10.0/lib/Text/Balanced/t/00-load.t perl-5.10.0/lib/Text/Balanced/t/extbrk.t perl-5.10.0/lib/Text/Balanced/t/extcbk.t perl-5.10.0/lib/Text/Balanced/t/extdel.t perl-5.10.0/lib/Text/Balanced/t/extmul.t perl-5.10.0/lib/Text/Balanced/t/extqlk.t perl-5.10.0/lib/Text/Balanced/t/exttag.t perl-5.10.0/lib/Text/Balanced/t/extvar.t perl-5.10.0/lib/Text/Balanced/t/gentag.t perl-5.10.0/lib/Text/ParseWords.pm perl-5.10.0/lib/Text/ParseWords.t perl-5.10.0/lib/Text/ParseWords/ perl-5.10.0/lib/Text/ParseWords/taint.t perl-5.10.0/lib/Text/Tabs.pm perl-5.10.0/lib/Text/TabsWrap/ perl-5.10.0/lib/Text/TabsWrap/CHANGELOG perl-5.10.0/lib/Text/TabsWrap/t/ perl-5.10.0/lib/Text/TabsWrap/t/37000.t perl-5.10.0/lib/Text/TabsWrap/t/39548.t perl-5.10.0/lib/Text/TabsWrap/t/Jacobson.t perl-5.10.0/lib/Text/TabsWrap/t/Jacobson2.t perl-5.10.0/lib/Text/TabsWrap/t/Jochen.t perl-5.10.0/lib/Text/TabsWrap/t/belg4mit.t perl-5.10.0/lib/Text/TabsWrap/t/fill.t perl-5.10.0/lib/Text/TabsWrap/t/sep.t perl-5.10.0/lib/Text/TabsWrap/t/sep2.t perl-5.10.0/lib/Text/TabsWrap/t/tabs.t perl-5.10.0/lib/Text/TabsWrap/t/wrap.t perl-5.10.0/lib/Text/Wrap.pm perl-5.10.0/lib/Thread.pm perl-5.10.0/lib/Thread/ perl-5.10.0/lib/Thread/Queue.pm perl-5.10.0/lib/Thread/Queue.t perl-5.10.0/lib/Thread/Semaphore.pm perl-5.10.0/lib/Thread/Semaphore.t perl-5.10.0/lib/Tie/ perl-5.10.0/lib/Tie/Array.pm perl-5.10.0/lib/Tie/Array/ perl-5.10.0/lib/Tie/Array/push.t perl-5.10.0/lib/Tie/Array/splice.t perl-5.10.0/lib/Tie/Array/std.t perl-5.10.0/lib/Tie/Array/stdpush.t perl-5.10.0/lib/Tie/File.pm perl-5.10.0/lib/Tie/File/ perl-5.10.0/lib/Tie/File/t/ perl-5.10.0/lib/Tie/File/t/00_version.t perl-5.10.0/lib/Tie/File/t/01_gen.t perl-5.10.0/lib/Tie/File/t/02_fetchsize.t perl-5.10.0/lib/Tie/File/t/03_longfetch.t perl-5.10.0/lib/Tie/File/t/04_splice.t perl-5.10.0/lib/Tie/File/t/05_size.t perl-5.10.0/lib/Tie/File/t/06_fixrec.t perl-5.10.0/lib/Tie/File/t/07_rv_splice.t perl-5.10.0/lib/Tie/File/t/08_ro.t perl-5.10.0/lib/Tie/File/t/09_gen_rs.t perl-5.10.0/lib/Tie/File/t/10_splice_rs.t perl-5.10.0/lib/Tie/File/t/11_rv_splice_rs.t perl-5.10.0/lib/Tie/File/t/12_longfetch_rs.t perl-5.10.0/lib/Tie/File/t/13_size_rs.t perl-5.10.0/lib/Tie/File/t/14_lock.t perl-5.10.0/lib/Tie/File/t/15_pushpop.t perl-5.10.0/lib/Tie/File/t/16_handle.t perl-5.10.0/lib/Tie/File/t/17_misc_meth.t perl-5.10.0/lib/Tie/File/t/18_rs_fixrec.t perl-5.10.0/lib/Tie/File/t/19_cache.t perl-5.10.0/lib/Tie/File/t/20_cache_full.t perl-5.10.0/lib/Tie/File/t/21_win32.t perl-5.10.0/lib/Tie/File/t/22_autochomp.t perl-5.10.0/lib/Tie/File/t/23_rv_ac_splice.t perl-5.10.0/lib/Tie/File/t/24_cache_loop.t perl-5.10.0/lib/Tie/File/t/25_gen_nocache.t perl-5.10.0/lib/Tie/File/t/26_twrite.t perl-5.10.0/lib/Tie/File/t/27_iwrite.t perl-5.10.0/lib/Tie/File/t/28_mtwrite.t perl-5.10.0/lib/Tie/File/t/29_downcopy.t perl-5.10.0/lib/Tie/File/t/29a_upcopy.t perl-5.10.0/lib/Tie/File/t/30_defer.t perl-5.10.0/lib/Tie/File/t/31_autodefer.t perl-5.10.0/lib/Tie/File/t/32_defer_misc.t perl-5.10.0/lib/Tie/File/t/33_defer_vs.t perl-5.10.0/lib/Tie/File/t/40_abs_cache.t perl-5.10.0/lib/Tie/File/t/41_heap.t perl-5.10.0/lib/Tie/File/t/42_offset.t perl-5.10.0/lib/Tie/Handle.pm perl-5.10.0/lib/Tie/Handle/ perl-5.10.0/lib/Tie/Handle/stdhandle.t perl-5.10.0/lib/Tie/Handle/stdhandle_from_handle.t perl-5.10.0/lib/Tie/Hash.pm perl-5.10.0/lib/Tie/Memoize.pm perl-5.10.0/lib/Tie/Memoize.t perl-5.10.0/lib/Tie/RefHash.pm perl-5.10.0/lib/Tie/RefHash/ perl-5.10.0/lib/Tie/RefHash/rebless.t perl-5.10.0/lib/Tie/RefHash/refhash.t perl-5.10.0/lib/Tie/RefHash/storable.t perl-5.10.0/lib/Tie/RefHash/threaded.t perl-5.10.0/lib/Tie/Scalar.pm perl-5.10.0/lib/Tie/Scalar.t perl-5.10.0/lib/Tie/SubstrHash.pm perl-5.10.0/lib/Tie/SubstrHash.t perl-5.10.0/lib/Tie/Hash/ perl-5.10.0/lib/Tie/Hash/NamedCapture.pm perl-5.10.0/lib/Tie/StdHandle.pm perl-5.10.0/lib/Time/ perl-5.10.0/lib/Time/Local.pm perl-5.10.0/lib/Time/Local.t perl-5.10.0/lib/Time/gmtime.pm perl-5.10.0/lib/Time/gmtime.t perl-5.10.0/lib/Time/localtime.pm perl-5.10.0/lib/Time/localtime.t perl-5.10.0/lib/Time/tm.pm perl-5.10.0/lib/UNIVERSAL.pm perl-5.10.0/lib/Unicode/ perl-5.10.0/lib/Unicode/Collate.pm perl-5.10.0/lib/Unicode/Collate/ perl-5.10.0/lib/Unicode/Collate/Changes perl-5.10.0/lib/Unicode/Collate/README perl-5.10.0/lib/Unicode/Collate/keys.txt perl-5.10.0/lib/Unicode/Collate/t/ perl-5.10.0/lib/Unicode/Collate/t/altern.t perl-5.10.0/lib/Unicode/Collate/t/cjkrange.t perl-5.10.0/lib/Unicode/Collate/t/contract.t perl-5.10.0/lib/Unicode/Collate/t/hangtype.t perl-5.10.0/lib/Unicode/Collate/t/hangul.t perl-5.10.0/lib/Unicode/Collate/t/ignor.t perl-5.10.0/lib/Unicode/Collate/t/illegal.t perl-5.10.0/lib/Unicode/Collate/t/illegalp.t perl-5.10.0/lib/Unicode/Collate/t/index.t perl-5.10.0/lib/Unicode/Collate/t/normal.t perl-5.10.0/lib/Unicode/Collate/t/override.t perl-5.10.0/lib/Unicode/Collate/t/rearrang.t perl-5.10.0/lib/Unicode/Collate/t/test.t perl-5.10.0/lib/Unicode/Collate/t/trailwt.t perl-5.10.0/lib/Unicode/Collate/t/variable.t perl-5.10.0/lib/Unicode/Collate/t/version.t perl-5.10.0/lib/Unicode/Collate/t/view.t perl-5.10.0/lib/Unicode/Collate/allkeys.txt perl-5.10.0/lib/Unicode/README perl-5.10.0/lib/Unicode/UCD.pm perl-5.10.0/lib/Unicode/UCD.t perl-5.10.0/lib/User/ perl-5.10.0/lib/User/grent.pm perl-5.10.0/lib/User/grent.t perl-5.10.0/lib/User/pwent.pm perl-5.10.0/lib/User/pwent.t perl-5.10.0/lib/abbrev.pl perl-5.10.0/lib/assert.pl perl-5.10.0/lib/bignum.pm perl-5.10.0/lib/base.pm perl-5.10.0/lib/attributes.pm perl-5.10.0/lib/autouse.pm perl-5.10.0/lib/autouse.t perl-5.10.0/lib/CORE.pod perl-5.10.0/lib/base/ perl-5.10.0/lib/base/t/ perl-5.10.0/lib/base/t/base.t perl-5.10.0/lib/base/t/fields-base.t perl-5.10.0/lib/base/t/fields.t perl-5.10.0/lib/base/t/sigdie.t perl-5.10.0/lib/base/t/version.t perl-5.10.0/lib/base/t/warnings.t perl-5.10.0/lib/base/t/isa.t perl-5.10.0/lib/base/Changes perl-5.10.0/lib/bigfloat.pl perl-5.10.0/lib/bigfloatpl.t perl-5.10.0/lib/bigint.pl perl-5.10.0/lib/bigint.pm perl-5.10.0/lib/bigintpl.t perl-5.10.0/lib/bigrat.pm perl-5.10.0/lib/bignum/ perl-5.10.0/lib/bignum/t/ perl-5.10.0/lib/bignum/t/bigint.t perl-5.10.0/lib/bignum/t/bignum.t perl-5.10.0/lib/bignum/t/bigrat.t perl-5.10.0/lib/bignum/t/biinfnan.t perl-5.10.0/lib/bignum/t/bn_lite.t perl-5.10.0/lib/bignum/t/bninfnan.t perl-5.10.0/lib/bignum/t/br_lite.t perl-5.10.0/lib/bignum/t/brinfnan.t perl-5.10.0/lib/bignum/t/infnan.inc perl-5.10.0/lib/bignum/t/option_a.t perl-5.10.0/lib/bignum/t/option_l.t perl-5.10.0/lib/bignum/t/option_p.t perl-5.10.0/lib/bignum/t/ratopt_a.t perl-5.10.0/lib/bignum/t/bigexp.t perl-5.10.0/lib/bignum/t/in_effect.t perl-5.10.0/lib/bignum/t/scope_f.t perl-5.10.0/lib/bignum/t/scope_i.t perl-5.10.0/lib/bignum/t/scope_r.t perl-5.10.0/lib/bignum/t/big_e_pi.t perl-5.10.0/lib/bignum/t/bii_e_pi.t perl-5.10.0/lib/bignum/t/bir_e_pi.t perl-5.10.0/lib/bigrat.pl perl-5.10.0/lib/fields.pm perl-5.10.0/lib/blib.pm perl-5.10.0/lib/blib.t perl-5.10.0/lib/bytes.pm perl-5.10.0/lib/bytes.t perl-5.10.0/lib/bytes_heavy.pl perl-5.10.0/lib/cacheout.pl perl-5.10.0/lib/charnames.pm perl-5.10.0/lib/charnames.t perl-5.10.0/lib/complete.pl perl-5.10.0/lib/constant.pm perl-5.10.0/lib/constant.t perl-5.10.0/lib/ctime.pl perl-5.10.0/lib/dbm_filter_util.pl perl-5.10.0/lib/diagnostics.pm perl-5.10.0/lib/diagnostics.t perl-5.10.0/lib/dotsh.pl perl-5.10.0/lib/dumpvar.pl perl-5.10.0/lib/dumpvar.t perl-5.10.0/lib/encoding/ perl-5.10.0/lib/encoding/warnings.pm perl-5.10.0/lib/encoding/warnings/ perl-5.10.0/lib/encoding/warnings/t/ perl-5.10.0/lib/encoding/warnings/t/1-warning.t perl-5.10.0/lib/encoding/warnings/t/2-fatal.t perl-5.10.0/lib/encoding/warnings/t/3-normal.t perl-5.10.0/lib/encoding/warnings/t/4-lexical.t perl-5.10.0/lib/exceptions.pl perl-5.10.0/lib/fastcwd.pl perl-5.10.0/lib/feature.pm perl-5.10.0/lib/feature.t perl-5.10.0/lib/h2xs.t perl-5.10.0/lib/filetest.pm perl-5.10.0/lib/filetest.t perl-5.10.0/lib/find.pl perl-5.10.0/lib/finddepth.pl perl-5.10.0/lib/flush.pl perl-5.10.0/lib/getcwd.pl perl-5.10.0/lib/getopt.pl perl-5.10.0/lib/getopts.pl perl-5.10.0/lib/h2ph.t perl-5.10.0/lib/mro.pm perl-5.10.0/lib/hostname.pl perl-5.10.0/lib/if.pm perl-5.10.0/lib/if.t perl-5.10.0/lib/importenv.pl perl-5.10.0/lib/integer.pm perl-5.10.0/lib/integer.t perl-5.10.0/lib/less.pm perl-5.10.0/lib/less.t perl-5.10.0/lib/lib.t perl-5.10.0/lib/lib_pm.PL perl-5.10.0/lib/locale.pm perl-5.10.0/lib/locale.t perl-5.10.0/lib/look.pl perl-5.10.0/lib/newgetopt.pl perl-5.10.0/lib/open.pm perl-5.10.0/lib/open.t perl-5.10.0/lib/open2.pl perl-5.10.0/lib/open3.pl perl-5.10.0/lib/overload.pm perl-5.10.0/lib/overload.t perl-5.10.0/lib/perl5db.pl perl-5.10.0/lib/perl5db.t perl-5.10.0/lib/perl5db/ perl-5.10.0/lib/perl5db/t/ perl-5.10.0/lib/perl5db/t/eval-line-bug perl-5.10.0/lib/pwd.pl perl-5.10.0/lib/shellwords.pl perl-5.10.0/lib/sigtrap.pm perl-5.10.0/lib/sigtrap.t perl-5.10.0/lib/sort.pm perl-5.10.0/lib/sort.t perl-5.10.0/lib/stat.pl perl-5.10.0/lib/strict.pm perl-5.10.0/lib/strict.t perl-5.10.0/lib/subs.pm perl-5.10.0/lib/subs.t perl-5.10.0/lib/syslog.pl perl-5.10.0/lib/tainted.pl perl-5.10.0/lib/termcap.pl perl-5.10.0/lib/timelocal.pl perl-5.10.0/lib/unicore/ perl-5.10.0/lib/unicore/ArabicShaping.txt perl-5.10.0/lib/unicore/BidiMirroring.txt perl-5.10.0/lib/unicore/Blocks.txt perl-5.10.0/lib/unicore/CaseFolding.txt perl-5.10.0/lib/unicore/CompositionExclusions.txt perl-5.10.0/lib/unicore/EastAsianWidth.txt perl-5.10.0/lib/unicore/HangulSyllableType.txt perl-5.10.0/lib/unicore/Index.txt perl-5.10.0/lib/unicore/Jamo.txt perl-5.10.0/lib/unicore/LineBreak.txt perl-5.10.0/lib/unicore/Makefile perl-5.10.0/lib/unicore/NamedSequences.txt perl-5.10.0/lib/unicore/NamedSqProv.txt perl-5.10.0/lib/unicore/NamesList.txt perl-5.10.0/lib/unicore/NormalizationCorrections.txt perl-5.10.0/lib/unicore/PropList.txt perl-5.10.0/lib/unicore/PropValueAliases.txt perl-5.10.0/lib/unicore/PropertyAliases.txt perl-5.10.0/lib/unicore/README.perl perl-5.10.0/lib/unicore/ReadMe.txt perl-5.10.0/lib/unicore/Scripts.txt perl-5.10.0/lib/unicore/SpecialCasing.txt perl-5.10.0/lib/unicore/StandardizedVariants.txt perl-5.10.0/lib/unicore/UnicodeData.txt perl-5.10.0/lib/unicore/mktables perl-5.10.0/lib/unicore/mktables.lst perl-5.10.0/lib/unicore/version perl-5.10.0/lib/utf8.pm perl-5.10.0/lib/utf8.t perl-5.10.0/lib/utf8_heavy.pl perl-5.10.0/lib/validate.pl perl-5.10.0/lib/vars.pm perl-5.10.0/lib/vars.t perl-5.10.0/lib/vars_carp.t perl-5.10.0/lib/version.pm perl-5.10.0/lib/version.pod perl-5.10.0/lib/version.t perl-5.10.0/lib/vmsish.pm perl-5.10.0/lib/vmsish.t perl-5.10.0/lib/warnings.pm perl-5.10.0/lib/warnings.t perl-5.10.0/lib/warnings/ perl-5.10.0/lib/warnings/register.pm perl-5.10.0/lib/CPANPLUS.pm perl-5.10.0/lib/CPANPLUS/ perl-5.10.0/lib/CPANPLUS/Backend.pm perl-5.10.0/lib/CPANPLUS/Backend/ perl-5.10.0/lib/CPANPLUS/Backend/RV.pm perl-5.10.0/lib/CPANPLUS/Config.pm perl-5.10.0/lib/CPANPLUS/Configure.pm perl-5.10.0/lib/CPANPLUS/Configure/ perl-5.10.0/lib/CPANPLUS/Configure/Setup.pm perl-5.10.0/lib/CPANPLUS/Dist.pm perl-5.10.0/lib/CPANPLUS/Dist/ perl-5.10.0/lib/CPANPLUS/Dist/Base.pm perl-5.10.0/lib/CPANPLUS/Dist/MM.pm perl-5.10.0/lib/CPANPLUS/Dist/Sample.pm perl-5.10.0/lib/CPANPLUS/Dist/Build/ perl-5.10.0/lib/CPANPLUS/Dist/Build/Constants.pm perl-5.10.0/lib/CPANPLUS/Dist/Build/t/ perl-5.10.0/lib/CPANPLUS/Dist/Build/t/01_CPANPLUS-Dist-Build-Constants.t perl-5.10.0/lib/CPANPLUS/Dist/Build/t/02_CPANPLUS-Dist-Build.t perl-5.10.0/lib/CPANPLUS/Dist/Build/t/inc/ perl-5.10.0/lib/CPANPLUS/Dist/Build/t/inc/conf.pl perl-5.10.0/lib/CPANPLUS/Dist/Build/t/src/ perl-5.10.0/lib/CPANPLUS/Dist/Build/t/src/noxs/ perl-5.10.0/lib/CPANPLUS/Dist/Build/t/src/noxs/Foo-Bar-0.01.tar.gz.packed perl-5.10.0/lib/CPANPLUS/Dist/Build/t/src/xs/ perl-5.10.0/lib/CPANPLUS/Dist/Build/t/src/xs/Foo-Bar-0.01.tar.gz.packed perl-5.10.0/lib/CPANPLUS/Dist/Build.pm perl-5.10.0/lib/CPANPLUS/Error.pm perl-5.10.0/lib/CPANPLUS/FAQ.pod perl-5.10.0/lib/CPANPLUS/Hacking.pod perl-5.10.0/lib/CPANPLUS/Internals.pm perl-5.10.0/lib/CPANPLUS/Internals/ perl-5.10.0/lib/CPANPLUS/Internals/Constants.pm perl-5.10.0/lib/CPANPLUS/Internals/Constants/ perl-5.10.0/lib/CPANPLUS/Internals/Constants/Report.pm perl-5.10.0/lib/CPANPLUS/Internals/Extract.pm perl-5.10.0/lib/CPANPLUS/Internals/Fetch.pm perl-5.10.0/lib/CPANPLUS/Internals/Report.pm perl-5.10.0/lib/CPANPLUS/Internals/Search.pm perl-5.10.0/lib/CPANPLUS/Internals/Source.pm perl-5.10.0/lib/CPANPLUS/Internals/Utils.pm perl-5.10.0/lib/CPANPLUS/Internals/Utils/ perl-5.10.0/lib/CPANPLUS/Internals/Utils/Autoflush.pm perl-5.10.0/lib/CPANPLUS/Module.pm perl-5.10.0/lib/CPANPLUS/Module/ perl-5.10.0/lib/CPANPLUS/Module/Author.pm perl-5.10.0/lib/CPANPLUS/Module/Author/ perl-5.10.0/lib/CPANPLUS/Module/Author/Fake.pm perl-5.10.0/lib/CPANPLUS/Module/Checksums.pm perl-5.10.0/lib/CPANPLUS/Module/Fake.pm perl-5.10.0/lib/CPANPLUS/Module/Signature.pm perl-5.10.0/lib/CPANPLUS/Selfupdate.pm perl-5.10.0/lib/CPANPLUS/Shell.pm perl-5.10.0/lib/CPANPLUS/Shell/ perl-5.10.0/lib/CPANPLUS/Shell/Classic.pm perl-5.10.0/lib/CPANPLUS/Shell/Default.pm perl-5.10.0/lib/CPANPLUS/Shell/Default/ perl-5.10.0/lib/CPANPLUS/Shell/Default/Plugins/ perl-5.10.0/lib/CPANPLUS/Shell/Default/Plugins/HOWTO.pod perl-5.10.0/lib/CPANPLUS/Shell/Default/Plugins/Remote.pm perl-5.10.0/lib/CPANPLUS/Shell/Default/Plugins/Source.pm perl-5.10.0/lib/CPANPLUS/Shell/Default/Plugins/CustomSource.pm perl-5.10.0/lib/CPANPLUS/bin/ perl-5.10.0/lib/CPANPLUS/bin/cpan2dist perl-5.10.0/lib/CPANPLUS/bin/cpanp perl-5.10.0/lib/CPANPLUS/bin/cpanp-run-perl perl-5.10.0/lib/CPANPLUS/inc.pm perl-5.10.0/lib/CPANPLUS/t/ perl-5.10.0/lib/CPANPLUS/t/00_CPANPLUS-Inc.t perl-5.10.0/lib/CPANPLUS/t/00_CPANPLUS-Internals-Utils.t perl-5.10.0/lib/CPANPLUS/t/01_CPANPLUS-Configure.t perl-5.10.0/lib/CPANPLUS/t/02_CPANPLUS-Internals.t perl-5.10.0/lib/CPANPLUS/t/03_CPANPLUS-Internals-Source.t perl-5.10.0/lib/CPANPLUS/t/04_CPANPLUS-Module.t perl-5.10.0/lib/CPANPLUS/t/05_CPANPLUS-Internals-Fetch.t perl-5.10.0/lib/CPANPLUS/t/06_CPANPLUS-Internals-Constants.t perl-5.10.0/lib/CPANPLUS/t/07_CPANPLUS-Internals-Extract.t perl-5.10.0/lib/CPANPLUS/t/08_CPANPLUS-Backend.t perl-5.10.0/lib/CPANPLUS/t/09_CPANPLUS-Internals-Search.t perl-5.10.0/lib/CPANPLUS/t/10_CPANPLUS-Error.t perl-5.10.0/lib/CPANPLUS/t/19_CPANPLUS-Dist.t perl-5.10.0/lib/CPANPLUS/t/20_CPANPLUS-Dist-MM.t perl-5.10.0/lib/CPANPLUS/t/21_CPANPLUS-Dist-No-Build.t perl-5.10.0/lib/CPANPLUS/t/30_CPANPLUS-Internals-Selfupdate.t perl-5.10.0/lib/CPANPLUS/t/40_CPANPLUS-Internals-Report.t perl-5.10.0/lib/CPANPLUS/t/dummy-CPAN/ perl-5.10.0/lib/CPANPLUS/t/dummy-CPAN/authors/ perl-5.10.0/lib/CPANPLUS/t/dummy-CPAN/authors/01mailrc.txt.gz.packed perl-5.10.0/lib/CPANPLUS/t/dummy-CPAN/authors/id/ perl-5.10.0/lib/CPANPLUS/t/dummy-CPAN/authors/id/MBXS/ perl-5.10.0/lib/CPANPLUS/t/dummy-CPAN/authors/id/MBXS/CHECKSUMS perl-5.10.0/lib/CPANPLUS/t/dummy-CPAN/authors/id/MBXS/Foo-Bar-0.01.readme perl-5.10.0/lib/CPANPLUS/t/dummy-CPAN/authors/id/MBXS/Foo-Bar-0.01.tar.gz.packed perl-5.10.0/lib/CPANPLUS/t/dummy-CPAN/authors/id/EUNOXS/ perl-5.10.0/lib/CPANPLUS/t/dummy-CPAN/authors/id/EUNOXS/Bundle-Foo-Bar-0.01.tar.gz.packed perl-5.10.0/lib/CPANPLUS/t/dummy-CPAN/authors/id/EUNOXS/CHECKSUMS perl-5.10.0/lib/CPANPLUS/t/dummy-CPAN/authors/id/EUNOXS/Foo-Bar-0.01.readme perl-5.10.0/lib/CPANPLUS/t/dummy-CPAN/authors/id/EUNOXS/Foo-Bar-0.01.tar.gz.packed perl-5.10.0/lib/CPANPLUS/t/dummy-CPAN/authors/id/EUNOXS/perl5.005_03.tar.gz.packed perl-5.10.0/lib/CPANPLUS/t/dummy-CPAN/authors/id/EUXS/ perl-5.10.0/lib/CPANPLUS/t/dummy-CPAN/authors/id/EUXS/CHECKSUMS perl-5.10.0/lib/CPANPLUS/t/dummy-CPAN/authors/id/EUXS/Foo-Bar-0.01.readme perl-5.10.0/lib/CPANPLUS/t/dummy-CPAN/authors/id/EUXS/Foo-Bar-0.01.tar.gz.packed perl-5.10.0/lib/CPANPLUS/t/dummy-CPAN/authors/id/MBNOXS/ perl-5.10.0/lib/CPANPLUS/t/dummy-CPAN/authors/id/MBNOXS/CHECKSUMS perl-5.10.0/lib/CPANPLUS/t/dummy-CPAN/authors/id/MBNOXS/Foo-Bar-0.01.readme perl-5.10.0/lib/CPANPLUS/t/dummy-CPAN/authors/id/MBNOXS/Foo-Bar-0.01.tar.gz.packed perl-5.10.0/lib/CPANPLUS/t/dummy-CPAN/modules/ perl-5.10.0/lib/CPANPLUS/t/dummy-CPAN/modules/02packages.details.txt.gz.packed perl-5.10.0/lib/CPANPLUS/t/dummy-CPAN/modules/03modlist.data.gz.packed perl-5.10.0/lib/CPANPLUS/t/inc/ perl-5.10.0/lib/CPANPLUS/t/inc/conf.pl perl-5.10.0/lib/CPANPLUS/t/15_CPANPLUS-Shell.t perl-5.10.0/lib/Thread.t perl-5.10.0/lib/overload64.t perl-5.10.0/locale.c perl-5.10.0/mad/ perl-5.10.0/mad/P5AST.pm perl-5.10.0/mad/P5re.pm perl-5.10.0/mad/PLXML.pm perl-5.10.0/mad/Nomad.pm perl-5.10.0/mad/p55 perl-5.10.0/mad/t/ perl-5.10.0/mad/t/p55.t perl-5.10.0/madly.c perl-5.10.0/makeaperl.SH perl-5.10.0/makedef.pl perl-5.10.0/makedepend.SH perl-5.10.0/makedir.SH perl-5.10.0/malloc.c perl-5.10.0/malloc_ctl.h perl-5.10.0/mathoms.c perl-5.10.0/mg.c perl-5.10.0/mg.h perl-5.10.0/minimod.pl perl-5.10.0/miniperlmain.c perl-5.10.0/mint/ perl-5.10.0/mint/Makefile perl-5.10.0/mint/README perl-5.10.0/mint/errno.h perl-5.10.0/mint/pwd.c perl-5.10.0/mint/stdio.h perl-5.10.0/mint/sys/ perl-5.10.0/mint/sys/time.h perl-5.10.0/mint/time.h perl-5.10.0/mkppport perl-5.10.0/mkppport.lst perl-5.10.0/mpeix/ perl-5.10.0/mpeix/mpeix.c perl-5.10.0/mpeix/mpeix_setjmp.c perl-5.10.0/mpeix/mpeixish.h perl-5.10.0/mpeix/nm perl-5.10.0/mpeix/relink perl-5.10.0/myconfig.SH perl-5.10.0/nostdio.h perl-5.10.0/numeric.c perl-5.10.0/op.c perl-5.10.0/op.h perl-5.10.0/opcode.h perl-5.10.0/opcode.pl perl-5.10.0/opnames.h perl-5.10.0/os2/ perl-5.10.0/os2/Changes perl-5.10.0/os2/Makefile.SHs perl-5.10.0/os2/OS2/ perl-5.10.0/os2/OS2/ExtAttr/ perl-5.10.0/os2/OS2/ExtAttr/Changes perl-5.10.0/os2/OS2/ExtAttr/ExtAttr.pm perl-5.10.0/os2/OS2/ExtAttr/ExtAttr.xs perl-5.10.0/os2/OS2/ExtAttr/MANIFEST perl-5.10.0/os2/OS2/ExtAttr/Makefile.PL perl-5.10.0/os2/OS2/ExtAttr/myea.h perl-5.10.0/os2/OS2/ExtAttr/t/ perl-5.10.0/os2/OS2/ExtAttr/t/os2_ea.t perl-5.10.0/os2/OS2/ExtAttr/typemap perl-5.10.0/os2/OS2/PrfDB/ perl-5.10.0/os2/OS2/PrfDB/Changes perl-5.10.0/os2/OS2/PrfDB/MANIFEST perl-5.10.0/os2/OS2/PrfDB/Makefile.PL perl-5.10.0/os2/OS2/PrfDB/PrfDB.pm perl-5.10.0/os2/OS2/PrfDB/PrfDB.xs perl-5.10.0/os2/OS2/PrfDB/t/ perl-5.10.0/os2/OS2/PrfDB/t/os2_prfdb.t perl-5.10.0/os2/OS2/Process/ perl-5.10.0/os2/OS2/Process/MANIFEST perl-5.10.0/os2/OS2/Process/Makefile.PL perl-5.10.0/os2/OS2/Process/Process.pm perl-5.10.0/os2/OS2/Process/Process.xs perl-5.10.0/os2/OS2/Process/t/ perl-5.10.0/os2/OS2/Process/t/os2_atoms.t perl-5.10.0/os2/OS2/Process/t/os2_clipboard.t perl-5.10.0/os2/OS2/Process/t/os2_process.t perl-5.10.0/os2/OS2/Process/t/os2_process_kid.t perl-5.10.0/os2/OS2/Process/t/os2_process_text.t perl-5.10.0/os2/OS2/REXX/ perl-5.10.0/os2/OS2/REXX/Changes perl-5.10.0/os2/OS2/REXX/DLL/ perl-5.10.0/os2/OS2/REXX/DLL/Changes perl-5.10.0/os2/OS2/REXX/DLL/DLL.pm perl-5.10.0/os2/OS2/REXX/DLL/DLL.xs perl-5.10.0/os2/OS2/REXX/DLL/MANIFEST perl-5.10.0/os2/OS2/REXX/DLL/Makefile.PL perl-5.10.0/os2/OS2/REXX/MANIFEST perl-5.10.0/os2/OS2/REXX/Makefile.PL perl-5.10.0/os2/OS2/REXX/REXX.pm perl-5.10.0/os2/OS2/REXX/REXX.xs perl-5.10.0/os2/OS2/REXX/t/ perl-5.10.0/os2/OS2/REXX/t/rx_cmprt.t perl-5.10.0/os2/OS2/REXX/t/rx_dllld.t perl-5.10.0/os2/OS2/REXX/t/rx_emxrv.t perl-5.10.0/os2/OS2/REXX/t/rx_objcall.t perl-5.10.0/os2/OS2/REXX/t/rx_sql.test perl-5.10.0/os2/OS2/REXX/t/rx_tiesql.test perl-5.10.0/os2/OS2/REXX/t/rx_tievar.t perl-5.10.0/os2/OS2/REXX/t/rx_tieydb.t perl-5.10.0/os2/OS2/REXX/t/rx_varset.t perl-5.10.0/os2/OS2/REXX/t/rx_vrexx.t perl-5.10.0/os2/OS2/typemap perl-5.10.0/os2/diff.configure perl-5.10.0/os2/dl_os2.c perl-5.10.0/os2/dlfcn.h perl-5.10.0/os2/os2.c perl-5.10.0/os2/os2.sym perl-5.10.0/os2/os2_base.t perl-5.10.0/os2/os2_pipe.t perl-5.10.0/os2/os2add.sym perl-5.10.0/os2/os2ish.h perl-5.10.0/os2/os2thread.h perl-5.10.0/os2/perl2cmd.pl perl-5.10.0/os2/perlrexx.c perl-5.10.0/os2/perlrexx.cmd perl-5.10.0/overload.h perl-5.10.0/overload.pl perl-5.10.0/pad.c perl-5.10.0/pad.h perl-5.10.0/parser.h perl-5.10.0/patchlevel.h perl-5.10.0/perl.c perl-5.10.0/perl.h perl-5.10.0/perl_keyword.pl perl-5.10.0/perlapi.c perl-5.10.0/perlapi.h perl-5.10.0/perlio.c perl-5.10.0/perlio.h perl-5.10.0/perlio.sym perl-5.10.0/perliol.h perl-5.10.0/perlsdio.h perl-5.10.0/perlsfio.h perl-5.10.0/perlsh perl-5.10.0/perlvars.h perl-5.10.0/perly.act perl-5.10.0/perly.c perl-5.10.0/perly.h perl-5.10.0/perly.tab perl-5.10.0/perly.y perl-5.10.0/plan9/ perl-5.10.0/plan9/aperl perl-5.10.0/plan9/arpa/ perl-5.10.0/plan9/arpa/inet.h perl-5.10.0/plan9/buildinfo perl-5.10.0/plan9/config.plan9 perl-5.10.0/plan9/config_h.sample perl-5.10.0/plan9/config_sh.sample perl-5.10.0/plan9/exclude perl-5.10.0/plan9/fndvers perl-5.10.0/plan9/genconfig.pl perl-5.10.0/plan9/mkfile perl-5.10.0/plan9/myconfig.plan9 perl-5.10.0/plan9/plan9.c perl-5.10.0/plan9/plan9ish.h perl-5.10.0/plan9/setup.rc perl-5.10.0/plan9/versnum perl-5.10.0/pod.lst perl-5.10.0/pod/ perl-5.10.0/pod/Makefile.SH perl-5.10.0/pod/buildtoc perl-5.10.0/pod/checkpods.PL perl-5.10.0/pod/perl.pod perl-5.10.0/pod/perl5004delta.pod perl-5.10.0/pod/perl5005delta.pod perl-5.10.0/pod/perl561delta.pod perl-5.10.0/pod/perl56delta.pod perl-5.10.0/pod/perl570delta.pod perl-5.10.0/pod/perl571delta.pod perl-5.10.0/pod/perl572delta.pod perl-5.10.0/pod/perl573delta.pod perl-5.10.0/pod/perl581delta.pod perl-5.10.0/pod/perl582delta.pod perl-5.10.0/pod/perl583delta.pod perl-5.10.0/pod/perl584delta.pod perl-5.10.0/pod/perl585delta.pod perl-5.10.0/pod/perl586delta.pod perl-5.10.0/pod/perl587delta.pod perl-5.10.0/pod/perl588delta.pod perl-5.10.0/pod/perl58delta.pod perl-5.10.0/pod/perl590delta.pod perl-5.10.0/pod/perl591delta.pod perl-5.10.0/pod/perl592delta.pod perl-5.10.0/pod/perl593delta.pod perl-5.10.0/pod/perl594delta.pod perl-5.10.0/pod/perl595delta.pod perl-5.10.0/pod/perlapi.pod perl-5.10.0/pod/perlapio.pod perl-5.10.0/pod/perlartistic.pod perl-5.10.0/pod/perlbook.pod perl-5.10.0/pod/perlboot.pod perl-5.10.0/pod/perlbot.pod perl-5.10.0/pod/perlcall.pod perl-5.10.0/pod/perlcheat.pod perl-5.10.0/pod/perlclib.pod perl-5.10.0/pod/perlcompile.pod perl-5.10.0/pod/perldata.pod perl-5.10.0/pod/perldbmfilter.pod perl-5.10.0/pod/perldebguts.pod perl-5.10.0/pod/perldebtut.pod perl-5.10.0/pod/perldebug.pod perl-5.10.0/pod/perldiag.pod perl-5.10.0/pod/perldoc.pod perl-5.10.0/pod/perldsc.pod perl-5.10.0/pod/perlebcdic.pod perl-5.10.0/pod/perlembed.pod perl-5.10.0/pod/perlfaq.pod perl-5.10.0/pod/perlfaq1.pod perl-5.10.0/pod/perlfaq2.pod perl-5.10.0/pod/perlfaq3.pod perl-5.10.0/pod/perlfaq4.pod perl-5.10.0/pod/perlfaq5.pod perl-5.10.0/pod/perlfaq6.pod perl-5.10.0/pod/perlfaq7.pod perl-5.10.0/pod/perlfaq8.pod perl-5.10.0/pod/perlfaq9.pod perl-5.10.0/pod/perlfilter.pod perl-5.10.0/pod/perlfork.pod perl-5.10.0/pod/perlform.pod perl-5.10.0/pod/perlfunc.pod perl-5.10.0/pod/perlglossary.pod perl-5.10.0/pod/perlgpl.pod perl-5.10.0/pod/perlguts.pod perl-5.10.0/pod/perlhack.pod perl-5.10.0/pod/perlhist.pod perl-5.10.0/pod/perlintern.pod perl-5.10.0/pod/perlintro.pod perl-5.10.0/pod/perliol.pod perl-5.10.0/pod/perlipc.pod perl-5.10.0/pod/perllexwarn.pod perl-5.10.0/pod/perllocale.pod perl-5.10.0/pod/perllol.pod perl-5.10.0/pod/perlmod.pod perl-5.10.0/pod/perlmodinstall.pod perl-5.10.0/pod/perlmodlib.PL perl-5.10.0/pod/perlmodlib.pod perl-5.10.0/pod/perlmodstyle.pod perl-5.10.0/pod/perlnewmod.pod perl-5.10.0/pod/perlnumber.pod perl-5.10.0/pod/perlobj.pod perl-5.10.0/pod/perlop.pod perl-5.10.0/pod/perlopentut.pod perl-5.10.0/pod/perlothrtut.pod perl-5.10.0/pod/perlpacktut.pod perl-5.10.0/pod/perlpod.pod perl-5.10.0/pod/perlpodspec.pod perl-5.10.0/pod/perlport.pod perl-5.10.0/pod/perlpragma.pod perl-5.10.0/pod/perlre.pod perl-5.10.0/pod/perlref.pod perl-5.10.0/pod/perlreftut.pod perl-5.10.0/pod/perlreguts.pod perl-5.10.0/pod/perlrequick.pod perl-5.10.0/pod/perlreref.pod perl-5.10.0/pod/perlretut.pod perl-5.10.0/pod/perlrun.pod perl-5.10.0/pod/perlsec.pod perl-5.10.0/pod/perlstyle.pod perl-5.10.0/pod/perlsub.pod perl-5.10.0/pod/perlsyn.pod perl-5.10.0/pod/perlthrtut.pod perl-5.10.0/pod/perltie.pod perl-5.10.0/pod/perltoc.pod perl-5.10.0/pod/perltodo.pod perl-5.10.0/pod/perltooc.pod perl-5.10.0/pod/perltoot.pod perl-5.10.0/pod/perltrap.pod perl-5.10.0/pod/perlunicode.pod perl-5.10.0/pod/perluniintro.pod perl-5.10.0/pod/perlunitut.pod perl-5.10.0/pod/perlutil.pod perl-5.10.0/pod/perlvar.pod perl-5.10.0/pod/perlxs.pod perl-5.10.0/pod/perlxstut.pod perl-5.10.0/pod/pod2html.PL perl-5.10.0/pod/pod2latex.PL perl-5.10.0/pod/pod2man.PL perl-5.10.0/pod/pod2text.PL perl-5.10.0/pod/pod2usage.PL perl-5.10.0/pod/podchecker.PL perl-5.10.0/pod/podselect.PL perl-5.10.0/pod/roffitall perl-5.10.0/pod/rofftoc perl-5.10.0/pod/splitman perl-5.10.0/pod/splitpod perl-5.10.0/pod/perlunifaq.pod perl-5.10.0/pod/perlreapi.pod perl-5.10.0/pod/perlrebackslash.pod perl-5.10.0/pod/perlrecharclass.pod perl-5.10.0/pod/perlcommunity.pod perl-5.10.0/pod/perl5100delta.pod perl-5.10.0/pp.c perl-5.10.0/pp.h perl-5.10.0/pp.sym perl-5.10.0/pp_ctl.c perl-5.10.0/pp_hot.c perl-5.10.0/regcomp.c perl-5.10.0/proto.h perl-5.10.0/pp_sort.c perl-5.10.0/pp_sys.c perl-5.10.0/reentr.h perl-5.10.0/qnx/ perl-5.10.0/qnx/ar perl-5.10.0/qnx/cpp perl-5.10.0/qnx/qnx.c perl-5.10.0/reentr.c perl-5.10.0/mro.c perl-5.10.0/reentr.pl perl-5.10.0/sv.c perl-5.10.0/regcomp.h perl-5.10.0/regcomp.pl perl-5.10.0/regcomp.sym perl-5.10.0/regen.pl perl-5.10.0/regen_lib.pl perl-5.10.0/regen_perly.pl perl-5.10.0/regexec.c perl-5.10.0/regexp.h perl-5.10.0/regnodes.h perl-5.10.0/run.c perl-5.10.0/scope.c perl-5.10.0/scope.h perl-5.10.0/sv.h perl-5.10.0/symbian/ perl-5.10.0/symbian/PerlApp.cpp perl-5.10.0/symbian/PerlApp.h perl-5.10.0/symbian/PerlApp.hrh perl-5.10.0/symbian/PerlAppAif.rss perl-5.10.0/symbian/PerlBase.cpp perl-5.10.0/symbian/PerlBase.h perl-5.10.0/symbian/PerlBase.pod perl-5.10.0/symbian/PerlRecog.cpp perl-5.10.0/symbian/PerlRecog.mmp perl-5.10.0/symbian/PerlUi.cpp perl-5.10.0/symbian/PerlUi.h perl-5.10.0/symbian/PerlUi.hrh perl-5.10.0/symbian/PerlUiS60.rss perl-5.10.0/symbian/PerlUiS80.rss perl-5.10.0/symbian/PerlUiS90.rss perl-5.10.0/symbian/PerlUiUIQ.rss perl-5.10.0/symbian/PerlUtil.cpp perl-5.10.0/symbian/PerlUtil.h perl-5.10.0/symbian/PerlUtil.pod perl-5.10.0/symbian/README perl-5.10.0/symbian/TODO perl-5.10.0/symbian/bld.inf perl-5.10.0/symbian/config.pl perl-5.10.0/symbian/config.sh perl-5.10.0/symbian/cwd.pl perl-5.10.0/symbian/demo_pl perl-5.10.0/symbian/ext/ perl-5.10.0/symbian/ext/Moped/ perl-5.10.0/symbian/ext/Moped/Msg/ perl-5.10.0/symbian/ext/Moped/Msg/Msg.mmp perl-5.10.0/symbian/ext/Moped/Msg/Msg.pkg perl-5.10.0/symbian/ext/Moped/Msg/Msg.pm perl-5.10.0/symbian/ext/Moped/Msg/Msg.xs perl-5.10.0/symbian/ext/Moped/Msg/README perl-5.10.0/symbian/ext/Moped/Msg/bld.inf perl-5.10.0/symbian/ext/Moped/Msg/location.pl perl-5.10.0/symbian/find_writeable_data.pl perl-5.10.0/symbian/hexdump.pl perl-5.10.0/symbian/install.cfg perl-5.10.0/symbian/makesis.pl perl-5.10.0/symbian/port.pl perl-5.10.0/symbian/sanity.pl perl-5.10.0/symbian/sdk.pl perl-5.10.0/symbian/sisify.pl perl-5.10.0/symbian/symbian_dll.cpp perl-5.10.0/symbian/symbian_proto.h perl-5.10.0/symbian/symbian_stubs.c perl-5.10.0/symbian/symbian_stubs.h perl-5.10.0/symbian/symbian_utils.cpp perl-5.10.0/symbian/symbianish.h perl-5.10.0/symbian/uid.pl perl-5.10.0/symbian/version.pl perl-5.10.0/symbian/xsbuild.pl perl-5.10.0/t/ perl-5.10.0/t/README perl-5.10.0/t/TEST perl-5.10.0/t/TestInit.pm perl-5.10.0/t/base/ perl-5.10.0/t/base/cond.t perl-5.10.0/t/base/if.t perl-5.10.0/t/base/lex.t perl-5.10.0/t/base/num.t perl-5.10.0/t/base/pat.t perl-5.10.0/t/base/rs.t perl-5.10.0/t/base/term.t perl-5.10.0/t/cmd/ perl-5.10.0/t/cmd/elsif.t perl-5.10.0/t/cmd/for.t perl-5.10.0/t/cmd/mod.t perl-5.10.0/t/cmd/subval.t perl-5.10.0/t/cmd/switch.t perl-5.10.0/t/cmd/while.t perl-5.10.0/t/comp/ perl-5.10.0/t/comp/parser.t perl-5.10.0/t/comp/use.t perl-5.10.0/t/comp/bproto.t perl-5.10.0/t/comp/cmdopt.t perl-5.10.0/t/comp/colon.t perl-5.10.0/t/comp/cpp.aux perl-5.10.0/t/comp/cpp.t perl-5.10.0/t/comp/decl.t perl-5.10.0/t/comp/fold.t perl-5.10.0/t/comp/hints.t perl-5.10.0/t/comp/multiline.t perl-5.10.0/t/comp/opsubs.t perl-5.10.0/t/comp/our.t perl-5.10.0/t/comp/package.t perl-5.10.0/t/comp/proto.t perl-5.10.0/t/comp/redef.t perl-5.10.0/t/comp/require.t perl-5.10.0/t/comp/script.t perl-5.10.0/t/comp/term.t perl-5.10.0/t/comp/uproto.t perl-5.10.0/t/comp/utf.t perl-5.10.0/t/harness perl-5.10.0/t/io/ perl-5.10.0/t/io/argv.t perl-5.10.0/t/io/binmode.t perl-5.10.0/t/io/crlf.t perl-5.10.0/t/io/crlf_through.t perl-5.10.0/t/io/dup.t perl-5.10.0/t/io/fflush.t perl-5.10.0/t/io/fs.t perl-5.10.0/t/io/inplace.t perl-5.10.0/t/io/iprefix.t perl-5.10.0/t/io/layers.t perl-5.10.0/t/io/nargv.t perl-5.10.0/t/io/open.t perl-5.10.0/t/io/openpid.t perl-5.10.0/t/io/pipe.t perl-5.10.0/t/io/print.t perl-5.10.0/t/io/read.t perl-5.10.0/t/io/say.t perl-5.10.0/t/io/tell.t perl-5.10.0/t/io/through.t perl-5.10.0/t/io/utf8.t perl-5.10.0/t/japh/ perl-5.10.0/t/japh/abigail.t perl-5.10.0/t/lib/ perl-5.10.0/t/lib/1_compile.t perl-5.10.0/t/lib/Cname.pm perl-5.10.0/t/lib/Dev/ perl-5.10.0/t/lib/Dev/Null.pm perl-5.10.0/t/lib/Devel/ perl-5.10.0/t/lib/Devel/switchd.pm perl-5.10.0/t/lib/Filter/ perl-5.10.0/t/lib/Filter/Simple/ perl-5.10.0/t/lib/Filter/Simple/ExportTest.pm perl-5.10.0/t/lib/Filter/Simple/FilterOnlyTest.pm perl-5.10.0/t/lib/Filter/Simple/FilterTest.pm perl-5.10.0/t/lib/Filter/Simple/ImportTest.pm perl-5.10.0/t/lib/MakeMaker/ perl-5.10.0/t/lib/MakeMaker/Test/ perl-5.10.0/t/lib/MakeMaker/Test/Setup/ perl-5.10.0/t/lib/MakeMaker/Test/Setup/BFD.pm perl-5.10.0/t/lib/MakeMaker/Test/Setup/PL_FILES.pm perl-5.10.0/t/lib/MakeMaker/Test/Setup/Problem.pm perl-5.10.0/t/lib/MakeMaker/Test/Setup/Recurs.pm perl-5.10.0/t/lib/MakeMaker/Test/Setup/XS.pm perl-5.10.0/t/lib/MakeMaker/Test/Utils.pm perl-5.10.0/t/lib/Math/ perl-5.10.0/t/lib/Math/BigFloat/ perl-5.10.0/t/lib/Math/BigFloat/Subclass.pm perl-5.10.0/t/lib/Math/BigInt/ perl-5.10.0/t/lib/Math/BigInt/BareCalc.pm perl-5.10.0/t/lib/Math/BigInt/Scalar.pm perl-5.10.0/t/lib/Math/BigInt/Subclass.pm perl-5.10.0/t/lib/Math/BigRat/ perl-5.10.0/t/lib/Math/BigRat/Test.pm perl-5.10.0/t/lib/NoExporter.pm perl-5.10.0/t/lib/Test/ perl-5.10.0/t/lib/Test/Simple/ perl-5.10.0/t/lib/Test/Simple/Catch.pm perl-5.10.0/t/lib/Test/Simple/sample_tests/ perl-5.10.0/t/lib/Test/Simple/sample_tests/death.plx perl-5.10.0/t/lib/Test/Simple/sample_tests/death_in_eval.plx perl-5.10.0/t/lib/Test/Simple/sample_tests/exit.plx perl-5.10.0/t/lib/Test/Simple/sample_tests/extras.plx perl-5.10.0/t/lib/Test/Simple/sample_tests/five_fail.plx perl-5.10.0/t/lib/Test/Simple/sample_tests/last_minute_death.plx perl-5.10.0/t/lib/Test/Simple/sample_tests/one_fail.plx perl-5.10.0/t/lib/Test/Simple/sample_tests/pre_plan_death.plx perl-5.10.0/t/lib/Test/Simple/sample_tests/require.plx perl-5.10.0/t/lib/Test/Simple/sample_tests/success.plx perl-5.10.0/t/lib/Test/Simple/sample_tests/too_few.plx perl-5.10.0/t/lib/Test/Simple/sample_tests/too_few_fail.plx perl-5.10.0/t/lib/Test/Simple/sample_tests/two_fail.plx perl-5.10.0/t/lib/TieIn.pm perl-5.10.0/t/lib/TieOut.pm perl-5.10.0/t/lib/common.pl perl-5.10.0/t/lib/commonsense.t perl-5.10.0/t/lib/compmod.pl perl-5.10.0/t/lib/compress/ perl-5.10.0/t/lib/compress/CompTestUtils.pm perl-5.10.0/t/lib/compress/any.pl perl-5.10.0/t/lib/compress/anyunc.pl perl-5.10.0/t/lib/compress/destroy.pl perl-5.10.0/t/lib/compress/generic.pl perl-5.10.0/t/lib/compress/merge.pl perl-5.10.0/t/lib/compress/multi.pl perl-5.10.0/t/lib/compress/newtied.pl perl-5.10.0/t/lib/compress/oneshot.pl perl-5.10.0/t/lib/compress/prime.pl perl-5.10.0/t/lib/compress/tied.pl perl-5.10.0/t/lib/compress/truncate.pl perl-5.10.0/t/lib/compress/zlib-generic.pl perl-5.10.0/t/lib/compress/encode.pl perl-5.10.0/t/lib/contains_pod.xr perl-5.10.0/t/lib/cygwin.t perl-5.10.0/t/lib/dprof/ perl-5.10.0/t/lib/dprof/V.pm perl-5.10.0/t/lib/dprof/test1_t perl-5.10.0/t/lib/dprof/test1_v perl-5.10.0/t/lib/dprof/test2_t perl-5.10.0/t/lib/dprof/test2_v perl-5.10.0/t/lib/dprof/test3_t perl-5.10.0/t/lib/dprof/test3_v perl-5.10.0/t/lib/dprof/test4_t perl-5.10.0/t/lib/dprof/test4_v perl-5.10.0/t/lib/dprof/test5_t perl-5.10.0/t/lib/dprof/test5_v perl-5.10.0/t/lib/dprof/test6_t perl-5.10.0/t/lib/dprof/test6_v perl-5.10.0/t/lib/dprof/test7_t perl-5.10.0/t/lib/dprof/test7_v perl-5.10.0/t/lib/dprof/test8_t perl-5.10.0/t/lib/dprof/test8_v perl-5.10.0/t/lib/feature/ perl-5.10.0/t/lib/feature/nonesuch perl-5.10.0/t/lib/feature/say perl-5.10.0/t/lib/feature/switch perl-5.10.0/t/lib/feature/implicit perl-5.10.0/t/lib/filter-util.pl perl-5.10.0/t/lib/h2ph.h perl-5.10.0/t/lib/h2ph.pht perl-5.10.0/t/lib/locale/ perl-5.10.0/t/lib/locale/latin1 perl-5.10.0/t/lib/locale/utf8 perl-5.10.0/t/lib/mypragma.pm perl-5.10.0/t/lib/mypragma.t perl-5.10.0/t/lib/proxy_constant_subs.t perl-5.10.0/t/lib/sample-tests/ perl-5.10.0/t/lib/sample-tests/bailout perl-5.10.0/t/lib/sample-tests/bignum perl-5.10.0/t/lib/sample-tests/bignum_many perl-5.10.0/t/lib/sample-tests/combined perl-5.10.0/t/lib/sample-tests/descriptive perl-5.10.0/t/lib/sample-tests/die perl-5.10.0/t/lib/sample-tests/die_head_end perl-5.10.0/t/lib/sample-tests/die_last_minute perl-5.10.0/t/lib/sample-tests/duplicates perl-5.10.0/t/lib/sample-tests/head_end perl-5.10.0/t/lib/sample-tests/head_fail perl-5.10.0/t/lib/sample-tests/inc_taint perl-5.10.0/t/lib/sample-tests/lone_not_bug perl-5.10.0/t/lib/sample-tests/no_nums perl-5.10.0/t/lib/sample-tests/no_output perl-5.10.0/t/lib/sample-tests/out_of_order perl-5.10.0/t/lib/sample-tests/segfault perl-5.10.0/t/lib/sample-tests/shbang_misparse perl-5.10.0/t/lib/sample-tests/simple perl-5.10.0/t/lib/sample-tests/simple_fail perl-5.10.0/t/lib/sample-tests/skip perl-5.10.0/t/lib/sample-tests/skip_nomsg perl-5.10.0/t/lib/sample-tests/skipall perl-5.10.0/t/lib/sample-tests/skipall_nomsg perl-5.10.0/t/lib/sample-tests/switches perl-5.10.0/t/lib/sample-tests/taint perl-5.10.0/t/lib/sample-tests/taint_warn perl-5.10.0/t/lib/sample-tests/todo perl-5.10.0/t/lib/sample-tests/todo_inline perl-5.10.0/t/lib/sample-tests/too_many perl-5.10.0/t/lib/sample-tests/vms_nit perl-5.10.0/t/lib/sample-tests/with_comments perl-5.10.0/t/lib/strict/ perl-5.10.0/t/lib/strict/refs perl-5.10.0/t/lib/strict/subs perl-5.10.0/t/lib/strict/vars perl-5.10.0/t/lib/warnings/ perl-5.10.0/t/lib/warnings/1global perl-5.10.0/t/lib/warnings/2use perl-5.10.0/t/lib/warnings/3both perl-5.10.0/t/lib/warnings/4lint perl-5.10.0/t/lib/warnings/5nolint perl-5.10.0/t/lib/warnings/6default perl-5.10.0/t/lib/warnings/7fatal perl-5.10.0/t/lib/warnings/8signal perl-5.10.0/t/lib/warnings/9enabled perl-5.10.0/t/lib/warnings/9uninit perl-5.10.0/t/lib/warnings/av perl-5.10.0/t/lib/warnings/doio perl-5.10.0/t/lib/warnings/doop perl-5.10.0/t/lib/warnings/gv perl-5.10.0/t/lib/warnings/hv perl-5.10.0/t/lib/warnings/malloc perl-5.10.0/t/lib/warnings/mg perl-5.10.0/t/lib/warnings/op perl-5.10.0/t/lib/warnings/pad perl-5.10.0/t/lib/warnings/perl perl-5.10.0/t/lib/warnings/perlio perl-5.10.0/t/lib/warnings/perly perl-5.10.0/t/lib/warnings/pp perl-5.10.0/t/lib/warnings/pp_ctl perl-5.10.0/t/lib/warnings/pp_hot perl-5.10.0/t/lib/warnings/pp_pack perl-5.10.0/t/lib/warnings/pp_sys perl-5.10.0/t/lib/warnings/regcomp perl-5.10.0/t/lib/warnings/regexec perl-5.10.0/t/lib/warnings/run perl-5.10.0/t/lib/warnings/sv perl-5.10.0/t/lib/warnings/taint perl-5.10.0/t/lib/warnings/toke perl-5.10.0/t/lib/warnings/universal perl-5.10.0/t/lib/warnings/utf8 perl-5.10.0/t/lib/warnings/util perl-5.10.0/t/lib/no_load.t perl-5.10.0/t/lib/Dummy.pm perl-5.10.0/t/lib/HasSigDie.pm perl-5.10.0/t/op/ perl-5.10.0/t/op/64bitint.t perl-5.10.0/t/op/alarm.t perl-5.10.0/t/op/anonsub.t perl-5.10.0/t/op/append.t perl-5.10.0/t/op/args.t perl-5.10.0/t/op/arith.t perl-5.10.0/t/op/array.t perl-5.10.0/t/op/assignwarn.t perl-5.10.0/t/op/attrhand.t perl-5.10.0/t/op/attrs.t perl-5.10.0/t/op/auto.t perl-5.10.0/t/op/avhv.t perl-5.10.0/t/op/bless.t perl-5.10.0/t/op/blocks.t perl-5.10.0/t/op/bop.t perl-5.10.0/t/op/caller.pl perl-5.10.0/t/op/caller.t perl-5.10.0/t/op/chars.t perl-5.10.0/t/op/chdir.t perl-5.10.0/t/op/chop.t perl-5.10.0/t/op/chr.t perl-5.10.0/t/op/closure.t perl-5.10.0/t/op/cmp.t perl-5.10.0/t/op/concat.t perl-5.10.0/t/op/cond.t perl-5.10.0/t/op/context.t perl-5.10.0/t/op/cproto.t perl-5.10.0/t/op/crypt.t perl-5.10.0/t/op/defins.t perl-5.10.0/t/op/delete.t perl-5.10.0/t/op/die.t perl-5.10.0/t/op/die_exit.t perl-5.10.0/t/op/do.t perl-5.10.0/t/op/dor.t perl-5.10.0/t/op/each.t perl-5.10.0/t/op/eval.t perl-5.10.0/t/op/exec.t perl-5.10.0/t/op/exists_sub.t perl-5.10.0/t/op/exp.t perl-5.10.0/t/op/fh.t perl-5.10.0/t/op/filetest.t perl-5.10.0/t/op/flip.t perl-5.10.0/t/op/fork.t perl-5.10.0/t/op/getpid.t perl-5.10.0/t/op/getppid.t perl-5.10.0/t/op/glob.t perl-5.10.0/t/op/gmagic.t perl-5.10.0/t/op/goto.t perl-5.10.0/t/op/goto_xs.t perl-5.10.0/t/op/grent.t perl-5.10.0/t/op/grep.t perl-5.10.0/t/op/groups.t perl-5.10.0/t/op/gv.t perl-5.10.0/t/op/hash.t perl-5.10.0/t/op/hashassign.t perl-5.10.0/t/op/hashwarn.t perl-5.10.0/t/op/inc.t perl-5.10.0/t/op/inccode-tie.t perl-5.10.0/t/op/inccode.t perl-5.10.0/t/op/incfilter.t perl-5.10.0/t/op/index.t perl-5.10.0/t/op/int.t perl-5.10.0/t/op/join.t perl-5.10.0/t/op/lc.t perl-5.10.0/t/op/lc_user.t perl-5.10.0/t/op/length.t perl-5.10.0/t/op/lex_assign.t perl-5.10.0/t/op/lfs.t perl-5.10.0/t/op/list.t perl-5.10.0/t/op/local.t perl-5.10.0/t/op/localref.t perl-5.10.0/t/op/loopctl.t perl-5.10.0/t/op/lop.t perl-5.10.0/t/op/magic.t perl-5.10.0/t/op/method.t perl-5.10.0/t/op/mkdir.t perl-5.10.0/t/op/my.t perl-5.10.0/t/op/my_stash.t perl-5.10.0/t/op/mydef.t perl-5.10.0/t/op/negate.t perl-5.10.0/t/op/not.t perl-5.10.0/t/op/numconvert.t perl-5.10.0/t/op/oct.t perl-5.10.0/t/op/or.t perl-5.10.0/t/op/ord.t perl-5.10.0/t/op/override.t perl-5.10.0/t/op/pack.t perl-5.10.0/t/op/pat.t perl-5.10.0/t/op/pos.t perl-5.10.0/t/op/pow.t perl-5.10.0/t/op/push.t perl-5.10.0/t/op/pwent.t perl-5.10.0/t/op/qq.t perl-5.10.0/t/op/quotemeta.t perl-5.10.0/t/op/rand.t perl-5.10.0/t/op/range.t perl-5.10.0/t/op/re_tests perl-5.10.0/t/op/read.t perl-5.10.0/t/op/readdir.t perl-5.10.0/t/op/readline.t perl-5.10.0/t/op/recurse.t perl-5.10.0/t/op/ref.t perl-5.10.0/t/op/regexp.t perl-5.10.0/t/op/reg_email.t perl-5.10.0/t/op/regexp_noamp.t perl-5.10.0/t/op/regexp_notrie.t perl-5.10.0/t/op/regexp_qr.t perl-5.10.0/t/op/regexp_qr_embed.t perl-5.10.0/t/op/regexp_trielist.t perl-5.10.0/t/op/reg_mesg.t perl-5.10.0/t/op/repeat.t perl-5.10.0/t/op/reverse.t perl-5.10.0/t/op/runlevel.t perl-5.10.0/t/op/rxcode.t perl-5.10.0/t/op/sleep.t perl-5.10.0/t/op/smartmatch.t perl-5.10.0/t/op/sort.t perl-5.10.0/t/op/splice.t perl-5.10.0/t/op/split.t perl-5.10.0/t/op/sprintf.t perl-5.10.0/t/op/sprintf2.t perl-5.10.0/t/op/srand.t perl-5.10.0/t/op/sselect.t perl-5.10.0/t/op/stash.t perl-5.10.0/t/op/stat.t perl-5.10.0/t/op/state.t perl-5.10.0/t/op/study.t perl-5.10.0/t/op/studytied.t perl-5.10.0/t/op/sub.t perl-5.10.0/t/op/sub_lval.t perl-5.10.0/t/op/subst.t perl-5.10.0/t/op/substT.t perl-5.10.0/t/op/subst_amp.t perl-5.10.0/t/op/subst_wamp.t perl-5.10.0/t/op/substr.t perl-5.10.0/t/op/switch.t perl-5.10.0/t/op/sysio.t perl-5.10.0/t/op/taint.t perl-5.10.0/t/op/threads.t perl-5.10.0/t/op/threads_create.pl perl-5.10.0/t/op/tie.t perl-5.10.0/t/op/tiearray.t perl-5.10.0/t/op/tiehandle.t perl-5.10.0/t/op/time.t perl-5.10.0/t/op/tr.t perl-5.10.0/t/op/undef.t perl-5.10.0/t/op/universal.t perl-5.10.0/t/op/unshift.t perl-5.10.0/t/op/utf8decode.t perl-5.10.0/t/op/utfhash.t perl-5.10.0/t/op/utftaint.t perl-5.10.0/t/op/vec.t perl-5.10.0/t/op/ver.t perl-5.10.0/t/op/wantarray.t perl-5.10.0/t/op/write.t perl-5.10.0/t/op/qrstack.t perl-5.10.0/t/op/symbolcache.t perl-5.10.0/t/op/reg_namedcapture.t perl-5.10.0/t/op/reg_nc_tie.t perl-5.10.0/t/op/reset.t perl-5.10.0/t/op/qr.t perl-5.10.0/t/op/kill0.t perl-5.10.0/t/op/reg_pmod.t perl-5.10.0/t/op/reg_unsafe.t perl-5.10.0/t/op/overload_integer.t perl-5.10.0/t/op/reg_fold.t perl-5.10.0/t/perl.supp perl-5.10.0/t/pod/ perl-5.10.0/t/pod/emptycmd.t perl-5.10.0/t/pod/emptycmd.xr perl-5.10.0/t/pod/find.t perl-5.10.0/t/pod/for.t perl-5.10.0/t/pod/for.xr perl-5.10.0/t/pod/headings.t perl-5.10.0/t/pod/headings.xr perl-5.10.0/t/pod/include.t perl-5.10.0/t/pod/include.xr perl-5.10.0/t/pod/included.t perl-5.10.0/t/pod/included.xr perl-5.10.0/t/pod/lref.t perl-5.10.0/t/pod/lref.xr perl-5.10.0/t/pod/multiline_items.t perl-5.10.0/t/pod/multiline_items.xr perl-5.10.0/t/pod/nested_items.t perl-5.10.0/t/pod/nested_items.xr perl-5.10.0/t/pod/nested_seqs.t perl-5.10.0/t/pod/nested_seqs.xr perl-5.10.0/t/pod/oneline_cmds.t perl-5.10.0/t/pod/oneline_cmds.xr perl-5.10.0/t/pod/p2u_data.pl perl-5.10.0/t/pod/plainer.t perl-5.10.0/t/pod/pod2usage.t perl-5.10.0/t/pod/pod2usage.xr perl-5.10.0/t/pod/pod2usage2.t perl-5.10.0/t/pod/poderrs.t perl-5.10.0/t/pod/poderrs.xr perl-5.10.0/t/pod/podselect.t perl-5.10.0/t/pod/podselect.xr perl-5.10.0/t/pod/special_seqs.t perl-5.10.0/t/pod/special_seqs.xr perl-5.10.0/t/pod/testcmp.pl perl-5.10.0/t/pod/testp2pt.pl perl-5.10.0/t/pod/testpchk.pl perl-5.10.0/t/pod/testpods/ perl-5.10.0/t/pod/testpods/lib/ perl-5.10.0/t/pod/testpods/lib/Pod/ perl-5.10.0/t/pod/testpods/lib/Pod/Stuff.pm perl-5.10.0/t/pod/twice.t perl-5.10.0/t/run/ perl-5.10.0/t/run/cloexec.t perl-5.10.0/t/run/exit.t perl-5.10.0/t/run/fresh_perl.t perl-5.10.0/t/run/noswitch.t perl-5.10.0/t/run/runenv.t perl-5.10.0/t/run/switch0.t perl-5.10.0/t/run/switchC.t perl-5.10.0/t/run/switchF.t perl-5.10.0/t/run/switchF1.t perl-5.10.0/t/run/switchI.t perl-5.10.0/t/run/switchPx.aux perl-5.10.0/t/run/switchPx.t perl-5.10.0/t/run/switchx.t perl-5.10.0/t/run/switcha.t perl-5.10.0/t/run/switchd.t perl-5.10.0/t/run/switches.t perl-5.10.0/t/run/switchn.t perl-5.10.0/t/run/switchp.t perl-5.10.0/t/run/switcht.t perl-5.10.0/t/run/switchx.aux perl-5.10.0/t/run/switchx2.aux perl-5.10.0/t/test.pl perl-5.10.0/t/uni/ perl-5.10.0/t/uni/case.pl perl-5.10.0/t/uni/chomp.t perl-5.10.0/t/uni/chr.t perl-5.10.0/t/uni/class.t perl-5.10.0/t/uni/fold.t perl-5.10.0/t/uni/greek.t perl-5.10.0/t/uni/latin2.t perl-5.10.0/t/uni/lower.t perl-5.10.0/t/uni/overload.t perl-5.10.0/t/uni/sprintf.t perl-5.10.0/t/uni/title.t perl-5.10.0/t/uni/tr_7jis.t perl-5.10.0/t/uni/tr_eucjp.t perl-5.10.0/t/uni/tr_sjis.t perl-5.10.0/t/uni/tr_utf8.t perl-5.10.0/t/uni/upper.t perl-5.10.0/t/uni/write.t perl-5.10.0/t/uni/cache.t perl-5.10.0/t/win32/ perl-5.10.0/t/win32/system.t perl-5.10.0/t/win32/system_tests perl-5.10.0/t/x2p/ perl-5.10.0/t/x2p/s2p.t perl-5.10.0/t/mro/ perl-5.10.0/t/mro/basic_01_dfs.t perl-5.10.0/t/mro/vulcan_c3.t perl-5.10.0/t/mro/basic_02_dfs.t perl-5.10.0/t/mro/next_method.t perl-5.10.0/t/mro/basic_03_dfs.t perl-5.10.0/t/mro/next_ineval.t perl-5.10.0/t/mro/basic_04_dfs.t perl-5.10.0/t/mro/next_inanon.t perl-5.10.0/t/mro/basic_05_dfs.t perl-5.10.0/t/mro/basic.t perl-5.10.0/t/mro/vulcan_dfs.t perl-5.10.0/t/mro/dbic_c3.t perl-5.10.0/t/mro/pkg_gen.t perl-5.10.0/t/mro/c3_with_overload.t perl-5.10.0/t/mro/complex_c3.t perl-5.10.0/t/mro/method_caching.t perl-5.10.0/t/mro/dbic_dfs.t perl-5.10.0/t/mro/recursion_c3.t perl-5.10.0/t/mro/overload_c3.t perl-5.10.0/t/mro/complex_dfs.t perl-5.10.0/t/mro/next_NEXT.t perl-5.10.0/t/mro/inconsistent_c3.t perl-5.10.0/t/mro/recursion_dfs.t perl-5.10.0/t/mro/basic_01_c3.t perl-5.10.0/t/mro/basic_02_c3.t perl-5.10.0/t/mro/overload_dfs.t perl-5.10.0/t/mro/basic_03_c3.t perl-5.10.0/t/mro/basic_04_c3.t perl-5.10.0/t/mro/basic_05_c3.t perl-5.10.0/t/mro/next_skip.t perl-5.10.0/t/mro/next_edgecases.t perl-5.10.0/t/mro/next_goto.t perl-5.10.0/t/Module_Pluggable/ perl-5.10.0/t/Module_Pluggable/01use.t perl-5.10.0/t/Module_Pluggable/02alsoworks.t perl-5.10.0/t/Module_Pluggable/02works.t perl-5.10.0/t/Module_Pluggable/02works_taint.t perl-5.10.0/t/Module_Pluggable/03diffname.t perl-5.10.0/t/Module_Pluggable/04acmedir.t perl-5.10.0/t/Module_Pluggable/04acmedir_single.t perl-5.10.0/t/Module_Pluggable/04acmepath.t perl-5.10.0/t/Module_Pluggable/04acmepath_single.t perl-5.10.0/t/Module_Pluggable/05postpath.t perl-5.10.0/t/Module_Pluggable/06multipath.t perl-5.10.0/t/Module_Pluggable/07instantiate.t perl-5.10.0/t/Module_Pluggable/08nothing.t perl-5.10.0/t/Module_Pluggable/09require.t perl-5.10.0/t/Module_Pluggable/10innerpack.t perl-5.10.0/t/Module_Pluggable/10innerpack_inner.t perl-5.10.0/t/Module_Pluggable/10innerpack_noinner.t perl-5.10.0/t/Module_Pluggable/10innerpack_override.t perl-5.10.0/t/Module_Pluggable/11usetwice.t perl-5.10.0/t/Module_Pluggable/12only.t perl-5.10.0/t/Module_Pluggable/12onlyarray.t perl-5.10.0/t/Module_Pluggable/12onlyregex.t perl-5.10.0/t/Module_Pluggable/13except.t perl-5.10.0/t/Module_Pluggable/13exceptarray.t perl-5.10.0/t/Module_Pluggable/13exceptregex.t perl-5.10.0/t/Module_Pluggable/14package.t perl-5.10.0/t/Module_Pluggable/15topicsafe.t perl-5.10.0/t/Module_Pluggable/16different_extension.t perl-5.10.0/t/Module_Pluggable/17devel_inner_package.t perl-5.10.0/t/Module_Pluggable/18skipped_package.t perl-5.10.0/t/Module_Pluggable/19can_ok_clobber.t perl-5.10.0/t/Module_Pluggable/20dodgy_files.t perl-5.10.0/t/Module_Pluggable/acme/ perl-5.10.0/t/Module_Pluggable/acme/Acme/ perl-5.10.0/t/Module_Pluggable/acme/Acme/MyTest/ perl-5.10.0/t/Module_Pluggable/acme/Acme/MyTest/Plugin/ perl-5.10.0/t/Module_Pluggable/acme/Acme/MyTest/Plugin/Foo.pm perl-5.10.0/t/Module_Pluggable/lib/ perl-5.10.0/t/Module_Pluggable/lib/Acme/ perl-5.10.0/t/Module_Pluggable/lib/Acme/MyTest/ perl-5.10.0/t/Module_Pluggable/lib/Acme/MyTest/Plugin/ perl-5.10.0/t/Module_Pluggable/lib/Acme/MyTest/Plugin/Foo.pm perl-5.10.0/t/Module_Pluggable/lib/ExtTest/ perl-5.10.0/t/Module_Pluggable/lib/ExtTest/Plugin/ perl-5.10.0/t/Module_Pluggable/lib/ExtTest/Plugin/Bar.plugin perl-5.10.0/t/Module_Pluggable/lib/ExtTest/Plugin/Foo.plugin perl-5.10.0/t/Module_Pluggable/lib/ExtTest/Plugin/Quux/ perl-5.10.0/t/Module_Pluggable/lib/ExtTest/Plugin/Quux/Foo.plugin perl-5.10.0/t/Module_Pluggable/lib/InnerTest/ perl-5.10.0/t/Module_Pluggable/lib/InnerTest/Plugin/ perl-5.10.0/t/Module_Pluggable/lib/InnerTest/Plugin/Foo.pm perl-5.10.0/t/Module_Pluggable/lib/MyOtherTest/ perl-5.10.0/t/Module_Pluggable/lib/MyOtherTest/Plugin/ perl-5.10.0/t/Module_Pluggable/lib/MyOtherTest/Plugin/Bar.pm perl-5.10.0/t/Module_Pluggable/lib/MyOtherTest/Plugin/Foo.pm perl-5.10.0/t/Module_Pluggable/lib/MyOtherTest/Plugin/Quux.pm perl-5.10.0/t/Module_Pluggable/lib/MyOtherTest/Plugin/Quux/ perl-5.10.0/t/Module_Pluggable/lib/MyOtherTest/Plugin/Quux/Foo.pm perl-5.10.0/t/Module_Pluggable/lib/MyTest/ perl-5.10.0/t/Module_Pluggable/lib/MyTest/Extend/ perl-5.10.0/t/Module_Pluggable/lib/MyTest/Extend/Plugin/ perl-5.10.0/t/Module_Pluggable/lib/MyTest/Extend/Plugin/Bar.pm perl-5.10.0/t/Module_Pluggable/lib/MyTest/Plugin/ perl-5.10.0/t/Module_Pluggable/lib/MyTest/Plugin/Bar.pm perl-5.10.0/t/Module_Pluggable/lib/MyTest/Plugin/Foo.pm perl-5.10.0/t/Module_Pluggable/lib/MyTest/Plugin/Quux/ perl-5.10.0/t/Module_Pluggable/lib/MyTest/Plugin/Quux/Foo.pm perl-5.10.0/t/Module_Pluggable/lib/No/ perl-5.10.0/t/Module_Pluggable/lib/No/Middle.pm perl-5.10.0/t/Module_Pluggable/lib/OddTest/ perl-5.10.0/t/Module_Pluggable/lib/OddTest/Plugin/ perl-5.10.0/t/Module_Pluggable/lib/OddTest/Plugin/-Dodgy.pm perl-5.10.0/t/Module_Pluggable/lib/OddTest/Plugin/Foo.pm perl-5.10.0/t/Module_Pluggable/lib/TA/ perl-5.10.0/t/Module_Pluggable/lib/TA/C/ perl-5.10.0/t/Module_Pluggable/lib/TA/C/A/ perl-5.10.0/t/Module_Pluggable/lib/TA/C/A/I.pm perl-5.10.0/taint.c perl-5.10.0/util.c perl-5.10.0/thread.h perl-5.10.0/toke.c perl-5.10.0/uconfig.h perl-5.10.0/uconfig.sh perl-5.10.0/universal.c perl-5.10.0/unixish.h perl-5.10.0/utf8.c perl-5.10.0/utf8.h perl-5.10.0/utfebcdic.h perl-5.10.0/util.h perl-5.10.0/utils.lst perl-5.10.0/utils/ perl-5.10.0/utils/Makefile perl-5.10.0/utils/c2ph.PL perl-5.10.0/utils/config_data.PL perl-5.10.0/utils/corelist.PL perl-5.10.0/utils/cpan.PL perl-5.10.0/utils/dprofpp.PL perl-5.10.0/utils/enc2xs.PL perl-5.10.0/utils/h2ph.PL perl-5.10.0/utils/h2xs.PL perl-5.10.0/utils/instmodsh.PL perl-5.10.0/utils/libnetcfg.PL perl-5.10.0/utils/perlbug.PL perl-5.10.0/utils/perldoc.PL perl-5.10.0/utils/perlivp.PL perl-5.10.0/utils/piconv.PL perl-5.10.0/utils/pl2pm.PL perl-5.10.0/utils/prove.PL perl-5.10.0/utils/ptar.PL perl-5.10.0/utils/ptardiff.PL perl-5.10.0/utils/shasum.PL perl-5.10.0/utils/splain.PL perl-5.10.0/utils/xsubpp.PL perl-5.10.0/utils/cpan2dist.PL perl-5.10.0/utils/cpanp-run-perl.PL perl-5.10.0/utils/cpanp.PL perl-5.10.0/utils/Makefile.SH perl-5.10.0/uts/ perl-5.10.0/uts/sprintf_wrap.c perl-5.10.0/uts/strtol_wrap.c perl-5.10.0/uupacktool.pl perl-5.10.0/vmesa/ perl-5.10.0/vmesa/Makefile perl-5.10.0/vmesa/vmesa.c perl-5.10.0/vmesa/vmesaish.h perl-5.10.0/vms/ perl-5.10.0/vms/descrip_mms.template perl-5.10.0/vms/ext/ perl-5.10.0/vms/ext/DCLsym/ perl-5.10.0/vms/ext/DCLsym/0README.txt perl-5.10.0/vms/ext/DCLsym/DCLsym.pm perl-5.10.0/vms/ext/DCLsym/DCLsym.xs perl-5.10.0/vms/ext/DCLsym/Makefile.PL perl-5.10.0/vms/ext/DCLsym/test.pl perl-5.10.0/vms/ext/Filespec.pm perl-5.10.0/vms/ext/Stdio/ perl-5.10.0/vms/ext/Stdio/0README.txt perl-5.10.0/vms/ext/Stdio/Makefile.PL perl-5.10.0/vms/ext/Stdio/Stdio.pm perl-5.10.0/vms/ext/Stdio/Stdio.xs perl-5.10.0/vms/ext/Stdio/test.pl perl-5.10.0/vms/ext/XSSymSet.pm perl-5.10.0/vms/ext/filespec.t perl-5.10.0/vms/gen_shrfls.pl perl-5.10.0/vms/genopt.com perl-5.10.0/vms/make_command.com perl-5.10.0/vms/mms2make.pl perl-5.10.0/vms/munchconfig.c perl-5.10.0/vms/myconfig.com perl-5.10.0/vms/perlvms.pod perl-5.10.0/vms/sockadapt.c perl-5.10.0/vms/sockadapt.h perl-5.10.0/vms/test.com perl-5.10.0/vms/vms.c perl-5.10.0/vms/vmsish.h perl-5.10.0/vms/vmspipe.com perl-5.10.0/vms/writemain.pl perl-5.10.0/vos/ perl-5.10.0/vos/Changes perl-5.10.0/vos/compile_full_perl.cm perl-5.10.0/vos/configure_full_perl.sh perl-5.10.0/vos/make_full_perl.sh perl-5.10.0/vos/syslog.h perl-5.10.0/vos/vos.c perl-5.10.0/vos/vosish.h perl-5.10.0/warnings.h perl-5.10.0/warnings.pl perl-5.10.0/win32/ perl-5.10.0/win32/FindExt.pm perl-5.10.0/win32/Makefile perl-5.10.0/win32/Makefile.ce perl-5.10.0/win32/bin/ perl-5.10.0/win32/bin/exetype.pl perl-5.10.0/win32/bin/perlglob.pl perl-5.10.0/win32/bin/pl2bat.pl perl-5.10.0/win32/bin/runperl.pl perl-5.10.0/win32/bin/search.pl perl-5.10.0/win32/buildext.pl perl-5.10.0/win32/ce-helpers/ perl-5.10.0/win32/ce-helpers/cecopy-lib.pl perl-5.10.0/win32/ce-helpers/comp.pl perl-5.10.0/win32/ce-helpers/compile-all.bat perl-5.10.0/win32/ce-helpers/compile.bat perl-5.10.0/win32/ce-helpers/makedist.pl perl-5.10.0/win32/ce-helpers/registry.bat perl-5.10.0/win32/config.bc perl-5.10.0/win32/config.ce perl-5.10.0/win32/config.gc perl-5.10.0/win32/config.vc perl-5.10.0/win32/config.vc64 perl-5.10.0/win32/config_H.bc perl-5.10.0/win32/config_H.ce perl-5.10.0/win32/config_H.gc perl-5.10.0/win32/config_H.vc perl-5.10.0/win32/config_H.vc64 perl-5.10.0/win32/config_h.PL perl-5.10.0/win32/config_sh.PL perl-5.10.0/win32/distclean.bat perl-5.10.0/win32/dl_win32.xs perl-5.10.0/win32/fcrypt.c perl-5.10.0/win32/genmk95.pl perl-5.10.0/win32/include/ perl-5.10.0/win32/include/arpa/ perl-5.10.0/win32/include/arpa/inet.h perl-5.10.0/win32/include/dirent.h perl-5.10.0/win32/include/netdb.h perl-5.10.0/win32/include/sys/ perl-5.10.0/win32/include/sys/socket.h perl-5.10.0/win32/makefile.mk perl-5.10.0/win32/mdelete.bat perl-5.10.0/win32/perl.rc perl-5.10.0/win32/perlexe.ico.packd perl-5.10.0/win32/perlexe.rc perl-5.10.0/win32/perlglob.c perl-5.10.0/win32/perlhost.h perl-5.10.0/win32/perllib.c perl-5.10.0/win32/perlmaince.c perl-5.10.0/win32/pod.mak perl-5.10.0/win32/runperl.c perl-5.10.0/win32/splittree.pl perl-5.10.0/win32/sync_ext.pl perl-5.10.0/win32/vdir.h perl-5.10.0/win32/vmem.h perl-5.10.0/win32/win32.c perl-5.10.0/win32/win32.h perl-5.10.0/win32/win32ceio.c perl-5.10.0/win32/win32io.c perl-5.10.0/win32/win32iop-o.h perl-5.10.0/win32/win32iop.h perl-5.10.0/win32/win32sck.c perl-5.10.0/win32/win32thread.c perl-5.10.0/win32/win32thread.h perl-5.10.0/win32/wince.c perl-5.10.0/win32/wince.h perl-5.10.0/win32/wincesck.c perl-5.10.0/writemain.SH perl-5.10.0/x2p/ perl-5.10.0/x2p/EXTERN.h perl-5.10.0/x2p/INTERN.h perl-5.10.0/x2p/Makefile.SH perl-5.10.0/x2p/a2p.c perl-5.10.0/x2p/a2p.h perl-5.10.0/x2p/a2p.pod perl-5.10.0/x2p/a2p.y perl-5.10.0/x2p/a2py.c perl-5.10.0/x2p/cflags.SH perl-5.10.0/x2p/find2perl.PL perl-5.10.0/x2p/hash.c perl-5.10.0/x2p/hash.h perl-5.10.0/x2p/s2p.PL perl-5.10.0/x2p/str.c perl-5.10.0/x2p/str.h perl-5.10.0/x2p/util.c perl-5.10.0/x2p/util.h perl-5.10.0/x2p/walk.c perl-5.10.0/xsutils.c perl-5.10.0/generate_uudmap.c perl-5.10.0/overload.c perl-5.10.0/regcharclass.h perl-5.10.0/pp_proto.h invoking chmod -R +w /vagrant/target/tools/src/perl-5.10.0 Running dump_file ('untar', '/vagrant/target/tools/status/perl-5.10.0-perl-5.10.0', 'w') {'permissions': 420} *** Stage: patch (perl, tools) Running file_sub ([('-c (/dev/null)', '-e \\1')], '/vagrant/target/tools/src/perl-5.10.0/Configure') {'use_re': True, 'to_name': None, 'must_succeed': False} Running dump_file ('patch', '/vagrant/target/tools/status/perl-5.10.0-perl-5.10.0', 'w') {'permissions': 420} *** Stage: autoupdate (perl, tools) Running dump_file ('autoupdate', '/vagrant/target/tools/status/perl-5.10.0-perl-5.10.0', 'w') {'permissions': 420} *** Stage: configure (perl, tools) invoking rm -rf /vagrant/target/tools/build/perl-5.10.0 Running shadow ('/vagrant/target/tools/src/perl-5.10.0', '/vagrant/target/tools/build/perl-5.10.0', False) {} invoking mkdir -p /vagrant/target/tools/build/perl-5.10.0 || true invoking cd /vagrant/target/tools/build/perl-5.10.0 && chmod +x /vagrant/target/tools/src/perl-5.10.0/configure.gnu && /vagrant/target/tools/src/perl-5.10.0/configure.gnu -Dprefix=/vagrant/target/tools/root/usr -Dcc='gcc ' -Dtargetarch=x86_64-linux -Dusrinc=/vagrant/target/tools/root/usr/include -Dincpth=/ -Dlibpth=/vagrant/target/tools/root/usr/lib -Dsitelib=/vagrant/target/tools/root/usr/lib/perl5/5.10.0 -Dsitearch=/vagrant/target/tools/root/usr/lib/perl5/5.10.0 -Dusedl -Duseshrplib -Dlibperl=libperl.so -Dcccdlflags=-fPIC -Dlocallibpth=/ -Aldflags='-Wl,-rpath -Wl,\$$ORIGIN/../lib -Wl,-rpath -Wl,/vagrant/target/tools/root/usr/lib' -Alibs='-lm -lrt -ldl' sh Configure -ds -e -Dprefix=/vagrant/target/tools/root/usr -Dcc=gcc -Dtargetarch=x86_64-linux -Dusrinc=/vagrant/target/tools/root/usr/include -Dincpth=/ -Dlibpth=/vagrant/target/tools/root/usr/lib -Dsitelib=/vagrant/target/tools/root/usr/lib/perl5/5.10.0 -Dsitearch=/vagrant/target/tools/root/usr/lib/perl5/5.10.0 -Dusedl -Duseshrplib -Dlibperl=libperl.so -Dcccdlflags=-fPIC -Dlocallibpth=/ -Aldflags=-Wl,-rpath -Wl,\$$ORIGIN/../lib -Wl,-rpath -Wl,/vagrant/target/tools/root/usr/lib -Alibs=-lm -lrt -ldl First let's make sure your kit is complete. Checking... Locating common programs... Checking compatibility between /bin/echo and builtin echo (if any)... Symbolic links are supported. Checking how to test for symbolic links... You can test for symbolic links with 'test -h'. Good, your tr supports [:lower:] and [:upper:] to convert case. Using [:upper:] and [:lower:] to convert case. 3b1 dos_djgpp irix_6_0 nonstopux sunos_4_0 aix dragonfly irix_6_1 openbsd sunos_4_1 aix_3 dynix isc opus super-ux aix_4 dynixptx isc_2 os2 svr4 altos486 epix linux os390 svr5 amigaos esix4 lynxos os400 ti1500 apollo fps machten posix-bc titanos atheos freebsd machten_2 powerux ultrix_4 aux_3 genix midnightbsd qnx umips beos gnu mint rhapsody unicos bsdos gnukfreebsd mips riscos unicosmk catamount gnuknetbsd mpc sco unisysdynix convexos greenhills mpeix sco_2_3_0 utekv cxux hpux ncr_tower sco_2_3_1 uts cygwin i386 netbsd sco_2_3_2 uwin darwin interix newsos4 sco_2_3_3 vmesa dcosx irix_4 next_3 sco_2_3_4 vos dec_osf irix_5 next_3_0 solaris_2 dgux irix_6 next_4 stellar Which of these apply, if any? [linux] You appear to have ELF support. I'll try to use it for dynamic loading. If dynamic loading doesn't work, read hints/linux.sh for further information. Operating system name? [linux] Operating system version? [4.4.0-140-generic] Installation prefix to use? (~name ok) [/vagrant/target/tools/root/usr] AFS does not seem to be running... What installation prefix should I use for installing files? (~name ok) [/vagrant/target/tools/root/usr] Build Perl for SOCKS? [n] Use the PerlIO abstraction layer? [y] Getting the current patchlevel... Build a threading Perl? [n] Build Perl for multiplicity? [n] Use which C compiler? [gcc ] Checking for GNU cc in disguise and/or its version number... Now, how can we feed standard input to your C preprocessor... Directories to use for library searches? [/vagrant/target/tools/root/usr/lib] What is the file extension used for shared libraries? [so] Try to use long doubles if available? [n] Checking for optional libraries... What libraries to use? [ -lm -lrt -ldl] What optimizer/debugger flag should be used? [-O2] Any additional cc flags? [-fno-strict-aliasing -pipe -I/usr/local/include] Let me guess what the preprocessor flags are... Any additional ld flags (NOT including libraries)? [ -Wl,-rpath -Wl,$/../lib -Wl,-rpath -Wl,/vagrant/target/tools/root/usr/lib] Checking your choice of C compiler and flags for coherency... Computing filename position in cpp output for #include directives... found. Checking to see how big your integers are... Checking to see if you have long long... Checking to see how big your long longs are... found. Checking to see if you have int64_t... Checking which 64-bit integer type we could use... We could use 'long' for 64-bit integers. Try to use maximal 64-bit support, if available? [y] Checking to see how big your double precision numbers are... Checking to see if you have long double... Checking to see how big your long doubles are... What is your architecture name [x86_64-linux] This architecture is naturally 64-bit, not changing architecture name. Perlio selected. Pathname where the public executables will reside? (~name ok) [/vagrant/target/tools/root/usr/bin] Use relocatable @INC? [n] Pathname where the private library files will reside? (~name ok) [/vagrant/target/tools/root/usr/lib/perl5/5.10.0] Where do you want to put the public architecture-dependent libraries? (~name ok) [/vagrant/target/tools/root/usr/lib/perl5/5.10.0/x86_64-linux] Other username to test security of setuid scripts with? [none] Well, the recommended value is *not* secure. Does your kernel have *secure* setuid scripts? [n] Do you want to do setuid/setgid emulation? [n] Installation prefix to use for add-on modules and utilities? (~name ok) [/vagrant/target/tools/root/usr] Pathname for the site-specific library files? (~name ok) [/vagrant/target/tools/root/usr/lib/perl5/5.10.0] List of earlier versions to include in @INC? [none] found. Checking to see how well your C compiler groks the void type... Good. It appears to support void to the level perl5 wants. Checking to see how big your pointers are... Do you wish to wrap malloc calls to protect against potential overflows? [y] Do you wish to attempt to use the malloc that comes with perl5? [n] Your system wants malloc to return 'void *', it would seem. Your system uses void free(), it would seem. Pathname for the site-specific architecture-dependent library files? (~name ok) [/vagrant/target/tools/root/usr/lib/perl5/5.10.0] Do you want to configure vendor-specific add-on directories? [n] Colon-separated list of additional directories for perl to search? [none] Checking out function prototypes... Install any extra modules (y or n)? [n] Directory for the main Perl5 html pages? (~name ok) [none] Directory for the Perl5 module html pages? (~name ok) [none] Do you want to install perl as /usr/bin/perl? [n] Checking for GNU C Library... nm probably won't work on the GNU C Library. Shall I use /usr/bin/nm to extract C symbols from the libraries? [n] NOT found. Checking for C++... dlopen() found. found. Do you wish to use dynamic loading? [y] Source file to use for dynamic loading [ext/DynaLoader/dl_dlopen.xs] Any special flags to pass to gcc -c to compile shared library modules? [-fPIC] What command should be used to create dynamic libraries? [gcc ] Any special flags to pass to gcc to create a dynamically loaded library? [-shared -O2] Any special flags to pass to gcc to use dynamic linking? [-Wl,-E] Build a shared libperl.so (y/n) [y] What name do you want to give to the shared libperl? [libperl.so] Adding -Wl,-rpath,/vagrant/target/tools/root/usr/lib/perl5/5.10.0/x86_64-linux/CORE to the flags passed to gcc so that the perl executable will find the installed shared libperl.so. System manual is in /usr/share/man/man1. Where do the main Perl5 manual pages (source) go? (~name ok) [/vagrant/target/tools/root/usr/share/man/man1] What suffix should be used for the main Perl5 man pages? [1] You can have filenames longer than 14 characters. Where do the perl5 library man pages (source) go? (~name ok) [/vagrant/target/tools/root/usr/share/man/man3] What suffix should be used for the perl5 library man pages? [3] Figuring out host name... Your host name appears to be "ubuntu-xenial". Right? [y] What is your domain name? [.(none)] What is your e-mail address? address@hidden(none)] Perl administrator e-mail address address@hidden(none)] Do you want to install only the version-specific parts of perl? [n] What shall I put after the #! to start up perl ("none" to not use #!)? [/vagrant/target/tools/root/usr/bin/perl] WARNING: Some systems limit the #! command to 32 characters. If you experience difficulty running Perl scripts with #!, try installing Perl in a directory with a shorter pathname. Where do you keep publicly executable scripts? (~name ok) [/vagrant/target/tools/root/usr/bin] Pathname where the add-on public executables should be installed? (~name ok) [/vagrant/target/tools/root/usr/bin] Pathname where the site-specific html pages should be installed? (~name ok) [none] Pathname where the site-specific library html pages should be installed? (~name ok) [none] Pathname where the site-specific manual pages should be installed? (~name ok) [/vagrant/target/tools/root/usr/share/man/man1] Pathname where the site-specific library manual pages should be installed? (~name ok) [/vagrant/target/tools/root/usr/share/man/man3] Pathname where add-on public executable scripts should be installed? (~name ok) [/vagrant/target/tools/root/usr/bin] Use the "fast stdio" if available? [n] off_t found. Checking to see how big your file offsets are... fpos_t found. Checking the size of fpos_t... Try to understand large files, if available? [y] Rechecking to see how big your file offsets are... Rechecking the size of fpos_t... 16 bytes. qgcvt() found. Checking how to print long doubles... gconvert NOT found. gcvt() found. I'll use gcvt to convert floats into a string. fwalk() NOT found. access() found. defines the *_OK access constants. accessx() NOT found. aintl() NOT found. alarm() found. found. found. found. Testing to see if we should include , or both. We'll include . We'll include . Checking to see if your struct tm has tm_zone field... Checking to see if your struct tm has tm_gmtoff field... asctime_r() found. atolf() NOT found. atoll() found. Checking whether your compiler can handle __attribute__((format)) ... Checking whether your compiler allows __printf__ format to be null ... Checking whether your compiler can handle __attribute__((malloc)) ... Checking whether your compiler can handle __attribute__((nonnull(1))) ... Checking whether your compiler can handle __attribute__((noreturn)) ... Checking whether your compiler can handle __attribute__((pure)) ... Checking whether your compiler can handle __attribute__((unused)) ... Checking whether your compiler can handle __attribute__((warn_unused_result)) ... bcmp() found. bcopy() found. getpgrp() found. You have to use getpgrp() instead of getpgrp(pid). setpgrp() found. You have to use setpgrp() instead of setpgrp(pid,pgrp). Checking whether your compiler can handle __builtin_choose_expr ... Checking whether your compiler can handle __builtin_expect ... bzero() found. found. found. We'll include to get va_dcl definition. You have and , so checking for C99 variadic macros. You have C99 variadic macros. You have void (*signal())(). Checking whether your C compiler can cast large floats to int32. Checking whether your C compiler can cast negative float to unsigned. vprintf() found. Your vsprintf() returns (int). chown() found. chroot() found. chsize() NOT found. class() NOT found. clearenv() found. Hmm... Looks like you have Berkeley networking support. socketpair() found. Checking the availability of certain socket constants... found. Checking to see if your system supports struct cmsghdr... Checking to see if your C compiler knows about "const"... copysignl() found. crypt() NOT found. crypt() NOT found. found. crypt_r() NOT found. ctermid() found. ctermid_r() NOT found. ctime_r() found. cuserid() found. found. found. DBL_DIG found. dbmclose() NOT found. difftime() found. found. Your directory entries are struct dirent. Your directory entry does not know about the d_namlen field. Checking to see if DIR has a dd_fd member variable found. NOT found. dirfd() found. dlerror() found. found. What is the extension of dynamically loaded modules [so] Checking whether your dlsym() needs a leading underscore ... dlsym doesn't need a leading underscore. drand48_r() found. dup2() found. eaccess() found. endgrent() found. found. endgrent_r() NOT found. endhostent() found. found. endhostent_r() NOT found. endnetent() found. endnetent_r() NOT found. endprotoent() found. endprotoent_r() NOT found. endpwent() found. found. endpwent_r() NOT found. endservent() found. endservent_r() NOT found. defines the O_* constants... and you have the 3 argument form of open(). Using instead of . found. We'll be including . found. We don't need to include if we include . fork() found. pipe() found. Figuring out the flag used by open() for non-blocking I/O... Let's see what value errno gets from read() on a O_NONBLOCK file... try.c: In function 'main': try.c:36:2: warning: ignoring return value of 'pipe', declared with attribute warn_unused_result [-Wunused-result] pipe(pd); /* Down: child -> parent */ ^ try.c:37:2: warning: ignoring return value of 'pipe', declared with attribute warn_unused_result [-Wunused-result] pipe(pu); /* Up: parent -> child */ ^ try.c:53:3: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result] write(2, string, strlen(string)); ^ try.c:66:3: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result] write(pu[1], buf, 1); /* Unblocks child, tell it to close our pipe */ ^ try.c:72:3: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result] write(4, string, strlen(string)); ^ try.c:78:2: warning: ignoring return value of 'read', declared with attribute warn_unused_result [-Wunused-result] read(pu[0], buf, 1); /* Wait for parent to signal us we may continue */ ^ Checking how std your stdio is... fchdir() found. fchmod() found. fchown() found. fcntl() found. Well, your system has some sort of fd_set available... and you have the normal fd_set macros. fgetpos() found. finite() found. finitel() found. flock() found. fp_class() NOT found. pathconf() found. fpathconf() found. fpclass() NOT found. fpclassify() NOT found. fpclassl() NOT found. Checking to see if you have fpos64_t... frexpl() found. found. found. Checking to see if your system supports struct fs_data... fseeko() found. fsetpos() found. fstatfs() found. statvfs() found. fstatvfs() found. fsync() found. ftello() found. Checking if you have a working futimes() Yes, you have getcwd() found. getespwnam() NOT found. getfsstat() NOT found. getgrent() found. getgrent_r() found. getgrgid_r() found. getgrnam_r() found. gethostbyaddr() found. gethostbyname() found. gethostent() found. gethostname() found. uname() found. Shall I ignore gethostname() from now on? [n] gethostbyaddr_r() found. gethostbyname_r() found. gethostent_r() found. getitimer() found. getlogin() found. getlogin_r() found. getmnt() NOT found. getmntent() found. getnetbyaddr() found. getnetbyname() found. getnetent() found. getnetbyaddr_r() found. getnetbyname_r() found. getnetent_r() found. getpagesize() found. getprotobyname() found. getprotobynumber() found. getprotoent() found. getpgid() found. getpgrp2() NOT found. getppid() found. getpriority() found. getprotobyname_r() found. getprotobynumber_r() found. getprotoent_r() found. getprpwnam() NOT found. getpwent() found. getpwent_r() found. getpwnam_r() found. getpwuid_r() found. getservbyname() found. getservbyport() found. getservent() found. getservbyname_r() found. getservbyport_r() found. getservent_r() found. getspnam() found. found. getspnam_r() found. gettimeofday() found. gmtime_r() found. hasmntopt() found. found. found. htonl() found. ilogbl() found. strchr() found. inet_aton() found. isascii() found. isfinite() NOT found. isinf() found. isnan() found. isnanl() found. killpg() found. lchown() found. LDBL_DIG found. found. Checking to see if your libm supports _LIB_VERSION... Yes, it does (2) link() found. localtime_r() found. localeconv() found. lockf() found. lstat() found. madvise() found. malloc_size() NOT found. malloc_good_size() NOT found. mblen() found. mbstowcs() found. mbtowc() found. memchr() found. memcmp() found. memcpy() found. memmove() found. memset() found. mkdir() found. mkdtemp() found. mkfifo() found. mkstemp() found. mkstemps() found. mktime() found. found. mmap() found. and it returns (void *). sqrtl() found. scalbnl() found. modfl() found. Your modfl() seems okay for large values. mprotect() found. msgctl() found. msgget() found. msgsnd() found. msgrcv() found. You have the full msg*(2) library. Checking to see if your system supports struct msghdr... msync() found. munmap() found. nice() found. found. nl_langinfo() found. Checking to see if your C compiler knows about "volatile"... Choosing the C types to be used for Perl's internal types... Checking how many bits of your UVs your NVs can preserve... Checking whether NV 0.0 is all bits zero in memory... 0.0 is represented as all bits zero in memory Checking to see if you have off64_t... pause() found. poll() found. readlink() found. vfork() found. Do you still want to use vfork()? [n] pthread_attr_setscope() found. random_r() found. readdir() found. seekdir() found. telldir() found. rewinddir() found. readdir64_r() found. readdir_r() found. readv() found. recvmsg() found. rename() found. rmdir() found. found. Checking if your memcmp() can compare relative magnitude... select() found. semctl() found. semget() found. semop() found. You have the full sem*(2) library. You do not have union semun in . You can use union semun for semctl IPC_STAT. You can also use struct semid_ds* for semctl IPC_STAT. sendmsg() found. setegid() found. seteuid() found. setgrent() found. setgrent_r() NOT found. sethostent() found. sethostent_r() NOT found. setitimer() found. setlinebuf() found. setlocale() found. found. setlocale_r() NOT found. setnetent() found. setnetent_r() NOT found. setprotoent() found. setpgid() found. setpgrp2() NOT found. setpriority() found. setproctitle() NOT found. setprotoent_r() NOT found. setpwent() found. setpwent_r() NOT found. setregid() found. setresgid() found. setreuid() found. setresuid() found. setrgid() NOT found. setruid() NOT found. setservent() found. setservent_r() NOT found. setsid() found. setvbuf() found. NOT found. shmctl() found. shmget() found. shmat() found. and it returns (void *). shmdt() found. You have the full shm*(2) library. sigaction() found. NOT found. Checking to see if you have signbit() available to work on double... Yes. sigprocmask() found. POSIX sigsetjmp found. snprintf() found. vsnprintf() found. sockatmark() found. socks5_init() NOT found. Checking whether sprintf returns the length of the string... sprintf returns the length of the string (as ANSI says it should) srand48_r() found. srandom_r() found. found. Checking to see if your struct stat has st_blocks field... found. found. Checking to see if your system supports struct statfs... Checking to see if your struct statfs has f_flags field... Checking how to access stdio streams by file descriptor number... I can't figure out how to access stdio streams by file descriptor number. strcoll() found. Checking to see if your C compiler can copy structs... strerror() found. strerror_r() found. strftime() found. strlcat() NOT found. strlcpy() NOT found. strtod() found. strtol() found. strtold() found. strtoll() found. strtoq() found. strtoul() found. strtoull() found. strtouq() found. strxfrm() found. symlink() found. syscall() found. sysconf() found. system() found. tcgetpgrp() found. tcsetpgrp() found. time() found. time_t found. found. times() found. clock_t found. tmpnam_r() found. truncate() found. ttyname_r() found. tzname[] found. (Testing for character data alignment may crash the test. That's okay.) It seems that you must access character data in an aligned manner. ualarm() found. umask() found. unordered() NOT found. unsetenv() found. usleep() found. ustat() found. closedir() found. Checking whether closedir() returns a status... wait4() found. waitpid() found. wcstombs() found. wctomb() found. writev() found. Checking alignment constraints... Doubles must be aligned on a how-many-byte boundary? [8] Checking to see how your cpp does stuff like concatenate tokens... Oh! Smells like ANSI's been here. NOT found. Looking for a random number function... Good, found drand48(). Use which function to generate random numbers? [drand48] Determining whether or not we are on an EBCDIC system... Nope, no EBCDIC, probably ASCII or some ISO Latin. Or UTF-8. Checking how to flush all pending stdio output... Your fflush(NULL) works okay for output streams. Let's see if it clobbers input pipes... fflush(NULL) seems to behave okay with input streams. Checking the size of gid_t... Checking the sign of gid_t... Checking how to print 64-bit integers... Checking the format strings to be used for Perl's internal types... Checking the format string to be used for gids... getgroups() found. setgroups() found. What type pointer is the second argument to getgroups() and setgroups()? [gid_t] Build Perl with MAD? [n] Checking if your /usr/bin/make program sets $(MAKE)... mode_t found. It seems that va_copy() or similar will be needed. size_t found. What is the type for the 1st argument to gethostbyaddr? [char *] What is the type for the 2nd argument to gethostbyaddr? [size_t] What pager is used on your system? [/usr/bin/less] pid_t found. Checking how to generate random libraries on your machine... Your select() operates on 64 bits at a time. Generating a list of signal names and numbers... Checking the size of size_t... Checking to see if you have socklen_t... NOT found. I'll be using ssize_t for functions returning a byte count. Your stdio uses signed chars. Checking the size of uid_t... Checking the sign of uid_t... Checking the format string to be used for uids... Which compiler compiler (yacc) shall I use? [yacc] NOT found. NOT found. NOT found. NOT found. NOT found. found. NOT found. NOT found. found. found. NOT found. Guessing which symbols your C compiler and preprocessor define... try.c: In function 'main': try.c:6049:17: warning: extra tokens at end of #ifdef directive #ifdef __INT16_C(c) ^ try.c:6052:18: warning: extra tokens at end of #ifdef directive #ifdef ___INT16_C(c) ^ try.c:6055:19: warning: extra tokens at end of #ifdef directive #ifdef ____INT16_C(c) ^ try.c:6058:19: warning: extra tokens at end of #ifdef directive #ifdef ____INT16_C(c)__ ^ try.c:6085:17: warning: extra tokens at end of #ifdef directive #ifdef __INT32_C(c) ^ try.c:6088:18: warning: extra tokens at end of #ifdef directive #ifdef ___INT32_C(c) ^ try.c:6091:19: warning: extra tokens at end of #ifdef directive #ifdef ____INT32_C(c) ^ try.c:6094:19: warning: extra tokens at end of #ifdef directive #ifdef ____INT32_C(c)__ ^ try.c:6121:17: warning: extra tokens at end of #ifdef directive #ifdef __INT64_C(c) ^ try.c:6124:18: warning: extra tokens at end of #ifdef directive #ifdef ___INT64_C(c) ^ try.c:6127:19: warning: extra tokens at end of #ifdef directive #ifdef ____INT64_C(c) ^ try.c:6130:19: warning: extra tokens at end of #ifdef directive #ifdef ____INT64_C(c)__ ^ try.c:6157:16: warning: extra tokens at end of #ifdef directive #ifdef __INT8_C(c) ^ try.c:6160:17: warning: extra tokens at end of #ifdef directive #ifdef ___INT8_C(c) ^ try.c:6163:18: warning: extra tokens at end of #ifdef directive #ifdef ____INT8_C(c) ^ try.c:6166:18: warning: extra tokens at end of #ifdef directive #ifdef ____INT8_C(c)__ ^ try.c:6193:18: warning: extra tokens at end of #ifdef directive #ifdef __INTMAX_C(c) ^ try.c:6196:19: warning: extra tokens at end of #ifdef directive #ifdef ___INTMAX_C(c) ^ try.c:6199:20: warning: extra tokens at end of #ifdef directive #ifdef ____INTMAX_C(c) ^ try.c:6202:20: warning: extra tokens at end of #ifdef directive #ifdef ____INTMAX_C(c)__ ^ try.c:7189:18: warning: extra tokens at end of #ifdef directive #ifdef __UINT16_C(c) ^ try.c:7192:19: warning: extra tokens at end of #ifdef directive #ifdef ___UINT16_C(c) ^ try.c:7195:20: warning: extra tokens at end of #ifdef directive #ifdef ____UINT16_C(c) ^ try.c:7198:20: warning: extra tokens at end of #ifdef directive #ifdef ____UINT16_C(c)__ ^ try.c:7225:18: warning: extra tokens at end of #ifdef directive #ifdef __UINT32_C(c) ^ try.c:7228:19: warning: extra tokens at end of #ifdef directive #ifdef ___UINT32_C(c) ^ try.c:7231:20: warning: extra tokens at end of #ifdef directive #ifdef ____UINT32_C(c) ^ try.c:7234:20: warning: extra tokens at end of #ifdef directive #ifdef ____UINT32_C(c)__ ^ try.c:7261:18: warning: extra tokens at end of #ifdef directive #ifdef __UINT64_C(c) ^ try.c:7264:19: warning: extra tokens at end of #ifdef directive #ifdef ___UINT64_C(c) ^ try.c:7267:20: warning: extra tokens at end of #ifdef directive #ifdef ____UINT64_C(c) ^ try.c:7270:20: warning: extra tokens at end of #ifdef directive #ifdef ____UINT64_C(c)__ ^ try.c:7297:17: warning: extra tokens at end of #ifdef directive #ifdef __UINT8_C(c) ^ try.c:7300:18: warning: extra tokens at end of #ifdef directive #ifdef ___UINT8_C(c) ^ try.c:7303:19: warning: extra tokens at end of #ifdef directive #ifdef ____UINT8_C(c) ^ try.c:7306:19: warning: extra tokens at end of #ifdef directive #ifdef ____UINT8_C(c)__ ^ try.c:7333:19: warning: extra tokens at end of #ifdef directive #ifdef __UINTMAX_C(c) ^ try.c:7336:20: warning: extra tokens at end of #ifdef directive #ifdef ___UINTMAX_C(c) ^ try.c:7339:21: warning: extra tokens at end of #ifdef directive #ifdef ____UINTMAX_C(c) ^ try.c:7342:21: warning: extra tokens at end of #ifdef directive #ifdef ____UINTMAX_C(c)__ ^ try.c:7729:21: warning: extra tokens at end of #ifdef directive #ifdef __has_include(STR) ^ try.c:7732:22: warning: extra tokens at end of #ifdef directive #ifdef ___has_include(STR) ^ try.c:7735:23: warning: extra tokens at end of #ifdef directive #ifdef ____has_include(STR) ^ try.c:7738:23: warning: extra tokens at end of #ifdef directive #ifdef ____has_include(STR)__ ^ try.c:7741:26: warning: extra tokens at end of #ifdef directive #ifdef __has_include_next(STR) ^ try.c:7744:27: warning: extra tokens at end of #ifdef directive #ifdef ___has_include_next(STR) ^ try.c:7747:28: warning: extra tokens at end of #ifdef directive #ifdef ____has_include_next(STR) ^ try.c:7750:28: warning: extra tokens at end of #ifdef directive #ifdef ____has_include_next(STR)__ ^ tcsetattr() found. You have POSIX termios.h... good! found. NOT found. NOT found. found. found. NOT found. found. NOT found. found. found. found. found. found. found. found. Looking for extensions... What extensions do you wish to load dynamically? [B Compress/Raw/Zlib Cwd Data/Dumper Devel/DProf Devel/PPPort Devel/Peek Digest/MD5 Digest/SHA Encode Fcntl File/Glob Filter/Util/Call Hash/Util I18N/Langinfo IO IPC/SysV List/Util MIME/Base64 Math/BigInt/FastCalc Opcode POSIX PerlIO/encoding PerlIO/scalar PerlIO/via SDBM_File Socket Storable Sys/Hostname Sys/Syslog Text/Soundex Time/HiRes Time/Piece Unicode/Normalize XS/APItest XS/Typemap attrs re threads threads/shared Hash/Util/FieldHash] What extensions do you wish to load statically? [none] Stripping down executable paths... Creating config.sh... Doing variable substitutions on .SH files... Extracting config.h (with variable substitutions) Extracting cflags (with variable substitutions) Not re-extracting config.h Extracting makeaperl (with variable substitutions) Extracting makedepend (with variable substitutions) Extracting makedir (with variable substitutions) Extracting Makefile (with variable substitutions) Extracting myconfig (with variable substitutions) Extracting pod/Makefile (with variable substitutions) Extracting Policy.sh (with variable substitutions) Extracting utils/Makefile (with variable substitutions) Extracting writemain (with variable substitutions) Extracting x2p/cflags (with variable substitutions) Extracting x2p/Makefile (with variable substitutions) Configure done. If you compile perl5 on a different machine or from a different object directory, copy the Policy.sh file from this object directory to the new one before you run Configure -- this will help you with most of the policy defaults. MapLocate[/vagrant/target/tools/build/perl-5.10.0] no files matching pattern: libtool MapLocate[/vagrant/target/tools/build/perl-5.10.0] no files matching pattern: libtool Running file_sub ([('^0$', '')], '/vagrant/target/tools/build/perl-5.10.0/makefile') {'use_re': True, 'to_name': None, 'must_succeed': False} Traceback (most recent call last): File "bin/gub", line 233, in exceptional_build build (settings, options, files) File "bin/gub", line 229, in build b.build_source_packages (names) File "bin/../gub/buildrunner.py", line 334, in build_source_packages self.spec_build (spec_name) File "bin/../gub/buildrunner.py", line 262, in spec_build deferred_runner.execute_deferred_commands () File "bin/../gub/runner.py", line 167, in execute_deferred_commands cmd.execute (self.logger) File "bin/../gub/commands.py", line 271, in execute loggedos.file_sub (logger, re_pairs, name, **self.kwargs) File "bin/../gub/loggedos.py", line 52, in func_with_logging val = logged_function (logger, func, *args, **kwargs) File "bin/../gub/loggedos.py", line 19, in logged_function return function (*args, **kwargs) File "bin/../gub/misc.py", line 557, in file_sub s = open (name).read () IOError: [Errno 2] No such file or directory: '/vagrant/target/tools/build/perl-5.10.0/makefile'