Update to 5.8.9
Also: - add option SITECUSTOMIZE which enable -Dusesitecustomize [1] - add patch against sv_dup() bug causes memory corruption in threaded perl [2] Changes: http://search.cpan.org/~nwclark/perl-5.8.9/pod/perl589delta.pod PR: 111120 [1], 130033 [2] Submitted by: "Ian A. Tegebo" <yontege xx dev-mug.rescomp.berkeley.edu> [1], kevin brintnall <kbrint xx rufus.net> [2]
This commit is contained in:
parent
db7510e173
commit
4ab5fefc98
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=225991
47 changed files with 1411 additions and 1542 deletions
|
@ -85,8 +85,8 @@ PERL_Include_MAINTAINER= perl@FreeBSD.org
|
|||
# to set one of the conditionals that force the inclusion of bsd.perl.mk
|
||||
.if defined(_PERL_REFACTORING_COMPLETE)
|
||||
|
||||
PERL_VERSION?= 5.8.8
|
||||
PERL_VER?= 5.8.8
|
||||
PERL_VERSION?= 5.8.9
|
||||
PERL_VER?= 5.8.9
|
||||
|
||||
.if !defined(PERL_LEVEL) && defined(PERL_VERSION)
|
||||
perl_major= ${PERL_VERSION:C|\..*||}
|
||||
|
|
9
UPDATING
9
UPDATING
|
@ -6,6 +6,15 @@ You should get into the habit of checking this file for changes each
|
|||
time you update your ports collection, before attempting any port
|
||||
upgrades.
|
||||
|
||||
20090113:
|
||||
AFFECTS: users of lang/perl5.8
|
||||
AUTHOR: skv@FreeBSD.org
|
||||
|
||||
lang/perl5.8 has been updated to 5.8.9. You should update everything
|
||||
depending on perl. The easiest way to do that is to use
|
||||
perl-after-upgrade script supplied with lang/perl5.8. Please see
|
||||
its manual page for details.
|
||||
|
||||
20090112:
|
||||
AFFECTS: users of mail/claws-mail*
|
||||
AUTHOR: miwi@FreeBSD.org
|
||||
|
|
|
@ -7,19 +7,19 @@
|
|||
|
||||
PORTNAME= perl
|
||||
PORTVERSION= ${PERL_VER}
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= lang devel perl5
|
||||
MASTER_SITES= CPAN \
|
||||
${MASTER_SITE_LOCAL:S/$/:local/} \
|
||||
http://www.tobez.org/download/port-mirrors/lang/perl58/:local
|
||||
http://protey.ru/freebsd/distfiles/:local
|
||||
MASTER_SITE_SUBDIR= ../../src \
|
||||
tobez/:local
|
||||
skv/:local
|
||||
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \
|
||||
BSDPAN-${PERL_VER}${EXTRACT_SUFX}:local
|
||||
DIST_SUBDIR= perl
|
||||
|
||||
PATCH_SITES= ${MASTER_SITE_LOCAL:S/$/tobez\//} \
|
||||
http://www.tobez.org/download/port-mirrors/lang/perl58/
|
||||
PATCHFILES= defined-or-5.8.8.bz2
|
||||
PATCH_SITES= ${MASTER_SITE_LOCAL:S!$!skv/!} \
|
||||
http://protey.ru/freebsd/distfiles/
|
||||
PATCHFILES= defined-or-${PERL_VER}.bz2
|
||||
|
||||
MAINTAINER= skv@FreeBSD.org
|
||||
COMMENT= Practical Extraction and Report Language
|
||||
|
@ -32,9 +32,10 @@ OPTIONS= DEBUGGING "Build with debugging support" off \
|
|||
PERL_64BITINT "Use 64 bit integers (on i386)" on \
|
||||
THREADS "Build threaded perl" off \
|
||||
SUIDPERL "Build set-user-id suidperl binary" off \
|
||||
SITECUSTOMIZE "Run-time customization of @INC" off \
|
||||
USE_PERL "Rewrite links in /usr/bin" on
|
||||
|
||||
PERL_VER= 5.8.8
|
||||
PERL_VER= 5.8.9
|
||||
PERL_ARCH= mach
|
||||
PERL_VERSION= ${PERL_VER}
|
||||
SITE_PERL_REL?= lib/perl5/site_perl/${PERL_VER}
|
||||
|
@ -53,7 +54,7 @@ CONFIGURE_ARGS= -sde -Dprefix=${PREFIX} \
|
|||
-Dsiteman3dir=${PREFIX}/lib/perl5/${PERL_VER}/man/man3 \
|
||||
-Dsiteman1dir=${PREFIX}/man/man1 \
|
||||
-Ui_malloc -Ui_iconv -Uinstallusrbinperl \
|
||||
-Dcc="${CC}" -Duseshrplib \
|
||||
-Dcc="${CC}" -Duseshrplib -Dinc_version_list=none \
|
||||
-Dccflags=-DAPPLLIB_EXP=\"${BSDPAN_DEST}\"
|
||||
LOCALE_CLEANUP= LANG="" LC_ALL="" LC_COLLATE="" LC_CTYPE="" \
|
||||
LC_MESSAGES="" LC_MONETARY="" LC_NUMERIC="" \
|
||||
|
@ -122,6 +123,10 @@ CONFIGURE_ARGS+= -Dusemymalloc=n
|
|||
CONFIGURE_ARGS+= -Duse64bitint
|
||||
.endif
|
||||
|
||||
.if defined(WITH_SITECUSTOMIZE)
|
||||
CONFIGURE_ARGS+= -Dusesitecustomize
|
||||
.endif
|
||||
|
||||
LATEST_LINK= perl
|
||||
|
||||
PLIST_SUB+= NEED_USE_PERL="@comment "
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
MAN1+= a2p.1
|
||||
MAN1+= c2ph.1
|
||||
MAN1+= corelist.1
|
||||
MAN1+= cpan.1
|
||||
MAN1+= dprofpp.1
|
||||
MAN1+= enc2xs.1
|
||||
|
@ -28,6 +29,7 @@ MAN1+= perl585delta.1
|
|||
MAN1+= perl586delta.1
|
||||
MAN1+= perl587delta.1
|
||||
MAN1+= perl588delta.1
|
||||
MAN1+= perl589delta.1
|
||||
MAN1+= perl58delta.1
|
||||
MAN1+= perlaix.1
|
||||
MAN1+= perlamiga.1
|
||||
|
@ -48,6 +50,7 @@ MAN1+= perlcheat.1
|
|||
MAN1+= perlclib.1
|
||||
MAN1+= perlcn.1
|
||||
MAN1+= perlcompile.1
|
||||
MAN1+= perlcommunity.1
|
||||
MAN1+= perlcygwin.1
|
||||
MAN1+= perldata.1
|
||||
MAN1+= perldbmfilter.1
|
||||
|
@ -124,17 +127,22 @@ MAN1+= perlpodspec.1
|
|||
MAN1+= perlport.1
|
||||
MAN1+= perlqnx.1
|
||||
MAN1+= perlre.1
|
||||
MAN1+= perlrebackslash.1
|
||||
MAN1+= perlrecharclass.1
|
||||
MAN1+= perlref.1
|
||||
MAN1+= perlreftut.1
|
||||
MAN1+= perlreguts.1
|
||||
MAN1+= perlrequick.1
|
||||
MAN1+= perlreref.1
|
||||
MAN1+= perlretut.1
|
||||
MAN1+= perlriscos.1
|
||||
MAN1+= perlrun.1
|
||||
MAN1+= perlsec.1
|
||||
MAN1+= perlsolaris.1
|
||||
MAN1+= perlstyle.1
|
||||
MAN1+= perlsub.1
|
||||
MAN1+= perlsyn.1
|
||||
MAN1+= perlthanks.1
|
||||
MAN1+= perlthrtut.1
|
||||
MAN1+= perltie.1
|
||||
MAN1+= perltoc.1
|
||||
|
@ -145,8 +153,10 @@ MAN1+= perltrap.1
|
|||
MAN1+= perltru64.1
|
||||
MAN1+= perltw.1
|
||||
MAN1+= perlunicode.1
|
||||
MAN1+= perlunifaq.1
|
||||
MAN1+= perluniintro.1
|
||||
MAN1+= perlutil.1
|
||||
MAN1+= perlunitut.1
|
||||
MAN1+= perluts.1
|
||||
MAN1+= perlvar.1
|
||||
MAN1+= perlvmesa.1
|
||||
|
@ -187,6 +197,7 @@ MAN3+= B::Debug.3
|
|||
MAN3+= B::Deparse.3
|
||||
MAN3+= B::Disassembler.3
|
||||
MAN3+= B::Lint.3
|
||||
MAN3+= B::Lint::Debug.3
|
||||
MAN3+= B::Showlex.3
|
||||
MAN3+= B::Stackobj.3
|
||||
MAN3+= B::Stash.3
|
||||
|
@ -203,9 +214,18 @@ MAN3+= CGI::Pretty.3
|
|||
MAN3+= CGI::Push.3
|
||||
MAN3+= CGI::Switch.3
|
||||
MAN3+= CGI::Util.3
|
||||
MAN3+= CORE.3
|
||||
MAN3+= CPAN.3
|
||||
MAN3+= CPAN::API::HOWTO.3
|
||||
MAN3+= CPAN::Debug.3
|
||||
MAN3+= CPAN::Distroprefs.3
|
||||
MAN3+= CPAN::FirstTime.3
|
||||
MAN3+= CPAN::HandleConfig.3
|
||||
MAN3+= CPAN::Kwalify.3
|
||||
MAN3+= CPAN::Nox.3
|
||||
MAN3+= CPAN::Queue.3
|
||||
MAN3+= CPAN::Tarzip.3
|
||||
MAN3+= CPAN::Version.3
|
||||
MAN3+= Carp.3
|
||||
MAN3+= Carp::Heavy.3
|
||||
MAN3+= Class::ISA.3
|
||||
|
@ -222,6 +242,7 @@ MAN3+= DBM_Filter::utf8.3
|
|||
MAN3+= DB_File.3
|
||||
MAN3+= Data::Dumper.3
|
||||
MAN3+= Devel::DProf.3
|
||||
MAN3+= Devel::InnerPackage.3
|
||||
MAN3+= Devel::PPPort.3
|
||||
MAN3+= Devel::Peek.3
|
||||
MAN3+= Devel::SelfStubber.3
|
||||
|
@ -242,6 +263,7 @@ MAN3+= Encode::Config.3
|
|||
MAN3+= Encode::EBCDIC.3
|
||||
MAN3+= Encode::Encoder.3
|
||||
MAN3+= Encode::Encoding.3
|
||||
MAN3+= Encode::GSM0338.3
|
||||
MAN3+= Encode::Guess.3
|
||||
MAN3+= Encode::JP.3
|
||||
MAN3+= Encode::JP::H2Z.3
|
||||
|
@ -249,6 +271,7 @@ MAN3+= Encode::JP::JIS7.3
|
|||
MAN3+= Encode::KR.3
|
||||
MAN3+= Encode::KR::2022_KR.3
|
||||
MAN3+= Encode::MIME::Header.3
|
||||
MAN3+= Encode::MIME::Name.3
|
||||
MAN3+= Encode::PerlIO.3
|
||||
MAN3+= Encode::Supported.3
|
||||
MAN3+= Encode::Symbol.3
|
||||
|
@ -276,6 +299,7 @@ MAN3+= ExtUtils::MM_Any.3
|
|||
MAN3+= ExtUtils::MM_BeOS.3
|
||||
MAN3+= ExtUtils::MM_Cygwin.3
|
||||
MAN3+= ExtUtils::MM_DOS.3
|
||||
MAN3+= ExtUtils::MM_Darwin.3
|
||||
MAN3+= ExtUtils::MM_MacOS.3
|
||||
MAN3+= ExtUtils::MM_NW5.3
|
||||
MAN3+= ExtUtils::MM_OS2.3
|
||||
|
@ -298,6 +322,7 @@ MAN3+= ExtUtils::Miniperl.3
|
|||
MAN3+= ExtUtils::Mkbootstrap.3
|
||||
MAN3+= ExtUtils::Mksymlists.3
|
||||
MAN3+= ExtUtils::Packlist.3
|
||||
MAN3+= ExtUtils::ParseXS.3
|
||||
MAN3+= ExtUtils::testlib.3
|
||||
MAN3+= Fatal.3
|
||||
MAN3+= Fcntl.3
|
||||
|
@ -348,6 +373,7 @@ MAN3+= IPC::Msg.3
|
|||
MAN3+= IPC::Open2.3
|
||||
MAN3+= IPC::Open3.3
|
||||
MAN3+= IPC::Semaphore.3
|
||||
MAN3+= IPC::SharedMem.3
|
||||
MAN3+= IPC::SysV.3
|
||||
MAN3+= List::Util.3
|
||||
MAN3+= Locale::Constants.3
|
||||
|
@ -374,6 +400,9 @@ MAN3+= Memoize::ExpireTest.3
|
|||
MAN3+= Memoize::NDBM_File.3
|
||||
MAN3+= Memoize::SDBM_File.3
|
||||
MAN3+= Memoize::Storable.3
|
||||
MAN3+= Module::CoreList.3
|
||||
MAN3+= Module::Pluggable.3
|
||||
MAN3+= Module::Pluggable::Object.3
|
||||
MAN3+= NDBM_File.3
|
||||
MAN3+= NEXT.3
|
||||
MAN3+= Net::Cmd.3
|
||||
|
@ -451,7 +480,9 @@ MAN3+= Test::Harness::Assert.3
|
|||
MAN3+= Test::Harness::Iterator.3
|
||||
MAN3+= Test::Harness::Point.3
|
||||
MAN3+= Test::Harness::Straps.3
|
||||
MAN3+= Test::Harness::Results.3
|
||||
MAN3+= Test::Harness::TAP.3
|
||||
MAN3+= Test::Harness::Util.3
|
||||
MAN3+= Test::More.3
|
||||
MAN3+= Test::Simple.3
|
||||
MAN3+= Test::Tutorial.3
|
||||
|
@ -471,6 +502,7 @@ MAN3+= Tie::Hash.3
|
|||
MAN3+= Tie::Memoize.3
|
||||
MAN3+= Tie::RefHash.3
|
||||
MAN3+= Tie::Scalar.3
|
||||
MAN3+= Tie::StdHandle.3
|
||||
MAN3+= Tie::SubstrHash.3
|
||||
MAN3+= Time::HiRes.3
|
||||
MAN3+= Time::Local.3
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
MD5 (perl-5.8.8.tar.bz2) = a377c0c67ab43fd96eeec29ce19e8382
|
||||
SHA256 (perl-5.8.8.tar.bz2) = 818a140d9c04ea8dab3a05104b34ced7f7d9d0a91bfed91baf89a84d0dfb1bc9
|
||||
SIZE (perl-5.8.8.tar.bz2) = 10123359
|
||||
MD5 (BSDPAN-5.8.8.tar.bz2) = 872e4235a7e95cc88ead2e32da0e1f5a
|
||||
SHA256 (BSDPAN-5.8.8.tar.bz2) = 6cd20186db9c27761cabd7ff96d40936bc7be9c527f28b1ffa2773b65b228394
|
||||
SIZE (BSDPAN-5.8.8.tar.bz2) = 8192
|
||||
MD5 (defined-or-5.8.8.bz2) = 4a40ed2c1356f189cfa061b5e102dfca
|
||||
SHA256 (defined-or-5.8.8.bz2) = ba60db049eaf987f1f8c7f5228743118d0022eabadf59313da41ece49e053970
|
||||
SIZE (defined-or-5.8.8.bz2) = 36377
|
||||
MD5 (perl/perl-5.8.9.tar.bz2) = 1cb52a76ce77fa300218da96577793ec
|
||||
SHA256 (perl/perl-5.8.9.tar.bz2) = 1097fbcd48ceccb2bc735d119c9db399a02a8ab9f7dc53e29e47e6a8d0d72e79
|
||||
SIZE (perl/perl-5.8.9.tar.bz2) = 11121414
|
||||
MD5 (perl/BSDPAN-5.8.9.tar.bz2) = 9479989b30c6b8a09e95130d57b4f482
|
||||
SHA256 (perl/BSDPAN-5.8.9.tar.bz2) = 6bc43a3586c5c4a545ebb969397582ef62d3a199809273992529e52ac533e741
|
||||
SIZE (perl/BSDPAN-5.8.9.tar.bz2) = 8171
|
||||
MD5 (perl/defined-or-5.8.9.bz2) = af0d3d86f437547bedb2d99539ba7a6e
|
||||
SHA256 (perl/defined-or-5.8.9.bz2) = 021b46afd429f5c56b76195565394f1e74770681c5ad98f98936ad2cab58bda4
|
||||
SIZE (perl/defined-or-5.8.9.bz2) = 36178
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
--- hints/freebsd.sh.orig Wed Mar 24 22:47:33 2004
|
||||
+++ hints/freebsd.sh Mon Feb 19 20:53:50 2007
|
||||
@@ -88,6 +88,8 @@ case "$osvers" in
|
||||
--- hints/freebsd.sh
|
||||
+++ hints/freebsd.sh
|
||||
@@ -88,6 +88,8 @@
|
||||
esac
|
||||
libswanted=`echo $libswanted | sed 's/ malloc / /'`
|
||||
libswanted=`echo $libswanted | sed 's/ bind / /'`
|
||||
|
@ -9,7 +9,7 @@
|
|||
# iconv gone in Perl 5.8.1, but if someone compiles 5.8.0 or earlier.
|
||||
libswanted=`echo $libswanted | sed 's/ iconv / /'`
|
||||
d_setregid='define'
|
||||
@@ -102,6 +104,10 @@ case "$osvers" in
|
||||
@@ -102,6 +104,10 @@
|
||||
;;
|
||||
esac
|
||||
libswanted=`echo $libswanted | sed 's/ malloc / /'`
|
||||
|
@ -20,31 +20,16 @@
|
|||
;;
|
||||
esac
|
||||
|
||||
@@ -116,17 +122,17 @@ case "$osvers" in
|
||||
|
||||
*)
|
||||
objformat=`/usr/bin/objformat`
|
||||
- if [ x$objformat = xelf ]; then
|
||||
- libpth="/usr/lib /usr/local/lib"
|
||||
- glibpth="/usr/lib /usr/local/lib"
|
||||
@@ -125,7 +131,7 @@
|
||||
else
|
||||
libpth="/usr/lib /usr/local/lib"
|
||||
glibpth="/usr/lib /usr/local/lib"
|
||||
- ldflags="-Wl,-E "
|
||||
- lddlflags="-shared "
|
||||
- else
|
||||
+ if [ x$objformat = xaout ]; then
|
||||
if [ -e /usr/lib/aout ]; then
|
||||
libpth="/usr/lib/aout /usr/local/lib /usr/lib"
|
||||
glibpth="/usr/lib/aout /usr/local/lib /usr/lib"
|
||||
fi
|
||||
lddlflags='-Bshareable'
|
||||
+ else
|
||||
+ libpth="/usr/lib /usr/local/lib"
|
||||
+ glibpth="/usr/lib /usr/local/lib"
|
||||
+ ldflags="%%PTHREAD_LIBS%% -Wl,-E"
|
||||
+ lddlflags="-shared "
|
||||
+ ldflags="%%PTHREAD_LIBS%% -Wl,-E "
|
||||
lddlflags="-shared "
|
||||
fi
|
||||
cccdlflags='-DPIC -fPIC'
|
||||
;;
|
||||
@@ -136,7 +142,7 @@ case "$osvers" in
|
||||
@@ -136,7 +142,7 @@
|
||||
0*|1*|2*|3*) ;;
|
||||
|
||||
*)
|
||||
|
@ -53,7 +38,7 @@
|
|||
if /usr/bin/file -L /usr/lib/libc.so | /usr/bin/grep -vq "not stripped" ; then
|
||||
usenm=false
|
||||
fi
|
||||
@@ -183,7 +189,9 @@ esac
|
||||
@@ -183,7 +189,9 @@
|
||||
|
||||
# This script UU/usethreads.cbu will get 'called-back' by Configure
|
||||
# after it has prompted the user for whether to use threads.
|
||||
|
|
|
@ -1,10 +0,0 @@
|
|||
--- makedepend.SH.orig Wed May 2 22:37:13 2007
|
||||
+++ makedepend.SH Wed May 2 22:38:48 2007
|
||||
@@ -167,6 +167,7 @@
|
||||
-e '/^#.*<builtin>/d' \
|
||||
-e '/^#.*<built-in>/d' \
|
||||
-e '/^#.*<command line>/d' \
|
||||
+ -e '/^#.*<command-line>/d' \
|
||||
-e '/^#.*"-"/d' \
|
||||
-e '/: file path prefix .* never used$/d' \
|
||||
-e 's#\.[0-9][0-9]*\.c#'"$file.c#" \
|
|
@ -1,58 +1,60 @@
|
|||
--- perl.c.orig Fri Apr 22 16:14:27 2005
|
||||
+++ perl.c Thu Dec 22 12:47:28 2005
|
||||
@@ -4397,6 +4397,27 @@ S_init_perllib(pTHX)
|
||||
incpush(APPLLIB_EXP, TRUE, TRUE, TRUE);
|
||||
--- perl.c
|
||||
+++ perl.c
|
||||
@@ -4882,6 +4882,28 @@
|
||||
incpush(APPLLIB_EXP, TRUE, TRUE, TRUE, TRUE);
|
||||
#endif
|
||||
|
||||
+#ifdef SITEARCH_EXP
|
||||
+ /* sitearch is always relative to sitelib on Windows for
|
||||
+ * DLL-based path intuition to work correctly */
|
||||
+# if !defined(WIN32)
|
||||
+ incpush(SITEARCH_EXP, FALSE, FALSE, TRUE);
|
||||
+ incpush(SITEARCH_EXP, FALSE, FALSE, TRUE, TRUE);
|
||||
+# endif
|
||||
+#endif
|
||||
+
|
||||
+#ifdef SITELIB_EXP
|
||||
+# if defined(WIN32)
|
||||
+ /* this picks up sitearch as well */
|
||||
+ incpush(SITELIB_EXP, TRUE, FALSE, TRUE);
|
||||
+ incpush(SITELIB_EXP, TRUE, FALSE, TRUE, TRUE);
|
||||
+# else
|
||||
+ incpush(SITELIB_EXP, FALSE, FALSE, TRUE);
|
||||
+ incpush(SITELIB_EXP, FALSE, FALSE, TRUE, TRUE);
|
||||
+# endif
|
||||
+#endif
|
||||
+
|
||||
+#ifdef SITELIB_STEM /* Search for version-specific dirs below here */
|
||||
+ incpush(SITELIB_STEM, FALSE, TRUE, TRUE);
|
||||
+#if defined(SITELIB_STEM) && defined(PERL_INC_VERSION_LIST)
|
||||
+ /* Search for version-specific dirs below here */
|
||||
+ incpush(SITELIB_STEM, FALSE, TRUE, TRUE, TRUE);
|
||||
+#endif
|
||||
+
|
||||
#ifdef ARCHLIB_EXP
|
||||
incpush(ARCHLIB_EXP, FALSE, FALSE, TRUE);
|
||||
incpush(ARCHLIB_EXP, FALSE, FALSE, TRUE, TRUE);
|
||||
#endif
|
||||
@@ -4428,27 +4449,6 @@ S_init_perllib(pTHX)
|
||||
incpush(PRIVLIB_EXP, TRUE, FALSE, TRUE);
|
||||
#else
|
||||
incpush(PRIVLIB_EXP, FALSE, FALSE, TRUE);
|
||||
-#endif
|
||||
-
|
||||
@@ -4915,28 +4937,6 @@
|
||||
incpush(PRIVLIB_EXP, FALSE, FALSE, TRUE, TRUE);
|
||||
#endif
|
||||
|
||||
-#ifdef SITEARCH_EXP
|
||||
- /* sitearch is always relative to sitelib on Windows for
|
||||
- * DLL-based path intuition to work correctly */
|
||||
-# if !defined(WIN32)
|
||||
- incpush(SITEARCH_EXP, FALSE, FALSE, TRUE);
|
||||
- incpush(SITEARCH_EXP, FALSE, FALSE, TRUE, TRUE);
|
||||
-# endif
|
||||
-#endif
|
||||
-
|
||||
-#ifdef SITELIB_EXP
|
||||
-# if defined(WIN32)
|
||||
- /* this picks up sitearch as well */
|
||||
- incpush(SITELIB_EXP, TRUE, FALSE, TRUE);
|
||||
- incpush(SITELIB_EXP, TRUE, FALSE, TRUE, TRUE);
|
||||
-# else
|
||||
- incpush(SITELIB_EXP, FALSE, FALSE, TRUE);
|
||||
- incpush(SITELIB_EXP, FALSE, FALSE, TRUE, TRUE);
|
||||
-# endif
|
||||
-#endif
|
||||
-
|
||||
-#ifdef SITELIB_STEM /* Search for version-specific dirs below here */
|
||||
- incpush(SITELIB_STEM, FALSE, TRUE, TRUE);
|
||||
#endif
|
||||
|
||||
-#if defined(SITELIB_STEM) && defined(PERL_INC_VERSION_LIST)
|
||||
- /* Search for version-specific dirs below here */
|
||||
- incpush(SITELIB_STEM, FALSE, TRUE, TRUE, TRUE);
|
||||
-#endif
|
||||
-
|
||||
#ifdef PERL_VENDORARCH_EXP
|
||||
/* vendorarch is always relative to vendorlib on Windows for
|
||||
* DLL-based path intuition to work correctly */
|
||||
|
|
21
lang/perl5.10/files/patch-sv.c
Normal file
21
lang/perl5.10/files/patch-sv.c
Normal file
|
@ -0,0 +1,21 @@
|
|||
--- sv.c
|
||||
+++ sv.c
|
||||
@@ -9813,7 +9813,8 @@ Perl_sv_dup(pTHX_ SV *sstr, CLONE_PARAMS* param)
|
||||
IoBOTTOM_NAME(dstr) = SAVEPV(IoBOTTOM_NAME(dstr));
|
||||
break;
|
||||
case SVt_PVAV:
|
||||
- if (AvARRAY((AV*)sstr)) {
|
||||
+ /* avoid cloning an empty array */
|
||||
+ if (AvARRAY((AV*)sstr) && AvFILLp((AV*)sstr >= 0) {
|
||||
SV **dst_ary, **src_ary;
|
||||
SSize_t items = AvFILLp((AV*)sstr) + 1;
|
||||
|
||||
@@ -9838,6 +9839,8 @@ Perl_sv_dup(pTHX_ SV *sstr, CLONE_PARAMS* param)
|
||||
else {
|
||||
SvPV_set(dstr, NULL);
|
||||
AvALLOC((AV*)dstr) = (SV**)NULL;
|
||||
+ AvMAX( (AV *)dstr) = -1;
|
||||
+ AvFILLp((AV *)dstr) = -1;
|
||||
}
|
||||
AvARYLEN((AV*)dstr) = sv_dup_inc(AvARYLEN((AV*)sstr), param);
|
||||
break;
|
|
@ -1,95 +0,0 @@
|
|||
--- regcomp.c.orig 2006-01-08 21:59:27.000000000 +0100
|
||||
+++ regcomp.c 2007-11-06 22:48:26.000000000 +0100
|
||||
@@ -135,7 +135,10 @@ typedef struct RExC_state_t {
|
||||
I32 extralen;
|
||||
I32 seen_zerolen;
|
||||
I32 seen_evals;
|
||||
- I32 utf8;
|
||||
+ I32 utf8; /* whether the pattern is utf8 or not */
|
||||
+ I32 orig_utf8; /* whether the pattern was originally in utf8 */
|
||||
+ /* XXX use this for future optimisation of case
|
||||
+ * where pattern must be upgraded to utf8. */
|
||||
#if ADD_TO_REGEXEC
|
||||
char *starttry; /* -Dr: where regtry was called. */
|
||||
#define RExC_starttry (pRExC_state->starttry)
|
||||
@@ -161,6 +164,7 @@ typedef struct RExC_state_t {
|
||||
#define RExC_seen_zerolen (pRExC_state->seen_zerolen)
|
||||
#define RExC_seen_evals (pRExC_state->seen_evals)
|
||||
#define RExC_utf8 (pRExC_state->utf8)
|
||||
+#define RExC_orig_utf8 (pRExC_state->orig_utf8)
|
||||
|
||||
#define ISMULT1(c) ((c) == '*' || (c) == '+' || (c) == '?')
|
||||
#define ISMULT2(s) ((*s) == '*' || (*s) == '+' || (*s) == '?' || \
|
||||
@@ -1749,15 +1753,16 @@ Perl_pregcomp(pTHX_ char *exp, char *xen
|
||||
if (exp == NULL)
|
||||
FAIL("NULL regexp argument");
|
||||
|
||||
- RExC_utf8 = pm->op_pmdynflags & PMdf_CMP_UTF8;
|
||||
+ RExC_utf8 = RExC_orig_utf8 = pm->op_pmdynflags & PMdf_CMP_UTF8;
|
||||
|
||||
- RExC_precomp = exp;
|
||||
DEBUG_r({
|
||||
if (!PL_colorset) reginitcolors();
|
||||
PerlIO_printf(Perl_debug_log, "%sCompiling REx%s `%s%*s%s'\n",
|
||||
PL_colors[4],PL_colors[5],PL_colors[0],
|
||||
- (int)(xend - exp), RExC_precomp, PL_colors[1]);
|
||||
+ (int)(xend - exp), exp, PL_colors[1]);
|
||||
});
|
||||
+redo_first_pass:
|
||||
+ RExC_precomp = exp;
|
||||
RExC_flags = pm->op_pmflags;
|
||||
RExC_sawback = 0;
|
||||
|
||||
@@ -1783,6 +1788,25 @@ Perl_pregcomp(pTHX_ char *exp, char *xen
|
||||
RExC_precomp = Nullch;
|
||||
return(NULL);
|
||||
}
|
||||
+ if (RExC_utf8 && !RExC_orig_utf8) {
|
||||
+ /* It's possible to write a regexp in ascii that represents unicode
|
||||
+ codepoints outside of the byte range, such as via \x{100}. If we
|
||||
+ detect such a sequence we have to convert the entire pattern to utf8
|
||||
+ and then recompile, as our sizing calculation will have been based
|
||||
+ on 1 byte == 1 character, but we will need to use utf8 to encode
|
||||
+ at least some part of the pattern, and therefore must convert the whole
|
||||
+ thing.
|
||||
+ XXX: somehow figure out how to make this less expensive...
|
||||
+ -- dmq */
|
||||
+ STRLEN len = xend-exp;
|
||||
+ DEBUG_r(PerlIO_printf(Perl_debug_log,
|
||||
+ "UTF8 mismatch! Converting to utf8 for resizing and compile\n"));
|
||||
+ exp = (char*)Perl_bytes_to_utf8(aTHX_ (U8*)exp, &len);
|
||||
+ xend = exp + len;
|
||||
+ RExC_orig_utf8 = RExC_utf8;
|
||||
+ SAVEFREEPV(exp);
|
||||
+ goto redo_first_pass;
|
||||
+ }
|
||||
DEBUG_r(PerlIO_printf(Perl_debug_log, "size %"IVdf" ", (IV)RExC_size));
|
||||
|
||||
/* Small enough for pointer-storage convention?
|
||||
--- t/op/pat.t.orig 2006-01-07 13:53:32.000000000 +0100
|
||||
+++ t/op/pat.t 2007-11-06 21:52:30.000000000 +0100
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
$| = 1;
|
||||
|
||||
-print "1..1187\n";
|
||||
+print "1..1189\n";
|
||||
|
||||
BEGIN {
|
||||
chdir 't' if -d 't';
|
||||
@@ -3395,5 +3395,14 @@ ok(("foba ba$s" =~ qr/(foo|BaSS|bar)/i)
|
||||
"# assigning to original string should not corrupt match vars");
|
||||
}
|
||||
|
||||
-# last test 1187
|
||||
+{
|
||||
+ use warnings;
|
||||
+ my @w;
|
||||
+ local $SIG{__WARN__}=sub{push @w,"@_"};
|
||||
+ my $c=qq(\x{DF});
|
||||
+ ok($c=~/${c}|\x{100}/, "ASCII pattern that really is utf8");
|
||||
+ ok(@w==0, "ASCII pattern that really is utf8");
|
||||
+}
|
||||
+
|
||||
+# last test 1189
|
||||
|
|
@ -1,5 +1,6 @@
|
|||
bin/a2p
|
||||
bin/c2ph
|
||||
bin/corelist
|
||||
bin/cpan
|
||||
bin/dprofpp
|
||||
bin/enc2xs
|
||||
|
@ -17,6 +18,7 @@ bin/perlbug
|
|||
bin/perlcc
|
||||
bin/perldoc
|
||||
bin/perlivp
|
||||
bin/perlthanks
|
||||
bin/piconv
|
||||
bin/pl2pm
|
||||
bin/pod2html
|
||||
|
@ -43,6 +45,7 @@ lib/perl5/%%PERL_VER%%/B/assemble
|
|||
lib/perl5/%%PERL_VER%%/B/cc_harness
|
||||
lib/perl5/%%PERL_VER%%/B/disassemble
|
||||
lib/perl5/%%PERL_VER%%/B/makeliblinks
|
||||
lib/perl5/%%PERL_VER%%/B/Lint/Debug.pm
|
||||
lib/perl5/%%PERL_VER%%/BSDPAN/BSDPAN.pm
|
||||
lib/perl5/%%PERL_VER%%/BSDPAN/BSDPAN/Override.pm
|
||||
lib/perl5/%%PERL_VER%%/BSDPAN/Config.pm
|
||||
|
@ -59,33 +62,21 @@ lib/perl5/%%PERL_VER%%/CGI/Pretty.pm
|
|||
lib/perl5/%%PERL_VER%%/CGI/Push.pm
|
||||
lib/perl5/%%PERL_VER%%/CGI/Switch.pm
|
||||
lib/perl5/%%PERL_VER%%/CGI/Util.pm
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/RunMeFirst
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/caution.xbm
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/clickable_image.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/cookie.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/crash.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/customize.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/diff_upload.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/dna_small_gif.uu
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/file_upload.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/frameset.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/index.html
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/internal_links.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/javascript.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/make_links.pl
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/monty.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/multiple_forms.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/nph-clock.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/nph-multipart.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/popup.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/save_state.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/tryit.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/wilogo_gif.uu
|
||||
lib/perl5/%%PERL_VER%%/CORE.pod
|
||||
lib/perl5/%%PERL_VER%%/CPAN.pm
|
||||
lib/perl5/%%PERL_VER%%/CPAN/FirstTime.pm
|
||||
lib/perl5/%%PERL_VER%%/CPAN/Nox.pm
|
||||
lib/perl5/%%PERL_VER%%/CPAN/PAUSE2003.pub
|
||||
lib/perl5/%%PERL_VER%%/CPAN/SIGNATURE
|
||||
lib/perl5/%%PERL_VER%%/CPAN/API/HOWTO.pod
|
||||
lib/perl5/%%PERL_VER%%/CPAN/Debug.pm
|
||||
lib/perl5/%%PERL_VER%%/CPAN/DeferedCode.pm
|
||||
lib/perl5/%%PERL_VER%%/CPAN/Distroprefs.pm
|
||||
lib/perl5/%%PERL_VER%%/CPAN/HandleConfig.pm
|
||||
lib/perl5/%%PERL_VER%%/CPAN/Kwalify.pm
|
||||
lib/perl5/%%PERL_VER%%/CPAN/Kwalify/distroprefs.dd
|
||||
lib/perl5/%%PERL_VER%%/CPAN/Kwalify/distroprefs.yml
|
||||
lib/perl5/%%PERL_VER%%/CPAN/Queue.pm
|
||||
lib/perl5/%%PERL_VER%%/CPAN/Tarzip.pm
|
||||
lib/perl5/%%PERL_VER%%/CPAN/Version.pm
|
||||
lib/perl5/%%PERL_VER%%/Carp.pm
|
||||
lib/perl5/%%PERL_VER%%/Carp/Heavy.pm
|
||||
lib/perl5/%%PERL_VER%%/Class/ISA.pm
|
||||
|
@ -97,25 +88,19 @@ lib/perl5/%%PERL_VER%%/DBM_Filter/encode.pm
|
|||
lib/perl5/%%PERL_VER%%/DBM_Filter/int32.pm
|
||||
lib/perl5/%%PERL_VER%%/DBM_Filter/null.pm
|
||||
lib/perl5/%%PERL_VER%%/DBM_Filter/utf8.pm
|
||||
lib/perl5/%%PERL_VER%%/Devel/InnerPackage.pm
|
||||
lib/perl5/%%PERL_VER%%/Devel/SelfStubber.pm
|
||||
lib/perl5/%%PERL_VER%%/Digest.pm
|
||||
lib/perl5/%%PERL_VER%%/Digest/base.pm
|
||||
lib/perl5/%%PERL_VER%%/Digest/file.pm
|
||||
lib/perl5/%%PERL_VER%%/DirHandle.pm
|
||||
lib/perl5/%%PERL_VER%%/Dumpvalue.pm
|
||||
lib/perl5/%%PERL_VER%%/Encode/CN/HZ.pm
|
||||
lib/perl5/%%PERL_VER%%/Encode/Changes.e2x
|
||||
lib/perl5/%%PERL_VER%%/Encode/ConfigLocal_PM.e2x
|
||||
lib/perl5/%%PERL_VER%%/Encode/JP/H2Z.pm
|
||||
lib/perl5/%%PERL_VER%%/Encode/JP/JIS7.pm
|
||||
lib/perl5/%%PERL_VER%%/Encode/KR/2022_KR.pm
|
||||
lib/perl5/%%PERL_VER%%/Encode/MIME/Header.pm
|
||||
lib/perl5/%%PERL_VER%%/Encode/MIME/Header/ISO_2022_JP.pm
|
||||
lib/perl5/%%PERL_VER%%/Encode/Makefile_PL.e2x
|
||||
lib/perl5/%%PERL_VER%%/Encode/PerlIO.pod
|
||||
lib/perl5/%%PERL_VER%%/Encode/README.e2x
|
||||
lib/perl5/%%PERL_VER%%/Encode/Supported.pod
|
||||
lib/perl5/%%PERL_VER%%/Encode/Unicode/UTF7.pm
|
||||
lib/perl5/%%PERL_VER%%/Encode/_PM.e2x
|
||||
lib/perl5/%%PERL_VER%%/Encode/_T.e2x
|
||||
lib/perl5/%%PERL_VER%%/Encode/encode.h
|
||||
|
@ -128,6 +113,7 @@ lib/perl5/%%PERL_VER%%/ExtUtils/Command/MM.pm
|
|||
lib/perl5/%%PERL_VER%%/ExtUtils/Constant.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/Constant/Base.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/Constant/Utils.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/Constant/ProxySubs.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/Constant/XS.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/Embed.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/Install.pm
|
||||
|
@ -141,6 +127,7 @@ lib/perl5/%%PERL_VER%%/ExtUtils/MM_Any.pm
|
|||
lib/perl5/%%PERL_VER%%/ExtUtils/MM_BeOS.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/MM_Cygwin.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/MM_DOS.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/MM_Darwin.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/MM_MacOS.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/MM_NW5.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/MM_OS2.pm
|
||||
|
@ -162,9 +149,8 @@ lib/perl5/%%PERL_VER%%/ExtUtils/Manifest.pm
|
|||
lib/perl5/%%PERL_VER%%/ExtUtils/Miniperl.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/Mkbootstrap.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/Mksymlists.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/NOTES
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/PATCHING
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/Packlist.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/ParseXS.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/testlib.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/typemap
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/xsubpp
|
||||
|
@ -193,16 +179,13 @@ lib/perl5/%%PERL_VER%%/Filter/Simple.pm
|
|||
lib/perl5/%%PERL_VER%%/FindBin.pm
|
||||
lib/perl5/%%PERL_VER%%/Getopt/Long.pm
|
||||
lib/perl5/%%PERL_VER%%/Getopt/Std.pm
|
||||
lib/perl5/%%PERL_VER%%/Hash/Util.pm
|
||||
lib/perl5/%%PERL_VER%%/I18N/Collate.pm
|
||||
lib/perl5/%%PERL_VER%%/I18N/LangTags.pm
|
||||
lib/perl5/%%PERL_VER%%/I18N/LangTags/Detect.pm
|
||||
lib/perl5/%%PERL_VER%%/I18N/LangTags/List.pm
|
||||
lib/perl5/%%PERL_VER%%/IO/Socket/INET.pm
|
||||
lib/perl5/%%PERL_VER%%/IO/Socket/UNIX.pm
|
||||
lib/perl5/%%PERL_VER%%/IPC/Open2.pm
|
||||
lib/perl5/%%PERL_VER%%/IPC/Open3.pm
|
||||
lib/perl5/%%PERL_VER%%/List/Util.pm
|
||||
lib/perl5/%%PERL_VER%%/IPC/regen.pl
|
||||
lib/perl5/%%PERL_VER%%/Locale/Constants.pm
|
||||
lib/perl5/%%PERL_VER%%/Locale/Constants.pod
|
||||
lib/perl5/%%PERL_VER%%/Locale/Country.pm
|
||||
|
@ -235,6 +218,9 @@ lib/perl5/%%PERL_VER%%/Memoize/ExpireTest.pm
|
|||
lib/perl5/%%PERL_VER%%/Memoize/NDBM_File.pm
|
||||
lib/perl5/%%PERL_VER%%/Memoize/SDBM_File.pm
|
||||
lib/perl5/%%PERL_VER%%/Memoize/Storable.pm
|
||||
lib/perl5/%%PERL_VER%%/Module/CoreList.pm
|
||||
lib/perl5/%%PERL_VER%%/Module/Pluggable.pm
|
||||
lib/perl5/%%PERL_VER%%/Module/Pluggable/Object.pm
|
||||
lib/perl5/%%PERL_VER%%/NEXT.pm
|
||||
lib/perl5/%%PERL_VER%%/Net/Cmd.pm
|
||||
lib/perl5/%%PERL_VER%%/Net/Config.eg
|
||||
|
@ -246,7 +232,7 @@ lib/perl5/%%PERL_VER%%/Net/FTP/E.pm
|
|||
lib/perl5/%%PERL_VER%%/Net/FTP/I.pm
|
||||
lib/perl5/%%PERL_VER%%/Net/FTP/L.pm
|
||||
lib/perl5/%%PERL_VER%%/Net/FTP/dataconn.pm
|
||||
lib/perl5/%%PERL_VER%%/Net/Hostname.eg
|
||||
lib/perl5/%%PERL_VER%%/Net/Hostname.pm.eg
|
||||
lib/perl5/%%PERL_VER%%/Net/NNTP.pm
|
||||
lib/perl5/%%PERL_VER%%/Net/Netrc.pm
|
||||
lib/perl5/%%PERL_VER%%/Net/POP3.pm
|
||||
|
@ -289,7 +275,6 @@ lib/perl5/%%PERL_VER%%/Pod/Text/Color.pm
|
|||
lib/perl5/%%PERL_VER%%/Pod/Text/Overstrike.pm
|
||||
lib/perl5/%%PERL_VER%%/Pod/Text/Termcap.pm
|
||||
lib/perl5/%%PERL_VER%%/Pod/Usage.pm
|
||||
lib/perl5/%%PERL_VER%%/Scalar/Util.pm
|
||||
lib/perl5/%%PERL_VER%%/Search/Dict.pm
|
||||
lib/perl5/%%PERL_VER%%/SelectSaver.pm
|
||||
lib/perl5/%%PERL_VER%%/SelfLoader.pm
|
||||
|
@ -310,14 +295,15 @@ lib/perl5/%%PERL_VER%%/Test/Harness/Assert.pm
|
|||
lib/perl5/%%PERL_VER%%/Test/Harness/Iterator.pm
|
||||
lib/perl5/%%PERL_VER%%/Test/Harness/Point.pm
|
||||
lib/perl5/%%PERL_VER%%/Test/Harness/Straps.pm
|
||||
lib/perl5/%%PERL_VER%%/Test/Harness/Results.pm
|
||||
lib/perl5/%%PERL_VER%%/Test/Harness/TAP.pod
|
||||
lib/perl5/%%PERL_VER%%/Test/Harness/Util.pm
|
||||
lib/perl5/%%PERL_VER%%/Test/More.pm
|
||||
lib/perl5/%%PERL_VER%%/Test/Simple.pm
|
||||
lib/perl5/%%PERL_VER%%/Test/Tutorial.pod
|
||||
lib/perl5/%%PERL_VER%%/Text/Abbrev.pm
|
||||
lib/perl5/%%PERL_VER%%/Text/Balanced.pm
|
||||
lib/perl5/%%PERL_VER%%/Text/ParseWords.pm
|
||||
lib/perl5/%%PERL_VER%%/Text/Soundex.pm
|
||||
lib/perl5/%%PERL_VER%%/Text/Tabs.pm
|
||||
lib/perl5/%%PERL_VER%%/Text/Wrap.pm
|
||||
lib/perl5/%%PERL_VER%%/Thread.pm
|
||||
|
@ -330,6 +316,7 @@ lib/perl5/%%PERL_VER%%/Tie/Hash.pm
|
|||
lib/perl5/%%PERL_VER%%/Tie/Memoize.pm
|
||||
lib/perl5/%%PERL_VER%%/Tie/RefHash.pm
|
||||
lib/perl5/%%PERL_VER%%/Tie/Scalar.pm
|
||||
lib/perl5/%%PERL_VER%%/Tie/StdHandle.pm
|
||||
lib/perl5/%%PERL_VER%%/Tie/SubstrHash.pm
|
||||
lib/perl5/%%PERL_VER%%/Time/Local.pm
|
||||
lib/perl5/%%PERL_VER%%/Time/gmtime.pm
|
||||
|
@ -344,10 +331,6 @@ lib/perl5/%%PERL_VER%%/User/pwent.pm
|
|||
lib/perl5/%%PERL_VER%%/abbrev.pl
|
||||
lib/perl5/%%PERL_VER%%/assert.pl
|
||||
lib/perl5/%%PERL_VER%%/attributes.pm
|
||||
lib/perl5/%%PERL_VER%%/auto/POSIX/SigAction/flags.al
|
||||
lib/perl5/%%PERL_VER%%/auto/POSIX/SigAction/handler.al
|
||||
lib/perl5/%%PERL_VER%%/auto/POSIX/SigAction/mask.al
|
||||
lib/perl5/%%PERL_VER%%/auto/POSIX/SigAction/safe.al
|
||||
lib/perl5/%%PERL_VER%%/autouse.pm
|
||||
lib/perl5/%%PERL_VER%%/base.pm
|
||||
lib/perl5/%%PERL_VER%%/bigfloat.pl
|
||||
|
@ -364,7 +347,6 @@ lib/perl5/%%PERL_VER%%/charnames.pm
|
|||
lib/perl5/%%PERL_VER%%/complete.pl
|
||||
lib/perl5/%%PERL_VER%%/constant.pm
|
||||
lib/perl5/%%PERL_VER%%/ctime.pl
|
||||
lib/perl5/%%PERL_VER%%/dbm_filter_util.pl
|
||||
lib/perl5/%%PERL_VER%%/diagnostics.pm
|
||||
lib/perl5/%%PERL_VER%%/dotsh.pl
|
||||
lib/perl5/%%PERL_VER%%/dumpvar.pl
|
||||
|
@ -432,6 +414,7 @@ lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/CORE/nostdio.h
|
|||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/CORE/op.h
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/CORE/opcode.h
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/CORE/opnames.h
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/CORE/overload.h
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/CORE/pad.h
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/CORE/patchlevel.h
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/CORE/perl.h
|
||||
|
@ -476,20 +459,30 @@ lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/Alias.pm
|
|||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/Byte.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/CJKConstants.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/CN.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/CN/HZ.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/Config.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/EBCDIC.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/Encoder.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/Encoding.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/GSM0338.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/Guess.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/JP.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/JP/H2Z.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/JP/JIS7.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/KR.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/KR/2022_KR.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/MIME/Header.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/MIME/Header/ISO_2022_JP.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/MIME/Name.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/Symbol.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/TW.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/Unicode.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/Unicode/UTF7.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Errno.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Fcntl.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/File/Glob.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Filter/Util/Call.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Hash/Util.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/I18N/Langinfo.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IO.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IO/Dir.pm
|
||||
|
@ -500,9 +493,13 @@ lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IO/Poll.pm
|
|||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IO/Seekable.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IO/Select.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IO/Socket.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IO/Socket/INET.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IO/Socket/UNIX.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IPC/Msg.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IPC/Semaphore.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IPC/SharedMem.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IPC/SysV.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/List/Util.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/MIME/Base64.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/MIME/QuotedPrint.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/NDBM_File.pm
|
||||
|
@ -515,83 +512,52 @@ lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/PerlIO/scalar.pm
|
|||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/PerlIO/via.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/SDBM_File.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Safe.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Scalar/Util.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Socket.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Storable.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Sys/Hostname.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Sys/Syslog.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Text/Soundex.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Time/HiRes.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Unicode/Normalize.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/XS/APItest.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/XS/Typemap.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/XSLoader.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/attrs.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/B/B.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/B/B.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/B/C/C.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/B/C/C.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/ByteLoader/ByteLoader.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/ByteLoader/ByteLoader.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Cwd/Cwd.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Cwd/Cwd.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/DB_File/DB_File.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/DB_File/DB_File.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/DB_File/autosplit.ix
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Data/Dumper/Dumper.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Data/Dumper/Dumper.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Devel/DProf/DProf.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Devel/DProf/DProf.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Devel/PPPort/PPPort.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Devel/PPPort/PPPort.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Devel/Peek/Peek.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Devel/Peek/Peek.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Digest/MD5/MD5.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Digest/MD5/MD5.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/DynaLoader/DynaLoader.a
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/DynaLoader/autosplit.ix
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/DynaLoader/dl_expandspec.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/DynaLoader/dl_find_symbol_anywhere.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/DynaLoader/dl_findfile.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/DynaLoader/extralibs.ld
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/Byte/Byte.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/Byte/Byte.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/CN/CN.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/CN/CN.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/EBCDIC/EBCDIC.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/EBCDIC/EBCDIC.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/Encode.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/Encode.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/JP/JP.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/JP/JP.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/KR/KR.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/KR/KR.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/Symbol/Symbol.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/Symbol/Symbol.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/TW/TW.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/TW/TW.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/Unicode/Unicode.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/Unicode/Unicode.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Fcntl/Fcntl.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Fcntl/Fcntl.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/File/Glob/Glob.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/File/Glob/Glob.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Filter/Util/Call/Call.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Filter/Util/Call/Call.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/I18N/Langinfo/Langinfo.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Hash/Util/Util.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/I18N/Langinfo/Langinfo.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/I18N/Langinfo/autosplit.ix
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/IO/IO.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/IO/IO.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/IPC/SysV/SysV.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/IPC/SysV/SysV.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/List/Util/Util.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/List/Util/Util.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/MIME/Base64/Base64.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/MIME/Base64/Base64.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/NDBM_File/NDBM_File.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/NDBM_File/NDBM_File.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Opcode/Opcode.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Opcode/Opcode.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/POSIX.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/POSIX.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/abs.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/alarm.al
|
||||
|
@ -744,18 +710,31 @@ lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/vprintf.al
|
|||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/vsprintf.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/wait.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/waitpid.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/PerlIO/encoding/encoding.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigAction/flags.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigAction/handler.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigAction/mask.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigAction/new.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigAction/safe.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/CLEAR.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/DELETE.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/EXISTS.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/FETCH.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/SCALAR.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/STORE.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/_check.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/_croak.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/_exist.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/_getsig.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/_init.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/new.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/PerlIO/encoding/encoding.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/PerlIO/scalar/scalar.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/PerlIO/scalar/scalar.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/PerlIO/via/via.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/PerlIO/via/via.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/SDBM_File/SDBM_File.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/SDBM_File/SDBM_File.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Socket/Socket.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Socket/Socket.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/BIN_VERSION_NV.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/BIN_WRITE_VERSION_NV.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/CAN_FLOCK.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/Storable.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/Storable.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/_freeze.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/_retrieve.al
|
||||
|
@ -763,6 +742,7 @@ lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/_store.al
|
|||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/_store_fd.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/autosplit.ix
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/fd_retrieve.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/file_magic.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/freeze.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/lock_nstore.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/lock_retrieve.al
|
||||
|
@ -778,27 +758,16 @@ lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/show_file_magic.al
|
|||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/store.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/store_fd.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/thaw.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Sys/Hostname/Hostname.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Sys/Hostname/Hostname.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Sys/Hostname/autosplit.ix
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Sys/Syslog/Syslog.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Sys/Syslog/Syslog.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Time/HiRes/HiRes.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Text/Soundex/Soundex.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Time/HiRes/HiRes.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Unicode/Normalize/Normalize.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Unicode/Normalize/Normalize.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/XS/APItest/APItest.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/XS/APItest/APItest.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/XS/Typemap/Typemap.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/XS/Typemap/Typemap.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/attrs/attrs.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/attrs/attrs.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/re/re.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/re/re.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/sdbm/extralibs.ld
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/threads/shared/shared.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/threads/shared/shared.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/threads/threads.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/threads/threads.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/encoding.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/lib.pm
|
||||
|
@ -830,6 +799,7 @@ lib/perl5/%%PERL_VER%%/pod/perl585delta.pod
|
|||
lib/perl5/%%PERL_VER%%/pod/perl586delta.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perl587delta.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perl588delta.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perl589delta.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perl58delta.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlaix.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlamiga.pod
|
||||
|
@ -848,6 +818,7 @@ lib/perl5/%%PERL_VER%%/pod/perlcheat.pod
|
|||
lib/perl5/%%PERL_VER%%/pod/perlclib.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlcn.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlcompile.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlcommunity.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlcygwin.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perldata.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perldbmfilter.pod
|
||||
|
@ -923,11 +894,15 @@ lib/perl5/%%PERL_VER%%/pod/perlpodspec.pod
|
|||
lib/perl5/%%PERL_VER%%/pod/perlport.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlqnx.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlre.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlrebackslash.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlrecharclass.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlref.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlreftut.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlreguts.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlrequick.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlreref.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlretut.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlriscos.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlrun.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlsec.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlsolaris.pod
|
||||
|
@ -944,7 +919,9 @@ lib/perl5/%%PERL_VER%%/pod/perltrap.pod
|
|||
lib/perl5/%%PERL_VER%%/pod/perltru64.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perltw.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlunicode.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlunifaq.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perluniintro.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlunitut.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlutil.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perluts.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlvar.pod
|
||||
|
@ -981,6 +958,7 @@ lib/perl5/%%PERL_VER%%/unicore/Jamo.txt
|
|||
lib/perl5/%%PERL_VER%%/unicore/LineBreak.txt
|
||||
lib/perl5/%%PERL_VER%%/unicore/Name.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/NamedSequences.txt
|
||||
lib/perl5/%%PERL_VER%%/unicore/NamedSqProv.txt
|
||||
lib/perl5/%%PERL_VER%%/unicore/NamesList.txt
|
||||
lib/perl5/%%PERL_VER%%/unicore/NormalizationCorrections.txt
|
||||
lib/perl5/%%PERL_VER%%/unicore/PVA.pl
|
||||
|
@ -1069,6 +1047,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Arab.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Armn.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/AsciiHex.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Assigned.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Bali.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Beng.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/BidiC.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/BidiCont.pl
|
||||
|
@ -1079,8 +1058,10 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Bugi.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Buhd.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/C.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Canadian.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Carian.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Cc.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Cf.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Cham.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Cher.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Cn.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Cntrl.pl
|
||||
|
@ -1091,6 +1072,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Cs.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Cyrl.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Dash.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Dash2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/DefaultI.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Dep.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Deprecat.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Deva.pl
|
||||
|
@ -1104,9 +1086,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Extender.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Geor.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Glag.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Goth.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/GrLink.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Graph.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Grapheme.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Grek.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Gujr.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Guru.pl
|
||||
|
@ -1130,6 +1110,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/IdsTrina.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InAegean.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InAlphab.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InAncie2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InAncie3.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InAncien.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InArabi2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InArabi3.pl
|
||||
|
@ -1137,6 +1118,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InArabi4.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InArabic.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InArmeni.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InArrows.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InBaline.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InBasicL.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InBengal.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InBlockE.pl
|
||||
|
@ -1147,6 +1129,8 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InBraill.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InBugine.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InBuhid.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InByzant.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCarian.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCham.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCherok.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCjkCo2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCjkCo3.pl
|
||||
|
@ -1164,13 +1148,19 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCombi4.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCombin.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InContro.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCoptic.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCounti.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCunei2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCuneif.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCurren.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCyprio.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCyril2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCyril3.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCyril4.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCyrill.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InDesere.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InDevana.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InDingba.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InDomino.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InEnclo2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InEnclos.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InEthio2.pl
|
||||
|
@ -1202,6 +1192,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InKangxi.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InKannad.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InKatak2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InKataka.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InKayahL.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InKharos.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InKhmer.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InKhmerS.pl
|
||||
|
@ -1209,12 +1200,18 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLao.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLatin1.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLatin2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLatin3.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLatin4.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLatin5.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLatinE.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLepcha.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLetter.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLimbu.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLinea2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLinear.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLowSur.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLycian.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLydian.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InMahjon.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InMalaya.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InMathe2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InMathem.pl
|
||||
|
@ -1228,22 +1225,30 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InMongol.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InMusica.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InMyanma.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InNewTai.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InNko.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InNumber.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InOgham.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InOlChik.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InOldIta.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InOldPer.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InOptica.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InOriya.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InOsmany.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InPhagsP.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InPhaist.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InPhoeni.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InPhone2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InPhonet.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InPrivat.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InRejang.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InRunic.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InSauras.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InShavia.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InSinhal.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InSmallF.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InSpacin.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InSpecia.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InSundan.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InSupers.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InSuppl2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InSuppl3.pl
|
||||
|
@ -1266,6 +1271,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InTibeta.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InTifina.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InUgarit.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InUnifie.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InVai.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InVaria2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InVariat.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InVertic.pl
|
||||
|
@ -1275,6 +1281,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InYijing.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/JoinC.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/JoinCont.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Kana.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/KayahLi.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Khar.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Khmr.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Knda.pl
|
||||
|
@ -1283,6 +1290,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/LC.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/LOE.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Laoo.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Latn.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Lepcha.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Limb.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/LinearB.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Ll.pl
|
||||
|
@ -1293,6 +1301,8 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Lower.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Lowercas.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Lt.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Lu.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Lycian.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Lydian.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/M.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Math.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Mc.pl
|
||||
|
@ -1305,6 +1315,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/N.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/NChar.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Nd.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/NewTaiLu.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Nkoo.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Nl.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/No.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Nonchara.pl
|
||||
|
@ -1317,6 +1328,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/OLower.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/OMath.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/OUpper.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Ogam.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/OlChiki.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/OldItali.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/OldPersi.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Orya.pl
|
||||
|
@ -1338,6 +1350,8 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Pc.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Pd.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Pe.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Pf.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/PhagsPa.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Phnx.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Pi.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Po.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Print.pl
|
||||
|
@ -1348,10 +1362,12 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Qaai.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Quotatio.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Radical.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Radical2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Rejang.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Runr.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/S.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/SD.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/STerm.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Saurasht.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Sc.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Shaw.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Sinh.pl
|
||||
|
@ -1362,6 +1378,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/SoftDott.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Space.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/SpacePer.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Sterm2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Sundanes.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/SylotiNa.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Syrc.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Tagb.pl
|
||||
|
@ -1382,11 +1399,13 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/UnifiedI.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Upper.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Uppercas.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/VS.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Vai.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Variatio.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/WSpace.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/WhiteSpa.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Word.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/XDigit.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Xsux.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Yiii.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Z.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Zl.pl
|
||||
|
@ -1455,23 +1474,41 @@ lib/perl5/%%PERL_VER%%/vmsish.pm
|
|||
lib/perl5/%%PERL_VER%%/warnings.pm
|
||||
lib/perl5/%%PERL_VER%%/warnings/register.pm
|
||||
%%GDBM%%lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/GDBM_File/GDBM_File.so
|
||||
%%GDBM%%lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/GDBM_File/GDBM_File.bs
|
||||
%%GDBM%%lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/GDBM_File.pm
|
||||
@dirrm lib/perl5/%%PERL_VER%%/BSDPAN/BSDPAN
|
||||
@dirrm lib/perl5/%%PERL_VER%%/BSDPAN/ExtUtils
|
||||
@dirrm lib/perl5/%%PERL_VER%%/BSDPAN
|
||||
@unexec find %D/%%SITE_PERL%%/%%PERL_ARCH%%/ -name '*.ph' -delete 2>/dev/null || true
|
||||
%%GDBM%%@dirrm lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/GDBM_File
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/auto/POSIX/SigAction
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/auto/POSIX
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/threads
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/XS
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Unicode
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Time
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Text
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Sys
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Scalar
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/PerlIO
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/MIME
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/List
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IPC
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IO/Socket
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IO
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/I18N
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Hash
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Filter/Util
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Filter
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/File
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/Unicode
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/MIME/Header
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/MIME
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/KR
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/JP
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/CN
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Digest
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Devel
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Data
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/CORE
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/B
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/threads/shared
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/threads
|
||||
|
@ -1484,17 +1521,22 @@ lib/perl5/%%PERL_VER%%/warnings/register.pm
|
|||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Unicode
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Time/HiRes
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Time
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Text/Soundex
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Text
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Sys/Syslog
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Sys/Hostname
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Sys
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Socket
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Scalar
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/sdbm
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/SDBM_File
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/PerlIO/via
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/PerlIO/scalar
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/PerlIO/encoding
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/PerlIO
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigAction
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Opcode
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/NDBM_File
|
||||
|
@ -1507,6 +1549,8 @@ lib/perl5/%%PERL_VER%%/warnings/register.pm
|
|||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/IO
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/I18N/Langinfo
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/I18N
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Hash/Util
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Hash
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Filter/Util/Call
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Filter/Util
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Filter
|
||||
|
@ -1537,37 +1581,8 @@ lib/perl5/%%PERL_VER%%/warnings/register.pm
|
|||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/B
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/DynaLoader
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Unicode
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Time
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/PerlIO
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IPC
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/I18N
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Filter/Util
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Filter
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/File
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Devel
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/CORE
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/IO/Socket
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/IO
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/B
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/warnings
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/User
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Time
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Search
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/IPC
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Exporter
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Scalar
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/List
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Digest
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Devel
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/DBM_Filter
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode/CN
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode/MIME
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode/KR
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode/JP
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/CPAN
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Carp
|
||||
@dirrm lib/perl5/%%PERL_VER%%/unicore/To
|
||||
@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc
|
||||
@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/dt
|
||||
|
@ -1580,8 +1595,10 @@ lib/perl5/%%PERL_VER%%/warnings/register.pm
|
|||
@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/ccc
|
||||
@dirrm lib/perl5/%%PERL_VER%%/unicore/lib
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/unicore
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/User
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Unicode/Collate
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Unicode
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Time
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Tie
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Thread
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Text/TabsWrap
|
||||
|
@ -1595,6 +1612,7 @@ lib/perl5/%%PERL_VER%%/warnings/register.pm
|
|||
@dirrmtry lib/perl5/%%PERL_VER%%/Term/ANSIColor
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Term
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Switch
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Search
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Pod/Text
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Pod/Perldoc
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Pod
|
||||
|
@ -1604,6 +1622,8 @@ lib/perl5/%%PERL_VER%%/warnings/register.pm
|
|||
@dirrmtry lib/perl5/%%PERL_VER%%/Net/Ping
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Net/FTP
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Net
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Module/Pluggable
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Module
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Memoize
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Math/BigInt
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Math/BigFloat
|
||||
|
@ -1611,28 +1631,40 @@ lib/perl5/%%PERL_VER%%/warnings/register.pm
|
|||
@dirrmtry lib/perl5/%%PERL_VER%%/Locale/Maketext
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Locale/Codes
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Locale
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/IPC
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/IO/Socket
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/IO
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/I18N/LangTags
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/I18N
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Hash
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Getopt/Long
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Getopt
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Filter/Simple
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Filter
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/File/Spec
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/File
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode/Unicode
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode/MIME/Header
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode/MIME
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/ExtUtils/Command
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/ExtUtils/Constant
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/ExtUtils/Liblist
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/ExtUtils/MakeMaker
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/ExtUtils
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Exporter
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode/KR
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode/JP
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode/CN
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Digest
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Devel
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/DBM_Filter
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Class/ISA
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Class
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Carp
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/CPAN/Kwalify
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/CPAN/API
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/CPAN
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/CGI/eg
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/CGI
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/B/Lint
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/B
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Attribute/Handlers
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Attribute
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/pod
|
||||
|
|
|
@ -7,19 +7,19 @@
|
|||
|
||||
PORTNAME= perl
|
||||
PORTVERSION= ${PERL_VER}
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= lang devel perl5
|
||||
MASTER_SITES= CPAN \
|
||||
${MASTER_SITE_LOCAL:S/$/:local/} \
|
||||
http://www.tobez.org/download/port-mirrors/lang/perl58/:local
|
||||
http://protey.ru/freebsd/distfiles/:local
|
||||
MASTER_SITE_SUBDIR= ../../src \
|
||||
tobez/:local
|
||||
skv/:local
|
||||
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \
|
||||
BSDPAN-${PERL_VER}${EXTRACT_SUFX}:local
|
||||
DIST_SUBDIR= perl
|
||||
|
||||
PATCH_SITES= ${MASTER_SITE_LOCAL:S/$/tobez\//} \
|
||||
http://www.tobez.org/download/port-mirrors/lang/perl58/
|
||||
PATCHFILES= defined-or-5.8.8.bz2
|
||||
PATCH_SITES= ${MASTER_SITE_LOCAL:S!$!skv/!} \
|
||||
http://protey.ru/freebsd/distfiles/
|
||||
PATCHFILES= defined-or-${PERL_VER}.bz2
|
||||
|
||||
MAINTAINER= skv@FreeBSD.org
|
||||
COMMENT= Practical Extraction and Report Language
|
||||
|
@ -32,9 +32,10 @@ OPTIONS= DEBUGGING "Build with debugging support" off \
|
|||
PERL_64BITINT "Use 64 bit integers (on i386)" on \
|
||||
THREADS "Build threaded perl" off \
|
||||
SUIDPERL "Build set-user-id suidperl binary" off \
|
||||
SITECUSTOMIZE "Run-time customization of @INC" off \
|
||||
USE_PERL "Rewrite links in /usr/bin" on
|
||||
|
||||
PERL_VER= 5.8.8
|
||||
PERL_VER= 5.8.9
|
||||
PERL_ARCH= mach
|
||||
PERL_VERSION= ${PERL_VER}
|
||||
SITE_PERL_REL?= lib/perl5/site_perl/${PERL_VER}
|
||||
|
@ -53,7 +54,7 @@ CONFIGURE_ARGS= -sde -Dprefix=${PREFIX} \
|
|||
-Dsiteman3dir=${PREFIX}/lib/perl5/${PERL_VER}/man/man3 \
|
||||
-Dsiteman1dir=${PREFIX}/man/man1 \
|
||||
-Ui_malloc -Ui_iconv -Uinstallusrbinperl \
|
||||
-Dcc="${CC}" -Duseshrplib \
|
||||
-Dcc="${CC}" -Duseshrplib -Dinc_version_list=none \
|
||||
-Dccflags=-DAPPLLIB_EXP=\"${BSDPAN_DEST}\"
|
||||
LOCALE_CLEANUP= LANG="" LC_ALL="" LC_COLLATE="" LC_CTYPE="" \
|
||||
LC_MESSAGES="" LC_MONETARY="" LC_NUMERIC="" \
|
||||
|
@ -122,6 +123,10 @@ CONFIGURE_ARGS+= -Dusemymalloc=n
|
|||
CONFIGURE_ARGS+= -Duse64bitint
|
||||
.endif
|
||||
|
||||
.if defined(WITH_SITECUSTOMIZE)
|
||||
CONFIGURE_ARGS+= -Dusesitecustomize
|
||||
.endif
|
||||
|
||||
LATEST_LINK= perl
|
||||
|
||||
PLIST_SUB+= NEED_USE_PERL="@comment "
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
MAN1+= a2p.1
|
||||
MAN1+= c2ph.1
|
||||
MAN1+= corelist.1
|
||||
MAN1+= cpan.1
|
||||
MAN1+= dprofpp.1
|
||||
MAN1+= enc2xs.1
|
||||
|
@ -28,6 +29,7 @@ MAN1+= perl585delta.1
|
|||
MAN1+= perl586delta.1
|
||||
MAN1+= perl587delta.1
|
||||
MAN1+= perl588delta.1
|
||||
MAN1+= perl589delta.1
|
||||
MAN1+= perl58delta.1
|
||||
MAN1+= perlaix.1
|
||||
MAN1+= perlamiga.1
|
||||
|
@ -48,6 +50,7 @@ MAN1+= perlcheat.1
|
|||
MAN1+= perlclib.1
|
||||
MAN1+= perlcn.1
|
||||
MAN1+= perlcompile.1
|
||||
MAN1+= perlcommunity.1
|
||||
MAN1+= perlcygwin.1
|
||||
MAN1+= perldata.1
|
||||
MAN1+= perldbmfilter.1
|
||||
|
@ -124,17 +127,22 @@ MAN1+= perlpodspec.1
|
|||
MAN1+= perlport.1
|
||||
MAN1+= perlqnx.1
|
||||
MAN1+= perlre.1
|
||||
MAN1+= perlrebackslash.1
|
||||
MAN1+= perlrecharclass.1
|
||||
MAN1+= perlref.1
|
||||
MAN1+= perlreftut.1
|
||||
MAN1+= perlreguts.1
|
||||
MAN1+= perlrequick.1
|
||||
MAN1+= perlreref.1
|
||||
MAN1+= perlretut.1
|
||||
MAN1+= perlriscos.1
|
||||
MAN1+= perlrun.1
|
||||
MAN1+= perlsec.1
|
||||
MAN1+= perlsolaris.1
|
||||
MAN1+= perlstyle.1
|
||||
MAN1+= perlsub.1
|
||||
MAN1+= perlsyn.1
|
||||
MAN1+= perlthanks.1
|
||||
MAN1+= perlthrtut.1
|
||||
MAN1+= perltie.1
|
||||
MAN1+= perltoc.1
|
||||
|
@ -145,8 +153,10 @@ MAN1+= perltrap.1
|
|||
MAN1+= perltru64.1
|
||||
MAN1+= perltw.1
|
||||
MAN1+= perlunicode.1
|
||||
MAN1+= perlunifaq.1
|
||||
MAN1+= perluniintro.1
|
||||
MAN1+= perlutil.1
|
||||
MAN1+= perlunitut.1
|
||||
MAN1+= perluts.1
|
||||
MAN1+= perlvar.1
|
||||
MAN1+= perlvmesa.1
|
||||
|
@ -187,6 +197,7 @@ MAN3+= B::Debug.3
|
|||
MAN3+= B::Deparse.3
|
||||
MAN3+= B::Disassembler.3
|
||||
MAN3+= B::Lint.3
|
||||
MAN3+= B::Lint::Debug.3
|
||||
MAN3+= B::Showlex.3
|
||||
MAN3+= B::Stackobj.3
|
||||
MAN3+= B::Stash.3
|
||||
|
@ -203,9 +214,18 @@ MAN3+= CGI::Pretty.3
|
|||
MAN3+= CGI::Push.3
|
||||
MAN3+= CGI::Switch.3
|
||||
MAN3+= CGI::Util.3
|
||||
MAN3+= CORE.3
|
||||
MAN3+= CPAN.3
|
||||
MAN3+= CPAN::API::HOWTO.3
|
||||
MAN3+= CPAN::Debug.3
|
||||
MAN3+= CPAN::Distroprefs.3
|
||||
MAN3+= CPAN::FirstTime.3
|
||||
MAN3+= CPAN::HandleConfig.3
|
||||
MAN3+= CPAN::Kwalify.3
|
||||
MAN3+= CPAN::Nox.3
|
||||
MAN3+= CPAN::Queue.3
|
||||
MAN3+= CPAN::Tarzip.3
|
||||
MAN3+= CPAN::Version.3
|
||||
MAN3+= Carp.3
|
||||
MAN3+= Carp::Heavy.3
|
||||
MAN3+= Class::ISA.3
|
||||
|
@ -222,6 +242,7 @@ MAN3+= DBM_Filter::utf8.3
|
|||
MAN3+= DB_File.3
|
||||
MAN3+= Data::Dumper.3
|
||||
MAN3+= Devel::DProf.3
|
||||
MAN3+= Devel::InnerPackage.3
|
||||
MAN3+= Devel::PPPort.3
|
||||
MAN3+= Devel::Peek.3
|
||||
MAN3+= Devel::SelfStubber.3
|
||||
|
@ -242,6 +263,7 @@ MAN3+= Encode::Config.3
|
|||
MAN3+= Encode::EBCDIC.3
|
||||
MAN3+= Encode::Encoder.3
|
||||
MAN3+= Encode::Encoding.3
|
||||
MAN3+= Encode::GSM0338.3
|
||||
MAN3+= Encode::Guess.3
|
||||
MAN3+= Encode::JP.3
|
||||
MAN3+= Encode::JP::H2Z.3
|
||||
|
@ -249,6 +271,7 @@ MAN3+= Encode::JP::JIS7.3
|
|||
MAN3+= Encode::KR.3
|
||||
MAN3+= Encode::KR::2022_KR.3
|
||||
MAN3+= Encode::MIME::Header.3
|
||||
MAN3+= Encode::MIME::Name.3
|
||||
MAN3+= Encode::PerlIO.3
|
||||
MAN3+= Encode::Supported.3
|
||||
MAN3+= Encode::Symbol.3
|
||||
|
@ -276,6 +299,7 @@ MAN3+= ExtUtils::MM_Any.3
|
|||
MAN3+= ExtUtils::MM_BeOS.3
|
||||
MAN3+= ExtUtils::MM_Cygwin.3
|
||||
MAN3+= ExtUtils::MM_DOS.3
|
||||
MAN3+= ExtUtils::MM_Darwin.3
|
||||
MAN3+= ExtUtils::MM_MacOS.3
|
||||
MAN3+= ExtUtils::MM_NW5.3
|
||||
MAN3+= ExtUtils::MM_OS2.3
|
||||
|
@ -298,6 +322,7 @@ MAN3+= ExtUtils::Miniperl.3
|
|||
MAN3+= ExtUtils::Mkbootstrap.3
|
||||
MAN3+= ExtUtils::Mksymlists.3
|
||||
MAN3+= ExtUtils::Packlist.3
|
||||
MAN3+= ExtUtils::ParseXS.3
|
||||
MAN3+= ExtUtils::testlib.3
|
||||
MAN3+= Fatal.3
|
||||
MAN3+= Fcntl.3
|
||||
|
@ -348,6 +373,7 @@ MAN3+= IPC::Msg.3
|
|||
MAN3+= IPC::Open2.3
|
||||
MAN3+= IPC::Open3.3
|
||||
MAN3+= IPC::Semaphore.3
|
||||
MAN3+= IPC::SharedMem.3
|
||||
MAN3+= IPC::SysV.3
|
||||
MAN3+= List::Util.3
|
||||
MAN3+= Locale::Constants.3
|
||||
|
@ -374,6 +400,9 @@ MAN3+= Memoize::ExpireTest.3
|
|||
MAN3+= Memoize::NDBM_File.3
|
||||
MAN3+= Memoize::SDBM_File.3
|
||||
MAN3+= Memoize::Storable.3
|
||||
MAN3+= Module::CoreList.3
|
||||
MAN3+= Module::Pluggable.3
|
||||
MAN3+= Module::Pluggable::Object.3
|
||||
MAN3+= NDBM_File.3
|
||||
MAN3+= NEXT.3
|
||||
MAN3+= Net::Cmd.3
|
||||
|
@ -451,7 +480,9 @@ MAN3+= Test::Harness::Assert.3
|
|||
MAN3+= Test::Harness::Iterator.3
|
||||
MAN3+= Test::Harness::Point.3
|
||||
MAN3+= Test::Harness::Straps.3
|
||||
MAN3+= Test::Harness::Results.3
|
||||
MAN3+= Test::Harness::TAP.3
|
||||
MAN3+= Test::Harness::Util.3
|
||||
MAN3+= Test::More.3
|
||||
MAN3+= Test::Simple.3
|
||||
MAN3+= Test::Tutorial.3
|
||||
|
@ -471,6 +502,7 @@ MAN3+= Tie::Hash.3
|
|||
MAN3+= Tie::Memoize.3
|
||||
MAN3+= Tie::RefHash.3
|
||||
MAN3+= Tie::Scalar.3
|
||||
MAN3+= Tie::StdHandle.3
|
||||
MAN3+= Tie::SubstrHash.3
|
||||
MAN3+= Time::HiRes.3
|
||||
MAN3+= Time::Local.3
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
MD5 (perl-5.8.8.tar.bz2) = a377c0c67ab43fd96eeec29ce19e8382
|
||||
SHA256 (perl-5.8.8.tar.bz2) = 818a140d9c04ea8dab3a05104b34ced7f7d9d0a91bfed91baf89a84d0dfb1bc9
|
||||
SIZE (perl-5.8.8.tar.bz2) = 10123359
|
||||
MD5 (BSDPAN-5.8.8.tar.bz2) = 872e4235a7e95cc88ead2e32da0e1f5a
|
||||
SHA256 (BSDPAN-5.8.8.tar.bz2) = 6cd20186db9c27761cabd7ff96d40936bc7be9c527f28b1ffa2773b65b228394
|
||||
SIZE (BSDPAN-5.8.8.tar.bz2) = 8192
|
||||
MD5 (defined-or-5.8.8.bz2) = 4a40ed2c1356f189cfa061b5e102dfca
|
||||
SHA256 (defined-or-5.8.8.bz2) = ba60db049eaf987f1f8c7f5228743118d0022eabadf59313da41ece49e053970
|
||||
SIZE (defined-or-5.8.8.bz2) = 36377
|
||||
MD5 (perl/perl-5.8.9.tar.bz2) = 1cb52a76ce77fa300218da96577793ec
|
||||
SHA256 (perl/perl-5.8.9.tar.bz2) = 1097fbcd48ceccb2bc735d119c9db399a02a8ab9f7dc53e29e47e6a8d0d72e79
|
||||
SIZE (perl/perl-5.8.9.tar.bz2) = 11121414
|
||||
MD5 (perl/BSDPAN-5.8.9.tar.bz2) = 9479989b30c6b8a09e95130d57b4f482
|
||||
SHA256 (perl/BSDPAN-5.8.9.tar.bz2) = 6bc43a3586c5c4a545ebb969397582ef62d3a199809273992529e52ac533e741
|
||||
SIZE (perl/BSDPAN-5.8.9.tar.bz2) = 8171
|
||||
MD5 (perl/defined-or-5.8.9.bz2) = af0d3d86f437547bedb2d99539ba7a6e
|
||||
SHA256 (perl/defined-or-5.8.9.bz2) = 021b46afd429f5c56b76195565394f1e74770681c5ad98f98936ad2cab58bda4
|
||||
SIZE (perl/defined-or-5.8.9.bz2) = 36178
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
--- hints/freebsd.sh.orig Wed Mar 24 22:47:33 2004
|
||||
+++ hints/freebsd.sh Mon Feb 19 20:53:50 2007
|
||||
@@ -88,6 +88,8 @@ case "$osvers" in
|
||||
--- hints/freebsd.sh
|
||||
+++ hints/freebsd.sh
|
||||
@@ -88,6 +88,8 @@
|
||||
esac
|
||||
libswanted=`echo $libswanted | sed 's/ malloc / /'`
|
||||
libswanted=`echo $libswanted | sed 's/ bind / /'`
|
||||
|
@ -9,7 +9,7 @@
|
|||
# iconv gone in Perl 5.8.1, but if someone compiles 5.8.0 or earlier.
|
||||
libswanted=`echo $libswanted | sed 's/ iconv / /'`
|
||||
d_setregid='define'
|
||||
@@ -102,6 +104,10 @@ case "$osvers" in
|
||||
@@ -102,6 +104,10 @@
|
||||
;;
|
||||
esac
|
||||
libswanted=`echo $libswanted | sed 's/ malloc / /'`
|
||||
|
@ -20,31 +20,16 @@
|
|||
;;
|
||||
esac
|
||||
|
||||
@@ -116,17 +122,17 @@ case "$osvers" in
|
||||
|
||||
*)
|
||||
objformat=`/usr/bin/objformat`
|
||||
- if [ x$objformat = xelf ]; then
|
||||
- libpth="/usr/lib /usr/local/lib"
|
||||
- glibpth="/usr/lib /usr/local/lib"
|
||||
@@ -125,7 +131,7 @@
|
||||
else
|
||||
libpth="/usr/lib /usr/local/lib"
|
||||
glibpth="/usr/lib /usr/local/lib"
|
||||
- ldflags="-Wl,-E "
|
||||
- lddlflags="-shared "
|
||||
- else
|
||||
+ if [ x$objformat = xaout ]; then
|
||||
if [ -e /usr/lib/aout ]; then
|
||||
libpth="/usr/lib/aout /usr/local/lib /usr/lib"
|
||||
glibpth="/usr/lib/aout /usr/local/lib /usr/lib"
|
||||
fi
|
||||
lddlflags='-Bshareable'
|
||||
+ else
|
||||
+ libpth="/usr/lib /usr/local/lib"
|
||||
+ glibpth="/usr/lib /usr/local/lib"
|
||||
+ ldflags="%%PTHREAD_LIBS%% -Wl,-E"
|
||||
+ lddlflags="-shared "
|
||||
+ ldflags="%%PTHREAD_LIBS%% -Wl,-E "
|
||||
lddlflags="-shared "
|
||||
fi
|
||||
cccdlflags='-DPIC -fPIC'
|
||||
;;
|
||||
@@ -136,7 +142,7 @@ case "$osvers" in
|
||||
@@ -136,7 +142,7 @@
|
||||
0*|1*|2*|3*) ;;
|
||||
|
||||
*)
|
||||
|
@ -53,7 +38,7 @@
|
|||
if /usr/bin/file -L /usr/lib/libc.so | /usr/bin/grep -vq "not stripped" ; then
|
||||
usenm=false
|
||||
fi
|
||||
@@ -183,7 +189,9 @@ esac
|
||||
@@ -183,7 +189,9 @@
|
||||
|
||||
# This script UU/usethreads.cbu will get 'called-back' by Configure
|
||||
# after it has prompted the user for whether to use threads.
|
||||
|
|
|
@ -1,10 +0,0 @@
|
|||
--- makedepend.SH.orig Wed May 2 22:37:13 2007
|
||||
+++ makedepend.SH Wed May 2 22:38:48 2007
|
||||
@@ -167,6 +167,7 @@
|
||||
-e '/^#.*<builtin>/d' \
|
||||
-e '/^#.*<built-in>/d' \
|
||||
-e '/^#.*<command line>/d' \
|
||||
+ -e '/^#.*<command-line>/d' \
|
||||
-e '/^#.*"-"/d' \
|
||||
-e '/: file path prefix .* never used$/d' \
|
||||
-e 's#\.[0-9][0-9]*\.c#'"$file.c#" \
|
|
@ -1,58 +1,60 @@
|
|||
--- perl.c.orig Fri Apr 22 16:14:27 2005
|
||||
+++ perl.c Thu Dec 22 12:47:28 2005
|
||||
@@ -4397,6 +4397,27 @@ S_init_perllib(pTHX)
|
||||
incpush(APPLLIB_EXP, TRUE, TRUE, TRUE);
|
||||
--- perl.c
|
||||
+++ perl.c
|
||||
@@ -4882,6 +4882,28 @@
|
||||
incpush(APPLLIB_EXP, TRUE, TRUE, TRUE, TRUE);
|
||||
#endif
|
||||
|
||||
+#ifdef SITEARCH_EXP
|
||||
+ /* sitearch is always relative to sitelib on Windows for
|
||||
+ * DLL-based path intuition to work correctly */
|
||||
+# if !defined(WIN32)
|
||||
+ incpush(SITEARCH_EXP, FALSE, FALSE, TRUE);
|
||||
+ incpush(SITEARCH_EXP, FALSE, FALSE, TRUE, TRUE);
|
||||
+# endif
|
||||
+#endif
|
||||
+
|
||||
+#ifdef SITELIB_EXP
|
||||
+# if defined(WIN32)
|
||||
+ /* this picks up sitearch as well */
|
||||
+ incpush(SITELIB_EXP, TRUE, FALSE, TRUE);
|
||||
+ incpush(SITELIB_EXP, TRUE, FALSE, TRUE, TRUE);
|
||||
+# else
|
||||
+ incpush(SITELIB_EXP, FALSE, FALSE, TRUE);
|
||||
+ incpush(SITELIB_EXP, FALSE, FALSE, TRUE, TRUE);
|
||||
+# endif
|
||||
+#endif
|
||||
+
|
||||
+#ifdef SITELIB_STEM /* Search for version-specific dirs below here */
|
||||
+ incpush(SITELIB_STEM, FALSE, TRUE, TRUE);
|
||||
+#if defined(SITELIB_STEM) && defined(PERL_INC_VERSION_LIST)
|
||||
+ /* Search for version-specific dirs below here */
|
||||
+ incpush(SITELIB_STEM, FALSE, TRUE, TRUE, TRUE);
|
||||
+#endif
|
||||
+
|
||||
#ifdef ARCHLIB_EXP
|
||||
incpush(ARCHLIB_EXP, FALSE, FALSE, TRUE);
|
||||
incpush(ARCHLIB_EXP, FALSE, FALSE, TRUE, TRUE);
|
||||
#endif
|
||||
@@ -4428,27 +4449,6 @@ S_init_perllib(pTHX)
|
||||
incpush(PRIVLIB_EXP, TRUE, FALSE, TRUE);
|
||||
#else
|
||||
incpush(PRIVLIB_EXP, FALSE, FALSE, TRUE);
|
||||
-#endif
|
||||
-
|
||||
@@ -4915,28 +4937,6 @@
|
||||
incpush(PRIVLIB_EXP, FALSE, FALSE, TRUE, TRUE);
|
||||
#endif
|
||||
|
||||
-#ifdef SITEARCH_EXP
|
||||
- /* sitearch is always relative to sitelib on Windows for
|
||||
- * DLL-based path intuition to work correctly */
|
||||
-# if !defined(WIN32)
|
||||
- incpush(SITEARCH_EXP, FALSE, FALSE, TRUE);
|
||||
- incpush(SITEARCH_EXP, FALSE, FALSE, TRUE, TRUE);
|
||||
-# endif
|
||||
-#endif
|
||||
-
|
||||
-#ifdef SITELIB_EXP
|
||||
-# if defined(WIN32)
|
||||
- /* this picks up sitearch as well */
|
||||
- incpush(SITELIB_EXP, TRUE, FALSE, TRUE);
|
||||
- incpush(SITELIB_EXP, TRUE, FALSE, TRUE, TRUE);
|
||||
-# else
|
||||
- incpush(SITELIB_EXP, FALSE, FALSE, TRUE);
|
||||
- incpush(SITELIB_EXP, FALSE, FALSE, TRUE, TRUE);
|
||||
-# endif
|
||||
-#endif
|
||||
-
|
||||
-#ifdef SITELIB_STEM /* Search for version-specific dirs below here */
|
||||
- incpush(SITELIB_STEM, FALSE, TRUE, TRUE);
|
||||
#endif
|
||||
|
||||
-#if defined(SITELIB_STEM) && defined(PERL_INC_VERSION_LIST)
|
||||
- /* Search for version-specific dirs below here */
|
||||
- incpush(SITELIB_STEM, FALSE, TRUE, TRUE, TRUE);
|
||||
-#endif
|
||||
-
|
||||
#ifdef PERL_VENDORARCH_EXP
|
||||
/* vendorarch is always relative to vendorlib on Windows for
|
||||
* DLL-based path intuition to work correctly */
|
||||
|
|
21
lang/perl5.12/files/patch-sv.c
Normal file
21
lang/perl5.12/files/patch-sv.c
Normal file
|
@ -0,0 +1,21 @@
|
|||
--- sv.c
|
||||
+++ sv.c
|
||||
@@ -9813,7 +9813,8 @@ Perl_sv_dup(pTHX_ SV *sstr, CLONE_PARAMS* param)
|
||||
IoBOTTOM_NAME(dstr) = SAVEPV(IoBOTTOM_NAME(dstr));
|
||||
break;
|
||||
case SVt_PVAV:
|
||||
- if (AvARRAY((AV*)sstr)) {
|
||||
+ /* avoid cloning an empty array */
|
||||
+ if (AvARRAY((AV*)sstr) && AvFILLp((AV*)sstr >= 0) {
|
||||
SV **dst_ary, **src_ary;
|
||||
SSize_t items = AvFILLp((AV*)sstr) + 1;
|
||||
|
||||
@@ -9838,6 +9839,8 @@ Perl_sv_dup(pTHX_ SV *sstr, CLONE_PARAMS* param)
|
||||
else {
|
||||
SvPV_set(dstr, NULL);
|
||||
AvALLOC((AV*)dstr) = (SV**)NULL;
|
||||
+ AvMAX( (AV *)dstr) = -1;
|
||||
+ AvFILLp((AV *)dstr) = -1;
|
||||
}
|
||||
AvARYLEN((AV*)dstr) = sv_dup_inc(AvARYLEN((AV*)sstr), param);
|
||||
break;
|
|
@ -1,95 +0,0 @@
|
|||
--- regcomp.c.orig 2006-01-08 21:59:27.000000000 +0100
|
||||
+++ regcomp.c 2007-11-06 22:48:26.000000000 +0100
|
||||
@@ -135,7 +135,10 @@ typedef struct RExC_state_t {
|
||||
I32 extralen;
|
||||
I32 seen_zerolen;
|
||||
I32 seen_evals;
|
||||
- I32 utf8;
|
||||
+ I32 utf8; /* whether the pattern is utf8 or not */
|
||||
+ I32 orig_utf8; /* whether the pattern was originally in utf8 */
|
||||
+ /* XXX use this for future optimisation of case
|
||||
+ * where pattern must be upgraded to utf8. */
|
||||
#if ADD_TO_REGEXEC
|
||||
char *starttry; /* -Dr: where regtry was called. */
|
||||
#define RExC_starttry (pRExC_state->starttry)
|
||||
@@ -161,6 +164,7 @@ typedef struct RExC_state_t {
|
||||
#define RExC_seen_zerolen (pRExC_state->seen_zerolen)
|
||||
#define RExC_seen_evals (pRExC_state->seen_evals)
|
||||
#define RExC_utf8 (pRExC_state->utf8)
|
||||
+#define RExC_orig_utf8 (pRExC_state->orig_utf8)
|
||||
|
||||
#define ISMULT1(c) ((c) == '*' || (c) == '+' || (c) == '?')
|
||||
#define ISMULT2(s) ((*s) == '*' || (*s) == '+' || (*s) == '?' || \
|
||||
@@ -1749,15 +1753,16 @@ Perl_pregcomp(pTHX_ char *exp, char *xen
|
||||
if (exp == NULL)
|
||||
FAIL("NULL regexp argument");
|
||||
|
||||
- RExC_utf8 = pm->op_pmdynflags & PMdf_CMP_UTF8;
|
||||
+ RExC_utf8 = RExC_orig_utf8 = pm->op_pmdynflags & PMdf_CMP_UTF8;
|
||||
|
||||
- RExC_precomp = exp;
|
||||
DEBUG_r({
|
||||
if (!PL_colorset) reginitcolors();
|
||||
PerlIO_printf(Perl_debug_log, "%sCompiling REx%s `%s%*s%s'\n",
|
||||
PL_colors[4],PL_colors[5],PL_colors[0],
|
||||
- (int)(xend - exp), RExC_precomp, PL_colors[1]);
|
||||
+ (int)(xend - exp), exp, PL_colors[1]);
|
||||
});
|
||||
+redo_first_pass:
|
||||
+ RExC_precomp = exp;
|
||||
RExC_flags = pm->op_pmflags;
|
||||
RExC_sawback = 0;
|
||||
|
||||
@@ -1783,6 +1788,25 @@ Perl_pregcomp(pTHX_ char *exp, char *xen
|
||||
RExC_precomp = Nullch;
|
||||
return(NULL);
|
||||
}
|
||||
+ if (RExC_utf8 && !RExC_orig_utf8) {
|
||||
+ /* It's possible to write a regexp in ascii that represents unicode
|
||||
+ codepoints outside of the byte range, such as via \x{100}. If we
|
||||
+ detect such a sequence we have to convert the entire pattern to utf8
|
||||
+ and then recompile, as our sizing calculation will have been based
|
||||
+ on 1 byte == 1 character, but we will need to use utf8 to encode
|
||||
+ at least some part of the pattern, and therefore must convert the whole
|
||||
+ thing.
|
||||
+ XXX: somehow figure out how to make this less expensive...
|
||||
+ -- dmq */
|
||||
+ STRLEN len = xend-exp;
|
||||
+ DEBUG_r(PerlIO_printf(Perl_debug_log,
|
||||
+ "UTF8 mismatch! Converting to utf8 for resizing and compile\n"));
|
||||
+ exp = (char*)Perl_bytes_to_utf8(aTHX_ (U8*)exp, &len);
|
||||
+ xend = exp + len;
|
||||
+ RExC_orig_utf8 = RExC_utf8;
|
||||
+ SAVEFREEPV(exp);
|
||||
+ goto redo_first_pass;
|
||||
+ }
|
||||
DEBUG_r(PerlIO_printf(Perl_debug_log, "size %"IVdf" ", (IV)RExC_size));
|
||||
|
||||
/* Small enough for pointer-storage convention?
|
||||
--- t/op/pat.t.orig 2006-01-07 13:53:32.000000000 +0100
|
||||
+++ t/op/pat.t 2007-11-06 21:52:30.000000000 +0100
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
$| = 1;
|
||||
|
||||
-print "1..1187\n";
|
||||
+print "1..1189\n";
|
||||
|
||||
BEGIN {
|
||||
chdir 't' if -d 't';
|
||||
@@ -3395,5 +3395,14 @@ ok(("foba ba$s" =~ qr/(foo|BaSS|bar)/i)
|
||||
"# assigning to original string should not corrupt match vars");
|
||||
}
|
||||
|
||||
-# last test 1187
|
||||
+{
|
||||
+ use warnings;
|
||||
+ my @w;
|
||||
+ local $SIG{__WARN__}=sub{push @w,"@_"};
|
||||
+ my $c=qq(\x{DF});
|
||||
+ ok($c=~/${c}|\x{100}/, "ASCII pattern that really is utf8");
|
||||
+ ok(@w==0, "ASCII pattern that really is utf8");
|
||||
+}
|
||||
+
|
||||
+# last test 1189
|
||||
|
|
@ -1,5 +1,6 @@
|
|||
bin/a2p
|
||||
bin/c2ph
|
||||
bin/corelist
|
||||
bin/cpan
|
||||
bin/dprofpp
|
||||
bin/enc2xs
|
||||
|
@ -17,6 +18,7 @@ bin/perlbug
|
|||
bin/perlcc
|
||||
bin/perldoc
|
||||
bin/perlivp
|
||||
bin/perlthanks
|
||||
bin/piconv
|
||||
bin/pl2pm
|
||||
bin/pod2html
|
||||
|
@ -43,6 +45,7 @@ lib/perl5/%%PERL_VER%%/B/assemble
|
|||
lib/perl5/%%PERL_VER%%/B/cc_harness
|
||||
lib/perl5/%%PERL_VER%%/B/disassemble
|
||||
lib/perl5/%%PERL_VER%%/B/makeliblinks
|
||||
lib/perl5/%%PERL_VER%%/B/Lint/Debug.pm
|
||||
lib/perl5/%%PERL_VER%%/BSDPAN/BSDPAN.pm
|
||||
lib/perl5/%%PERL_VER%%/BSDPAN/BSDPAN/Override.pm
|
||||
lib/perl5/%%PERL_VER%%/BSDPAN/Config.pm
|
||||
|
@ -59,33 +62,21 @@ lib/perl5/%%PERL_VER%%/CGI/Pretty.pm
|
|||
lib/perl5/%%PERL_VER%%/CGI/Push.pm
|
||||
lib/perl5/%%PERL_VER%%/CGI/Switch.pm
|
||||
lib/perl5/%%PERL_VER%%/CGI/Util.pm
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/RunMeFirst
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/caution.xbm
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/clickable_image.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/cookie.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/crash.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/customize.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/diff_upload.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/dna_small_gif.uu
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/file_upload.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/frameset.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/index.html
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/internal_links.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/javascript.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/make_links.pl
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/monty.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/multiple_forms.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/nph-clock.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/nph-multipart.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/popup.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/save_state.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/tryit.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/wilogo_gif.uu
|
||||
lib/perl5/%%PERL_VER%%/CORE.pod
|
||||
lib/perl5/%%PERL_VER%%/CPAN.pm
|
||||
lib/perl5/%%PERL_VER%%/CPAN/FirstTime.pm
|
||||
lib/perl5/%%PERL_VER%%/CPAN/Nox.pm
|
||||
lib/perl5/%%PERL_VER%%/CPAN/PAUSE2003.pub
|
||||
lib/perl5/%%PERL_VER%%/CPAN/SIGNATURE
|
||||
lib/perl5/%%PERL_VER%%/CPAN/API/HOWTO.pod
|
||||
lib/perl5/%%PERL_VER%%/CPAN/Debug.pm
|
||||
lib/perl5/%%PERL_VER%%/CPAN/DeferedCode.pm
|
||||
lib/perl5/%%PERL_VER%%/CPAN/Distroprefs.pm
|
||||
lib/perl5/%%PERL_VER%%/CPAN/HandleConfig.pm
|
||||
lib/perl5/%%PERL_VER%%/CPAN/Kwalify.pm
|
||||
lib/perl5/%%PERL_VER%%/CPAN/Kwalify/distroprefs.dd
|
||||
lib/perl5/%%PERL_VER%%/CPAN/Kwalify/distroprefs.yml
|
||||
lib/perl5/%%PERL_VER%%/CPAN/Queue.pm
|
||||
lib/perl5/%%PERL_VER%%/CPAN/Tarzip.pm
|
||||
lib/perl5/%%PERL_VER%%/CPAN/Version.pm
|
||||
lib/perl5/%%PERL_VER%%/Carp.pm
|
||||
lib/perl5/%%PERL_VER%%/Carp/Heavy.pm
|
||||
lib/perl5/%%PERL_VER%%/Class/ISA.pm
|
||||
|
@ -97,25 +88,19 @@ lib/perl5/%%PERL_VER%%/DBM_Filter/encode.pm
|
|||
lib/perl5/%%PERL_VER%%/DBM_Filter/int32.pm
|
||||
lib/perl5/%%PERL_VER%%/DBM_Filter/null.pm
|
||||
lib/perl5/%%PERL_VER%%/DBM_Filter/utf8.pm
|
||||
lib/perl5/%%PERL_VER%%/Devel/InnerPackage.pm
|
||||
lib/perl5/%%PERL_VER%%/Devel/SelfStubber.pm
|
||||
lib/perl5/%%PERL_VER%%/Digest.pm
|
||||
lib/perl5/%%PERL_VER%%/Digest/base.pm
|
||||
lib/perl5/%%PERL_VER%%/Digest/file.pm
|
||||
lib/perl5/%%PERL_VER%%/DirHandle.pm
|
||||
lib/perl5/%%PERL_VER%%/Dumpvalue.pm
|
||||
lib/perl5/%%PERL_VER%%/Encode/CN/HZ.pm
|
||||
lib/perl5/%%PERL_VER%%/Encode/Changes.e2x
|
||||
lib/perl5/%%PERL_VER%%/Encode/ConfigLocal_PM.e2x
|
||||
lib/perl5/%%PERL_VER%%/Encode/JP/H2Z.pm
|
||||
lib/perl5/%%PERL_VER%%/Encode/JP/JIS7.pm
|
||||
lib/perl5/%%PERL_VER%%/Encode/KR/2022_KR.pm
|
||||
lib/perl5/%%PERL_VER%%/Encode/MIME/Header.pm
|
||||
lib/perl5/%%PERL_VER%%/Encode/MIME/Header/ISO_2022_JP.pm
|
||||
lib/perl5/%%PERL_VER%%/Encode/Makefile_PL.e2x
|
||||
lib/perl5/%%PERL_VER%%/Encode/PerlIO.pod
|
||||
lib/perl5/%%PERL_VER%%/Encode/README.e2x
|
||||
lib/perl5/%%PERL_VER%%/Encode/Supported.pod
|
||||
lib/perl5/%%PERL_VER%%/Encode/Unicode/UTF7.pm
|
||||
lib/perl5/%%PERL_VER%%/Encode/_PM.e2x
|
||||
lib/perl5/%%PERL_VER%%/Encode/_T.e2x
|
||||
lib/perl5/%%PERL_VER%%/Encode/encode.h
|
||||
|
@ -128,6 +113,7 @@ lib/perl5/%%PERL_VER%%/ExtUtils/Command/MM.pm
|
|||
lib/perl5/%%PERL_VER%%/ExtUtils/Constant.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/Constant/Base.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/Constant/Utils.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/Constant/ProxySubs.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/Constant/XS.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/Embed.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/Install.pm
|
||||
|
@ -141,6 +127,7 @@ lib/perl5/%%PERL_VER%%/ExtUtils/MM_Any.pm
|
|||
lib/perl5/%%PERL_VER%%/ExtUtils/MM_BeOS.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/MM_Cygwin.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/MM_DOS.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/MM_Darwin.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/MM_MacOS.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/MM_NW5.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/MM_OS2.pm
|
||||
|
@ -162,9 +149,8 @@ lib/perl5/%%PERL_VER%%/ExtUtils/Manifest.pm
|
|||
lib/perl5/%%PERL_VER%%/ExtUtils/Miniperl.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/Mkbootstrap.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/Mksymlists.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/NOTES
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/PATCHING
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/Packlist.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/ParseXS.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/testlib.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/typemap
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/xsubpp
|
||||
|
@ -193,16 +179,13 @@ lib/perl5/%%PERL_VER%%/Filter/Simple.pm
|
|||
lib/perl5/%%PERL_VER%%/FindBin.pm
|
||||
lib/perl5/%%PERL_VER%%/Getopt/Long.pm
|
||||
lib/perl5/%%PERL_VER%%/Getopt/Std.pm
|
||||
lib/perl5/%%PERL_VER%%/Hash/Util.pm
|
||||
lib/perl5/%%PERL_VER%%/I18N/Collate.pm
|
||||
lib/perl5/%%PERL_VER%%/I18N/LangTags.pm
|
||||
lib/perl5/%%PERL_VER%%/I18N/LangTags/Detect.pm
|
||||
lib/perl5/%%PERL_VER%%/I18N/LangTags/List.pm
|
||||
lib/perl5/%%PERL_VER%%/IO/Socket/INET.pm
|
||||
lib/perl5/%%PERL_VER%%/IO/Socket/UNIX.pm
|
||||
lib/perl5/%%PERL_VER%%/IPC/Open2.pm
|
||||
lib/perl5/%%PERL_VER%%/IPC/Open3.pm
|
||||
lib/perl5/%%PERL_VER%%/List/Util.pm
|
||||
lib/perl5/%%PERL_VER%%/IPC/regen.pl
|
||||
lib/perl5/%%PERL_VER%%/Locale/Constants.pm
|
||||
lib/perl5/%%PERL_VER%%/Locale/Constants.pod
|
||||
lib/perl5/%%PERL_VER%%/Locale/Country.pm
|
||||
|
@ -235,6 +218,9 @@ lib/perl5/%%PERL_VER%%/Memoize/ExpireTest.pm
|
|||
lib/perl5/%%PERL_VER%%/Memoize/NDBM_File.pm
|
||||
lib/perl5/%%PERL_VER%%/Memoize/SDBM_File.pm
|
||||
lib/perl5/%%PERL_VER%%/Memoize/Storable.pm
|
||||
lib/perl5/%%PERL_VER%%/Module/CoreList.pm
|
||||
lib/perl5/%%PERL_VER%%/Module/Pluggable.pm
|
||||
lib/perl5/%%PERL_VER%%/Module/Pluggable/Object.pm
|
||||
lib/perl5/%%PERL_VER%%/NEXT.pm
|
||||
lib/perl5/%%PERL_VER%%/Net/Cmd.pm
|
||||
lib/perl5/%%PERL_VER%%/Net/Config.eg
|
||||
|
@ -246,7 +232,7 @@ lib/perl5/%%PERL_VER%%/Net/FTP/E.pm
|
|||
lib/perl5/%%PERL_VER%%/Net/FTP/I.pm
|
||||
lib/perl5/%%PERL_VER%%/Net/FTP/L.pm
|
||||
lib/perl5/%%PERL_VER%%/Net/FTP/dataconn.pm
|
||||
lib/perl5/%%PERL_VER%%/Net/Hostname.eg
|
||||
lib/perl5/%%PERL_VER%%/Net/Hostname.pm.eg
|
||||
lib/perl5/%%PERL_VER%%/Net/NNTP.pm
|
||||
lib/perl5/%%PERL_VER%%/Net/Netrc.pm
|
||||
lib/perl5/%%PERL_VER%%/Net/POP3.pm
|
||||
|
@ -289,7 +275,6 @@ lib/perl5/%%PERL_VER%%/Pod/Text/Color.pm
|
|||
lib/perl5/%%PERL_VER%%/Pod/Text/Overstrike.pm
|
||||
lib/perl5/%%PERL_VER%%/Pod/Text/Termcap.pm
|
||||
lib/perl5/%%PERL_VER%%/Pod/Usage.pm
|
||||
lib/perl5/%%PERL_VER%%/Scalar/Util.pm
|
||||
lib/perl5/%%PERL_VER%%/Search/Dict.pm
|
||||
lib/perl5/%%PERL_VER%%/SelectSaver.pm
|
||||
lib/perl5/%%PERL_VER%%/SelfLoader.pm
|
||||
|
@ -310,14 +295,15 @@ lib/perl5/%%PERL_VER%%/Test/Harness/Assert.pm
|
|||
lib/perl5/%%PERL_VER%%/Test/Harness/Iterator.pm
|
||||
lib/perl5/%%PERL_VER%%/Test/Harness/Point.pm
|
||||
lib/perl5/%%PERL_VER%%/Test/Harness/Straps.pm
|
||||
lib/perl5/%%PERL_VER%%/Test/Harness/Results.pm
|
||||
lib/perl5/%%PERL_VER%%/Test/Harness/TAP.pod
|
||||
lib/perl5/%%PERL_VER%%/Test/Harness/Util.pm
|
||||
lib/perl5/%%PERL_VER%%/Test/More.pm
|
||||
lib/perl5/%%PERL_VER%%/Test/Simple.pm
|
||||
lib/perl5/%%PERL_VER%%/Test/Tutorial.pod
|
||||
lib/perl5/%%PERL_VER%%/Text/Abbrev.pm
|
||||
lib/perl5/%%PERL_VER%%/Text/Balanced.pm
|
||||
lib/perl5/%%PERL_VER%%/Text/ParseWords.pm
|
||||
lib/perl5/%%PERL_VER%%/Text/Soundex.pm
|
||||
lib/perl5/%%PERL_VER%%/Text/Tabs.pm
|
||||
lib/perl5/%%PERL_VER%%/Text/Wrap.pm
|
||||
lib/perl5/%%PERL_VER%%/Thread.pm
|
||||
|
@ -330,6 +316,7 @@ lib/perl5/%%PERL_VER%%/Tie/Hash.pm
|
|||
lib/perl5/%%PERL_VER%%/Tie/Memoize.pm
|
||||
lib/perl5/%%PERL_VER%%/Tie/RefHash.pm
|
||||
lib/perl5/%%PERL_VER%%/Tie/Scalar.pm
|
||||
lib/perl5/%%PERL_VER%%/Tie/StdHandle.pm
|
||||
lib/perl5/%%PERL_VER%%/Tie/SubstrHash.pm
|
||||
lib/perl5/%%PERL_VER%%/Time/Local.pm
|
||||
lib/perl5/%%PERL_VER%%/Time/gmtime.pm
|
||||
|
@ -344,10 +331,6 @@ lib/perl5/%%PERL_VER%%/User/pwent.pm
|
|||
lib/perl5/%%PERL_VER%%/abbrev.pl
|
||||
lib/perl5/%%PERL_VER%%/assert.pl
|
||||
lib/perl5/%%PERL_VER%%/attributes.pm
|
||||
lib/perl5/%%PERL_VER%%/auto/POSIX/SigAction/flags.al
|
||||
lib/perl5/%%PERL_VER%%/auto/POSIX/SigAction/handler.al
|
||||
lib/perl5/%%PERL_VER%%/auto/POSIX/SigAction/mask.al
|
||||
lib/perl5/%%PERL_VER%%/auto/POSIX/SigAction/safe.al
|
||||
lib/perl5/%%PERL_VER%%/autouse.pm
|
||||
lib/perl5/%%PERL_VER%%/base.pm
|
||||
lib/perl5/%%PERL_VER%%/bigfloat.pl
|
||||
|
@ -364,7 +347,6 @@ lib/perl5/%%PERL_VER%%/charnames.pm
|
|||
lib/perl5/%%PERL_VER%%/complete.pl
|
||||
lib/perl5/%%PERL_VER%%/constant.pm
|
||||
lib/perl5/%%PERL_VER%%/ctime.pl
|
||||
lib/perl5/%%PERL_VER%%/dbm_filter_util.pl
|
||||
lib/perl5/%%PERL_VER%%/diagnostics.pm
|
||||
lib/perl5/%%PERL_VER%%/dotsh.pl
|
||||
lib/perl5/%%PERL_VER%%/dumpvar.pl
|
||||
|
@ -432,6 +414,7 @@ lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/CORE/nostdio.h
|
|||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/CORE/op.h
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/CORE/opcode.h
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/CORE/opnames.h
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/CORE/overload.h
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/CORE/pad.h
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/CORE/patchlevel.h
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/CORE/perl.h
|
||||
|
@ -476,20 +459,30 @@ lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/Alias.pm
|
|||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/Byte.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/CJKConstants.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/CN.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/CN/HZ.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/Config.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/EBCDIC.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/Encoder.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/Encoding.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/GSM0338.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/Guess.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/JP.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/JP/H2Z.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/JP/JIS7.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/KR.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/KR/2022_KR.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/MIME/Header.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/MIME/Header/ISO_2022_JP.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/MIME/Name.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/Symbol.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/TW.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/Unicode.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/Unicode/UTF7.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Errno.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Fcntl.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/File/Glob.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Filter/Util/Call.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Hash/Util.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/I18N/Langinfo.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IO.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IO/Dir.pm
|
||||
|
@ -500,9 +493,13 @@ lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IO/Poll.pm
|
|||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IO/Seekable.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IO/Select.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IO/Socket.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IO/Socket/INET.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IO/Socket/UNIX.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IPC/Msg.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IPC/Semaphore.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IPC/SharedMem.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IPC/SysV.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/List/Util.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/MIME/Base64.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/MIME/QuotedPrint.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/NDBM_File.pm
|
||||
|
@ -515,83 +512,52 @@ lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/PerlIO/scalar.pm
|
|||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/PerlIO/via.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/SDBM_File.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Safe.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Scalar/Util.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Socket.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Storable.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Sys/Hostname.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Sys/Syslog.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Text/Soundex.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Time/HiRes.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Unicode/Normalize.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/XS/APItest.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/XS/Typemap.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/XSLoader.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/attrs.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/B/B.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/B/B.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/B/C/C.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/B/C/C.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/ByteLoader/ByteLoader.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/ByteLoader/ByteLoader.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Cwd/Cwd.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Cwd/Cwd.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/DB_File/DB_File.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/DB_File/DB_File.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/DB_File/autosplit.ix
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Data/Dumper/Dumper.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Data/Dumper/Dumper.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Devel/DProf/DProf.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Devel/DProf/DProf.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Devel/PPPort/PPPort.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Devel/PPPort/PPPort.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Devel/Peek/Peek.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Devel/Peek/Peek.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Digest/MD5/MD5.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Digest/MD5/MD5.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/DynaLoader/DynaLoader.a
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/DynaLoader/autosplit.ix
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/DynaLoader/dl_expandspec.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/DynaLoader/dl_find_symbol_anywhere.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/DynaLoader/dl_findfile.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/DynaLoader/extralibs.ld
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/Byte/Byte.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/Byte/Byte.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/CN/CN.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/CN/CN.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/EBCDIC/EBCDIC.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/EBCDIC/EBCDIC.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/Encode.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/Encode.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/JP/JP.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/JP/JP.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/KR/KR.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/KR/KR.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/Symbol/Symbol.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/Symbol/Symbol.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/TW/TW.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/TW/TW.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/Unicode/Unicode.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/Unicode/Unicode.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Fcntl/Fcntl.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Fcntl/Fcntl.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/File/Glob/Glob.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/File/Glob/Glob.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Filter/Util/Call/Call.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Filter/Util/Call/Call.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/I18N/Langinfo/Langinfo.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Hash/Util/Util.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/I18N/Langinfo/Langinfo.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/I18N/Langinfo/autosplit.ix
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/IO/IO.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/IO/IO.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/IPC/SysV/SysV.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/IPC/SysV/SysV.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/List/Util/Util.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/List/Util/Util.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/MIME/Base64/Base64.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/MIME/Base64/Base64.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/NDBM_File/NDBM_File.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/NDBM_File/NDBM_File.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Opcode/Opcode.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Opcode/Opcode.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/POSIX.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/POSIX.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/abs.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/alarm.al
|
||||
|
@ -744,18 +710,31 @@ lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/vprintf.al
|
|||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/vsprintf.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/wait.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/waitpid.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/PerlIO/encoding/encoding.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigAction/flags.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigAction/handler.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigAction/mask.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigAction/new.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigAction/safe.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/CLEAR.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/DELETE.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/EXISTS.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/FETCH.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/SCALAR.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/STORE.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/_check.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/_croak.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/_exist.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/_getsig.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/_init.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/new.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/PerlIO/encoding/encoding.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/PerlIO/scalar/scalar.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/PerlIO/scalar/scalar.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/PerlIO/via/via.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/PerlIO/via/via.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/SDBM_File/SDBM_File.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/SDBM_File/SDBM_File.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Socket/Socket.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Socket/Socket.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/BIN_VERSION_NV.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/BIN_WRITE_VERSION_NV.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/CAN_FLOCK.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/Storable.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/Storable.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/_freeze.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/_retrieve.al
|
||||
|
@ -763,6 +742,7 @@ lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/_store.al
|
|||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/_store_fd.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/autosplit.ix
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/fd_retrieve.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/file_magic.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/freeze.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/lock_nstore.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/lock_retrieve.al
|
||||
|
@ -778,27 +758,16 @@ lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/show_file_magic.al
|
|||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/store.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/store_fd.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/thaw.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Sys/Hostname/Hostname.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Sys/Hostname/Hostname.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Sys/Hostname/autosplit.ix
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Sys/Syslog/Syslog.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Sys/Syslog/Syslog.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Time/HiRes/HiRes.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Text/Soundex/Soundex.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Time/HiRes/HiRes.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Unicode/Normalize/Normalize.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Unicode/Normalize/Normalize.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/XS/APItest/APItest.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/XS/APItest/APItest.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/XS/Typemap/Typemap.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/XS/Typemap/Typemap.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/attrs/attrs.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/attrs/attrs.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/re/re.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/re/re.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/sdbm/extralibs.ld
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/threads/shared/shared.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/threads/shared/shared.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/threads/threads.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/threads/threads.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/encoding.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/lib.pm
|
||||
|
@ -830,6 +799,7 @@ lib/perl5/%%PERL_VER%%/pod/perl585delta.pod
|
|||
lib/perl5/%%PERL_VER%%/pod/perl586delta.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perl587delta.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perl588delta.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perl589delta.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perl58delta.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlaix.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlamiga.pod
|
||||
|
@ -848,6 +818,7 @@ lib/perl5/%%PERL_VER%%/pod/perlcheat.pod
|
|||
lib/perl5/%%PERL_VER%%/pod/perlclib.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlcn.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlcompile.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlcommunity.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlcygwin.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perldata.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perldbmfilter.pod
|
||||
|
@ -923,11 +894,15 @@ lib/perl5/%%PERL_VER%%/pod/perlpodspec.pod
|
|||
lib/perl5/%%PERL_VER%%/pod/perlport.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlqnx.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlre.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlrebackslash.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlrecharclass.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlref.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlreftut.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlreguts.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlrequick.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlreref.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlretut.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlriscos.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlrun.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlsec.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlsolaris.pod
|
||||
|
@ -944,7 +919,9 @@ lib/perl5/%%PERL_VER%%/pod/perltrap.pod
|
|||
lib/perl5/%%PERL_VER%%/pod/perltru64.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perltw.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlunicode.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlunifaq.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perluniintro.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlunitut.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlutil.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perluts.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlvar.pod
|
||||
|
@ -981,6 +958,7 @@ lib/perl5/%%PERL_VER%%/unicore/Jamo.txt
|
|||
lib/perl5/%%PERL_VER%%/unicore/LineBreak.txt
|
||||
lib/perl5/%%PERL_VER%%/unicore/Name.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/NamedSequences.txt
|
||||
lib/perl5/%%PERL_VER%%/unicore/NamedSqProv.txt
|
||||
lib/perl5/%%PERL_VER%%/unicore/NamesList.txt
|
||||
lib/perl5/%%PERL_VER%%/unicore/NormalizationCorrections.txt
|
||||
lib/perl5/%%PERL_VER%%/unicore/PVA.pl
|
||||
|
@ -1069,6 +1047,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Arab.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Armn.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/AsciiHex.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Assigned.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Bali.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Beng.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/BidiC.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/BidiCont.pl
|
||||
|
@ -1079,8 +1058,10 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Bugi.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Buhd.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/C.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Canadian.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Carian.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Cc.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Cf.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Cham.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Cher.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Cn.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Cntrl.pl
|
||||
|
@ -1091,6 +1072,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Cs.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Cyrl.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Dash.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Dash2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/DefaultI.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Dep.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Deprecat.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Deva.pl
|
||||
|
@ -1104,9 +1086,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Extender.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Geor.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Glag.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Goth.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/GrLink.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Graph.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Grapheme.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Grek.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Gujr.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Guru.pl
|
||||
|
@ -1130,6 +1110,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/IdsTrina.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InAegean.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InAlphab.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InAncie2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InAncie3.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InAncien.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InArabi2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InArabi3.pl
|
||||
|
@ -1137,6 +1118,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InArabi4.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InArabic.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InArmeni.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InArrows.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InBaline.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InBasicL.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InBengal.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InBlockE.pl
|
||||
|
@ -1147,6 +1129,8 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InBraill.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InBugine.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InBuhid.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InByzant.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCarian.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCham.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCherok.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCjkCo2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCjkCo3.pl
|
||||
|
@ -1164,13 +1148,19 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCombi4.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCombin.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InContro.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCoptic.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCounti.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCunei2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCuneif.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCurren.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCyprio.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCyril2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCyril3.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCyril4.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCyrill.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InDesere.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InDevana.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InDingba.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InDomino.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InEnclo2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InEnclos.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InEthio2.pl
|
||||
|
@ -1202,6 +1192,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InKangxi.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InKannad.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InKatak2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InKataka.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InKayahL.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InKharos.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InKhmer.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InKhmerS.pl
|
||||
|
@ -1209,12 +1200,18 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLao.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLatin1.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLatin2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLatin3.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLatin4.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLatin5.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLatinE.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLepcha.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLetter.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLimbu.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLinea2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLinear.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLowSur.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLycian.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLydian.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InMahjon.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InMalaya.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InMathe2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InMathem.pl
|
||||
|
@ -1228,22 +1225,30 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InMongol.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InMusica.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InMyanma.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InNewTai.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InNko.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InNumber.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InOgham.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InOlChik.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InOldIta.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InOldPer.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InOptica.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InOriya.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InOsmany.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InPhagsP.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InPhaist.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InPhoeni.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InPhone2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InPhonet.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InPrivat.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InRejang.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InRunic.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InSauras.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InShavia.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InSinhal.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InSmallF.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InSpacin.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InSpecia.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InSundan.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InSupers.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InSuppl2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InSuppl3.pl
|
||||
|
@ -1266,6 +1271,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InTibeta.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InTifina.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InUgarit.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InUnifie.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InVai.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InVaria2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InVariat.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InVertic.pl
|
||||
|
@ -1275,6 +1281,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InYijing.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/JoinC.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/JoinCont.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Kana.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/KayahLi.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Khar.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Khmr.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Knda.pl
|
||||
|
@ -1283,6 +1290,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/LC.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/LOE.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Laoo.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Latn.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Lepcha.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Limb.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/LinearB.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Ll.pl
|
||||
|
@ -1293,6 +1301,8 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Lower.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Lowercas.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Lt.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Lu.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Lycian.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Lydian.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/M.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Math.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Mc.pl
|
||||
|
@ -1305,6 +1315,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/N.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/NChar.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Nd.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/NewTaiLu.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Nkoo.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Nl.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/No.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Nonchara.pl
|
||||
|
@ -1317,6 +1328,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/OLower.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/OMath.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/OUpper.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Ogam.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/OlChiki.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/OldItali.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/OldPersi.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Orya.pl
|
||||
|
@ -1338,6 +1350,8 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Pc.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Pd.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Pe.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Pf.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/PhagsPa.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Phnx.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Pi.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Po.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Print.pl
|
||||
|
@ -1348,10 +1362,12 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Qaai.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Quotatio.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Radical.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Radical2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Rejang.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Runr.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/S.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/SD.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/STerm.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Saurasht.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Sc.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Shaw.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Sinh.pl
|
||||
|
@ -1362,6 +1378,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/SoftDott.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Space.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/SpacePer.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Sterm2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Sundanes.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/SylotiNa.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Syrc.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Tagb.pl
|
||||
|
@ -1382,11 +1399,13 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/UnifiedI.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Upper.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Uppercas.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/VS.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Vai.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Variatio.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/WSpace.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/WhiteSpa.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Word.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/XDigit.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Xsux.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Yiii.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Z.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Zl.pl
|
||||
|
@ -1455,23 +1474,41 @@ lib/perl5/%%PERL_VER%%/vmsish.pm
|
|||
lib/perl5/%%PERL_VER%%/warnings.pm
|
||||
lib/perl5/%%PERL_VER%%/warnings/register.pm
|
||||
%%GDBM%%lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/GDBM_File/GDBM_File.so
|
||||
%%GDBM%%lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/GDBM_File/GDBM_File.bs
|
||||
%%GDBM%%lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/GDBM_File.pm
|
||||
@dirrm lib/perl5/%%PERL_VER%%/BSDPAN/BSDPAN
|
||||
@dirrm lib/perl5/%%PERL_VER%%/BSDPAN/ExtUtils
|
||||
@dirrm lib/perl5/%%PERL_VER%%/BSDPAN
|
||||
@unexec find %D/%%SITE_PERL%%/%%PERL_ARCH%%/ -name '*.ph' -delete 2>/dev/null || true
|
||||
%%GDBM%%@dirrm lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/GDBM_File
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/auto/POSIX/SigAction
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/auto/POSIX
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/threads
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/XS
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Unicode
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Time
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Text
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Sys
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Scalar
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/PerlIO
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/MIME
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/List
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IPC
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IO/Socket
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IO
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/I18N
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Hash
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Filter/Util
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Filter
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/File
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/Unicode
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/MIME/Header
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/MIME
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/KR
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/JP
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/CN
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Digest
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Devel
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Data
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/CORE
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/B
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/threads/shared
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/threads
|
||||
|
@ -1484,17 +1521,22 @@ lib/perl5/%%PERL_VER%%/warnings/register.pm
|
|||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Unicode
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Time/HiRes
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Time
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Text/Soundex
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Text
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Sys/Syslog
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Sys/Hostname
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Sys
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Socket
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Scalar
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/sdbm
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/SDBM_File
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/PerlIO/via
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/PerlIO/scalar
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/PerlIO/encoding
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/PerlIO
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigAction
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Opcode
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/NDBM_File
|
||||
|
@ -1507,6 +1549,8 @@ lib/perl5/%%PERL_VER%%/warnings/register.pm
|
|||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/IO
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/I18N/Langinfo
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/I18N
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Hash/Util
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Hash
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Filter/Util/Call
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Filter/Util
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Filter
|
||||
|
@ -1537,37 +1581,8 @@ lib/perl5/%%PERL_VER%%/warnings/register.pm
|
|||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/B
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/DynaLoader
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Unicode
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Time
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/PerlIO
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IPC
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/I18N
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Filter/Util
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Filter
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/File
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Devel
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/CORE
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/IO/Socket
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/IO
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/B
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/warnings
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/User
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Time
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Search
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/IPC
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Exporter
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Scalar
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/List
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Digest
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Devel
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/DBM_Filter
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode/CN
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode/MIME
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode/KR
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode/JP
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/CPAN
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Carp
|
||||
@dirrm lib/perl5/%%PERL_VER%%/unicore/To
|
||||
@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc
|
||||
@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/dt
|
||||
|
@ -1580,8 +1595,10 @@ lib/perl5/%%PERL_VER%%/warnings/register.pm
|
|||
@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/ccc
|
||||
@dirrm lib/perl5/%%PERL_VER%%/unicore/lib
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/unicore
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/User
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Unicode/Collate
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Unicode
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Time
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Tie
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Thread
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Text/TabsWrap
|
||||
|
@ -1595,6 +1612,7 @@ lib/perl5/%%PERL_VER%%/warnings/register.pm
|
|||
@dirrmtry lib/perl5/%%PERL_VER%%/Term/ANSIColor
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Term
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Switch
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Search
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Pod/Text
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Pod/Perldoc
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Pod
|
||||
|
@ -1604,6 +1622,8 @@ lib/perl5/%%PERL_VER%%/warnings/register.pm
|
|||
@dirrmtry lib/perl5/%%PERL_VER%%/Net/Ping
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Net/FTP
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Net
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Module/Pluggable
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Module
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Memoize
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Math/BigInt
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Math/BigFloat
|
||||
|
@ -1611,28 +1631,40 @@ lib/perl5/%%PERL_VER%%/warnings/register.pm
|
|||
@dirrmtry lib/perl5/%%PERL_VER%%/Locale/Maketext
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Locale/Codes
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Locale
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/IPC
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/IO/Socket
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/IO
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/I18N/LangTags
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/I18N
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Hash
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Getopt/Long
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Getopt
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Filter/Simple
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Filter
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/File/Spec
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/File
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode/Unicode
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode/MIME/Header
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode/MIME
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/ExtUtils/Command
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/ExtUtils/Constant
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/ExtUtils/Liblist
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/ExtUtils/MakeMaker
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/ExtUtils
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Exporter
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode/KR
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode/JP
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode/CN
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Digest
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Devel
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/DBM_Filter
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Class/ISA
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Class
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Carp
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/CPAN/Kwalify
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/CPAN/API
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/CPAN
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/CGI/eg
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/CGI
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/B/Lint
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/B
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Attribute/Handlers
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Attribute
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/pod
|
||||
|
|
|
@ -7,19 +7,19 @@
|
|||
|
||||
PORTNAME= perl
|
||||
PORTVERSION= ${PERL_VER}
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= lang devel perl5
|
||||
MASTER_SITES= CPAN \
|
||||
${MASTER_SITE_LOCAL:S/$/:local/} \
|
||||
http://www.tobez.org/download/port-mirrors/lang/perl58/:local
|
||||
http://protey.ru/freebsd/distfiles/:local
|
||||
MASTER_SITE_SUBDIR= ../../src \
|
||||
tobez/:local
|
||||
skv/:local
|
||||
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \
|
||||
BSDPAN-${PERL_VER}${EXTRACT_SUFX}:local
|
||||
DIST_SUBDIR= perl
|
||||
|
||||
PATCH_SITES= ${MASTER_SITE_LOCAL:S/$/tobez\//} \
|
||||
http://www.tobez.org/download/port-mirrors/lang/perl58/
|
||||
PATCHFILES= defined-or-5.8.8.bz2
|
||||
PATCH_SITES= ${MASTER_SITE_LOCAL:S!$!skv/!} \
|
||||
http://protey.ru/freebsd/distfiles/
|
||||
PATCHFILES= defined-or-${PERL_VER}.bz2
|
||||
|
||||
MAINTAINER= skv@FreeBSD.org
|
||||
COMMENT= Practical Extraction and Report Language
|
||||
|
@ -32,9 +32,10 @@ OPTIONS= DEBUGGING "Build with debugging support" off \
|
|||
PERL_64BITINT "Use 64 bit integers (on i386)" on \
|
||||
THREADS "Build threaded perl" off \
|
||||
SUIDPERL "Build set-user-id suidperl binary" off \
|
||||
SITECUSTOMIZE "Run-time customization of @INC" off \
|
||||
USE_PERL "Rewrite links in /usr/bin" on
|
||||
|
||||
PERL_VER= 5.8.8
|
||||
PERL_VER= 5.8.9
|
||||
PERL_ARCH= mach
|
||||
PERL_VERSION= ${PERL_VER}
|
||||
SITE_PERL_REL?= lib/perl5/site_perl/${PERL_VER}
|
||||
|
@ -53,7 +54,7 @@ CONFIGURE_ARGS= -sde -Dprefix=${PREFIX} \
|
|||
-Dsiteman3dir=${PREFIX}/lib/perl5/${PERL_VER}/man/man3 \
|
||||
-Dsiteman1dir=${PREFIX}/man/man1 \
|
||||
-Ui_malloc -Ui_iconv -Uinstallusrbinperl \
|
||||
-Dcc="${CC}" -Duseshrplib \
|
||||
-Dcc="${CC}" -Duseshrplib -Dinc_version_list=none \
|
||||
-Dccflags=-DAPPLLIB_EXP=\"${BSDPAN_DEST}\"
|
||||
LOCALE_CLEANUP= LANG="" LC_ALL="" LC_COLLATE="" LC_CTYPE="" \
|
||||
LC_MESSAGES="" LC_MONETARY="" LC_NUMERIC="" \
|
||||
|
@ -122,6 +123,10 @@ CONFIGURE_ARGS+= -Dusemymalloc=n
|
|||
CONFIGURE_ARGS+= -Duse64bitint
|
||||
.endif
|
||||
|
||||
.if defined(WITH_SITECUSTOMIZE)
|
||||
CONFIGURE_ARGS+= -Dusesitecustomize
|
||||
.endif
|
||||
|
||||
LATEST_LINK= perl
|
||||
|
||||
PLIST_SUB+= NEED_USE_PERL="@comment "
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
MAN1+= a2p.1
|
||||
MAN1+= c2ph.1
|
||||
MAN1+= corelist.1
|
||||
MAN1+= cpan.1
|
||||
MAN1+= dprofpp.1
|
||||
MAN1+= enc2xs.1
|
||||
|
@ -28,6 +29,7 @@ MAN1+= perl585delta.1
|
|||
MAN1+= perl586delta.1
|
||||
MAN1+= perl587delta.1
|
||||
MAN1+= perl588delta.1
|
||||
MAN1+= perl589delta.1
|
||||
MAN1+= perl58delta.1
|
||||
MAN1+= perlaix.1
|
||||
MAN1+= perlamiga.1
|
||||
|
@ -48,6 +50,7 @@ MAN1+= perlcheat.1
|
|||
MAN1+= perlclib.1
|
||||
MAN1+= perlcn.1
|
||||
MAN1+= perlcompile.1
|
||||
MAN1+= perlcommunity.1
|
||||
MAN1+= perlcygwin.1
|
||||
MAN1+= perldata.1
|
||||
MAN1+= perldbmfilter.1
|
||||
|
@ -124,17 +127,22 @@ MAN1+= perlpodspec.1
|
|||
MAN1+= perlport.1
|
||||
MAN1+= perlqnx.1
|
||||
MAN1+= perlre.1
|
||||
MAN1+= perlrebackslash.1
|
||||
MAN1+= perlrecharclass.1
|
||||
MAN1+= perlref.1
|
||||
MAN1+= perlreftut.1
|
||||
MAN1+= perlreguts.1
|
||||
MAN1+= perlrequick.1
|
||||
MAN1+= perlreref.1
|
||||
MAN1+= perlretut.1
|
||||
MAN1+= perlriscos.1
|
||||
MAN1+= perlrun.1
|
||||
MAN1+= perlsec.1
|
||||
MAN1+= perlsolaris.1
|
||||
MAN1+= perlstyle.1
|
||||
MAN1+= perlsub.1
|
||||
MAN1+= perlsyn.1
|
||||
MAN1+= perlthanks.1
|
||||
MAN1+= perlthrtut.1
|
||||
MAN1+= perltie.1
|
||||
MAN1+= perltoc.1
|
||||
|
@ -145,8 +153,10 @@ MAN1+= perltrap.1
|
|||
MAN1+= perltru64.1
|
||||
MAN1+= perltw.1
|
||||
MAN1+= perlunicode.1
|
||||
MAN1+= perlunifaq.1
|
||||
MAN1+= perluniintro.1
|
||||
MAN1+= perlutil.1
|
||||
MAN1+= perlunitut.1
|
||||
MAN1+= perluts.1
|
||||
MAN1+= perlvar.1
|
||||
MAN1+= perlvmesa.1
|
||||
|
@ -187,6 +197,7 @@ MAN3+= B::Debug.3
|
|||
MAN3+= B::Deparse.3
|
||||
MAN3+= B::Disassembler.3
|
||||
MAN3+= B::Lint.3
|
||||
MAN3+= B::Lint::Debug.3
|
||||
MAN3+= B::Showlex.3
|
||||
MAN3+= B::Stackobj.3
|
||||
MAN3+= B::Stash.3
|
||||
|
@ -203,9 +214,18 @@ MAN3+= CGI::Pretty.3
|
|||
MAN3+= CGI::Push.3
|
||||
MAN3+= CGI::Switch.3
|
||||
MAN3+= CGI::Util.3
|
||||
MAN3+= CORE.3
|
||||
MAN3+= CPAN.3
|
||||
MAN3+= CPAN::API::HOWTO.3
|
||||
MAN3+= CPAN::Debug.3
|
||||
MAN3+= CPAN::Distroprefs.3
|
||||
MAN3+= CPAN::FirstTime.3
|
||||
MAN3+= CPAN::HandleConfig.3
|
||||
MAN3+= CPAN::Kwalify.3
|
||||
MAN3+= CPAN::Nox.3
|
||||
MAN3+= CPAN::Queue.3
|
||||
MAN3+= CPAN::Tarzip.3
|
||||
MAN3+= CPAN::Version.3
|
||||
MAN3+= Carp.3
|
||||
MAN3+= Carp::Heavy.3
|
||||
MAN3+= Class::ISA.3
|
||||
|
@ -222,6 +242,7 @@ MAN3+= DBM_Filter::utf8.3
|
|||
MAN3+= DB_File.3
|
||||
MAN3+= Data::Dumper.3
|
||||
MAN3+= Devel::DProf.3
|
||||
MAN3+= Devel::InnerPackage.3
|
||||
MAN3+= Devel::PPPort.3
|
||||
MAN3+= Devel::Peek.3
|
||||
MAN3+= Devel::SelfStubber.3
|
||||
|
@ -242,6 +263,7 @@ MAN3+= Encode::Config.3
|
|||
MAN3+= Encode::EBCDIC.3
|
||||
MAN3+= Encode::Encoder.3
|
||||
MAN3+= Encode::Encoding.3
|
||||
MAN3+= Encode::GSM0338.3
|
||||
MAN3+= Encode::Guess.3
|
||||
MAN3+= Encode::JP.3
|
||||
MAN3+= Encode::JP::H2Z.3
|
||||
|
@ -249,6 +271,7 @@ MAN3+= Encode::JP::JIS7.3
|
|||
MAN3+= Encode::KR.3
|
||||
MAN3+= Encode::KR::2022_KR.3
|
||||
MAN3+= Encode::MIME::Header.3
|
||||
MAN3+= Encode::MIME::Name.3
|
||||
MAN3+= Encode::PerlIO.3
|
||||
MAN3+= Encode::Supported.3
|
||||
MAN3+= Encode::Symbol.3
|
||||
|
@ -276,6 +299,7 @@ MAN3+= ExtUtils::MM_Any.3
|
|||
MAN3+= ExtUtils::MM_BeOS.3
|
||||
MAN3+= ExtUtils::MM_Cygwin.3
|
||||
MAN3+= ExtUtils::MM_DOS.3
|
||||
MAN3+= ExtUtils::MM_Darwin.3
|
||||
MAN3+= ExtUtils::MM_MacOS.3
|
||||
MAN3+= ExtUtils::MM_NW5.3
|
||||
MAN3+= ExtUtils::MM_OS2.3
|
||||
|
@ -298,6 +322,7 @@ MAN3+= ExtUtils::Miniperl.3
|
|||
MAN3+= ExtUtils::Mkbootstrap.3
|
||||
MAN3+= ExtUtils::Mksymlists.3
|
||||
MAN3+= ExtUtils::Packlist.3
|
||||
MAN3+= ExtUtils::ParseXS.3
|
||||
MAN3+= ExtUtils::testlib.3
|
||||
MAN3+= Fatal.3
|
||||
MAN3+= Fcntl.3
|
||||
|
@ -348,6 +373,7 @@ MAN3+= IPC::Msg.3
|
|||
MAN3+= IPC::Open2.3
|
||||
MAN3+= IPC::Open3.3
|
||||
MAN3+= IPC::Semaphore.3
|
||||
MAN3+= IPC::SharedMem.3
|
||||
MAN3+= IPC::SysV.3
|
||||
MAN3+= List::Util.3
|
||||
MAN3+= Locale::Constants.3
|
||||
|
@ -374,6 +400,9 @@ MAN3+= Memoize::ExpireTest.3
|
|||
MAN3+= Memoize::NDBM_File.3
|
||||
MAN3+= Memoize::SDBM_File.3
|
||||
MAN3+= Memoize::Storable.3
|
||||
MAN3+= Module::CoreList.3
|
||||
MAN3+= Module::Pluggable.3
|
||||
MAN3+= Module::Pluggable::Object.3
|
||||
MAN3+= NDBM_File.3
|
||||
MAN3+= NEXT.3
|
||||
MAN3+= Net::Cmd.3
|
||||
|
@ -451,7 +480,9 @@ MAN3+= Test::Harness::Assert.3
|
|||
MAN3+= Test::Harness::Iterator.3
|
||||
MAN3+= Test::Harness::Point.3
|
||||
MAN3+= Test::Harness::Straps.3
|
||||
MAN3+= Test::Harness::Results.3
|
||||
MAN3+= Test::Harness::TAP.3
|
||||
MAN3+= Test::Harness::Util.3
|
||||
MAN3+= Test::More.3
|
||||
MAN3+= Test::Simple.3
|
||||
MAN3+= Test::Tutorial.3
|
||||
|
@ -471,6 +502,7 @@ MAN3+= Tie::Hash.3
|
|||
MAN3+= Tie::Memoize.3
|
||||
MAN3+= Tie::RefHash.3
|
||||
MAN3+= Tie::Scalar.3
|
||||
MAN3+= Tie::StdHandle.3
|
||||
MAN3+= Tie::SubstrHash.3
|
||||
MAN3+= Time::HiRes.3
|
||||
MAN3+= Time::Local.3
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
MD5 (perl-5.8.8.tar.bz2) = a377c0c67ab43fd96eeec29ce19e8382
|
||||
SHA256 (perl-5.8.8.tar.bz2) = 818a140d9c04ea8dab3a05104b34ced7f7d9d0a91bfed91baf89a84d0dfb1bc9
|
||||
SIZE (perl-5.8.8.tar.bz2) = 10123359
|
||||
MD5 (BSDPAN-5.8.8.tar.bz2) = 872e4235a7e95cc88ead2e32da0e1f5a
|
||||
SHA256 (BSDPAN-5.8.8.tar.bz2) = 6cd20186db9c27761cabd7ff96d40936bc7be9c527f28b1ffa2773b65b228394
|
||||
SIZE (BSDPAN-5.8.8.tar.bz2) = 8192
|
||||
MD5 (defined-or-5.8.8.bz2) = 4a40ed2c1356f189cfa061b5e102dfca
|
||||
SHA256 (defined-or-5.8.8.bz2) = ba60db049eaf987f1f8c7f5228743118d0022eabadf59313da41ece49e053970
|
||||
SIZE (defined-or-5.8.8.bz2) = 36377
|
||||
MD5 (perl/perl-5.8.9.tar.bz2) = 1cb52a76ce77fa300218da96577793ec
|
||||
SHA256 (perl/perl-5.8.9.tar.bz2) = 1097fbcd48ceccb2bc735d119c9db399a02a8ab9f7dc53e29e47e6a8d0d72e79
|
||||
SIZE (perl/perl-5.8.9.tar.bz2) = 11121414
|
||||
MD5 (perl/BSDPAN-5.8.9.tar.bz2) = 9479989b30c6b8a09e95130d57b4f482
|
||||
SHA256 (perl/BSDPAN-5.8.9.tar.bz2) = 6bc43a3586c5c4a545ebb969397582ef62d3a199809273992529e52ac533e741
|
||||
SIZE (perl/BSDPAN-5.8.9.tar.bz2) = 8171
|
||||
MD5 (perl/defined-or-5.8.9.bz2) = af0d3d86f437547bedb2d99539ba7a6e
|
||||
SHA256 (perl/defined-or-5.8.9.bz2) = 021b46afd429f5c56b76195565394f1e74770681c5ad98f98936ad2cab58bda4
|
||||
SIZE (perl/defined-or-5.8.9.bz2) = 36178
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
--- hints/freebsd.sh.orig Wed Mar 24 22:47:33 2004
|
||||
+++ hints/freebsd.sh Mon Feb 19 20:53:50 2007
|
||||
@@ -88,6 +88,8 @@ case "$osvers" in
|
||||
--- hints/freebsd.sh
|
||||
+++ hints/freebsd.sh
|
||||
@@ -88,6 +88,8 @@
|
||||
esac
|
||||
libswanted=`echo $libswanted | sed 's/ malloc / /'`
|
||||
libswanted=`echo $libswanted | sed 's/ bind / /'`
|
||||
|
@ -9,7 +9,7 @@
|
|||
# iconv gone in Perl 5.8.1, but if someone compiles 5.8.0 or earlier.
|
||||
libswanted=`echo $libswanted | sed 's/ iconv / /'`
|
||||
d_setregid='define'
|
||||
@@ -102,6 +104,10 @@ case "$osvers" in
|
||||
@@ -102,6 +104,10 @@
|
||||
;;
|
||||
esac
|
||||
libswanted=`echo $libswanted | sed 's/ malloc / /'`
|
||||
|
@ -20,31 +20,16 @@
|
|||
;;
|
||||
esac
|
||||
|
||||
@@ -116,17 +122,17 @@ case "$osvers" in
|
||||
|
||||
*)
|
||||
objformat=`/usr/bin/objformat`
|
||||
- if [ x$objformat = xelf ]; then
|
||||
- libpth="/usr/lib /usr/local/lib"
|
||||
- glibpth="/usr/lib /usr/local/lib"
|
||||
@@ -125,7 +131,7 @@
|
||||
else
|
||||
libpth="/usr/lib /usr/local/lib"
|
||||
glibpth="/usr/lib /usr/local/lib"
|
||||
- ldflags="-Wl,-E "
|
||||
- lddlflags="-shared "
|
||||
- else
|
||||
+ if [ x$objformat = xaout ]; then
|
||||
if [ -e /usr/lib/aout ]; then
|
||||
libpth="/usr/lib/aout /usr/local/lib /usr/lib"
|
||||
glibpth="/usr/lib/aout /usr/local/lib /usr/lib"
|
||||
fi
|
||||
lddlflags='-Bshareable'
|
||||
+ else
|
||||
+ libpth="/usr/lib /usr/local/lib"
|
||||
+ glibpth="/usr/lib /usr/local/lib"
|
||||
+ ldflags="%%PTHREAD_LIBS%% -Wl,-E"
|
||||
+ lddlflags="-shared "
|
||||
+ ldflags="%%PTHREAD_LIBS%% -Wl,-E "
|
||||
lddlflags="-shared "
|
||||
fi
|
||||
cccdlflags='-DPIC -fPIC'
|
||||
;;
|
||||
@@ -136,7 +142,7 @@ case "$osvers" in
|
||||
@@ -136,7 +142,7 @@
|
||||
0*|1*|2*|3*) ;;
|
||||
|
||||
*)
|
||||
|
@ -53,7 +38,7 @@
|
|||
if /usr/bin/file -L /usr/lib/libc.so | /usr/bin/grep -vq "not stripped" ; then
|
||||
usenm=false
|
||||
fi
|
||||
@@ -183,7 +189,9 @@ esac
|
||||
@@ -183,7 +189,9 @@
|
||||
|
||||
# This script UU/usethreads.cbu will get 'called-back' by Configure
|
||||
# after it has prompted the user for whether to use threads.
|
||||
|
|
|
@ -1,10 +0,0 @@
|
|||
--- makedepend.SH.orig Wed May 2 22:37:13 2007
|
||||
+++ makedepend.SH Wed May 2 22:38:48 2007
|
||||
@@ -167,6 +167,7 @@
|
||||
-e '/^#.*<builtin>/d' \
|
||||
-e '/^#.*<built-in>/d' \
|
||||
-e '/^#.*<command line>/d' \
|
||||
+ -e '/^#.*<command-line>/d' \
|
||||
-e '/^#.*"-"/d' \
|
||||
-e '/: file path prefix .* never used$/d' \
|
||||
-e 's#\.[0-9][0-9]*\.c#'"$file.c#" \
|
|
@ -1,58 +1,60 @@
|
|||
--- perl.c.orig Fri Apr 22 16:14:27 2005
|
||||
+++ perl.c Thu Dec 22 12:47:28 2005
|
||||
@@ -4397,6 +4397,27 @@ S_init_perllib(pTHX)
|
||||
incpush(APPLLIB_EXP, TRUE, TRUE, TRUE);
|
||||
--- perl.c
|
||||
+++ perl.c
|
||||
@@ -4882,6 +4882,28 @@
|
||||
incpush(APPLLIB_EXP, TRUE, TRUE, TRUE, TRUE);
|
||||
#endif
|
||||
|
||||
+#ifdef SITEARCH_EXP
|
||||
+ /* sitearch is always relative to sitelib on Windows for
|
||||
+ * DLL-based path intuition to work correctly */
|
||||
+# if !defined(WIN32)
|
||||
+ incpush(SITEARCH_EXP, FALSE, FALSE, TRUE);
|
||||
+ incpush(SITEARCH_EXP, FALSE, FALSE, TRUE, TRUE);
|
||||
+# endif
|
||||
+#endif
|
||||
+
|
||||
+#ifdef SITELIB_EXP
|
||||
+# if defined(WIN32)
|
||||
+ /* this picks up sitearch as well */
|
||||
+ incpush(SITELIB_EXP, TRUE, FALSE, TRUE);
|
||||
+ incpush(SITELIB_EXP, TRUE, FALSE, TRUE, TRUE);
|
||||
+# else
|
||||
+ incpush(SITELIB_EXP, FALSE, FALSE, TRUE);
|
||||
+ incpush(SITELIB_EXP, FALSE, FALSE, TRUE, TRUE);
|
||||
+# endif
|
||||
+#endif
|
||||
+
|
||||
+#ifdef SITELIB_STEM /* Search for version-specific dirs below here */
|
||||
+ incpush(SITELIB_STEM, FALSE, TRUE, TRUE);
|
||||
+#if defined(SITELIB_STEM) && defined(PERL_INC_VERSION_LIST)
|
||||
+ /* Search for version-specific dirs below here */
|
||||
+ incpush(SITELIB_STEM, FALSE, TRUE, TRUE, TRUE);
|
||||
+#endif
|
||||
+
|
||||
#ifdef ARCHLIB_EXP
|
||||
incpush(ARCHLIB_EXP, FALSE, FALSE, TRUE);
|
||||
incpush(ARCHLIB_EXP, FALSE, FALSE, TRUE, TRUE);
|
||||
#endif
|
||||
@@ -4428,27 +4449,6 @@ S_init_perllib(pTHX)
|
||||
incpush(PRIVLIB_EXP, TRUE, FALSE, TRUE);
|
||||
#else
|
||||
incpush(PRIVLIB_EXP, FALSE, FALSE, TRUE);
|
||||
-#endif
|
||||
-
|
||||
@@ -4915,28 +4937,6 @@
|
||||
incpush(PRIVLIB_EXP, FALSE, FALSE, TRUE, TRUE);
|
||||
#endif
|
||||
|
||||
-#ifdef SITEARCH_EXP
|
||||
- /* sitearch is always relative to sitelib on Windows for
|
||||
- * DLL-based path intuition to work correctly */
|
||||
-# if !defined(WIN32)
|
||||
- incpush(SITEARCH_EXP, FALSE, FALSE, TRUE);
|
||||
- incpush(SITEARCH_EXP, FALSE, FALSE, TRUE, TRUE);
|
||||
-# endif
|
||||
-#endif
|
||||
-
|
||||
-#ifdef SITELIB_EXP
|
||||
-# if defined(WIN32)
|
||||
- /* this picks up sitearch as well */
|
||||
- incpush(SITELIB_EXP, TRUE, FALSE, TRUE);
|
||||
- incpush(SITELIB_EXP, TRUE, FALSE, TRUE, TRUE);
|
||||
-# else
|
||||
- incpush(SITELIB_EXP, FALSE, FALSE, TRUE);
|
||||
- incpush(SITELIB_EXP, FALSE, FALSE, TRUE, TRUE);
|
||||
-# endif
|
||||
-#endif
|
||||
-
|
||||
-#ifdef SITELIB_STEM /* Search for version-specific dirs below here */
|
||||
- incpush(SITELIB_STEM, FALSE, TRUE, TRUE);
|
||||
#endif
|
||||
|
||||
-#if defined(SITELIB_STEM) && defined(PERL_INC_VERSION_LIST)
|
||||
- /* Search for version-specific dirs below here */
|
||||
- incpush(SITELIB_STEM, FALSE, TRUE, TRUE, TRUE);
|
||||
-#endif
|
||||
-
|
||||
#ifdef PERL_VENDORARCH_EXP
|
||||
/* vendorarch is always relative to vendorlib on Windows for
|
||||
* DLL-based path intuition to work correctly */
|
||||
|
|
21
lang/perl5.14/files/patch-sv.c
Normal file
21
lang/perl5.14/files/patch-sv.c
Normal file
|
@ -0,0 +1,21 @@
|
|||
--- sv.c
|
||||
+++ sv.c
|
||||
@@ -9813,7 +9813,8 @@ Perl_sv_dup(pTHX_ SV *sstr, CLONE_PARAMS* param)
|
||||
IoBOTTOM_NAME(dstr) = SAVEPV(IoBOTTOM_NAME(dstr));
|
||||
break;
|
||||
case SVt_PVAV:
|
||||
- if (AvARRAY((AV*)sstr)) {
|
||||
+ /* avoid cloning an empty array */
|
||||
+ if (AvARRAY((AV*)sstr) && AvFILLp((AV*)sstr >= 0) {
|
||||
SV **dst_ary, **src_ary;
|
||||
SSize_t items = AvFILLp((AV*)sstr) + 1;
|
||||
|
||||
@@ -9838,6 +9839,8 @@ Perl_sv_dup(pTHX_ SV *sstr, CLONE_PARAMS* param)
|
||||
else {
|
||||
SvPV_set(dstr, NULL);
|
||||
AvALLOC((AV*)dstr) = (SV**)NULL;
|
||||
+ AvMAX( (AV *)dstr) = -1;
|
||||
+ AvFILLp((AV *)dstr) = -1;
|
||||
}
|
||||
AvARYLEN((AV*)dstr) = sv_dup_inc(AvARYLEN((AV*)sstr), param);
|
||||
break;
|
|
@ -1,95 +0,0 @@
|
|||
--- regcomp.c.orig 2006-01-08 21:59:27.000000000 +0100
|
||||
+++ regcomp.c 2007-11-06 22:48:26.000000000 +0100
|
||||
@@ -135,7 +135,10 @@ typedef struct RExC_state_t {
|
||||
I32 extralen;
|
||||
I32 seen_zerolen;
|
||||
I32 seen_evals;
|
||||
- I32 utf8;
|
||||
+ I32 utf8; /* whether the pattern is utf8 or not */
|
||||
+ I32 orig_utf8; /* whether the pattern was originally in utf8 */
|
||||
+ /* XXX use this for future optimisation of case
|
||||
+ * where pattern must be upgraded to utf8. */
|
||||
#if ADD_TO_REGEXEC
|
||||
char *starttry; /* -Dr: where regtry was called. */
|
||||
#define RExC_starttry (pRExC_state->starttry)
|
||||
@@ -161,6 +164,7 @@ typedef struct RExC_state_t {
|
||||
#define RExC_seen_zerolen (pRExC_state->seen_zerolen)
|
||||
#define RExC_seen_evals (pRExC_state->seen_evals)
|
||||
#define RExC_utf8 (pRExC_state->utf8)
|
||||
+#define RExC_orig_utf8 (pRExC_state->orig_utf8)
|
||||
|
||||
#define ISMULT1(c) ((c) == '*' || (c) == '+' || (c) == '?')
|
||||
#define ISMULT2(s) ((*s) == '*' || (*s) == '+' || (*s) == '?' || \
|
||||
@@ -1749,15 +1753,16 @@ Perl_pregcomp(pTHX_ char *exp, char *xen
|
||||
if (exp == NULL)
|
||||
FAIL("NULL regexp argument");
|
||||
|
||||
- RExC_utf8 = pm->op_pmdynflags & PMdf_CMP_UTF8;
|
||||
+ RExC_utf8 = RExC_orig_utf8 = pm->op_pmdynflags & PMdf_CMP_UTF8;
|
||||
|
||||
- RExC_precomp = exp;
|
||||
DEBUG_r({
|
||||
if (!PL_colorset) reginitcolors();
|
||||
PerlIO_printf(Perl_debug_log, "%sCompiling REx%s `%s%*s%s'\n",
|
||||
PL_colors[4],PL_colors[5],PL_colors[0],
|
||||
- (int)(xend - exp), RExC_precomp, PL_colors[1]);
|
||||
+ (int)(xend - exp), exp, PL_colors[1]);
|
||||
});
|
||||
+redo_first_pass:
|
||||
+ RExC_precomp = exp;
|
||||
RExC_flags = pm->op_pmflags;
|
||||
RExC_sawback = 0;
|
||||
|
||||
@@ -1783,6 +1788,25 @@ Perl_pregcomp(pTHX_ char *exp, char *xen
|
||||
RExC_precomp = Nullch;
|
||||
return(NULL);
|
||||
}
|
||||
+ if (RExC_utf8 && !RExC_orig_utf8) {
|
||||
+ /* It's possible to write a regexp in ascii that represents unicode
|
||||
+ codepoints outside of the byte range, such as via \x{100}. If we
|
||||
+ detect such a sequence we have to convert the entire pattern to utf8
|
||||
+ and then recompile, as our sizing calculation will have been based
|
||||
+ on 1 byte == 1 character, but we will need to use utf8 to encode
|
||||
+ at least some part of the pattern, and therefore must convert the whole
|
||||
+ thing.
|
||||
+ XXX: somehow figure out how to make this less expensive...
|
||||
+ -- dmq */
|
||||
+ STRLEN len = xend-exp;
|
||||
+ DEBUG_r(PerlIO_printf(Perl_debug_log,
|
||||
+ "UTF8 mismatch! Converting to utf8 for resizing and compile\n"));
|
||||
+ exp = (char*)Perl_bytes_to_utf8(aTHX_ (U8*)exp, &len);
|
||||
+ xend = exp + len;
|
||||
+ RExC_orig_utf8 = RExC_utf8;
|
||||
+ SAVEFREEPV(exp);
|
||||
+ goto redo_first_pass;
|
||||
+ }
|
||||
DEBUG_r(PerlIO_printf(Perl_debug_log, "size %"IVdf" ", (IV)RExC_size));
|
||||
|
||||
/* Small enough for pointer-storage convention?
|
||||
--- t/op/pat.t.orig 2006-01-07 13:53:32.000000000 +0100
|
||||
+++ t/op/pat.t 2007-11-06 21:52:30.000000000 +0100
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
$| = 1;
|
||||
|
||||
-print "1..1187\n";
|
||||
+print "1..1189\n";
|
||||
|
||||
BEGIN {
|
||||
chdir 't' if -d 't';
|
||||
@@ -3395,5 +3395,14 @@ ok(("foba ba$s" =~ qr/(foo|BaSS|bar)/i)
|
||||
"# assigning to original string should not corrupt match vars");
|
||||
}
|
||||
|
||||
-# last test 1187
|
||||
+{
|
||||
+ use warnings;
|
||||
+ my @w;
|
||||
+ local $SIG{__WARN__}=sub{push @w,"@_"};
|
||||
+ my $c=qq(\x{DF});
|
||||
+ ok($c=~/${c}|\x{100}/, "ASCII pattern that really is utf8");
|
||||
+ ok(@w==0, "ASCII pattern that really is utf8");
|
||||
+}
|
||||
+
|
||||
+# last test 1189
|
||||
|
|
@ -1,5 +1,6 @@
|
|||
bin/a2p
|
||||
bin/c2ph
|
||||
bin/corelist
|
||||
bin/cpan
|
||||
bin/dprofpp
|
||||
bin/enc2xs
|
||||
|
@ -17,6 +18,7 @@ bin/perlbug
|
|||
bin/perlcc
|
||||
bin/perldoc
|
||||
bin/perlivp
|
||||
bin/perlthanks
|
||||
bin/piconv
|
||||
bin/pl2pm
|
||||
bin/pod2html
|
||||
|
@ -43,6 +45,7 @@ lib/perl5/%%PERL_VER%%/B/assemble
|
|||
lib/perl5/%%PERL_VER%%/B/cc_harness
|
||||
lib/perl5/%%PERL_VER%%/B/disassemble
|
||||
lib/perl5/%%PERL_VER%%/B/makeliblinks
|
||||
lib/perl5/%%PERL_VER%%/B/Lint/Debug.pm
|
||||
lib/perl5/%%PERL_VER%%/BSDPAN/BSDPAN.pm
|
||||
lib/perl5/%%PERL_VER%%/BSDPAN/BSDPAN/Override.pm
|
||||
lib/perl5/%%PERL_VER%%/BSDPAN/Config.pm
|
||||
|
@ -59,33 +62,21 @@ lib/perl5/%%PERL_VER%%/CGI/Pretty.pm
|
|||
lib/perl5/%%PERL_VER%%/CGI/Push.pm
|
||||
lib/perl5/%%PERL_VER%%/CGI/Switch.pm
|
||||
lib/perl5/%%PERL_VER%%/CGI/Util.pm
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/RunMeFirst
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/caution.xbm
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/clickable_image.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/cookie.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/crash.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/customize.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/diff_upload.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/dna_small_gif.uu
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/file_upload.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/frameset.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/index.html
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/internal_links.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/javascript.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/make_links.pl
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/monty.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/multiple_forms.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/nph-clock.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/nph-multipart.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/popup.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/save_state.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/tryit.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/wilogo_gif.uu
|
||||
lib/perl5/%%PERL_VER%%/CORE.pod
|
||||
lib/perl5/%%PERL_VER%%/CPAN.pm
|
||||
lib/perl5/%%PERL_VER%%/CPAN/FirstTime.pm
|
||||
lib/perl5/%%PERL_VER%%/CPAN/Nox.pm
|
||||
lib/perl5/%%PERL_VER%%/CPAN/PAUSE2003.pub
|
||||
lib/perl5/%%PERL_VER%%/CPAN/SIGNATURE
|
||||
lib/perl5/%%PERL_VER%%/CPAN/API/HOWTO.pod
|
||||
lib/perl5/%%PERL_VER%%/CPAN/Debug.pm
|
||||
lib/perl5/%%PERL_VER%%/CPAN/DeferedCode.pm
|
||||
lib/perl5/%%PERL_VER%%/CPAN/Distroprefs.pm
|
||||
lib/perl5/%%PERL_VER%%/CPAN/HandleConfig.pm
|
||||
lib/perl5/%%PERL_VER%%/CPAN/Kwalify.pm
|
||||
lib/perl5/%%PERL_VER%%/CPAN/Kwalify/distroprefs.dd
|
||||
lib/perl5/%%PERL_VER%%/CPAN/Kwalify/distroprefs.yml
|
||||
lib/perl5/%%PERL_VER%%/CPAN/Queue.pm
|
||||
lib/perl5/%%PERL_VER%%/CPAN/Tarzip.pm
|
||||
lib/perl5/%%PERL_VER%%/CPAN/Version.pm
|
||||
lib/perl5/%%PERL_VER%%/Carp.pm
|
||||
lib/perl5/%%PERL_VER%%/Carp/Heavy.pm
|
||||
lib/perl5/%%PERL_VER%%/Class/ISA.pm
|
||||
|
@ -97,25 +88,19 @@ lib/perl5/%%PERL_VER%%/DBM_Filter/encode.pm
|
|||
lib/perl5/%%PERL_VER%%/DBM_Filter/int32.pm
|
||||
lib/perl5/%%PERL_VER%%/DBM_Filter/null.pm
|
||||
lib/perl5/%%PERL_VER%%/DBM_Filter/utf8.pm
|
||||
lib/perl5/%%PERL_VER%%/Devel/InnerPackage.pm
|
||||
lib/perl5/%%PERL_VER%%/Devel/SelfStubber.pm
|
||||
lib/perl5/%%PERL_VER%%/Digest.pm
|
||||
lib/perl5/%%PERL_VER%%/Digest/base.pm
|
||||
lib/perl5/%%PERL_VER%%/Digest/file.pm
|
||||
lib/perl5/%%PERL_VER%%/DirHandle.pm
|
||||
lib/perl5/%%PERL_VER%%/Dumpvalue.pm
|
||||
lib/perl5/%%PERL_VER%%/Encode/CN/HZ.pm
|
||||
lib/perl5/%%PERL_VER%%/Encode/Changes.e2x
|
||||
lib/perl5/%%PERL_VER%%/Encode/ConfigLocal_PM.e2x
|
||||
lib/perl5/%%PERL_VER%%/Encode/JP/H2Z.pm
|
||||
lib/perl5/%%PERL_VER%%/Encode/JP/JIS7.pm
|
||||
lib/perl5/%%PERL_VER%%/Encode/KR/2022_KR.pm
|
||||
lib/perl5/%%PERL_VER%%/Encode/MIME/Header.pm
|
||||
lib/perl5/%%PERL_VER%%/Encode/MIME/Header/ISO_2022_JP.pm
|
||||
lib/perl5/%%PERL_VER%%/Encode/Makefile_PL.e2x
|
||||
lib/perl5/%%PERL_VER%%/Encode/PerlIO.pod
|
||||
lib/perl5/%%PERL_VER%%/Encode/README.e2x
|
||||
lib/perl5/%%PERL_VER%%/Encode/Supported.pod
|
||||
lib/perl5/%%PERL_VER%%/Encode/Unicode/UTF7.pm
|
||||
lib/perl5/%%PERL_VER%%/Encode/_PM.e2x
|
||||
lib/perl5/%%PERL_VER%%/Encode/_T.e2x
|
||||
lib/perl5/%%PERL_VER%%/Encode/encode.h
|
||||
|
@ -128,6 +113,7 @@ lib/perl5/%%PERL_VER%%/ExtUtils/Command/MM.pm
|
|||
lib/perl5/%%PERL_VER%%/ExtUtils/Constant.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/Constant/Base.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/Constant/Utils.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/Constant/ProxySubs.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/Constant/XS.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/Embed.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/Install.pm
|
||||
|
@ -141,6 +127,7 @@ lib/perl5/%%PERL_VER%%/ExtUtils/MM_Any.pm
|
|||
lib/perl5/%%PERL_VER%%/ExtUtils/MM_BeOS.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/MM_Cygwin.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/MM_DOS.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/MM_Darwin.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/MM_MacOS.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/MM_NW5.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/MM_OS2.pm
|
||||
|
@ -162,9 +149,8 @@ lib/perl5/%%PERL_VER%%/ExtUtils/Manifest.pm
|
|||
lib/perl5/%%PERL_VER%%/ExtUtils/Miniperl.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/Mkbootstrap.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/Mksymlists.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/NOTES
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/PATCHING
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/Packlist.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/ParseXS.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/testlib.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/typemap
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/xsubpp
|
||||
|
@ -193,16 +179,13 @@ lib/perl5/%%PERL_VER%%/Filter/Simple.pm
|
|||
lib/perl5/%%PERL_VER%%/FindBin.pm
|
||||
lib/perl5/%%PERL_VER%%/Getopt/Long.pm
|
||||
lib/perl5/%%PERL_VER%%/Getopt/Std.pm
|
||||
lib/perl5/%%PERL_VER%%/Hash/Util.pm
|
||||
lib/perl5/%%PERL_VER%%/I18N/Collate.pm
|
||||
lib/perl5/%%PERL_VER%%/I18N/LangTags.pm
|
||||
lib/perl5/%%PERL_VER%%/I18N/LangTags/Detect.pm
|
||||
lib/perl5/%%PERL_VER%%/I18N/LangTags/List.pm
|
||||
lib/perl5/%%PERL_VER%%/IO/Socket/INET.pm
|
||||
lib/perl5/%%PERL_VER%%/IO/Socket/UNIX.pm
|
||||
lib/perl5/%%PERL_VER%%/IPC/Open2.pm
|
||||
lib/perl5/%%PERL_VER%%/IPC/Open3.pm
|
||||
lib/perl5/%%PERL_VER%%/List/Util.pm
|
||||
lib/perl5/%%PERL_VER%%/IPC/regen.pl
|
||||
lib/perl5/%%PERL_VER%%/Locale/Constants.pm
|
||||
lib/perl5/%%PERL_VER%%/Locale/Constants.pod
|
||||
lib/perl5/%%PERL_VER%%/Locale/Country.pm
|
||||
|
@ -235,6 +218,9 @@ lib/perl5/%%PERL_VER%%/Memoize/ExpireTest.pm
|
|||
lib/perl5/%%PERL_VER%%/Memoize/NDBM_File.pm
|
||||
lib/perl5/%%PERL_VER%%/Memoize/SDBM_File.pm
|
||||
lib/perl5/%%PERL_VER%%/Memoize/Storable.pm
|
||||
lib/perl5/%%PERL_VER%%/Module/CoreList.pm
|
||||
lib/perl5/%%PERL_VER%%/Module/Pluggable.pm
|
||||
lib/perl5/%%PERL_VER%%/Module/Pluggable/Object.pm
|
||||
lib/perl5/%%PERL_VER%%/NEXT.pm
|
||||
lib/perl5/%%PERL_VER%%/Net/Cmd.pm
|
||||
lib/perl5/%%PERL_VER%%/Net/Config.eg
|
||||
|
@ -246,7 +232,7 @@ lib/perl5/%%PERL_VER%%/Net/FTP/E.pm
|
|||
lib/perl5/%%PERL_VER%%/Net/FTP/I.pm
|
||||
lib/perl5/%%PERL_VER%%/Net/FTP/L.pm
|
||||
lib/perl5/%%PERL_VER%%/Net/FTP/dataconn.pm
|
||||
lib/perl5/%%PERL_VER%%/Net/Hostname.eg
|
||||
lib/perl5/%%PERL_VER%%/Net/Hostname.pm.eg
|
||||
lib/perl5/%%PERL_VER%%/Net/NNTP.pm
|
||||
lib/perl5/%%PERL_VER%%/Net/Netrc.pm
|
||||
lib/perl5/%%PERL_VER%%/Net/POP3.pm
|
||||
|
@ -289,7 +275,6 @@ lib/perl5/%%PERL_VER%%/Pod/Text/Color.pm
|
|||
lib/perl5/%%PERL_VER%%/Pod/Text/Overstrike.pm
|
||||
lib/perl5/%%PERL_VER%%/Pod/Text/Termcap.pm
|
||||
lib/perl5/%%PERL_VER%%/Pod/Usage.pm
|
||||
lib/perl5/%%PERL_VER%%/Scalar/Util.pm
|
||||
lib/perl5/%%PERL_VER%%/Search/Dict.pm
|
||||
lib/perl5/%%PERL_VER%%/SelectSaver.pm
|
||||
lib/perl5/%%PERL_VER%%/SelfLoader.pm
|
||||
|
@ -310,14 +295,15 @@ lib/perl5/%%PERL_VER%%/Test/Harness/Assert.pm
|
|||
lib/perl5/%%PERL_VER%%/Test/Harness/Iterator.pm
|
||||
lib/perl5/%%PERL_VER%%/Test/Harness/Point.pm
|
||||
lib/perl5/%%PERL_VER%%/Test/Harness/Straps.pm
|
||||
lib/perl5/%%PERL_VER%%/Test/Harness/Results.pm
|
||||
lib/perl5/%%PERL_VER%%/Test/Harness/TAP.pod
|
||||
lib/perl5/%%PERL_VER%%/Test/Harness/Util.pm
|
||||
lib/perl5/%%PERL_VER%%/Test/More.pm
|
||||
lib/perl5/%%PERL_VER%%/Test/Simple.pm
|
||||
lib/perl5/%%PERL_VER%%/Test/Tutorial.pod
|
||||
lib/perl5/%%PERL_VER%%/Text/Abbrev.pm
|
||||
lib/perl5/%%PERL_VER%%/Text/Balanced.pm
|
||||
lib/perl5/%%PERL_VER%%/Text/ParseWords.pm
|
||||
lib/perl5/%%PERL_VER%%/Text/Soundex.pm
|
||||
lib/perl5/%%PERL_VER%%/Text/Tabs.pm
|
||||
lib/perl5/%%PERL_VER%%/Text/Wrap.pm
|
||||
lib/perl5/%%PERL_VER%%/Thread.pm
|
||||
|
@ -330,6 +316,7 @@ lib/perl5/%%PERL_VER%%/Tie/Hash.pm
|
|||
lib/perl5/%%PERL_VER%%/Tie/Memoize.pm
|
||||
lib/perl5/%%PERL_VER%%/Tie/RefHash.pm
|
||||
lib/perl5/%%PERL_VER%%/Tie/Scalar.pm
|
||||
lib/perl5/%%PERL_VER%%/Tie/StdHandle.pm
|
||||
lib/perl5/%%PERL_VER%%/Tie/SubstrHash.pm
|
||||
lib/perl5/%%PERL_VER%%/Time/Local.pm
|
||||
lib/perl5/%%PERL_VER%%/Time/gmtime.pm
|
||||
|
@ -344,10 +331,6 @@ lib/perl5/%%PERL_VER%%/User/pwent.pm
|
|||
lib/perl5/%%PERL_VER%%/abbrev.pl
|
||||
lib/perl5/%%PERL_VER%%/assert.pl
|
||||
lib/perl5/%%PERL_VER%%/attributes.pm
|
||||
lib/perl5/%%PERL_VER%%/auto/POSIX/SigAction/flags.al
|
||||
lib/perl5/%%PERL_VER%%/auto/POSIX/SigAction/handler.al
|
||||
lib/perl5/%%PERL_VER%%/auto/POSIX/SigAction/mask.al
|
||||
lib/perl5/%%PERL_VER%%/auto/POSIX/SigAction/safe.al
|
||||
lib/perl5/%%PERL_VER%%/autouse.pm
|
||||
lib/perl5/%%PERL_VER%%/base.pm
|
||||
lib/perl5/%%PERL_VER%%/bigfloat.pl
|
||||
|
@ -364,7 +347,6 @@ lib/perl5/%%PERL_VER%%/charnames.pm
|
|||
lib/perl5/%%PERL_VER%%/complete.pl
|
||||
lib/perl5/%%PERL_VER%%/constant.pm
|
||||
lib/perl5/%%PERL_VER%%/ctime.pl
|
||||
lib/perl5/%%PERL_VER%%/dbm_filter_util.pl
|
||||
lib/perl5/%%PERL_VER%%/diagnostics.pm
|
||||
lib/perl5/%%PERL_VER%%/dotsh.pl
|
||||
lib/perl5/%%PERL_VER%%/dumpvar.pl
|
||||
|
@ -432,6 +414,7 @@ lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/CORE/nostdio.h
|
|||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/CORE/op.h
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/CORE/opcode.h
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/CORE/opnames.h
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/CORE/overload.h
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/CORE/pad.h
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/CORE/patchlevel.h
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/CORE/perl.h
|
||||
|
@ -476,20 +459,30 @@ lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/Alias.pm
|
|||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/Byte.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/CJKConstants.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/CN.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/CN/HZ.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/Config.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/EBCDIC.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/Encoder.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/Encoding.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/GSM0338.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/Guess.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/JP.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/JP/H2Z.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/JP/JIS7.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/KR.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/KR/2022_KR.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/MIME/Header.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/MIME/Header/ISO_2022_JP.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/MIME/Name.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/Symbol.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/TW.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/Unicode.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/Unicode/UTF7.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Errno.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Fcntl.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/File/Glob.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Filter/Util/Call.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Hash/Util.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/I18N/Langinfo.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IO.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IO/Dir.pm
|
||||
|
@ -500,9 +493,13 @@ lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IO/Poll.pm
|
|||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IO/Seekable.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IO/Select.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IO/Socket.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IO/Socket/INET.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IO/Socket/UNIX.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IPC/Msg.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IPC/Semaphore.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IPC/SharedMem.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IPC/SysV.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/List/Util.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/MIME/Base64.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/MIME/QuotedPrint.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/NDBM_File.pm
|
||||
|
@ -515,83 +512,52 @@ lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/PerlIO/scalar.pm
|
|||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/PerlIO/via.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/SDBM_File.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Safe.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Scalar/Util.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Socket.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Storable.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Sys/Hostname.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Sys/Syslog.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Text/Soundex.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Time/HiRes.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Unicode/Normalize.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/XS/APItest.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/XS/Typemap.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/XSLoader.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/attrs.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/B/B.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/B/B.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/B/C/C.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/B/C/C.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/ByteLoader/ByteLoader.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/ByteLoader/ByteLoader.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Cwd/Cwd.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Cwd/Cwd.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/DB_File/DB_File.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/DB_File/DB_File.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/DB_File/autosplit.ix
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Data/Dumper/Dumper.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Data/Dumper/Dumper.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Devel/DProf/DProf.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Devel/DProf/DProf.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Devel/PPPort/PPPort.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Devel/PPPort/PPPort.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Devel/Peek/Peek.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Devel/Peek/Peek.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Digest/MD5/MD5.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Digest/MD5/MD5.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/DynaLoader/DynaLoader.a
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/DynaLoader/autosplit.ix
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/DynaLoader/dl_expandspec.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/DynaLoader/dl_find_symbol_anywhere.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/DynaLoader/dl_findfile.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/DynaLoader/extralibs.ld
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/Byte/Byte.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/Byte/Byte.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/CN/CN.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/CN/CN.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/EBCDIC/EBCDIC.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/EBCDIC/EBCDIC.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/Encode.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/Encode.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/JP/JP.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/JP/JP.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/KR/KR.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/KR/KR.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/Symbol/Symbol.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/Symbol/Symbol.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/TW/TW.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/TW/TW.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/Unicode/Unicode.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/Unicode/Unicode.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Fcntl/Fcntl.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Fcntl/Fcntl.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/File/Glob/Glob.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/File/Glob/Glob.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Filter/Util/Call/Call.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Filter/Util/Call/Call.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/I18N/Langinfo/Langinfo.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Hash/Util/Util.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/I18N/Langinfo/Langinfo.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/I18N/Langinfo/autosplit.ix
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/IO/IO.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/IO/IO.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/IPC/SysV/SysV.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/IPC/SysV/SysV.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/List/Util/Util.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/List/Util/Util.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/MIME/Base64/Base64.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/MIME/Base64/Base64.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/NDBM_File/NDBM_File.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/NDBM_File/NDBM_File.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Opcode/Opcode.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Opcode/Opcode.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/POSIX.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/POSIX.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/abs.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/alarm.al
|
||||
|
@ -744,18 +710,31 @@ lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/vprintf.al
|
|||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/vsprintf.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/wait.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/waitpid.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/PerlIO/encoding/encoding.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigAction/flags.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigAction/handler.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigAction/mask.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigAction/new.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigAction/safe.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/CLEAR.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/DELETE.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/EXISTS.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/FETCH.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/SCALAR.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/STORE.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/_check.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/_croak.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/_exist.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/_getsig.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/_init.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/new.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/PerlIO/encoding/encoding.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/PerlIO/scalar/scalar.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/PerlIO/scalar/scalar.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/PerlIO/via/via.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/PerlIO/via/via.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/SDBM_File/SDBM_File.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/SDBM_File/SDBM_File.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Socket/Socket.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Socket/Socket.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/BIN_VERSION_NV.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/BIN_WRITE_VERSION_NV.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/CAN_FLOCK.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/Storable.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/Storable.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/_freeze.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/_retrieve.al
|
||||
|
@ -763,6 +742,7 @@ lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/_store.al
|
|||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/_store_fd.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/autosplit.ix
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/fd_retrieve.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/file_magic.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/freeze.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/lock_nstore.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/lock_retrieve.al
|
||||
|
@ -778,27 +758,16 @@ lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/show_file_magic.al
|
|||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/store.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/store_fd.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/thaw.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Sys/Hostname/Hostname.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Sys/Hostname/Hostname.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Sys/Hostname/autosplit.ix
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Sys/Syslog/Syslog.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Sys/Syslog/Syslog.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Time/HiRes/HiRes.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Text/Soundex/Soundex.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Time/HiRes/HiRes.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Unicode/Normalize/Normalize.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Unicode/Normalize/Normalize.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/XS/APItest/APItest.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/XS/APItest/APItest.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/XS/Typemap/Typemap.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/XS/Typemap/Typemap.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/attrs/attrs.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/attrs/attrs.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/re/re.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/re/re.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/sdbm/extralibs.ld
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/threads/shared/shared.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/threads/shared/shared.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/threads/threads.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/threads/threads.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/encoding.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/lib.pm
|
||||
|
@ -830,6 +799,7 @@ lib/perl5/%%PERL_VER%%/pod/perl585delta.pod
|
|||
lib/perl5/%%PERL_VER%%/pod/perl586delta.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perl587delta.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perl588delta.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perl589delta.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perl58delta.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlaix.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlamiga.pod
|
||||
|
@ -848,6 +818,7 @@ lib/perl5/%%PERL_VER%%/pod/perlcheat.pod
|
|||
lib/perl5/%%PERL_VER%%/pod/perlclib.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlcn.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlcompile.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlcommunity.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlcygwin.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perldata.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perldbmfilter.pod
|
||||
|
@ -923,11 +894,15 @@ lib/perl5/%%PERL_VER%%/pod/perlpodspec.pod
|
|||
lib/perl5/%%PERL_VER%%/pod/perlport.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlqnx.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlre.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlrebackslash.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlrecharclass.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlref.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlreftut.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlreguts.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlrequick.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlreref.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlretut.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlriscos.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlrun.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlsec.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlsolaris.pod
|
||||
|
@ -944,7 +919,9 @@ lib/perl5/%%PERL_VER%%/pod/perltrap.pod
|
|||
lib/perl5/%%PERL_VER%%/pod/perltru64.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perltw.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlunicode.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlunifaq.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perluniintro.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlunitut.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlutil.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perluts.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlvar.pod
|
||||
|
@ -981,6 +958,7 @@ lib/perl5/%%PERL_VER%%/unicore/Jamo.txt
|
|||
lib/perl5/%%PERL_VER%%/unicore/LineBreak.txt
|
||||
lib/perl5/%%PERL_VER%%/unicore/Name.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/NamedSequences.txt
|
||||
lib/perl5/%%PERL_VER%%/unicore/NamedSqProv.txt
|
||||
lib/perl5/%%PERL_VER%%/unicore/NamesList.txt
|
||||
lib/perl5/%%PERL_VER%%/unicore/NormalizationCorrections.txt
|
||||
lib/perl5/%%PERL_VER%%/unicore/PVA.pl
|
||||
|
@ -1069,6 +1047,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Arab.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Armn.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/AsciiHex.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Assigned.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Bali.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Beng.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/BidiC.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/BidiCont.pl
|
||||
|
@ -1079,8 +1058,10 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Bugi.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Buhd.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/C.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Canadian.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Carian.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Cc.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Cf.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Cham.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Cher.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Cn.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Cntrl.pl
|
||||
|
@ -1091,6 +1072,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Cs.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Cyrl.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Dash.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Dash2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/DefaultI.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Dep.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Deprecat.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Deva.pl
|
||||
|
@ -1104,9 +1086,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Extender.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Geor.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Glag.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Goth.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/GrLink.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Graph.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Grapheme.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Grek.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Gujr.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Guru.pl
|
||||
|
@ -1130,6 +1110,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/IdsTrina.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InAegean.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InAlphab.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InAncie2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InAncie3.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InAncien.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InArabi2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InArabi3.pl
|
||||
|
@ -1137,6 +1118,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InArabi4.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InArabic.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InArmeni.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InArrows.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InBaline.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InBasicL.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InBengal.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InBlockE.pl
|
||||
|
@ -1147,6 +1129,8 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InBraill.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InBugine.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InBuhid.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InByzant.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCarian.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCham.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCherok.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCjkCo2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCjkCo3.pl
|
||||
|
@ -1164,13 +1148,19 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCombi4.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCombin.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InContro.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCoptic.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCounti.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCunei2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCuneif.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCurren.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCyprio.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCyril2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCyril3.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCyril4.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCyrill.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InDesere.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InDevana.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InDingba.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InDomino.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InEnclo2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InEnclos.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InEthio2.pl
|
||||
|
@ -1202,6 +1192,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InKangxi.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InKannad.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InKatak2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InKataka.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InKayahL.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InKharos.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InKhmer.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InKhmerS.pl
|
||||
|
@ -1209,12 +1200,18 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLao.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLatin1.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLatin2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLatin3.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLatin4.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLatin5.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLatinE.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLepcha.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLetter.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLimbu.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLinea2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLinear.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLowSur.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLycian.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLydian.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InMahjon.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InMalaya.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InMathe2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InMathem.pl
|
||||
|
@ -1228,22 +1225,30 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InMongol.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InMusica.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InMyanma.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InNewTai.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InNko.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InNumber.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InOgham.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InOlChik.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InOldIta.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InOldPer.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InOptica.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InOriya.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InOsmany.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InPhagsP.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InPhaist.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InPhoeni.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InPhone2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InPhonet.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InPrivat.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InRejang.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InRunic.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InSauras.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InShavia.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InSinhal.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InSmallF.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InSpacin.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InSpecia.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InSundan.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InSupers.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InSuppl2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InSuppl3.pl
|
||||
|
@ -1266,6 +1271,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InTibeta.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InTifina.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InUgarit.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InUnifie.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InVai.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InVaria2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InVariat.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InVertic.pl
|
||||
|
@ -1275,6 +1281,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InYijing.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/JoinC.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/JoinCont.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Kana.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/KayahLi.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Khar.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Khmr.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Knda.pl
|
||||
|
@ -1283,6 +1290,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/LC.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/LOE.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Laoo.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Latn.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Lepcha.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Limb.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/LinearB.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Ll.pl
|
||||
|
@ -1293,6 +1301,8 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Lower.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Lowercas.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Lt.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Lu.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Lycian.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Lydian.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/M.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Math.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Mc.pl
|
||||
|
@ -1305,6 +1315,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/N.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/NChar.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Nd.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/NewTaiLu.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Nkoo.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Nl.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/No.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Nonchara.pl
|
||||
|
@ -1317,6 +1328,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/OLower.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/OMath.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/OUpper.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Ogam.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/OlChiki.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/OldItali.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/OldPersi.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Orya.pl
|
||||
|
@ -1338,6 +1350,8 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Pc.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Pd.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Pe.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Pf.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/PhagsPa.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Phnx.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Pi.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Po.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Print.pl
|
||||
|
@ -1348,10 +1362,12 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Qaai.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Quotatio.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Radical.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Radical2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Rejang.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Runr.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/S.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/SD.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/STerm.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Saurasht.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Sc.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Shaw.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Sinh.pl
|
||||
|
@ -1362,6 +1378,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/SoftDott.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Space.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/SpacePer.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Sterm2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Sundanes.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/SylotiNa.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Syrc.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Tagb.pl
|
||||
|
@ -1382,11 +1399,13 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/UnifiedI.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Upper.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Uppercas.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/VS.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Vai.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Variatio.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/WSpace.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/WhiteSpa.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Word.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/XDigit.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Xsux.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Yiii.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Z.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Zl.pl
|
||||
|
@ -1455,23 +1474,41 @@ lib/perl5/%%PERL_VER%%/vmsish.pm
|
|||
lib/perl5/%%PERL_VER%%/warnings.pm
|
||||
lib/perl5/%%PERL_VER%%/warnings/register.pm
|
||||
%%GDBM%%lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/GDBM_File/GDBM_File.so
|
||||
%%GDBM%%lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/GDBM_File/GDBM_File.bs
|
||||
%%GDBM%%lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/GDBM_File.pm
|
||||
@dirrm lib/perl5/%%PERL_VER%%/BSDPAN/BSDPAN
|
||||
@dirrm lib/perl5/%%PERL_VER%%/BSDPAN/ExtUtils
|
||||
@dirrm lib/perl5/%%PERL_VER%%/BSDPAN
|
||||
@unexec find %D/%%SITE_PERL%%/%%PERL_ARCH%%/ -name '*.ph' -delete 2>/dev/null || true
|
||||
%%GDBM%%@dirrm lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/GDBM_File
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/auto/POSIX/SigAction
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/auto/POSIX
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/threads
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/XS
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Unicode
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Time
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Text
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Sys
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Scalar
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/PerlIO
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/MIME
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/List
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IPC
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IO/Socket
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IO
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/I18N
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Hash
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Filter/Util
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Filter
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/File
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/Unicode
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/MIME/Header
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/MIME
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/KR
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/JP
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/CN
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Digest
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Devel
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Data
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/CORE
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/B
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/threads/shared
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/threads
|
||||
|
@ -1484,17 +1521,22 @@ lib/perl5/%%PERL_VER%%/warnings/register.pm
|
|||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Unicode
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Time/HiRes
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Time
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Text/Soundex
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Text
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Sys/Syslog
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Sys/Hostname
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Sys
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Socket
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Scalar
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/sdbm
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/SDBM_File
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/PerlIO/via
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/PerlIO/scalar
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/PerlIO/encoding
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/PerlIO
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigAction
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Opcode
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/NDBM_File
|
||||
|
@ -1507,6 +1549,8 @@ lib/perl5/%%PERL_VER%%/warnings/register.pm
|
|||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/IO
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/I18N/Langinfo
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/I18N
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Hash/Util
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Hash
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Filter/Util/Call
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Filter/Util
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Filter
|
||||
|
@ -1537,37 +1581,8 @@ lib/perl5/%%PERL_VER%%/warnings/register.pm
|
|||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/B
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/DynaLoader
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Unicode
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Time
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/PerlIO
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IPC
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/I18N
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Filter/Util
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Filter
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/File
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Devel
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/CORE
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/IO/Socket
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/IO
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/B
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/warnings
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/User
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Time
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Search
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/IPC
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Exporter
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Scalar
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/List
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Digest
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Devel
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/DBM_Filter
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode/CN
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode/MIME
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode/KR
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode/JP
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/CPAN
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Carp
|
||||
@dirrm lib/perl5/%%PERL_VER%%/unicore/To
|
||||
@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc
|
||||
@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/dt
|
||||
|
@ -1580,8 +1595,10 @@ lib/perl5/%%PERL_VER%%/warnings/register.pm
|
|||
@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/ccc
|
||||
@dirrm lib/perl5/%%PERL_VER%%/unicore/lib
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/unicore
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/User
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Unicode/Collate
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Unicode
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Time
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Tie
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Thread
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Text/TabsWrap
|
||||
|
@ -1595,6 +1612,7 @@ lib/perl5/%%PERL_VER%%/warnings/register.pm
|
|||
@dirrmtry lib/perl5/%%PERL_VER%%/Term/ANSIColor
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Term
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Switch
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Search
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Pod/Text
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Pod/Perldoc
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Pod
|
||||
|
@ -1604,6 +1622,8 @@ lib/perl5/%%PERL_VER%%/warnings/register.pm
|
|||
@dirrmtry lib/perl5/%%PERL_VER%%/Net/Ping
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Net/FTP
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Net
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Module/Pluggable
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Module
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Memoize
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Math/BigInt
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Math/BigFloat
|
||||
|
@ -1611,28 +1631,40 @@ lib/perl5/%%PERL_VER%%/warnings/register.pm
|
|||
@dirrmtry lib/perl5/%%PERL_VER%%/Locale/Maketext
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Locale/Codes
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Locale
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/IPC
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/IO/Socket
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/IO
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/I18N/LangTags
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/I18N
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Hash
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Getopt/Long
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Getopt
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Filter/Simple
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Filter
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/File/Spec
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/File
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode/Unicode
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode/MIME/Header
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode/MIME
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/ExtUtils/Command
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/ExtUtils/Constant
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/ExtUtils/Liblist
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/ExtUtils/MakeMaker
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/ExtUtils
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Exporter
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode/KR
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode/JP
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode/CN
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Digest
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Devel
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/DBM_Filter
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Class/ISA
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Class
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Carp
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/CPAN/Kwalify
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/CPAN/API
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/CPAN
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/CGI/eg
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/CGI
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/B/Lint
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/B
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Attribute/Handlers
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Attribute
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/pod
|
||||
|
|
|
@ -7,19 +7,19 @@
|
|||
|
||||
PORTNAME= perl
|
||||
PORTVERSION= ${PERL_VER}
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= lang devel perl5
|
||||
MASTER_SITES= CPAN \
|
||||
${MASTER_SITE_LOCAL:S/$/:local/} \
|
||||
http://www.tobez.org/download/port-mirrors/lang/perl58/:local
|
||||
http://protey.ru/freebsd/distfiles/:local
|
||||
MASTER_SITE_SUBDIR= ../../src \
|
||||
tobez/:local
|
||||
skv/:local
|
||||
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \
|
||||
BSDPAN-${PERL_VER}${EXTRACT_SUFX}:local
|
||||
DIST_SUBDIR= perl
|
||||
|
||||
PATCH_SITES= ${MASTER_SITE_LOCAL:S/$/tobez\//} \
|
||||
http://www.tobez.org/download/port-mirrors/lang/perl58/
|
||||
PATCHFILES= defined-or-5.8.8.bz2
|
||||
PATCH_SITES= ${MASTER_SITE_LOCAL:S!$!skv/!} \
|
||||
http://protey.ru/freebsd/distfiles/
|
||||
PATCHFILES= defined-or-${PERL_VER}.bz2
|
||||
|
||||
MAINTAINER= skv@FreeBSD.org
|
||||
COMMENT= Practical Extraction and Report Language
|
||||
|
@ -32,9 +32,10 @@ OPTIONS= DEBUGGING "Build with debugging support" off \
|
|||
PERL_64BITINT "Use 64 bit integers (on i386)" on \
|
||||
THREADS "Build threaded perl" off \
|
||||
SUIDPERL "Build set-user-id suidperl binary" off \
|
||||
SITECUSTOMIZE "Run-time customization of @INC" off \
|
||||
USE_PERL "Rewrite links in /usr/bin" on
|
||||
|
||||
PERL_VER= 5.8.8
|
||||
PERL_VER= 5.8.9
|
||||
PERL_ARCH= mach
|
||||
PERL_VERSION= ${PERL_VER}
|
||||
SITE_PERL_REL?= lib/perl5/site_perl/${PERL_VER}
|
||||
|
@ -53,7 +54,7 @@ CONFIGURE_ARGS= -sde -Dprefix=${PREFIX} \
|
|||
-Dsiteman3dir=${PREFIX}/lib/perl5/${PERL_VER}/man/man3 \
|
||||
-Dsiteman1dir=${PREFIX}/man/man1 \
|
||||
-Ui_malloc -Ui_iconv -Uinstallusrbinperl \
|
||||
-Dcc="${CC}" -Duseshrplib \
|
||||
-Dcc="${CC}" -Duseshrplib -Dinc_version_list=none \
|
||||
-Dccflags=-DAPPLLIB_EXP=\"${BSDPAN_DEST}\"
|
||||
LOCALE_CLEANUP= LANG="" LC_ALL="" LC_COLLATE="" LC_CTYPE="" \
|
||||
LC_MESSAGES="" LC_MONETARY="" LC_NUMERIC="" \
|
||||
|
@ -122,6 +123,10 @@ CONFIGURE_ARGS+= -Dusemymalloc=n
|
|||
CONFIGURE_ARGS+= -Duse64bitint
|
||||
.endif
|
||||
|
||||
.if defined(WITH_SITECUSTOMIZE)
|
||||
CONFIGURE_ARGS+= -Dusesitecustomize
|
||||
.endif
|
||||
|
||||
LATEST_LINK= perl
|
||||
|
||||
PLIST_SUB+= NEED_USE_PERL="@comment "
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
MAN1+= a2p.1
|
||||
MAN1+= c2ph.1
|
||||
MAN1+= corelist.1
|
||||
MAN1+= cpan.1
|
||||
MAN1+= dprofpp.1
|
||||
MAN1+= enc2xs.1
|
||||
|
@ -28,6 +29,7 @@ MAN1+= perl585delta.1
|
|||
MAN1+= perl586delta.1
|
||||
MAN1+= perl587delta.1
|
||||
MAN1+= perl588delta.1
|
||||
MAN1+= perl589delta.1
|
||||
MAN1+= perl58delta.1
|
||||
MAN1+= perlaix.1
|
||||
MAN1+= perlamiga.1
|
||||
|
@ -48,6 +50,7 @@ MAN1+= perlcheat.1
|
|||
MAN1+= perlclib.1
|
||||
MAN1+= perlcn.1
|
||||
MAN1+= perlcompile.1
|
||||
MAN1+= perlcommunity.1
|
||||
MAN1+= perlcygwin.1
|
||||
MAN1+= perldata.1
|
||||
MAN1+= perldbmfilter.1
|
||||
|
@ -124,17 +127,22 @@ MAN1+= perlpodspec.1
|
|||
MAN1+= perlport.1
|
||||
MAN1+= perlqnx.1
|
||||
MAN1+= perlre.1
|
||||
MAN1+= perlrebackslash.1
|
||||
MAN1+= perlrecharclass.1
|
||||
MAN1+= perlref.1
|
||||
MAN1+= perlreftut.1
|
||||
MAN1+= perlreguts.1
|
||||
MAN1+= perlrequick.1
|
||||
MAN1+= perlreref.1
|
||||
MAN1+= perlretut.1
|
||||
MAN1+= perlriscos.1
|
||||
MAN1+= perlrun.1
|
||||
MAN1+= perlsec.1
|
||||
MAN1+= perlsolaris.1
|
||||
MAN1+= perlstyle.1
|
||||
MAN1+= perlsub.1
|
||||
MAN1+= perlsyn.1
|
||||
MAN1+= perlthanks.1
|
||||
MAN1+= perlthrtut.1
|
||||
MAN1+= perltie.1
|
||||
MAN1+= perltoc.1
|
||||
|
@ -145,8 +153,10 @@ MAN1+= perltrap.1
|
|||
MAN1+= perltru64.1
|
||||
MAN1+= perltw.1
|
||||
MAN1+= perlunicode.1
|
||||
MAN1+= perlunifaq.1
|
||||
MAN1+= perluniintro.1
|
||||
MAN1+= perlutil.1
|
||||
MAN1+= perlunitut.1
|
||||
MAN1+= perluts.1
|
||||
MAN1+= perlvar.1
|
||||
MAN1+= perlvmesa.1
|
||||
|
@ -187,6 +197,7 @@ MAN3+= B::Debug.3
|
|||
MAN3+= B::Deparse.3
|
||||
MAN3+= B::Disassembler.3
|
||||
MAN3+= B::Lint.3
|
||||
MAN3+= B::Lint::Debug.3
|
||||
MAN3+= B::Showlex.3
|
||||
MAN3+= B::Stackobj.3
|
||||
MAN3+= B::Stash.3
|
||||
|
@ -203,9 +214,18 @@ MAN3+= CGI::Pretty.3
|
|||
MAN3+= CGI::Push.3
|
||||
MAN3+= CGI::Switch.3
|
||||
MAN3+= CGI::Util.3
|
||||
MAN3+= CORE.3
|
||||
MAN3+= CPAN.3
|
||||
MAN3+= CPAN::API::HOWTO.3
|
||||
MAN3+= CPAN::Debug.3
|
||||
MAN3+= CPAN::Distroprefs.3
|
||||
MAN3+= CPAN::FirstTime.3
|
||||
MAN3+= CPAN::HandleConfig.3
|
||||
MAN3+= CPAN::Kwalify.3
|
||||
MAN3+= CPAN::Nox.3
|
||||
MAN3+= CPAN::Queue.3
|
||||
MAN3+= CPAN::Tarzip.3
|
||||
MAN3+= CPAN::Version.3
|
||||
MAN3+= Carp.3
|
||||
MAN3+= Carp::Heavy.3
|
||||
MAN3+= Class::ISA.3
|
||||
|
@ -222,6 +242,7 @@ MAN3+= DBM_Filter::utf8.3
|
|||
MAN3+= DB_File.3
|
||||
MAN3+= Data::Dumper.3
|
||||
MAN3+= Devel::DProf.3
|
||||
MAN3+= Devel::InnerPackage.3
|
||||
MAN3+= Devel::PPPort.3
|
||||
MAN3+= Devel::Peek.3
|
||||
MAN3+= Devel::SelfStubber.3
|
||||
|
@ -242,6 +263,7 @@ MAN3+= Encode::Config.3
|
|||
MAN3+= Encode::EBCDIC.3
|
||||
MAN3+= Encode::Encoder.3
|
||||
MAN3+= Encode::Encoding.3
|
||||
MAN3+= Encode::GSM0338.3
|
||||
MAN3+= Encode::Guess.3
|
||||
MAN3+= Encode::JP.3
|
||||
MAN3+= Encode::JP::H2Z.3
|
||||
|
@ -249,6 +271,7 @@ MAN3+= Encode::JP::JIS7.3
|
|||
MAN3+= Encode::KR.3
|
||||
MAN3+= Encode::KR::2022_KR.3
|
||||
MAN3+= Encode::MIME::Header.3
|
||||
MAN3+= Encode::MIME::Name.3
|
||||
MAN3+= Encode::PerlIO.3
|
||||
MAN3+= Encode::Supported.3
|
||||
MAN3+= Encode::Symbol.3
|
||||
|
@ -276,6 +299,7 @@ MAN3+= ExtUtils::MM_Any.3
|
|||
MAN3+= ExtUtils::MM_BeOS.3
|
||||
MAN3+= ExtUtils::MM_Cygwin.3
|
||||
MAN3+= ExtUtils::MM_DOS.3
|
||||
MAN3+= ExtUtils::MM_Darwin.3
|
||||
MAN3+= ExtUtils::MM_MacOS.3
|
||||
MAN3+= ExtUtils::MM_NW5.3
|
||||
MAN3+= ExtUtils::MM_OS2.3
|
||||
|
@ -298,6 +322,7 @@ MAN3+= ExtUtils::Miniperl.3
|
|||
MAN3+= ExtUtils::Mkbootstrap.3
|
||||
MAN3+= ExtUtils::Mksymlists.3
|
||||
MAN3+= ExtUtils::Packlist.3
|
||||
MAN3+= ExtUtils::ParseXS.3
|
||||
MAN3+= ExtUtils::testlib.3
|
||||
MAN3+= Fatal.3
|
||||
MAN3+= Fcntl.3
|
||||
|
@ -348,6 +373,7 @@ MAN3+= IPC::Msg.3
|
|||
MAN3+= IPC::Open2.3
|
||||
MAN3+= IPC::Open3.3
|
||||
MAN3+= IPC::Semaphore.3
|
||||
MAN3+= IPC::SharedMem.3
|
||||
MAN3+= IPC::SysV.3
|
||||
MAN3+= List::Util.3
|
||||
MAN3+= Locale::Constants.3
|
||||
|
@ -374,6 +400,9 @@ MAN3+= Memoize::ExpireTest.3
|
|||
MAN3+= Memoize::NDBM_File.3
|
||||
MAN3+= Memoize::SDBM_File.3
|
||||
MAN3+= Memoize::Storable.3
|
||||
MAN3+= Module::CoreList.3
|
||||
MAN3+= Module::Pluggable.3
|
||||
MAN3+= Module::Pluggable::Object.3
|
||||
MAN3+= NDBM_File.3
|
||||
MAN3+= NEXT.3
|
||||
MAN3+= Net::Cmd.3
|
||||
|
@ -451,7 +480,9 @@ MAN3+= Test::Harness::Assert.3
|
|||
MAN3+= Test::Harness::Iterator.3
|
||||
MAN3+= Test::Harness::Point.3
|
||||
MAN3+= Test::Harness::Straps.3
|
||||
MAN3+= Test::Harness::Results.3
|
||||
MAN3+= Test::Harness::TAP.3
|
||||
MAN3+= Test::Harness::Util.3
|
||||
MAN3+= Test::More.3
|
||||
MAN3+= Test::Simple.3
|
||||
MAN3+= Test::Tutorial.3
|
||||
|
@ -471,6 +502,7 @@ MAN3+= Tie::Hash.3
|
|||
MAN3+= Tie::Memoize.3
|
||||
MAN3+= Tie::RefHash.3
|
||||
MAN3+= Tie::Scalar.3
|
||||
MAN3+= Tie::StdHandle.3
|
||||
MAN3+= Tie::SubstrHash.3
|
||||
MAN3+= Time::HiRes.3
|
||||
MAN3+= Time::Local.3
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
MD5 (perl-5.8.8.tar.bz2) = a377c0c67ab43fd96eeec29ce19e8382
|
||||
SHA256 (perl-5.8.8.tar.bz2) = 818a140d9c04ea8dab3a05104b34ced7f7d9d0a91bfed91baf89a84d0dfb1bc9
|
||||
SIZE (perl-5.8.8.tar.bz2) = 10123359
|
||||
MD5 (BSDPAN-5.8.8.tar.bz2) = 872e4235a7e95cc88ead2e32da0e1f5a
|
||||
SHA256 (BSDPAN-5.8.8.tar.bz2) = 6cd20186db9c27761cabd7ff96d40936bc7be9c527f28b1ffa2773b65b228394
|
||||
SIZE (BSDPAN-5.8.8.tar.bz2) = 8192
|
||||
MD5 (defined-or-5.8.8.bz2) = 4a40ed2c1356f189cfa061b5e102dfca
|
||||
SHA256 (defined-or-5.8.8.bz2) = ba60db049eaf987f1f8c7f5228743118d0022eabadf59313da41ece49e053970
|
||||
SIZE (defined-or-5.8.8.bz2) = 36377
|
||||
MD5 (perl/perl-5.8.9.tar.bz2) = 1cb52a76ce77fa300218da96577793ec
|
||||
SHA256 (perl/perl-5.8.9.tar.bz2) = 1097fbcd48ceccb2bc735d119c9db399a02a8ab9f7dc53e29e47e6a8d0d72e79
|
||||
SIZE (perl/perl-5.8.9.tar.bz2) = 11121414
|
||||
MD5 (perl/BSDPAN-5.8.9.tar.bz2) = 9479989b30c6b8a09e95130d57b4f482
|
||||
SHA256 (perl/BSDPAN-5.8.9.tar.bz2) = 6bc43a3586c5c4a545ebb969397582ef62d3a199809273992529e52ac533e741
|
||||
SIZE (perl/BSDPAN-5.8.9.tar.bz2) = 8171
|
||||
MD5 (perl/defined-or-5.8.9.bz2) = af0d3d86f437547bedb2d99539ba7a6e
|
||||
SHA256 (perl/defined-or-5.8.9.bz2) = 021b46afd429f5c56b76195565394f1e74770681c5ad98f98936ad2cab58bda4
|
||||
SIZE (perl/defined-or-5.8.9.bz2) = 36178
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
--- hints/freebsd.sh.orig Wed Mar 24 22:47:33 2004
|
||||
+++ hints/freebsd.sh Mon Feb 19 20:53:50 2007
|
||||
@@ -88,6 +88,8 @@ case "$osvers" in
|
||||
--- hints/freebsd.sh
|
||||
+++ hints/freebsd.sh
|
||||
@@ -88,6 +88,8 @@
|
||||
esac
|
||||
libswanted=`echo $libswanted | sed 's/ malloc / /'`
|
||||
libswanted=`echo $libswanted | sed 's/ bind / /'`
|
||||
|
@ -9,7 +9,7 @@
|
|||
# iconv gone in Perl 5.8.1, but if someone compiles 5.8.0 or earlier.
|
||||
libswanted=`echo $libswanted | sed 's/ iconv / /'`
|
||||
d_setregid='define'
|
||||
@@ -102,6 +104,10 @@ case "$osvers" in
|
||||
@@ -102,6 +104,10 @@
|
||||
;;
|
||||
esac
|
||||
libswanted=`echo $libswanted | sed 's/ malloc / /'`
|
||||
|
@ -20,31 +20,16 @@
|
|||
;;
|
||||
esac
|
||||
|
||||
@@ -116,17 +122,17 @@ case "$osvers" in
|
||||
|
||||
*)
|
||||
objformat=`/usr/bin/objformat`
|
||||
- if [ x$objformat = xelf ]; then
|
||||
- libpth="/usr/lib /usr/local/lib"
|
||||
- glibpth="/usr/lib /usr/local/lib"
|
||||
@@ -125,7 +131,7 @@
|
||||
else
|
||||
libpth="/usr/lib /usr/local/lib"
|
||||
glibpth="/usr/lib /usr/local/lib"
|
||||
- ldflags="-Wl,-E "
|
||||
- lddlflags="-shared "
|
||||
- else
|
||||
+ if [ x$objformat = xaout ]; then
|
||||
if [ -e /usr/lib/aout ]; then
|
||||
libpth="/usr/lib/aout /usr/local/lib /usr/lib"
|
||||
glibpth="/usr/lib/aout /usr/local/lib /usr/lib"
|
||||
fi
|
||||
lddlflags='-Bshareable'
|
||||
+ else
|
||||
+ libpth="/usr/lib /usr/local/lib"
|
||||
+ glibpth="/usr/lib /usr/local/lib"
|
||||
+ ldflags="%%PTHREAD_LIBS%% -Wl,-E"
|
||||
+ lddlflags="-shared "
|
||||
+ ldflags="%%PTHREAD_LIBS%% -Wl,-E "
|
||||
lddlflags="-shared "
|
||||
fi
|
||||
cccdlflags='-DPIC -fPIC'
|
||||
;;
|
||||
@@ -136,7 +142,7 @@ case "$osvers" in
|
||||
@@ -136,7 +142,7 @@
|
||||
0*|1*|2*|3*) ;;
|
||||
|
||||
*)
|
||||
|
@ -53,7 +38,7 @@
|
|||
if /usr/bin/file -L /usr/lib/libc.so | /usr/bin/grep -vq "not stripped" ; then
|
||||
usenm=false
|
||||
fi
|
||||
@@ -183,7 +189,9 @@ esac
|
||||
@@ -183,7 +189,9 @@
|
||||
|
||||
# This script UU/usethreads.cbu will get 'called-back' by Configure
|
||||
# after it has prompted the user for whether to use threads.
|
||||
|
|
|
@ -1,10 +0,0 @@
|
|||
--- makedepend.SH.orig Wed May 2 22:37:13 2007
|
||||
+++ makedepend.SH Wed May 2 22:38:48 2007
|
||||
@@ -167,6 +167,7 @@
|
||||
-e '/^#.*<builtin>/d' \
|
||||
-e '/^#.*<built-in>/d' \
|
||||
-e '/^#.*<command line>/d' \
|
||||
+ -e '/^#.*<command-line>/d' \
|
||||
-e '/^#.*"-"/d' \
|
||||
-e '/: file path prefix .* never used$/d' \
|
||||
-e 's#\.[0-9][0-9]*\.c#'"$file.c#" \
|
|
@ -1,58 +1,60 @@
|
|||
--- perl.c.orig Fri Apr 22 16:14:27 2005
|
||||
+++ perl.c Thu Dec 22 12:47:28 2005
|
||||
@@ -4397,6 +4397,27 @@ S_init_perllib(pTHX)
|
||||
incpush(APPLLIB_EXP, TRUE, TRUE, TRUE);
|
||||
--- perl.c
|
||||
+++ perl.c
|
||||
@@ -4882,6 +4882,28 @@
|
||||
incpush(APPLLIB_EXP, TRUE, TRUE, TRUE, TRUE);
|
||||
#endif
|
||||
|
||||
+#ifdef SITEARCH_EXP
|
||||
+ /* sitearch is always relative to sitelib on Windows for
|
||||
+ * DLL-based path intuition to work correctly */
|
||||
+# if !defined(WIN32)
|
||||
+ incpush(SITEARCH_EXP, FALSE, FALSE, TRUE);
|
||||
+ incpush(SITEARCH_EXP, FALSE, FALSE, TRUE, TRUE);
|
||||
+# endif
|
||||
+#endif
|
||||
+
|
||||
+#ifdef SITELIB_EXP
|
||||
+# if defined(WIN32)
|
||||
+ /* this picks up sitearch as well */
|
||||
+ incpush(SITELIB_EXP, TRUE, FALSE, TRUE);
|
||||
+ incpush(SITELIB_EXP, TRUE, FALSE, TRUE, TRUE);
|
||||
+# else
|
||||
+ incpush(SITELIB_EXP, FALSE, FALSE, TRUE);
|
||||
+ incpush(SITELIB_EXP, FALSE, FALSE, TRUE, TRUE);
|
||||
+# endif
|
||||
+#endif
|
||||
+
|
||||
+#ifdef SITELIB_STEM /* Search for version-specific dirs below here */
|
||||
+ incpush(SITELIB_STEM, FALSE, TRUE, TRUE);
|
||||
+#if defined(SITELIB_STEM) && defined(PERL_INC_VERSION_LIST)
|
||||
+ /* Search for version-specific dirs below here */
|
||||
+ incpush(SITELIB_STEM, FALSE, TRUE, TRUE, TRUE);
|
||||
+#endif
|
||||
+
|
||||
#ifdef ARCHLIB_EXP
|
||||
incpush(ARCHLIB_EXP, FALSE, FALSE, TRUE);
|
||||
incpush(ARCHLIB_EXP, FALSE, FALSE, TRUE, TRUE);
|
||||
#endif
|
||||
@@ -4428,27 +4449,6 @@ S_init_perllib(pTHX)
|
||||
incpush(PRIVLIB_EXP, TRUE, FALSE, TRUE);
|
||||
#else
|
||||
incpush(PRIVLIB_EXP, FALSE, FALSE, TRUE);
|
||||
-#endif
|
||||
-
|
||||
@@ -4915,28 +4937,6 @@
|
||||
incpush(PRIVLIB_EXP, FALSE, FALSE, TRUE, TRUE);
|
||||
#endif
|
||||
|
||||
-#ifdef SITEARCH_EXP
|
||||
- /* sitearch is always relative to sitelib on Windows for
|
||||
- * DLL-based path intuition to work correctly */
|
||||
-# if !defined(WIN32)
|
||||
- incpush(SITEARCH_EXP, FALSE, FALSE, TRUE);
|
||||
- incpush(SITEARCH_EXP, FALSE, FALSE, TRUE, TRUE);
|
||||
-# endif
|
||||
-#endif
|
||||
-
|
||||
-#ifdef SITELIB_EXP
|
||||
-# if defined(WIN32)
|
||||
- /* this picks up sitearch as well */
|
||||
- incpush(SITELIB_EXP, TRUE, FALSE, TRUE);
|
||||
- incpush(SITELIB_EXP, TRUE, FALSE, TRUE, TRUE);
|
||||
-# else
|
||||
- incpush(SITELIB_EXP, FALSE, FALSE, TRUE);
|
||||
- incpush(SITELIB_EXP, FALSE, FALSE, TRUE, TRUE);
|
||||
-# endif
|
||||
-#endif
|
||||
-
|
||||
-#ifdef SITELIB_STEM /* Search for version-specific dirs below here */
|
||||
- incpush(SITELIB_STEM, FALSE, TRUE, TRUE);
|
||||
#endif
|
||||
|
||||
-#if defined(SITELIB_STEM) && defined(PERL_INC_VERSION_LIST)
|
||||
- /* Search for version-specific dirs below here */
|
||||
- incpush(SITELIB_STEM, FALSE, TRUE, TRUE, TRUE);
|
||||
-#endif
|
||||
-
|
||||
#ifdef PERL_VENDORARCH_EXP
|
||||
/* vendorarch is always relative to vendorlib on Windows for
|
||||
* DLL-based path intuition to work correctly */
|
||||
|
|
21
lang/perl5.16/files/patch-sv.c
Normal file
21
lang/perl5.16/files/patch-sv.c
Normal file
|
@ -0,0 +1,21 @@
|
|||
--- sv.c
|
||||
+++ sv.c
|
||||
@@ -9813,7 +9813,8 @@ Perl_sv_dup(pTHX_ SV *sstr, CLONE_PARAMS* param)
|
||||
IoBOTTOM_NAME(dstr) = SAVEPV(IoBOTTOM_NAME(dstr));
|
||||
break;
|
||||
case SVt_PVAV:
|
||||
- if (AvARRAY((AV*)sstr)) {
|
||||
+ /* avoid cloning an empty array */
|
||||
+ if (AvARRAY((AV*)sstr) && AvFILLp((AV*)sstr >= 0) {
|
||||
SV **dst_ary, **src_ary;
|
||||
SSize_t items = AvFILLp((AV*)sstr) + 1;
|
||||
|
||||
@@ -9838,6 +9839,8 @@ Perl_sv_dup(pTHX_ SV *sstr, CLONE_PARAMS* param)
|
||||
else {
|
||||
SvPV_set(dstr, NULL);
|
||||
AvALLOC((AV*)dstr) = (SV**)NULL;
|
||||
+ AvMAX( (AV *)dstr) = -1;
|
||||
+ AvFILLp((AV *)dstr) = -1;
|
||||
}
|
||||
AvARYLEN((AV*)dstr) = sv_dup_inc(AvARYLEN((AV*)sstr), param);
|
||||
break;
|
|
@ -1,95 +0,0 @@
|
|||
--- regcomp.c.orig 2006-01-08 21:59:27.000000000 +0100
|
||||
+++ regcomp.c 2007-11-06 22:48:26.000000000 +0100
|
||||
@@ -135,7 +135,10 @@ typedef struct RExC_state_t {
|
||||
I32 extralen;
|
||||
I32 seen_zerolen;
|
||||
I32 seen_evals;
|
||||
- I32 utf8;
|
||||
+ I32 utf8; /* whether the pattern is utf8 or not */
|
||||
+ I32 orig_utf8; /* whether the pattern was originally in utf8 */
|
||||
+ /* XXX use this for future optimisation of case
|
||||
+ * where pattern must be upgraded to utf8. */
|
||||
#if ADD_TO_REGEXEC
|
||||
char *starttry; /* -Dr: where regtry was called. */
|
||||
#define RExC_starttry (pRExC_state->starttry)
|
||||
@@ -161,6 +164,7 @@ typedef struct RExC_state_t {
|
||||
#define RExC_seen_zerolen (pRExC_state->seen_zerolen)
|
||||
#define RExC_seen_evals (pRExC_state->seen_evals)
|
||||
#define RExC_utf8 (pRExC_state->utf8)
|
||||
+#define RExC_orig_utf8 (pRExC_state->orig_utf8)
|
||||
|
||||
#define ISMULT1(c) ((c) == '*' || (c) == '+' || (c) == '?')
|
||||
#define ISMULT2(s) ((*s) == '*' || (*s) == '+' || (*s) == '?' || \
|
||||
@@ -1749,15 +1753,16 @@ Perl_pregcomp(pTHX_ char *exp, char *xen
|
||||
if (exp == NULL)
|
||||
FAIL("NULL regexp argument");
|
||||
|
||||
- RExC_utf8 = pm->op_pmdynflags & PMdf_CMP_UTF8;
|
||||
+ RExC_utf8 = RExC_orig_utf8 = pm->op_pmdynflags & PMdf_CMP_UTF8;
|
||||
|
||||
- RExC_precomp = exp;
|
||||
DEBUG_r({
|
||||
if (!PL_colorset) reginitcolors();
|
||||
PerlIO_printf(Perl_debug_log, "%sCompiling REx%s `%s%*s%s'\n",
|
||||
PL_colors[4],PL_colors[5],PL_colors[0],
|
||||
- (int)(xend - exp), RExC_precomp, PL_colors[1]);
|
||||
+ (int)(xend - exp), exp, PL_colors[1]);
|
||||
});
|
||||
+redo_first_pass:
|
||||
+ RExC_precomp = exp;
|
||||
RExC_flags = pm->op_pmflags;
|
||||
RExC_sawback = 0;
|
||||
|
||||
@@ -1783,6 +1788,25 @@ Perl_pregcomp(pTHX_ char *exp, char *xen
|
||||
RExC_precomp = Nullch;
|
||||
return(NULL);
|
||||
}
|
||||
+ if (RExC_utf8 && !RExC_orig_utf8) {
|
||||
+ /* It's possible to write a regexp in ascii that represents unicode
|
||||
+ codepoints outside of the byte range, such as via \x{100}. If we
|
||||
+ detect such a sequence we have to convert the entire pattern to utf8
|
||||
+ and then recompile, as our sizing calculation will have been based
|
||||
+ on 1 byte == 1 character, but we will need to use utf8 to encode
|
||||
+ at least some part of the pattern, and therefore must convert the whole
|
||||
+ thing.
|
||||
+ XXX: somehow figure out how to make this less expensive...
|
||||
+ -- dmq */
|
||||
+ STRLEN len = xend-exp;
|
||||
+ DEBUG_r(PerlIO_printf(Perl_debug_log,
|
||||
+ "UTF8 mismatch! Converting to utf8 for resizing and compile\n"));
|
||||
+ exp = (char*)Perl_bytes_to_utf8(aTHX_ (U8*)exp, &len);
|
||||
+ xend = exp + len;
|
||||
+ RExC_orig_utf8 = RExC_utf8;
|
||||
+ SAVEFREEPV(exp);
|
||||
+ goto redo_first_pass;
|
||||
+ }
|
||||
DEBUG_r(PerlIO_printf(Perl_debug_log, "size %"IVdf" ", (IV)RExC_size));
|
||||
|
||||
/* Small enough for pointer-storage convention?
|
||||
--- t/op/pat.t.orig 2006-01-07 13:53:32.000000000 +0100
|
||||
+++ t/op/pat.t 2007-11-06 21:52:30.000000000 +0100
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
$| = 1;
|
||||
|
||||
-print "1..1187\n";
|
||||
+print "1..1189\n";
|
||||
|
||||
BEGIN {
|
||||
chdir 't' if -d 't';
|
||||
@@ -3395,5 +3395,14 @@ ok(("foba ba$s" =~ qr/(foo|BaSS|bar)/i)
|
||||
"# assigning to original string should not corrupt match vars");
|
||||
}
|
||||
|
||||
-# last test 1187
|
||||
+{
|
||||
+ use warnings;
|
||||
+ my @w;
|
||||
+ local $SIG{__WARN__}=sub{push @w,"@_"};
|
||||
+ my $c=qq(\x{DF});
|
||||
+ ok($c=~/${c}|\x{100}/, "ASCII pattern that really is utf8");
|
||||
+ ok(@w==0, "ASCII pattern that really is utf8");
|
||||
+}
|
||||
+
|
||||
+# last test 1189
|
||||
|
|
@ -1,5 +1,6 @@
|
|||
bin/a2p
|
||||
bin/c2ph
|
||||
bin/corelist
|
||||
bin/cpan
|
||||
bin/dprofpp
|
||||
bin/enc2xs
|
||||
|
@ -17,6 +18,7 @@ bin/perlbug
|
|||
bin/perlcc
|
||||
bin/perldoc
|
||||
bin/perlivp
|
||||
bin/perlthanks
|
||||
bin/piconv
|
||||
bin/pl2pm
|
||||
bin/pod2html
|
||||
|
@ -43,6 +45,7 @@ lib/perl5/%%PERL_VER%%/B/assemble
|
|||
lib/perl5/%%PERL_VER%%/B/cc_harness
|
||||
lib/perl5/%%PERL_VER%%/B/disassemble
|
||||
lib/perl5/%%PERL_VER%%/B/makeliblinks
|
||||
lib/perl5/%%PERL_VER%%/B/Lint/Debug.pm
|
||||
lib/perl5/%%PERL_VER%%/BSDPAN/BSDPAN.pm
|
||||
lib/perl5/%%PERL_VER%%/BSDPAN/BSDPAN/Override.pm
|
||||
lib/perl5/%%PERL_VER%%/BSDPAN/Config.pm
|
||||
|
@ -59,33 +62,21 @@ lib/perl5/%%PERL_VER%%/CGI/Pretty.pm
|
|||
lib/perl5/%%PERL_VER%%/CGI/Push.pm
|
||||
lib/perl5/%%PERL_VER%%/CGI/Switch.pm
|
||||
lib/perl5/%%PERL_VER%%/CGI/Util.pm
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/RunMeFirst
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/caution.xbm
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/clickable_image.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/cookie.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/crash.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/customize.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/diff_upload.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/dna_small_gif.uu
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/file_upload.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/frameset.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/index.html
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/internal_links.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/javascript.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/make_links.pl
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/monty.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/multiple_forms.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/nph-clock.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/nph-multipart.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/popup.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/save_state.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/tryit.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/wilogo_gif.uu
|
||||
lib/perl5/%%PERL_VER%%/CORE.pod
|
||||
lib/perl5/%%PERL_VER%%/CPAN.pm
|
||||
lib/perl5/%%PERL_VER%%/CPAN/FirstTime.pm
|
||||
lib/perl5/%%PERL_VER%%/CPAN/Nox.pm
|
||||
lib/perl5/%%PERL_VER%%/CPAN/PAUSE2003.pub
|
||||
lib/perl5/%%PERL_VER%%/CPAN/SIGNATURE
|
||||
lib/perl5/%%PERL_VER%%/CPAN/API/HOWTO.pod
|
||||
lib/perl5/%%PERL_VER%%/CPAN/Debug.pm
|
||||
lib/perl5/%%PERL_VER%%/CPAN/DeferedCode.pm
|
||||
lib/perl5/%%PERL_VER%%/CPAN/Distroprefs.pm
|
||||
lib/perl5/%%PERL_VER%%/CPAN/HandleConfig.pm
|
||||
lib/perl5/%%PERL_VER%%/CPAN/Kwalify.pm
|
||||
lib/perl5/%%PERL_VER%%/CPAN/Kwalify/distroprefs.dd
|
||||
lib/perl5/%%PERL_VER%%/CPAN/Kwalify/distroprefs.yml
|
||||
lib/perl5/%%PERL_VER%%/CPAN/Queue.pm
|
||||
lib/perl5/%%PERL_VER%%/CPAN/Tarzip.pm
|
||||
lib/perl5/%%PERL_VER%%/CPAN/Version.pm
|
||||
lib/perl5/%%PERL_VER%%/Carp.pm
|
||||
lib/perl5/%%PERL_VER%%/Carp/Heavy.pm
|
||||
lib/perl5/%%PERL_VER%%/Class/ISA.pm
|
||||
|
@ -97,25 +88,19 @@ lib/perl5/%%PERL_VER%%/DBM_Filter/encode.pm
|
|||
lib/perl5/%%PERL_VER%%/DBM_Filter/int32.pm
|
||||
lib/perl5/%%PERL_VER%%/DBM_Filter/null.pm
|
||||
lib/perl5/%%PERL_VER%%/DBM_Filter/utf8.pm
|
||||
lib/perl5/%%PERL_VER%%/Devel/InnerPackage.pm
|
||||
lib/perl5/%%PERL_VER%%/Devel/SelfStubber.pm
|
||||
lib/perl5/%%PERL_VER%%/Digest.pm
|
||||
lib/perl5/%%PERL_VER%%/Digest/base.pm
|
||||
lib/perl5/%%PERL_VER%%/Digest/file.pm
|
||||
lib/perl5/%%PERL_VER%%/DirHandle.pm
|
||||
lib/perl5/%%PERL_VER%%/Dumpvalue.pm
|
||||
lib/perl5/%%PERL_VER%%/Encode/CN/HZ.pm
|
||||
lib/perl5/%%PERL_VER%%/Encode/Changes.e2x
|
||||
lib/perl5/%%PERL_VER%%/Encode/ConfigLocal_PM.e2x
|
||||
lib/perl5/%%PERL_VER%%/Encode/JP/H2Z.pm
|
||||
lib/perl5/%%PERL_VER%%/Encode/JP/JIS7.pm
|
||||
lib/perl5/%%PERL_VER%%/Encode/KR/2022_KR.pm
|
||||
lib/perl5/%%PERL_VER%%/Encode/MIME/Header.pm
|
||||
lib/perl5/%%PERL_VER%%/Encode/MIME/Header/ISO_2022_JP.pm
|
||||
lib/perl5/%%PERL_VER%%/Encode/Makefile_PL.e2x
|
||||
lib/perl5/%%PERL_VER%%/Encode/PerlIO.pod
|
||||
lib/perl5/%%PERL_VER%%/Encode/README.e2x
|
||||
lib/perl5/%%PERL_VER%%/Encode/Supported.pod
|
||||
lib/perl5/%%PERL_VER%%/Encode/Unicode/UTF7.pm
|
||||
lib/perl5/%%PERL_VER%%/Encode/_PM.e2x
|
||||
lib/perl5/%%PERL_VER%%/Encode/_T.e2x
|
||||
lib/perl5/%%PERL_VER%%/Encode/encode.h
|
||||
|
@ -128,6 +113,7 @@ lib/perl5/%%PERL_VER%%/ExtUtils/Command/MM.pm
|
|||
lib/perl5/%%PERL_VER%%/ExtUtils/Constant.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/Constant/Base.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/Constant/Utils.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/Constant/ProxySubs.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/Constant/XS.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/Embed.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/Install.pm
|
||||
|
@ -141,6 +127,7 @@ lib/perl5/%%PERL_VER%%/ExtUtils/MM_Any.pm
|
|||
lib/perl5/%%PERL_VER%%/ExtUtils/MM_BeOS.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/MM_Cygwin.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/MM_DOS.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/MM_Darwin.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/MM_MacOS.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/MM_NW5.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/MM_OS2.pm
|
||||
|
@ -162,9 +149,8 @@ lib/perl5/%%PERL_VER%%/ExtUtils/Manifest.pm
|
|||
lib/perl5/%%PERL_VER%%/ExtUtils/Miniperl.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/Mkbootstrap.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/Mksymlists.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/NOTES
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/PATCHING
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/Packlist.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/ParseXS.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/testlib.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/typemap
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/xsubpp
|
||||
|
@ -193,16 +179,13 @@ lib/perl5/%%PERL_VER%%/Filter/Simple.pm
|
|||
lib/perl5/%%PERL_VER%%/FindBin.pm
|
||||
lib/perl5/%%PERL_VER%%/Getopt/Long.pm
|
||||
lib/perl5/%%PERL_VER%%/Getopt/Std.pm
|
||||
lib/perl5/%%PERL_VER%%/Hash/Util.pm
|
||||
lib/perl5/%%PERL_VER%%/I18N/Collate.pm
|
||||
lib/perl5/%%PERL_VER%%/I18N/LangTags.pm
|
||||
lib/perl5/%%PERL_VER%%/I18N/LangTags/Detect.pm
|
||||
lib/perl5/%%PERL_VER%%/I18N/LangTags/List.pm
|
||||
lib/perl5/%%PERL_VER%%/IO/Socket/INET.pm
|
||||
lib/perl5/%%PERL_VER%%/IO/Socket/UNIX.pm
|
||||
lib/perl5/%%PERL_VER%%/IPC/Open2.pm
|
||||
lib/perl5/%%PERL_VER%%/IPC/Open3.pm
|
||||
lib/perl5/%%PERL_VER%%/List/Util.pm
|
||||
lib/perl5/%%PERL_VER%%/IPC/regen.pl
|
||||
lib/perl5/%%PERL_VER%%/Locale/Constants.pm
|
||||
lib/perl5/%%PERL_VER%%/Locale/Constants.pod
|
||||
lib/perl5/%%PERL_VER%%/Locale/Country.pm
|
||||
|
@ -235,6 +218,9 @@ lib/perl5/%%PERL_VER%%/Memoize/ExpireTest.pm
|
|||
lib/perl5/%%PERL_VER%%/Memoize/NDBM_File.pm
|
||||
lib/perl5/%%PERL_VER%%/Memoize/SDBM_File.pm
|
||||
lib/perl5/%%PERL_VER%%/Memoize/Storable.pm
|
||||
lib/perl5/%%PERL_VER%%/Module/CoreList.pm
|
||||
lib/perl5/%%PERL_VER%%/Module/Pluggable.pm
|
||||
lib/perl5/%%PERL_VER%%/Module/Pluggable/Object.pm
|
||||
lib/perl5/%%PERL_VER%%/NEXT.pm
|
||||
lib/perl5/%%PERL_VER%%/Net/Cmd.pm
|
||||
lib/perl5/%%PERL_VER%%/Net/Config.eg
|
||||
|
@ -246,7 +232,7 @@ lib/perl5/%%PERL_VER%%/Net/FTP/E.pm
|
|||
lib/perl5/%%PERL_VER%%/Net/FTP/I.pm
|
||||
lib/perl5/%%PERL_VER%%/Net/FTP/L.pm
|
||||
lib/perl5/%%PERL_VER%%/Net/FTP/dataconn.pm
|
||||
lib/perl5/%%PERL_VER%%/Net/Hostname.eg
|
||||
lib/perl5/%%PERL_VER%%/Net/Hostname.pm.eg
|
||||
lib/perl5/%%PERL_VER%%/Net/NNTP.pm
|
||||
lib/perl5/%%PERL_VER%%/Net/Netrc.pm
|
||||
lib/perl5/%%PERL_VER%%/Net/POP3.pm
|
||||
|
@ -289,7 +275,6 @@ lib/perl5/%%PERL_VER%%/Pod/Text/Color.pm
|
|||
lib/perl5/%%PERL_VER%%/Pod/Text/Overstrike.pm
|
||||
lib/perl5/%%PERL_VER%%/Pod/Text/Termcap.pm
|
||||
lib/perl5/%%PERL_VER%%/Pod/Usage.pm
|
||||
lib/perl5/%%PERL_VER%%/Scalar/Util.pm
|
||||
lib/perl5/%%PERL_VER%%/Search/Dict.pm
|
||||
lib/perl5/%%PERL_VER%%/SelectSaver.pm
|
||||
lib/perl5/%%PERL_VER%%/SelfLoader.pm
|
||||
|
@ -310,14 +295,15 @@ lib/perl5/%%PERL_VER%%/Test/Harness/Assert.pm
|
|||
lib/perl5/%%PERL_VER%%/Test/Harness/Iterator.pm
|
||||
lib/perl5/%%PERL_VER%%/Test/Harness/Point.pm
|
||||
lib/perl5/%%PERL_VER%%/Test/Harness/Straps.pm
|
||||
lib/perl5/%%PERL_VER%%/Test/Harness/Results.pm
|
||||
lib/perl5/%%PERL_VER%%/Test/Harness/TAP.pod
|
||||
lib/perl5/%%PERL_VER%%/Test/Harness/Util.pm
|
||||
lib/perl5/%%PERL_VER%%/Test/More.pm
|
||||
lib/perl5/%%PERL_VER%%/Test/Simple.pm
|
||||
lib/perl5/%%PERL_VER%%/Test/Tutorial.pod
|
||||
lib/perl5/%%PERL_VER%%/Text/Abbrev.pm
|
||||
lib/perl5/%%PERL_VER%%/Text/Balanced.pm
|
||||
lib/perl5/%%PERL_VER%%/Text/ParseWords.pm
|
||||
lib/perl5/%%PERL_VER%%/Text/Soundex.pm
|
||||
lib/perl5/%%PERL_VER%%/Text/Tabs.pm
|
||||
lib/perl5/%%PERL_VER%%/Text/Wrap.pm
|
||||
lib/perl5/%%PERL_VER%%/Thread.pm
|
||||
|
@ -330,6 +316,7 @@ lib/perl5/%%PERL_VER%%/Tie/Hash.pm
|
|||
lib/perl5/%%PERL_VER%%/Tie/Memoize.pm
|
||||
lib/perl5/%%PERL_VER%%/Tie/RefHash.pm
|
||||
lib/perl5/%%PERL_VER%%/Tie/Scalar.pm
|
||||
lib/perl5/%%PERL_VER%%/Tie/StdHandle.pm
|
||||
lib/perl5/%%PERL_VER%%/Tie/SubstrHash.pm
|
||||
lib/perl5/%%PERL_VER%%/Time/Local.pm
|
||||
lib/perl5/%%PERL_VER%%/Time/gmtime.pm
|
||||
|
@ -344,10 +331,6 @@ lib/perl5/%%PERL_VER%%/User/pwent.pm
|
|||
lib/perl5/%%PERL_VER%%/abbrev.pl
|
||||
lib/perl5/%%PERL_VER%%/assert.pl
|
||||
lib/perl5/%%PERL_VER%%/attributes.pm
|
||||
lib/perl5/%%PERL_VER%%/auto/POSIX/SigAction/flags.al
|
||||
lib/perl5/%%PERL_VER%%/auto/POSIX/SigAction/handler.al
|
||||
lib/perl5/%%PERL_VER%%/auto/POSIX/SigAction/mask.al
|
||||
lib/perl5/%%PERL_VER%%/auto/POSIX/SigAction/safe.al
|
||||
lib/perl5/%%PERL_VER%%/autouse.pm
|
||||
lib/perl5/%%PERL_VER%%/base.pm
|
||||
lib/perl5/%%PERL_VER%%/bigfloat.pl
|
||||
|
@ -364,7 +347,6 @@ lib/perl5/%%PERL_VER%%/charnames.pm
|
|||
lib/perl5/%%PERL_VER%%/complete.pl
|
||||
lib/perl5/%%PERL_VER%%/constant.pm
|
||||
lib/perl5/%%PERL_VER%%/ctime.pl
|
||||
lib/perl5/%%PERL_VER%%/dbm_filter_util.pl
|
||||
lib/perl5/%%PERL_VER%%/diagnostics.pm
|
||||
lib/perl5/%%PERL_VER%%/dotsh.pl
|
||||
lib/perl5/%%PERL_VER%%/dumpvar.pl
|
||||
|
@ -432,6 +414,7 @@ lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/CORE/nostdio.h
|
|||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/CORE/op.h
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/CORE/opcode.h
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/CORE/opnames.h
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/CORE/overload.h
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/CORE/pad.h
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/CORE/patchlevel.h
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/CORE/perl.h
|
||||
|
@ -476,20 +459,30 @@ lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/Alias.pm
|
|||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/Byte.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/CJKConstants.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/CN.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/CN/HZ.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/Config.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/EBCDIC.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/Encoder.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/Encoding.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/GSM0338.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/Guess.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/JP.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/JP/H2Z.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/JP/JIS7.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/KR.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/KR/2022_KR.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/MIME/Header.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/MIME/Header/ISO_2022_JP.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/MIME/Name.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/Symbol.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/TW.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/Unicode.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/Unicode/UTF7.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Errno.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Fcntl.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/File/Glob.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Filter/Util/Call.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Hash/Util.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/I18N/Langinfo.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IO.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IO/Dir.pm
|
||||
|
@ -500,9 +493,13 @@ lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IO/Poll.pm
|
|||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IO/Seekable.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IO/Select.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IO/Socket.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IO/Socket/INET.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IO/Socket/UNIX.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IPC/Msg.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IPC/Semaphore.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IPC/SharedMem.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IPC/SysV.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/List/Util.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/MIME/Base64.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/MIME/QuotedPrint.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/NDBM_File.pm
|
||||
|
@ -515,83 +512,52 @@ lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/PerlIO/scalar.pm
|
|||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/PerlIO/via.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/SDBM_File.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Safe.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Scalar/Util.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Socket.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Storable.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Sys/Hostname.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Sys/Syslog.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Text/Soundex.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Time/HiRes.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Unicode/Normalize.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/XS/APItest.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/XS/Typemap.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/XSLoader.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/attrs.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/B/B.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/B/B.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/B/C/C.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/B/C/C.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/ByteLoader/ByteLoader.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/ByteLoader/ByteLoader.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Cwd/Cwd.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Cwd/Cwd.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/DB_File/DB_File.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/DB_File/DB_File.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/DB_File/autosplit.ix
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Data/Dumper/Dumper.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Data/Dumper/Dumper.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Devel/DProf/DProf.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Devel/DProf/DProf.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Devel/PPPort/PPPort.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Devel/PPPort/PPPort.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Devel/Peek/Peek.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Devel/Peek/Peek.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Digest/MD5/MD5.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Digest/MD5/MD5.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/DynaLoader/DynaLoader.a
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/DynaLoader/autosplit.ix
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/DynaLoader/dl_expandspec.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/DynaLoader/dl_find_symbol_anywhere.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/DynaLoader/dl_findfile.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/DynaLoader/extralibs.ld
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/Byte/Byte.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/Byte/Byte.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/CN/CN.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/CN/CN.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/EBCDIC/EBCDIC.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/EBCDIC/EBCDIC.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/Encode.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/Encode.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/JP/JP.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/JP/JP.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/KR/KR.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/KR/KR.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/Symbol/Symbol.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/Symbol/Symbol.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/TW/TW.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/TW/TW.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/Unicode/Unicode.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/Unicode/Unicode.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Fcntl/Fcntl.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Fcntl/Fcntl.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/File/Glob/Glob.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/File/Glob/Glob.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Filter/Util/Call/Call.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Filter/Util/Call/Call.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/I18N/Langinfo/Langinfo.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Hash/Util/Util.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/I18N/Langinfo/Langinfo.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/I18N/Langinfo/autosplit.ix
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/IO/IO.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/IO/IO.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/IPC/SysV/SysV.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/IPC/SysV/SysV.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/List/Util/Util.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/List/Util/Util.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/MIME/Base64/Base64.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/MIME/Base64/Base64.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/NDBM_File/NDBM_File.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/NDBM_File/NDBM_File.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Opcode/Opcode.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Opcode/Opcode.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/POSIX.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/POSIX.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/abs.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/alarm.al
|
||||
|
@ -744,18 +710,31 @@ lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/vprintf.al
|
|||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/vsprintf.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/wait.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/waitpid.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/PerlIO/encoding/encoding.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigAction/flags.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigAction/handler.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigAction/mask.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigAction/new.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigAction/safe.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/CLEAR.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/DELETE.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/EXISTS.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/FETCH.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/SCALAR.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/STORE.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/_check.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/_croak.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/_exist.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/_getsig.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/_init.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/new.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/PerlIO/encoding/encoding.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/PerlIO/scalar/scalar.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/PerlIO/scalar/scalar.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/PerlIO/via/via.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/PerlIO/via/via.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/SDBM_File/SDBM_File.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/SDBM_File/SDBM_File.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Socket/Socket.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Socket/Socket.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/BIN_VERSION_NV.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/BIN_WRITE_VERSION_NV.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/CAN_FLOCK.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/Storable.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/Storable.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/_freeze.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/_retrieve.al
|
||||
|
@ -763,6 +742,7 @@ lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/_store.al
|
|||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/_store_fd.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/autosplit.ix
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/fd_retrieve.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/file_magic.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/freeze.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/lock_nstore.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/lock_retrieve.al
|
||||
|
@ -778,27 +758,16 @@ lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/show_file_magic.al
|
|||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/store.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/store_fd.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/thaw.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Sys/Hostname/Hostname.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Sys/Hostname/Hostname.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Sys/Hostname/autosplit.ix
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Sys/Syslog/Syslog.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Sys/Syslog/Syslog.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Time/HiRes/HiRes.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Text/Soundex/Soundex.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Time/HiRes/HiRes.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Unicode/Normalize/Normalize.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Unicode/Normalize/Normalize.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/XS/APItest/APItest.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/XS/APItest/APItest.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/XS/Typemap/Typemap.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/XS/Typemap/Typemap.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/attrs/attrs.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/attrs/attrs.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/re/re.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/re/re.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/sdbm/extralibs.ld
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/threads/shared/shared.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/threads/shared/shared.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/threads/threads.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/threads/threads.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/encoding.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/lib.pm
|
||||
|
@ -830,6 +799,7 @@ lib/perl5/%%PERL_VER%%/pod/perl585delta.pod
|
|||
lib/perl5/%%PERL_VER%%/pod/perl586delta.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perl587delta.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perl588delta.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perl589delta.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perl58delta.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlaix.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlamiga.pod
|
||||
|
@ -848,6 +818,7 @@ lib/perl5/%%PERL_VER%%/pod/perlcheat.pod
|
|||
lib/perl5/%%PERL_VER%%/pod/perlclib.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlcn.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlcompile.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlcommunity.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlcygwin.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perldata.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perldbmfilter.pod
|
||||
|
@ -923,11 +894,15 @@ lib/perl5/%%PERL_VER%%/pod/perlpodspec.pod
|
|||
lib/perl5/%%PERL_VER%%/pod/perlport.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlqnx.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlre.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlrebackslash.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlrecharclass.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlref.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlreftut.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlreguts.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlrequick.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlreref.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlretut.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlriscos.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlrun.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlsec.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlsolaris.pod
|
||||
|
@ -944,7 +919,9 @@ lib/perl5/%%PERL_VER%%/pod/perltrap.pod
|
|||
lib/perl5/%%PERL_VER%%/pod/perltru64.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perltw.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlunicode.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlunifaq.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perluniintro.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlunitut.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlutil.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perluts.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlvar.pod
|
||||
|
@ -981,6 +958,7 @@ lib/perl5/%%PERL_VER%%/unicore/Jamo.txt
|
|||
lib/perl5/%%PERL_VER%%/unicore/LineBreak.txt
|
||||
lib/perl5/%%PERL_VER%%/unicore/Name.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/NamedSequences.txt
|
||||
lib/perl5/%%PERL_VER%%/unicore/NamedSqProv.txt
|
||||
lib/perl5/%%PERL_VER%%/unicore/NamesList.txt
|
||||
lib/perl5/%%PERL_VER%%/unicore/NormalizationCorrections.txt
|
||||
lib/perl5/%%PERL_VER%%/unicore/PVA.pl
|
||||
|
@ -1069,6 +1047,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Arab.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Armn.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/AsciiHex.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Assigned.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Bali.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Beng.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/BidiC.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/BidiCont.pl
|
||||
|
@ -1079,8 +1058,10 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Bugi.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Buhd.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/C.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Canadian.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Carian.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Cc.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Cf.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Cham.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Cher.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Cn.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Cntrl.pl
|
||||
|
@ -1091,6 +1072,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Cs.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Cyrl.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Dash.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Dash2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/DefaultI.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Dep.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Deprecat.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Deva.pl
|
||||
|
@ -1104,9 +1086,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Extender.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Geor.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Glag.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Goth.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/GrLink.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Graph.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Grapheme.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Grek.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Gujr.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Guru.pl
|
||||
|
@ -1130,6 +1110,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/IdsTrina.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InAegean.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InAlphab.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InAncie2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InAncie3.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InAncien.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InArabi2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InArabi3.pl
|
||||
|
@ -1137,6 +1118,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InArabi4.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InArabic.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InArmeni.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InArrows.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InBaline.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InBasicL.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InBengal.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InBlockE.pl
|
||||
|
@ -1147,6 +1129,8 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InBraill.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InBugine.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InBuhid.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InByzant.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCarian.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCham.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCherok.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCjkCo2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCjkCo3.pl
|
||||
|
@ -1164,13 +1148,19 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCombi4.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCombin.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InContro.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCoptic.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCounti.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCunei2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCuneif.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCurren.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCyprio.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCyril2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCyril3.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCyril4.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCyrill.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InDesere.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InDevana.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InDingba.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InDomino.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InEnclo2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InEnclos.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InEthio2.pl
|
||||
|
@ -1202,6 +1192,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InKangxi.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InKannad.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InKatak2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InKataka.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InKayahL.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InKharos.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InKhmer.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InKhmerS.pl
|
||||
|
@ -1209,12 +1200,18 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLao.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLatin1.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLatin2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLatin3.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLatin4.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLatin5.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLatinE.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLepcha.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLetter.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLimbu.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLinea2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLinear.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLowSur.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLycian.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLydian.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InMahjon.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InMalaya.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InMathe2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InMathem.pl
|
||||
|
@ -1228,22 +1225,30 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InMongol.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InMusica.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InMyanma.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InNewTai.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InNko.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InNumber.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InOgham.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InOlChik.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InOldIta.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InOldPer.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InOptica.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InOriya.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InOsmany.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InPhagsP.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InPhaist.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InPhoeni.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InPhone2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InPhonet.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InPrivat.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InRejang.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InRunic.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InSauras.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InShavia.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InSinhal.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InSmallF.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InSpacin.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InSpecia.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InSundan.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InSupers.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InSuppl2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InSuppl3.pl
|
||||
|
@ -1266,6 +1271,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InTibeta.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InTifina.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InUgarit.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InUnifie.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InVai.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InVaria2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InVariat.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InVertic.pl
|
||||
|
@ -1275,6 +1281,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InYijing.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/JoinC.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/JoinCont.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Kana.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/KayahLi.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Khar.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Khmr.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Knda.pl
|
||||
|
@ -1283,6 +1290,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/LC.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/LOE.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Laoo.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Latn.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Lepcha.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Limb.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/LinearB.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Ll.pl
|
||||
|
@ -1293,6 +1301,8 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Lower.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Lowercas.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Lt.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Lu.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Lycian.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Lydian.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/M.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Math.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Mc.pl
|
||||
|
@ -1305,6 +1315,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/N.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/NChar.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Nd.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/NewTaiLu.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Nkoo.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Nl.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/No.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Nonchara.pl
|
||||
|
@ -1317,6 +1328,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/OLower.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/OMath.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/OUpper.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Ogam.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/OlChiki.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/OldItali.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/OldPersi.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Orya.pl
|
||||
|
@ -1338,6 +1350,8 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Pc.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Pd.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Pe.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Pf.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/PhagsPa.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Phnx.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Pi.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Po.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Print.pl
|
||||
|
@ -1348,10 +1362,12 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Qaai.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Quotatio.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Radical.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Radical2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Rejang.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Runr.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/S.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/SD.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/STerm.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Saurasht.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Sc.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Shaw.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Sinh.pl
|
||||
|
@ -1362,6 +1378,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/SoftDott.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Space.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/SpacePer.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Sterm2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Sundanes.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/SylotiNa.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Syrc.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Tagb.pl
|
||||
|
@ -1382,11 +1399,13 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/UnifiedI.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Upper.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Uppercas.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/VS.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Vai.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Variatio.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/WSpace.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/WhiteSpa.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Word.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/XDigit.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Xsux.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Yiii.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Z.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Zl.pl
|
||||
|
@ -1455,23 +1474,41 @@ lib/perl5/%%PERL_VER%%/vmsish.pm
|
|||
lib/perl5/%%PERL_VER%%/warnings.pm
|
||||
lib/perl5/%%PERL_VER%%/warnings/register.pm
|
||||
%%GDBM%%lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/GDBM_File/GDBM_File.so
|
||||
%%GDBM%%lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/GDBM_File/GDBM_File.bs
|
||||
%%GDBM%%lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/GDBM_File.pm
|
||||
@dirrm lib/perl5/%%PERL_VER%%/BSDPAN/BSDPAN
|
||||
@dirrm lib/perl5/%%PERL_VER%%/BSDPAN/ExtUtils
|
||||
@dirrm lib/perl5/%%PERL_VER%%/BSDPAN
|
||||
@unexec find %D/%%SITE_PERL%%/%%PERL_ARCH%%/ -name '*.ph' -delete 2>/dev/null || true
|
||||
%%GDBM%%@dirrm lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/GDBM_File
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/auto/POSIX/SigAction
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/auto/POSIX
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/threads
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/XS
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Unicode
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Time
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Text
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Sys
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Scalar
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/PerlIO
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/MIME
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/List
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IPC
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IO/Socket
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IO
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/I18N
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Hash
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Filter/Util
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Filter
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/File
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/Unicode
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/MIME/Header
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/MIME
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/KR
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/JP
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/CN
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Digest
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Devel
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Data
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/CORE
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/B
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/threads/shared
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/threads
|
||||
|
@ -1484,17 +1521,22 @@ lib/perl5/%%PERL_VER%%/warnings/register.pm
|
|||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Unicode
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Time/HiRes
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Time
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Text/Soundex
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Text
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Sys/Syslog
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Sys/Hostname
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Sys
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Socket
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Scalar
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/sdbm
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/SDBM_File
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/PerlIO/via
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/PerlIO/scalar
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/PerlIO/encoding
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/PerlIO
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigAction
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Opcode
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/NDBM_File
|
||||
|
@ -1507,6 +1549,8 @@ lib/perl5/%%PERL_VER%%/warnings/register.pm
|
|||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/IO
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/I18N/Langinfo
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/I18N
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Hash/Util
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Hash
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Filter/Util/Call
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Filter/Util
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Filter
|
||||
|
@ -1537,37 +1581,8 @@ lib/perl5/%%PERL_VER%%/warnings/register.pm
|
|||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/B
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/DynaLoader
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Unicode
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Time
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/PerlIO
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IPC
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/I18N
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Filter/Util
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Filter
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/File
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Devel
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/CORE
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/IO/Socket
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/IO
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/B
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/warnings
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/User
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Time
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Search
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/IPC
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Exporter
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Scalar
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/List
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Digest
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Devel
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/DBM_Filter
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode/CN
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode/MIME
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode/KR
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode/JP
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/CPAN
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Carp
|
||||
@dirrm lib/perl5/%%PERL_VER%%/unicore/To
|
||||
@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc
|
||||
@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/dt
|
||||
|
@ -1580,8 +1595,10 @@ lib/perl5/%%PERL_VER%%/warnings/register.pm
|
|||
@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/ccc
|
||||
@dirrm lib/perl5/%%PERL_VER%%/unicore/lib
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/unicore
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/User
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Unicode/Collate
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Unicode
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Time
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Tie
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Thread
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Text/TabsWrap
|
||||
|
@ -1595,6 +1612,7 @@ lib/perl5/%%PERL_VER%%/warnings/register.pm
|
|||
@dirrmtry lib/perl5/%%PERL_VER%%/Term/ANSIColor
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Term
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Switch
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Search
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Pod/Text
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Pod/Perldoc
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Pod
|
||||
|
@ -1604,6 +1622,8 @@ lib/perl5/%%PERL_VER%%/warnings/register.pm
|
|||
@dirrmtry lib/perl5/%%PERL_VER%%/Net/Ping
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Net/FTP
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Net
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Module/Pluggable
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Module
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Memoize
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Math/BigInt
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Math/BigFloat
|
||||
|
@ -1611,28 +1631,40 @@ lib/perl5/%%PERL_VER%%/warnings/register.pm
|
|||
@dirrmtry lib/perl5/%%PERL_VER%%/Locale/Maketext
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Locale/Codes
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Locale
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/IPC
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/IO/Socket
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/IO
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/I18N/LangTags
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/I18N
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Hash
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Getopt/Long
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Getopt
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Filter/Simple
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Filter
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/File/Spec
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/File
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode/Unicode
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode/MIME/Header
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode/MIME
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/ExtUtils/Command
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/ExtUtils/Constant
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/ExtUtils/Liblist
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/ExtUtils/MakeMaker
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/ExtUtils
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Exporter
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode/KR
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode/JP
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode/CN
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Digest
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Devel
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/DBM_Filter
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Class/ISA
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Class
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Carp
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/CPAN/Kwalify
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/CPAN/API
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/CPAN
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/CGI/eg
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/CGI
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/B/Lint
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/B
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Attribute/Handlers
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Attribute
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/pod
|
||||
|
|
|
@ -7,19 +7,19 @@
|
|||
|
||||
PORTNAME= perl
|
||||
PORTVERSION= ${PERL_VER}
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= lang devel perl5
|
||||
MASTER_SITES= CPAN \
|
||||
${MASTER_SITE_LOCAL:S/$/:local/} \
|
||||
http://www.tobez.org/download/port-mirrors/lang/perl58/:local
|
||||
http://protey.ru/freebsd/distfiles/:local
|
||||
MASTER_SITE_SUBDIR= ../../src \
|
||||
tobez/:local
|
||||
skv/:local
|
||||
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \
|
||||
BSDPAN-${PERL_VER}${EXTRACT_SUFX}:local
|
||||
DIST_SUBDIR= perl
|
||||
|
||||
PATCH_SITES= ${MASTER_SITE_LOCAL:S/$/tobez\//} \
|
||||
http://www.tobez.org/download/port-mirrors/lang/perl58/
|
||||
PATCHFILES= defined-or-5.8.8.bz2
|
||||
PATCH_SITES= ${MASTER_SITE_LOCAL:S!$!skv/!} \
|
||||
http://protey.ru/freebsd/distfiles/
|
||||
PATCHFILES= defined-or-${PERL_VER}.bz2
|
||||
|
||||
MAINTAINER= skv@FreeBSD.org
|
||||
COMMENT= Practical Extraction and Report Language
|
||||
|
@ -32,9 +32,10 @@ OPTIONS= DEBUGGING "Build with debugging support" off \
|
|||
PERL_64BITINT "Use 64 bit integers (on i386)" on \
|
||||
THREADS "Build threaded perl" off \
|
||||
SUIDPERL "Build set-user-id suidperl binary" off \
|
||||
SITECUSTOMIZE "Run-time customization of @INC" off \
|
||||
USE_PERL "Rewrite links in /usr/bin" on
|
||||
|
||||
PERL_VER= 5.8.8
|
||||
PERL_VER= 5.8.9
|
||||
PERL_ARCH= mach
|
||||
PERL_VERSION= ${PERL_VER}
|
||||
SITE_PERL_REL?= lib/perl5/site_perl/${PERL_VER}
|
||||
|
@ -53,7 +54,7 @@ CONFIGURE_ARGS= -sde -Dprefix=${PREFIX} \
|
|||
-Dsiteman3dir=${PREFIX}/lib/perl5/${PERL_VER}/man/man3 \
|
||||
-Dsiteman1dir=${PREFIX}/man/man1 \
|
||||
-Ui_malloc -Ui_iconv -Uinstallusrbinperl \
|
||||
-Dcc="${CC}" -Duseshrplib \
|
||||
-Dcc="${CC}" -Duseshrplib -Dinc_version_list=none \
|
||||
-Dccflags=-DAPPLLIB_EXP=\"${BSDPAN_DEST}\"
|
||||
LOCALE_CLEANUP= LANG="" LC_ALL="" LC_COLLATE="" LC_CTYPE="" \
|
||||
LC_MESSAGES="" LC_MONETARY="" LC_NUMERIC="" \
|
||||
|
@ -122,6 +123,10 @@ CONFIGURE_ARGS+= -Dusemymalloc=n
|
|||
CONFIGURE_ARGS+= -Duse64bitint
|
||||
.endif
|
||||
|
||||
.if defined(WITH_SITECUSTOMIZE)
|
||||
CONFIGURE_ARGS+= -Dusesitecustomize
|
||||
.endif
|
||||
|
||||
LATEST_LINK= perl
|
||||
|
||||
PLIST_SUB+= NEED_USE_PERL="@comment "
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
MAN1+= a2p.1
|
||||
MAN1+= c2ph.1
|
||||
MAN1+= corelist.1
|
||||
MAN1+= cpan.1
|
||||
MAN1+= dprofpp.1
|
||||
MAN1+= enc2xs.1
|
||||
|
@ -28,6 +29,7 @@ MAN1+= perl585delta.1
|
|||
MAN1+= perl586delta.1
|
||||
MAN1+= perl587delta.1
|
||||
MAN1+= perl588delta.1
|
||||
MAN1+= perl589delta.1
|
||||
MAN1+= perl58delta.1
|
||||
MAN1+= perlaix.1
|
||||
MAN1+= perlamiga.1
|
||||
|
@ -48,6 +50,7 @@ MAN1+= perlcheat.1
|
|||
MAN1+= perlclib.1
|
||||
MAN1+= perlcn.1
|
||||
MAN1+= perlcompile.1
|
||||
MAN1+= perlcommunity.1
|
||||
MAN1+= perlcygwin.1
|
||||
MAN1+= perldata.1
|
||||
MAN1+= perldbmfilter.1
|
||||
|
@ -124,17 +127,22 @@ MAN1+= perlpodspec.1
|
|||
MAN1+= perlport.1
|
||||
MAN1+= perlqnx.1
|
||||
MAN1+= perlre.1
|
||||
MAN1+= perlrebackslash.1
|
||||
MAN1+= perlrecharclass.1
|
||||
MAN1+= perlref.1
|
||||
MAN1+= perlreftut.1
|
||||
MAN1+= perlreguts.1
|
||||
MAN1+= perlrequick.1
|
||||
MAN1+= perlreref.1
|
||||
MAN1+= perlretut.1
|
||||
MAN1+= perlriscos.1
|
||||
MAN1+= perlrun.1
|
||||
MAN1+= perlsec.1
|
||||
MAN1+= perlsolaris.1
|
||||
MAN1+= perlstyle.1
|
||||
MAN1+= perlsub.1
|
||||
MAN1+= perlsyn.1
|
||||
MAN1+= perlthanks.1
|
||||
MAN1+= perlthrtut.1
|
||||
MAN1+= perltie.1
|
||||
MAN1+= perltoc.1
|
||||
|
@ -145,8 +153,10 @@ MAN1+= perltrap.1
|
|||
MAN1+= perltru64.1
|
||||
MAN1+= perltw.1
|
||||
MAN1+= perlunicode.1
|
||||
MAN1+= perlunifaq.1
|
||||
MAN1+= perluniintro.1
|
||||
MAN1+= perlutil.1
|
||||
MAN1+= perlunitut.1
|
||||
MAN1+= perluts.1
|
||||
MAN1+= perlvar.1
|
||||
MAN1+= perlvmesa.1
|
||||
|
@ -187,6 +197,7 @@ MAN3+= B::Debug.3
|
|||
MAN3+= B::Deparse.3
|
||||
MAN3+= B::Disassembler.3
|
||||
MAN3+= B::Lint.3
|
||||
MAN3+= B::Lint::Debug.3
|
||||
MAN3+= B::Showlex.3
|
||||
MAN3+= B::Stackobj.3
|
||||
MAN3+= B::Stash.3
|
||||
|
@ -203,9 +214,18 @@ MAN3+= CGI::Pretty.3
|
|||
MAN3+= CGI::Push.3
|
||||
MAN3+= CGI::Switch.3
|
||||
MAN3+= CGI::Util.3
|
||||
MAN3+= CORE.3
|
||||
MAN3+= CPAN.3
|
||||
MAN3+= CPAN::API::HOWTO.3
|
||||
MAN3+= CPAN::Debug.3
|
||||
MAN3+= CPAN::Distroprefs.3
|
||||
MAN3+= CPAN::FirstTime.3
|
||||
MAN3+= CPAN::HandleConfig.3
|
||||
MAN3+= CPAN::Kwalify.3
|
||||
MAN3+= CPAN::Nox.3
|
||||
MAN3+= CPAN::Queue.3
|
||||
MAN3+= CPAN::Tarzip.3
|
||||
MAN3+= CPAN::Version.3
|
||||
MAN3+= Carp.3
|
||||
MAN3+= Carp::Heavy.3
|
||||
MAN3+= Class::ISA.3
|
||||
|
@ -222,6 +242,7 @@ MAN3+= DBM_Filter::utf8.3
|
|||
MAN3+= DB_File.3
|
||||
MAN3+= Data::Dumper.3
|
||||
MAN3+= Devel::DProf.3
|
||||
MAN3+= Devel::InnerPackage.3
|
||||
MAN3+= Devel::PPPort.3
|
||||
MAN3+= Devel::Peek.3
|
||||
MAN3+= Devel::SelfStubber.3
|
||||
|
@ -242,6 +263,7 @@ MAN3+= Encode::Config.3
|
|||
MAN3+= Encode::EBCDIC.3
|
||||
MAN3+= Encode::Encoder.3
|
||||
MAN3+= Encode::Encoding.3
|
||||
MAN3+= Encode::GSM0338.3
|
||||
MAN3+= Encode::Guess.3
|
||||
MAN3+= Encode::JP.3
|
||||
MAN3+= Encode::JP::H2Z.3
|
||||
|
@ -249,6 +271,7 @@ MAN3+= Encode::JP::JIS7.3
|
|||
MAN3+= Encode::KR.3
|
||||
MAN3+= Encode::KR::2022_KR.3
|
||||
MAN3+= Encode::MIME::Header.3
|
||||
MAN3+= Encode::MIME::Name.3
|
||||
MAN3+= Encode::PerlIO.3
|
||||
MAN3+= Encode::Supported.3
|
||||
MAN3+= Encode::Symbol.3
|
||||
|
@ -276,6 +299,7 @@ MAN3+= ExtUtils::MM_Any.3
|
|||
MAN3+= ExtUtils::MM_BeOS.3
|
||||
MAN3+= ExtUtils::MM_Cygwin.3
|
||||
MAN3+= ExtUtils::MM_DOS.3
|
||||
MAN3+= ExtUtils::MM_Darwin.3
|
||||
MAN3+= ExtUtils::MM_MacOS.3
|
||||
MAN3+= ExtUtils::MM_NW5.3
|
||||
MAN3+= ExtUtils::MM_OS2.3
|
||||
|
@ -298,6 +322,7 @@ MAN3+= ExtUtils::Miniperl.3
|
|||
MAN3+= ExtUtils::Mkbootstrap.3
|
||||
MAN3+= ExtUtils::Mksymlists.3
|
||||
MAN3+= ExtUtils::Packlist.3
|
||||
MAN3+= ExtUtils::ParseXS.3
|
||||
MAN3+= ExtUtils::testlib.3
|
||||
MAN3+= Fatal.3
|
||||
MAN3+= Fcntl.3
|
||||
|
@ -348,6 +373,7 @@ MAN3+= IPC::Msg.3
|
|||
MAN3+= IPC::Open2.3
|
||||
MAN3+= IPC::Open3.3
|
||||
MAN3+= IPC::Semaphore.3
|
||||
MAN3+= IPC::SharedMem.3
|
||||
MAN3+= IPC::SysV.3
|
||||
MAN3+= List::Util.3
|
||||
MAN3+= Locale::Constants.3
|
||||
|
@ -374,6 +400,9 @@ MAN3+= Memoize::ExpireTest.3
|
|||
MAN3+= Memoize::NDBM_File.3
|
||||
MAN3+= Memoize::SDBM_File.3
|
||||
MAN3+= Memoize::Storable.3
|
||||
MAN3+= Module::CoreList.3
|
||||
MAN3+= Module::Pluggable.3
|
||||
MAN3+= Module::Pluggable::Object.3
|
||||
MAN3+= NDBM_File.3
|
||||
MAN3+= NEXT.3
|
||||
MAN3+= Net::Cmd.3
|
||||
|
@ -451,7 +480,9 @@ MAN3+= Test::Harness::Assert.3
|
|||
MAN3+= Test::Harness::Iterator.3
|
||||
MAN3+= Test::Harness::Point.3
|
||||
MAN3+= Test::Harness::Straps.3
|
||||
MAN3+= Test::Harness::Results.3
|
||||
MAN3+= Test::Harness::TAP.3
|
||||
MAN3+= Test::Harness::Util.3
|
||||
MAN3+= Test::More.3
|
||||
MAN3+= Test::Simple.3
|
||||
MAN3+= Test::Tutorial.3
|
||||
|
@ -471,6 +502,7 @@ MAN3+= Tie::Hash.3
|
|||
MAN3+= Tie::Memoize.3
|
||||
MAN3+= Tie::RefHash.3
|
||||
MAN3+= Tie::Scalar.3
|
||||
MAN3+= Tie::StdHandle.3
|
||||
MAN3+= Tie::SubstrHash.3
|
||||
MAN3+= Time::HiRes.3
|
||||
MAN3+= Time::Local.3
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
MD5 (perl-5.8.8.tar.bz2) = a377c0c67ab43fd96eeec29ce19e8382
|
||||
SHA256 (perl-5.8.8.tar.bz2) = 818a140d9c04ea8dab3a05104b34ced7f7d9d0a91bfed91baf89a84d0dfb1bc9
|
||||
SIZE (perl-5.8.8.tar.bz2) = 10123359
|
||||
MD5 (BSDPAN-5.8.8.tar.bz2) = 872e4235a7e95cc88ead2e32da0e1f5a
|
||||
SHA256 (BSDPAN-5.8.8.tar.bz2) = 6cd20186db9c27761cabd7ff96d40936bc7be9c527f28b1ffa2773b65b228394
|
||||
SIZE (BSDPAN-5.8.8.tar.bz2) = 8192
|
||||
MD5 (defined-or-5.8.8.bz2) = 4a40ed2c1356f189cfa061b5e102dfca
|
||||
SHA256 (defined-or-5.8.8.bz2) = ba60db049eaf987f1f8c7f5228743118d0022eabadf59313da41ece49e053970
|
||||
SIZE (defined-or-5.8.8.bz2) = 36377
|
||||
MD5 (perl/perl-5.8.9.tar.bz2) = 1cb52a76ce77fa300218da96577793ec
|
||||
SHA256 (perl/perl-5.8.9.tar.bz2) = 1097fbcd48ceccb2bc735d119c9db399a02a8ab9f7dc53e29e47e6a8d0d72e79
|
||||
SIZE (perl/perl-5.8.9.tar.bz2) = 11121414
|
||||
MD5 (perl/BSDPAN-5.8.9.tar.bz2) = 9479989b30c6b8a09e95130d57b4f482
|
||||
SHA256 (perl/BSDPAN-5.8.9.tar.bz2) = 6bc43a3586c5c4a545ebb969397582ef62d3a199809273992529e52ac533e741
|
||||
SIZE (perl/BSDPAN-5.8.9.tar.bz2) = 8171
|
||||
MD5 (perl/defined-or-5.8.9.bz2) = af0d3d86f437547bedb2d99539ba7a6e
|
||||
SHA256 (perl/defined-or-5.8.9.bz2) = 021b46afd429f5c56b76195565394f1e74770681c5ad98f98936ad2cab58bda4
|
||||
SIZE (perl/defined-or-5.8.9.bz2) = 36178
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
--- hints/freebsd.sh.orig Wed Mar 24 22:47:33 2004
|
||||
+++ hints/freebsd.sh Mon Feb 19 20:53:50 2007
|
||||
@@ -88,6 +88,8 @@ case "$osvers" in
|
||||
--- hints/freebsd.sh
|
||||
+++ hints/freebsd.sh
|
||||
@@ -88,6 +88,8 @@
|
||||
esac
|
||||
libswanted=`echo $libswanted | sed 's/ malloc / /'`
|
||||
libswanted=`echo $libswanted | sed 's/ bind / /'`
|
||||
|
@ -9,7 +9,7 @@
|
|||
# iconv gone in Perl 5.8.1, but if someone compiles 5.8.0 or earlier.
|
||||
libswanted=`echo $libswanted | sed 's/ iconv / /'`
|
||||
d_setregid='define'
|
||||
@@ -102,6 +104,10 @@ case "$osvers" in
|
||||
@@ -102,6 +104,10 @@
|
||||
;;
|
||||
esac
|
||||
libswanted=`echo $libswanted | sed 's/ malloc / /'`
|
||||
|
@ -20,31 +20,16 @@
|
|||
;;
|
||||
esac
|
||||
|
||||
@@ -116,17 +122,17 @@ case "$osvers" in
|
||||
|
||||
*)
|
||||
objformat=`/usr/bin/objformat`
|
||||
- if [ x$objformat = xelf ]; then
|
||||
- libpth="/usr/lib /usr/local/lib"
|
||||
- glibpth="/usr/lib /usr/local/lib"
|
||||
@@ -125,7 +131,7 @@
|
||||
else
|
||||
libpth="/usr/lib /usr/local/lib"
|
||||
glibpth="/usr/lib /usr/local/lib"
|
||||
- ldflags="-Wl,-E "
|
||||
- lddlflags="-shared "
|
||||
- else
|
||||
+ if [ x$objformat = xaout ]; then
|
||||
if [ -e /usr/lib/aout ]; then
|
||||
libpth="/usr/lib/aout /usr/local/lib /usr/lib"
|
||||
glibpth="/usr/lib/aout /usr/local/lib /usr/lib"
|
||||
fi
|
||||
lddlflags='-Bshareable'
|
||||
+ else
|
||||
+ libpth="/usr/lib /usr/local/lib"
|
||||
+ glibpth="/usr/lib /usr/local/lib"
|
||||
+ ldflags="%%PTHREAD_LIBS%% -Wl,-E"
|
||||
+ lddlflags="-shared "
|
||||
+ ldflags="%%PTHREAD_LIBS%% -Wl,-E "
|
||||
lddlflags="-shared "
|
||||
fi
|
||||
cccdlflags='-DPIC -fPIC'
|
||||
;;
|
||||
@@ -136,7 +142,7 @@ case "$osvers" in
|
||||
@@ -136,7 +142,7 @@
|
||||
0*|1*|2*|3*) ;;
|
||||
|
||||
*)
|
||||
|
@ -53,7 +38,7 @@
|
|||
if /usr/bin/file -L /usr/lib/libc.so | /usr/bin/grep -vq "not stripped" ; then
|
||||
usenm=false
|
||||
fi
|
||||
@@ -183,7 +189,9 @@ esac
|
||||
@@ -183,7 +189,9 @@
|
||||
|
||||
# This script UU/usethreads.cbu will get 'called-back' by Configure
|
||||
# after it has prompted the user for whether to use threads.
|
||||
|
|
|
@ -1,10 +0,0 @@
|
|||
--- makedepend.SH.orig Wed May 2 22:37:13 2007
|
||||
+++ makedepend.SH Wed May 2 22:38:48 2007
|
||||
@@ -167,6 +167,7 @@
|
||||
-e '/^#.*<builtin>/d' \
|
||||
-e '/^#.*<built-in>/d' \
|
||||
-e '/^#.*<command line>/d' \
|
||||
+ -e '/^#.*<command-line>/d' \
|
||||
-e '/^#.*"-"/d' \
|
||||
-e '/: file path prefix .* never used$/d' \
|
||||
-e 's#\.[0-9][0-9]*\.c#'"$file.c#" \
|
|
@ -1,58 +1,60 @@
|
|||
--- perl.c.orig Fri Apr 22 16:14:27 2005
|
||||
+++ perl.c Thu Dec 22 12:47:28 2005
|
||||
@@ -4397,6 +4397,27 @@ S_init_perllib(pTHX)
|
||||
incpush(APPLLIB_EXP, TRUE, TRUE, TRUE);
|
||||
--- perl.c
|
||||
+++ perl.c
|
||||
@@ -4882,6 +4882,28 @@
|
||||
incpush(APPLLIB_EXP, TRUE, TRUE, TRUE, TRUE);
|
||||
#endif
|
||||
|
||||
+#ifdef SITEARCH_EXP
|
||||
+ /* sitearch is always relative to sitelib on Windows for
|
||||
+ * DLL-based path intuition to work correctly */
|
||||
+# if !defined(WIN32)
|
||||
+ incpush(SITEARCH_EXP, FALSE, FALSE, TRUE);
|
||||
+ incpush(SITEARCH_EXP, FALSE, FALSE, TRUE, TRUE);
|
||||
+# endif
|
||||
+#endif
|
||||
+
|
||||
+#ifdef SITELIB_EXP
|
||||
+# if defined(WIN32)
|
||||
+ /* this picks up sitearch as well */
|
||||
+ incpush(SITELIB_EXP, TRUE, FALSE, TRUE);
|
||||
+ incpush(SITELIB_EXP, TRUE, FALSE, TRUE, TRUE);
|
||||
+# else
|
||||
+ incpush(SITELIB_EXP, FALSE, FALSE, TRUE);
|
||||
+ incpush(SITELIB_EXP, FALSE, FALSE, TRUE, TRUE);
|
||||
+# endif
|
||||
+#endif
|
||||
+
|
||||
+#ifdef SITELIB_STEM /* Search for version-specific dirs below here */
|
||||
+ incpush(SITELIB_STEM, FALSE, TRUE, TRUE);
|
||||
+#if defined(SITELIB_STEM) && defined(PERL_INC_VERSION_LIST)
|
||||
+ /* Search for version-specific dirs below here */
|
||||
+ incpush(SITELIB_STEM, FALSE, TRUE, TRUE, TRUE);
|
||||
+#endif
|
||||
+
|
||||
#ifdef ARCHLIB_EXP
|
||||
incpush(ARCHLIB_EXP, FALSE, FALSE, TRUE);
|
||||
incpush(ARCHLIB_EXP, FALSE, FALSE, TRUE, TRUE);
|
||||
#endif
|
||||
@@ -4428,27 +4449,6 @@ S_init_perllib(pTHX)
|
||||
incpush(PRIVLIB_EXP, TRUE, FALSE, TRUE);
|
||||
#else
|
||||
incpush(PRIVLIB_EXP, FALSE, FALSE, TRUE);
|
||||
-#endif
|
||||
-
|
||||
@@ -4915,28 +4937,6 @@
|
||||
incpush(PRIVLIB_EXP, FALSE, FALSE, TRUE, TRUE);
|
||||
#endif
|
||||
|
||||
-#ifdef SITEARCH_EXP
|
||||
- /* sitearch is always relative to sitelib on Windows for
|
||||
- * DLL-based path intuition to work correctly */
|
||||
-# if !defined(WIN32)
|
||||
- incpush(SITEARCH_EXP, FALSE, FALSE, TRUE);
|
||||
- incpush(SITEARCH_EXP, FALSE, FALSE, TRUE, TRUE);
|
||||
-# endif
|
||||
-#endif
|
||||
-
|
||||
-#ifdef SITELIB_EXP
|
||||
-# if defined(WIN32)
|
||||
- /* this picks up sitearch as well */
|
||||
- incpush(SITELIB_EXP, TRUE, FALSE, TRUE);
|
||||
- incpush(SITELIB_EXP, TRUE, FALSE, TRUE, TRUE);
|
||||
-# else
|
||||
- incpush(SITELIB_EXP, FALSE, FALSE, TRUE);
|
||||
- incpush(SITELIB_EXP, FALSE, FALSE, TRUE, TRUE);
|
||||
-# endif
|
||||
-#endif
|
||||
-
|
||||
-#ifdef SITELIB_STEM /* Search for version-specific dirs below here */
|
||||
- incpush(SITELIB_STEM, FALSE, TRUE, TRUE);
|
||||
#endif
|
||||
|
||||
-#if defined(SITELIB_STEM) && defined(PERL_INC_VERSION_LIST)
|
||||
- /* Search for version-specific dirs below here */
|
||||
- incpush(SITELIB_STEM, FALSE, TRUE, TRUE, TRUE);
|
||||
-#endif
|
||||
-
|
||||
#ifdef PERL_VENDORARCH_EXP
|
||||
/* vendorarch is always relative to vendorlib on Windows for
|
||||
* DLL-based path intuition to work correctly */
|
||||
|
|
21
lang/perl5.8/files/patch-sv.c
Normal file
21
lang/perl5.8/files/patch-sv.c
Normal file
|
@ -0,0 +1,21 @@
|
|||
--- sv.c
|
||||
+++ sv.c
|
||||
@@ -9813,7 +9813,8 @@ Perl_sv_dup(pTHX_ SV *sstr, CLONE_PARAMS* param)
|
||||
IoBOTTOM_NAME(dstr) = SAVEPV(IoBOTTOM_NAME(dstr));
|
||||
break;
|
||||
case SVt_PVAV:
|
||||
- if (AvARRAY((AV*)sstr)) {
|
||||
+ /* avoid cloning an empty array */
|
||||
+ if (AvARRAY((AV*)sstr) && AvFILLp((AV*)sstr >= 0) {
|
||||
SV **dst_ary, **src_ary;
|
||||
SSize_t items = AvFILLp((AV*)sstr) + 1;
|
||||
|
||||
@@ -9838,6 +9839,8 @@ Perl_sv_dup(pTHX_ SV *sstr, CLONE_PARAMS* param)
|
||||
else {
|
||||
SvPV_set(dstr, NULL);
|
||||
AvALLOC((AV*)dstr) = (SV**)NULL;
|
||||
+ AvMAX( (AV *)dstr) = -1;
|
||||
+ AvFILLp((AV *)dstr) = -1;
|
||||
}
|
||||
AvARYLEN((AV*)dstr) = sv_dup_inc(AvARYLEN((AV*)sstr), param);
|
||||
break;
|
|
@ -1,95 +0,0 @@
|
|||
--- regcomp.c.orig 2006-01-08 21:59:27.000000000 +0100
|
||||
+++ regcomp.c 2007-11-06 22:48:26.000000000 +0100
|
||||
@@ -135,7 +135,10 @@ typedef struct RExC_state_t {
|
||||
I32 extralen;
|
||||
I32 seen_zerolen;
|
||||
I32 seen_evals;
|
||||
- I32 utf8;
|
||||
+ I32 utf8; /* whether the pattern is utf8 or not */
|
||||
+ I32 orig_utf8; /* whether the pattern was originally in utf8 */
|
||||
+ /* XXX use this for future optimisation of case
|
||||
+ * where pattern must be upgraded to utf8. */
|
||||
#if ADD_TO_REGEXEC
|
||||
char *starttry; /* -Dr: where regtry was called. */
|
||||
#define RExC_starttry (pRExC_state->starttry)
|
||||
@@ -161,6 +164,7 @@ typedef struct RExC_state_t {
|
||||
#define RExC_seen_zerolen (pRExC_state->seen_zerolen)
|
||||
#define RExC_seen_evals (pRExC_state->seen_evals)
|
||||
#define RExC_utf8 (pRExC_state->utf8)
|
||||
+#define RExC_orig_utf8 (pRExC_state->orig_utf8)
|
||||
|
||||
#define ISMULT1(c) ((c) == '*' || (c) == '+' || (c) == '?')
|
||||
#define ISMULT2(s) ((*s) == '*' || (*s) == '+' || (*s) == '?' || \
|
||||
@@ -1749,15 +1753,16 @@ Perl_pregcomp(pTHX_ char *exp, char *xen
|
||||
if (exp == NULL)
|
||||
FAIL("NULL regexp argument");
|
||||
|
||||
- RExC_utf8 = pm->op_pmdynflags & PMdf_CMP_UTF8;
|
||||
+ RExC_utf8 = RExC_orig_utf8 = pm->op_pmdynflags & PMdf_CMP_UTF8;
|
||||
|
||||
- RExC_precomp = exp;
|
||||
DEBUG_r({
|
||||
if (!PL_colorset) reginitcolors();
|
||||
PerlIO_printf(Perl_debug_log, "%sCompiling REx%s `%s%*s%s'\n",
|
||||
PL_colors[4],PL_colors[5],PL_colors[0],
|
||||
- (int)(xend - exp), RExC_precomp, PL_colors[1]);
|
||||
+ (int)(xend - exp), exp, PL_colors[1]);
|
||||
});
|
||||
+redo_first_pass:
|
||||
+ RExC_precomp = exp;
|
||||
RExC_flags = pm->op_pmflags;
|
||||
RExC_sawback = 0;
|
||||
|
||||
@@ -1783,6 +1788,25 @@ Perl_pregcomp(pTHX_ char *exp, char *xen
|
||||
RExC_precomp = Nullch;
|
||||
return(NULL);
|
||||
}
|
||||
+ if (RExC_utf8 && !RExC_orig_utf8) {
|
||||
+ /* It's possible to write a regexp in ascii that represents unicode
|
||||
+ codepoints outside of the byte range, such as via \x{100}. If we
|
||||
+ detect such a sequence we have to convert the entire pattern to utf8
|
||||
+ and then recompile, as our sizing calculation will have been based
|
||||
+ on 1 byte == 1 character, but we will need to use utf8 to encode
|
||||
+ at least some part of the pattern, and therefore must convert the whole
|
||||
+ thing.
|
||||
+ XXX: somehow figure out how to make this less expensive...
|
||||
+ -- dmq */
|
||||
+ STRLEN len = xend-exp;
|
||||
+ DEBUG_r(PerlIO_printf(Perl_debug_log,
|
||||
+ "UTF8 mismatch! Converting to utf8 for resizing and compile\n"));
|
||||
+ exp = (char*)Perl_bytes_to_utf8(aTHX_ (U8*)exp, &len);
|
||||
+ xend = exp + len;
|
||||
+ RExC_orig_utf8 = RExC_utf8;
|
||||
+ SAVEFREEPV(exp);
|
||||
+ goto redo_first_pass;
|
||||
+ }
|
||||
DEBUG_r(PerlIO_printf(Perl_debug_log, "size %"IVdf" ", (IV)RExC_size));
|
||||
|
||||
/* Small enough for pointer-storage convention?
|
||||
--- t/op/pat.t.orig 2006-01-07 13:53:32.000000000 +0100
|
||||
+++ t/op/pat.t 2007-11-06 21:52:30.000000000 +0100
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
$| = 1;
|
||||
|
||||
-print "1..1187\n";
|
||||
+print "1..1189\n";
|
||||
|
||||
BEGIN {
|
||||
chdir 't' if -d 't';
|
||||
@@ -3395,5 +3395,14 @@ ok(("foba ba$s" =~ qr/(foo|BaSS|bar)/i)
|
||||
"# assigning to original string should not corrupt match vars");
|
||||
}
|
||||
|
||||
-# last test 1187
|
||||
+{
|
||||
+ use warnings;
|
||||
+ my @w;
|
||||
+ local $SIG{__WARN__}=sub{push @w,"@_"};
|
||||
+ my $c=qq(\x{DF});
|
||||
+ ok($c=~/${c}|\x{100}/, "ASCII pattern that really is utf8");
|
||||
+ ok(@w==0, "ASCII pattern that really is utf8");
|
||||
+}
|
||||
+
|
||||
+# last test 1189
|
||||
|
|
@ -1,5 +1,6 @@
|
|||
bin/a2p
|
||||
bin/c2ph
|
||||
bin/corelist
|
||||
bin/cpan
|
||||
bin/dprofpp
|
||||
bin/enc2xs
|
||||
|
@ -17,6 +18,7 @@ bin/perlbug
|
|||
bin/perlcc
|
||||
bin/perldoc
|
||||
bin/perlivp
|
||||
bin/perlthanks
|
||||
bin/piconv
|
||||
bin/pl2pm
|
||||
bin/pod2html
|
||||
|
@ -43,6 +45,7 @@ lib/perl5/%%PERL_VER%%/B/assemble
|
|||
lib/perl5/%%PERL_VER%%/B/cc_harness
|
||||
lib/perl5/%%PERL_VER%%/B/disassemble
|
||||
lib/perl5/%%PERL_VER%%/B/makeliblinks
|
||||
lib/perl5/%%PERL_VER%%/B/Lint/Debug.pm
|
||||
lib/perl5/%%PERL_VER%%/BSDPAN/BSDPAN.pm
|
||||
lib/perl5/%%PERL_VER%%/BSDPAN/BSDPAN/Override.pm
|
||||
lib/perl5/%%PERL_VER%%/BSDPAN/Config.pm
|
||||
|
@ -59,33 +62,21 @@ lib/perl5/%%PERL_VER%%/CGI/Pretty.pm
|
|||
lib/perl5/%%PERL_VER%%/CGI/Push.pm
|
||||
lib/perl5/%%PERL_VER%%/CGI/Switch.pm
|
||||
lib/perl5/%%PERL_VER%%/CGI/Util.pm
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/RunMeFirst
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/caution.xbm
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/clickable_image.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/cookie.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/crash.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/customize.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/diff_upload.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/dna_small_gif.uu
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/file_upload.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/frameset.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/index.html
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/internal_links.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/javascript.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/make_links.pl
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/monty.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/multiple_forms.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/nph-clock.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/nph-multipart.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/popup.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/save_state.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/tryit.cgi
|
||||
lib/perl5/%%PERL_VER%%/CGI/eg/wilogo_gif.uu
|
||||
lib/perl5/%%PERL_VER%%/CORE.pod
|
||||
lib/perl5/%%PERL_VER%%/CPAN.pm
|
||||
lib/perl5/%%PERL_VER%%/CPAN/FirstTime.pm
|
||||
lib/perl5/%%PERL_VER%%/CPAN/Nox.pm
|
||||
lib/perl5/%%PERL_VER%%/CPAN/PAUSE2003.pub
|
||||
lib/perl5/%%PERL_VER%%/CPAN/SIGNATURE
|
||||
lib/perl5/%%PERL_VER%%/CPAN/API/HOWTO.pod
|
||||
lib/perl5/%%PERL_VER%%/CPAN/Debug.pm
|
||||
lib/perl5/%%PERL_VER%%/CPAN/DeferedCode.pm
|
||||
lib/perl5/%%PERL_VER%%/CPAN/Distroprefs.pm
|
||||
lib/perl5/%%PERL_VER%%/CPAN/HandleConfig.pm
|
||||
lib/perl5/%%PERL_VER%%/CPAN/Kwalify.pm
|
||||
lib/perl5/%%PERL_VER%%/CPAN/Kwalify/distroprefs.dd
|
||||
lib/perl5/%%PERL_VER%%/CPAN/Kwalify/distroprefs.yml
|
||||
lib/perl5/%%PERL_VER%%/CPAN/Queue.pm
|
||||
lib/perl5/%%PERL_VER%%/CPAN/Tarzip.pm
|
||||
lib/perl5/%%PERL_VER%%/CPAN/Version.pm
|
||||
lib/perl5/%%PERL_VER%%/Carp.pm
|
||||
lib/perl5/%%PERL_VER%%/Carp/Heavy.pm
|
||||
lib/perl5/%%PERL_VER%%/Class/ISA.pm
|
||||
|
@ -97,25 +88,19 @@ lib/perl5/%%PERL_VER%%/DBM_Filter/encode.pm
|
|||
lib/perl5/%%PERL_VER%%/DBM_Filter/int32.pm
|
||||
lib/perl5/%%PERL_VER%%/DBM_Filter/null.pm
|
||||
lib/perl5/%%PERL_VER%%/DBM_Filter/utf8.pm
|
||||
lib/perl5/%%PERL_VER%%/Devel/InnerPackage.pm
|
||||
lib/perl5/%%PERL_VER%%/Devel/SelfStubber.pm
|
||||
lib/perl5/%%PERL_VER%%/Digest.pm
|
||||
lib/perl5/%%PERL_VER%%/Digest/base.pm
|
||||
lib/perl5/%%PERL_VER%%/Digest/file.pm
|
||||
lib/perl5/%%PERL_VER%%/DirHandle.pm
|
||||
lib/perl5/%%PERL_VER%%/Dumpvalue.pm
|
||||
lib/perl5/%%PERL_VER%%/Encode/CN/HZ.pm
|
||||
lib/perl5/%%PERL_VER%%/Encode/Changes.e2x
|
||||
lib/perl5/%%PERL_VER%%/Encode/ConfigLocal_PM.e2x
|
||||
lib/perl5/%%PERL_VER%%/Encode/JP/H2Z.pm
|
||||
lib/perl5/%%PERL_VER%%/Encode/JP/JIS7.pm
|
||||
lib/perl5/%%PERL_VER%%/Encode/KR/2022_KR.pm
|
||||
lib/perl5/%%PERL_VER%%/Encode/MIME/Header.pm
|
||||
lib/perl5/%%PERL_VER%%/Encode/MIME/Header/ISO_2022_JP.pm
|
||||
lib/perl5/%%PERL_VER%%/Encode/Makefile_PL.e2x
|
||||
lib/perl5/%%PERL_VER%%/Encode/PerlIO.pod
|
||||
lib/perl5/%%PERL_VER%%/Encode/README.e2x
|
||||
lib/perl5/%%PERL_VER%%/Encode/Supported.pod
|
||||
lib/perl5/%%PERL_VER%%/Encode/Unicode/UTF7.pm
|
||||
lib/perl5/%%PERL_VER%%/Encode/_PM.e2x
|
||||
lib/perl5/%%PERL_VER%%/Encode/_T.e2x
|
||||
lib/perl5/%%PERL_VER%%/Encode/encode.h
|
||||
|
@ -128,6 +113,7 @@ lib/perl5/%%PERL_VER%%/ExtUtils/Command/MM.pm
|
|||
lib/perl5/%%PERL_VER%%/ExtUtils/Constant.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/Constant/Base.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/Constant/Utils.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/Constant/ProxySubs.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/Constant/XS.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/Embed.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/Install.pm
|
||||
|
@ -141,6 +127,7 @@ lib/perl5/%%PERL_VER%%/ExtUtils/MM_Any.pm
|
|||
lib/perl5/%%PERL_VER%%/ExtUtils/MM_BeOS.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/MM_Cygwin.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/MM_DOS.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/MM_Darwin.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/MM_MacOS.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/MM_NW5.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/MM_OS2.pm
|
||||
|
@ -162,9 +149,8 @@ lib/perl5/%%PERL_VER%%/ExtUtils/Manifest.pm
|
|||
lib/perl5/%%PERL_VER%%/ExtUtils/Miniperl.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/Mkbootstrap.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/Mksymlists.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/NOTES
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/PATCHING
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/Packlist.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/ParseXS.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/testlib.pm
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/typemap
|
||||
lib/perl5/%%PERL_VER%%/ExtUtils/xsubpp
|
||||
|
@ -193,16 +179,13 @@ lib/perl5/%%PERL_VER%%/Filter/Simple.pm
|
|||
lib/perl5/%%PERL_VER%%/FindBin.pm
|
||||
lib/perl5/%%PERL_VER%%/Getopt/Long.pm
|
||||
lib/perl5/%%PERL_VER%%/Getopt/Std.pm
|
||||
lib/perl5/%%PERL_VER%%/Hash/Util.pm
|
||||
lib/perl5/%%PERL_VER%%/I18N/Collate.pm
|
||||
lib/perl5/%%PERL_VER%%/I18N/LangTags.pm
|
||||
lib/perl5/%%PERL_VER%%/I18N/LangTags/Detect.pm
|
||||
lib/perl5/%%PERL_VER%%/I18N/LangTags/List.pm
|
||||
lib/perl5/%%PERL_VER%%/IO/Socket/INET.pm
|
||||
lib/perl5/%%PERL_VER%%/IO/Socket/UNIX.pm
|
||||
lib/perl5/%%PERL_VER%%/IPC/Open2.pm
|
||||
lib/perl5/%%PERL_VER%%/IPC/Open3.pm
|
||||
lib/perl5/%%PERL_VER%%/List/Util.pm
|
||||
lib/perl5/%%PERL_VER%%/IPC/regen.pl
|
||||
lib/perl5/%%PERL_VER%%/Locale/Constants.pm
|
||||
lib/perl5/%%PERL_VER%%/Locale/Constants.pod
|
||||
lib/perl5/%%PERL_VER%%/Locale/Country.pm
|
||||
|
@ -235,6 +218,9 @@ lib/perl5/%%PERL_VER%%/Memoize/ExpireTest.pm
|
|||
lib/perl5/%%PERL_VER%%/Memoize/NDBM_File.pm
|
||||
lib/perl5/%%PERL_VER%%/Memoize/SDBM_File.pm
|
||||
lib/perl5/%%PERL_VER%%/Memoize/Storable.pm
|
||||
lib/perl5/%%PERL_VER%%/Module/CoreList.pm
|
||||
lib/perl5/%%PERL_VER%%/Module/Pluggable.pm
|
||||
lib/perl5/%%PERL_VER%%/Module/Pluggable/Object.pm
|
||||
lib/perl5/%%PERL_VER%%/NEXT.pm
|
||||
lib/perl5/%%PERL_VER%%/Net/Cmd.pm
|
||||
lib/perl5/%%PERL_VER%%/Net/Config.eg
|
||||
|
@ -246,7 +232,7 @@ lib/perl5/%%PERL_VER%%/Net/FTP/E.pm
|
|||
lib/perl5/%%PERL_VER%%/Net/FTP/I.pm
|
||||
lib/perl5/%%PERL_VER%%/Net/FTP/L.pm
|
||||
lib/perl5/%%PERL_VER%%/Net/FTP/dataconn.pm
|
||||
lib/perl5/%%PERL_VER%%/Net/Hostname.eg
|
||||
lib/perl5/%%PERL_VER%%/Net/Hostname.pm.eg
|
||||
lib/perl5/%%PERL_VER%%/Net/NNTP.pm
|
||||
lib/perl5/%%PERL_VER%%/Net/Netrc.pm
|
||||
lib/perl5/%%PERL_VER%%/Net/POP3.pm
|
||||
|
@ -289,7 +275,6 @@ lib/perl5/%%PERL_VER%%/Pod/Text/Color.pm
|
|||
lib/perl5/%%PERL_VER%%/Pod/Text/Overstrike.pm
|
||||
lib/perl5/%%PERL_VER%%/Pod/Text/Termcap.pm
|
||||
lib/perl5/%%PERL_VER%%/Pod/Usage.pm
|
||||
lib/perl5/%%PERL_VER%%/Scalar/Util.pm
|
||||
lib/perl5/%%PERL_VER%%/Search/Dict.pm
|
||||
lib/perl5/%%PERL_VER%%/SelectSaver.pm
|
||||
lib/perl5/%%PERL_VER%%/SelfLoader.pm
|
||||
|
@ -310,14 +295,15 @@ lib/perl5/%%PERL_VER%%/Test/Harness/Assert.pm
|
|||
lib/perl5/%%PERL_VER%%/Test/Harness/Iterator.pm
|
||||
lib/perl5/%%PERL_VER%%/Test/Harness/Point.pm
|
||||
lib/perl5/%%PERL_VER%%/Test/Harness/Straps.pm
|
||||
lib/perl5/%%PERL_VER%%/Test/Harness/Results.pm
|
||||
lib/perl5/%%PERL_VER%%/Test/Harness/TAP.pod
|
||||
lib/perl5/%%PERL_VER%%/Test/Harness/Util.pm
|
||||
lib/perl5/%%PERL_VER%%/Test/More.pm
|
||||
lib/perl5/%%PERL_VER%%/Test/Simple.pm
|
||||
lib/perl5/%%PERL_VER%%/Test/Tutorial.pod
|
||||
lib/perl5/%%PERL_VER%%/Text/Abbrev.pm
|
||||
lib/perl5/%%PERL_VER%%/Text/Balanced.pm
|
||||
lib/perl5/%%PERL_VER%%/Text/ParseWords.pm
|
||||
lib/perl5/%%PERL_VER%%/Text/Soundex.pm
|
||||
lib/perl5/%%PERL_VER%%/Text/Tabs.pm
|
||||
lib/perl5/%%PERL_VER%%/Text/Wrap.pm
|
||||
lib/perl5/%%PERL_VER%%/Thread.pm
|
||||
|
@ -330,6 +316,7 @@ lib/perl5/%%PERL_VER%%/Tie/Hash.pm
|
|||
lib/perl5/%%PERL_VER%%/Tie/Memoize.pm
|
||||
lib/perl5/%%PERL_VER%%/Tie/RefHash.pm
|
||||
lib/perl5/%%PERL_VER%%/Tie/Scalar.pm
|
||||
lib/perl5/%%PERL_VER%%/Tie/StdHandle.pm
|
||||
lib/perl5/%%PERL_VER%%/Tie/SubstrHash.pm
|
||||
lib/perl5/%%PERL_VER%%/Time/Local.pm
|
||||
lib/perl5/%%PERL_VER%%/Time/gmtime.pm
|
||||
|
@ -344,10 +331,6 @@ lib/perl5/%%PERL_VER%%/User/pwent.pm
|
|||
lib/perl5/%%PERL_VER%%/abbrev.pl
|
||||
lib/perl5/%%PERL_VER%%/assert.pl
|
||||
lib/perl5/%%PERL_VER%%/attributes.pm
|
||||
lib/perl5/%%PERL_VER%%/auto/POSIX/SigAction/flags.al
|
||||
lib/perl5/%%PERL_VER%%/auto/POSIX/SigAction/handler.al
|
||||
lib/perl5/%%PERL_VER%%/auto/POSIX/SigAction/mask.al
|
||||
lib/perl5/%%PERL_VER%%/auto/POSIX/SigAction/safe.al
|
||||
lib/perl5/%%PERL_VER%%/autouse.pm
|
||||
lib/perl5/%%PERL_VER%%/base.pm
|
||||
lib/perl5/%%PERL_VER%%/bigfloat.pl
|
||||
|
@ -364,7 +347,6 @@ lib/perl5/%%PERL_VER%%/charnames.pm
|
|||
lib/perl5/%%PERL_VER%%/complete.pl
|
||||
lib/perl5/%%PERL_VER%%/constant.pm
|
||||
lib/perl5/%%PERL_VER%%/ctime.pl
|
||||
lib/perl5/%%PERL_VER%%/dbm_filter_util.pl
|
||||
lib/perl5/%%PERL_VER%%/diagnostics.pm
|
||||
lib/perl5/%%PERL_VER%%/dotsh.pl
|
||||
lib/perl5/%%PERL_VER%%/dumpvar.pl
|
||||
|
@ -432,6 +414,7 @@ lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/CORE/nostdio.h
|
|||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/CORE/op.h
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/CORE/opcode.h
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/CORE/opnames.h
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/CORE/overload.h
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/CORE/pad.h
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/CORE/patchlevel.h
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/CORE/perl.h
|
||||
|
@ -476,20 +459,30 @@ lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/Alias.pm
|
|||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/Byte.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/CJKConstants.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/CN.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/CN/HZ.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/Config.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/EBCDIC.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/Encoder.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/Encoding.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/GSM0338.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/Guess.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/JP.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/JP/H2Z.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/JP/JIS7.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/KR.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/KR/2022_KR.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/MIME/Header.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/MIME/Header/ISO_2022_JP.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/MIME/Name.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/Symbol.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/TW.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/Unicode.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/Unicode/UTF7.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Errno.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Fcntl.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/File/Glob.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Filter/Util/Call.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Hash/Util.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/I18N/Langinfo.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IO.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IO/Dir.pm
|
||||
|
@ -500,9 +493,13 @@ lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IO/Poll.pm
|
|||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IO/Seekable.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IO/Select.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IO/Socket.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IO/Socket/INET.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IO/Socket/UNIX.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IPC/Msg.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IPC/Semaphore.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IPC/SharedMem.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IPC/SysV.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/List/Util.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/MIME/Base64.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/MIME/QuotedPrint.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/NDBM_File.pm
|
||||
|
@ -515,83 +512,52 @@ lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/PerlIO/scalar.pm
|
|||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/PerlIO/via.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/SDBM_File.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Safe.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Scalar/Util.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Socket.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Storable.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Sys/Hostname.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Sys/Syslog.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Text/Soundex.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Time/HiRes.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Unicode/Normalize.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/XS/APItest.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/XS/Typemap.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/XSLoader.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/attrs.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/B/B.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/B/B.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/B/C/C.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/B/C/C.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/ByteLoader/ByteLoader.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/ByteLoader/ByteLoader.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Cwd/Cwd.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Cwd/Cwd.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/DB_File/DB_File.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/DB_File/DB_File.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/DB_File/autosplit.ix
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Data/Dumper/Dumper.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Data/Dumper/Dumper.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Devel/DProf/DProf.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Devel/DProf/DProf.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Devel/PPPort/PPPort.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Devel/PPPort/PPPort.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Devel/Peek/Peek.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Devel/Peek/Peek.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Digest/MD5/MD5.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Digest/MD5/MD5.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/DynaLoader/DynaLoader.a
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/DynaLoader/autosplit.ix
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/DynaLoader/dl_expandspec.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/DynaLoader/dl_find_symbol_anywhere.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/DynaLoader/dl_findfile.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/DynaLoader/extralibs.ld
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/Byte/Byte.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/Byte/Byte.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/CN/CN.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/CN/CN.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/EBCDIC/EBCDIC.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/EBCDIC/EBCDIC.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/Encode.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/Encode.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/JP/JP.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/JP/JP.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/KR/KR.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/KR/KR.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/Symbol/Symbol.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/Symbol/Symbol.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/TW/TW.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/TW/TW.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/Unicode/Unicode.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Encode/Unicode/Unicode.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Fcntl/Fcntl.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Fcntl/Fcntl.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/File/Glob/Glob.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/File/Glob/Glob.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Filter/Util/Call/Call.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Filter/Util/Call/Call.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/I18N/Langinfo/Langinfo.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Hash/Util/Util.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/I18N/Langinfo/Langinfo.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/I18N/Langinfo/autosplit.ix
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/IO/IO.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/IO/IO.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/IPC/SysV/SysV.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/IPC/SysV/SysV.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/List/Util/Util.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/List/Util/Util.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/MIME/Base64/Base64.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/MIME/Base64/Base64.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/NDBM_File/NDBM_File.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/NDBM_File/NDBM_File.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Opcode/Opcode.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Opcode/Opcode.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/POSIX.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/POSIX.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/abs.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/alarm.al
|
||||
|
@ -744,18 +710,31 @@ lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/vprintf.al
|
|||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/vsprintf.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/wait.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/waitpid.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/PerlIO/encoding/encoding.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigAction/flags.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigAction/handler.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigAction/mask.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigAction/new.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigAction/safe.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/CLEAR.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/DELETE.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/EXISTS.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/FETCH.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/SCALAR.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/STORE.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/_check.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/_croak.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/_exist.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/_getsig.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/_init.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt/new.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/PerlIO/encoding/encoding.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/PerlIO/scalar/scalar.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/PerlIO/scalar/scalar.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/PerlIO/via/via.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/PerlIO/via/via.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/SDBM_File/SDBM_File.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/SDBM_File/SDBM_File.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Socket/Socket.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Socket/Socket.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/BIN_VERSION_NV.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/BIN_WRITE_VERSION_NV.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/CAN_FLOCK.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/Storable.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/Storable.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/_freeze.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/_retrieve.al
|
||||
|
@ -763,6 +742,7 @@ lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/_store.al
|
|||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/_store_fd.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/autosplit.ix
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/fd_retrieve.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/file_magic.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/freeze.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/lock_nstore.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/lock_retrieve.al
|
||||
|
@ -778,27 +758,16 @@ lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/show_file_magic.al
|
|||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/store.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/store_fd.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable/thaw.al
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Sys/Hostname/Hostname.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Sys/Hostname/Hostname.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Sys/Hostname/autosplit.ix
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Sys/Syslog/Syslog.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Sys/Syslog/Syslog.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Time/HiRes/HiRes.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Text/Soundex/Soundex.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Time/HiRes/HiRes.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Unicode/Normalize/Normalize.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Unicode/Normalize/Normalize.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/XS/APItest/APItest.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/XS/APItest/APItest.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/XS/Typemap/Typemap.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/XS/Typemap/Typemap.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/attrs/attrs.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/attrs/attrs.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/re/re.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/re/re.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/sdbm/extralibs.ld
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/threads/shared/shared.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/threads/shared/shared.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/threads/threads.bs
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/threads/threads.so
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/encoding.pm
|
||||
lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/lib.pm
|
||||
|
@ -830,6 +799,7 @@ lib/perl5/%%PERL_VER%%/pod/perl585delta.pod
|
|||
lib/perl5/%%PERL_VER%%/pod/perl586delta.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perl587delta.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perl588delta.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perl589delta.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perl58delta.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlaix.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlamiga.pod
|
||||
|
@ -848,6 +818,7 @@ lib/perl5/%%PERL_VER%%/pod/perlcheat.pod
|
|||
lib/perl5/%%PERL_VER%%/pod/perlclib.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlcn.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlcompile.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlcommunity.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlcygwin.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perldata.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perldbmfilter.pod
|
||||
|
@ -923,11 +894,15 @@ lib/perl5/%%PERL_VER%%/pod/perlpodspec.pod
|
|||
lib/perl5/%%PERL_VER%%/pod/perlport.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlqnx.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlre.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlrebackslash.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlrecharclass.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlref.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlreftut.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlreguts.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlrequick.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlreref.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlretut.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlriscos.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlrun.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlsec.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlsolaris.pod
|
||||
|
@ -944,7 +919,9 @@ lib/perl5/%%PERL_VER%%/pod/perltrap.pod
|
|||
lib/perl5/%%PERL_VER%%/pod/perltru64.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perltw.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlunicode.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlunifaq.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perluniintro.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlunitut.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlutil.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perluts.pod
|
||||
lib/perl5/%%PERL_VER%%/pod/perlvar.pod
|
||||
|
@ -981,6 +958,7 @@ lib/perl5/%%PERL_VER%%/unicore/Jamo.txt
|
|||
lib/perl5/%%PERL_VER%%/unicore/LineBreak.txt
|
||||
lib/perl5/%%PERL_VER%%/unicore/Name.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/NamedSequences.txt
|
||||
lib/perl5/%%PERL_VER%%/unicore/NamedSqProv.txt
|
||||
lib/perl5/%%PERL_VER%%/unicore/NamesList.txt
|
||||
lib/perl5/%%PERL_VER%%/unicore/NormalizationCorrections.txt
|
||||
lib/perl5/%%PERL_VER%%/unicore/PVA.pl
|
||||
|
@ -1069,6 +1047,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Arab.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Armn.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/AsciiHex.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Assigned.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Bali.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Beng.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/BidiC.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/BidiCont.pl
|
||||
|
@ -1079,8 +1058,10 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Bugi.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Buhd.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/C.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Canadian.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Carian.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Cc.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Cf.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Cham.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Cher.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Cn.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Cntrl.pl
|
||||
|
@ -1091,6 +1072,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Cs.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Cyrl.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Dash.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Dash2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/DefaultI.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Dep.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Deprecat.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Deva.pl
|
||||
|
@ -1104,9 +1086,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Extender.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Geor.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Glag.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Goth.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/GrLink.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Graph.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Grapheme.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Grek.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Gujr.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Guru.pl
|
||||
|
@ -1130,6 +1110,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/IdsTrina.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InAegean.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InAlphab.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InAncie2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InAncie3.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InAncien.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InArabi2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InArabi3.pl
|
||||
|
@ -1137,6 +1118,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InArabi4.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InArabic.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InArmeni.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InArrows.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InBaline.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InBasicL.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InBengal.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InBlockE.pl
|
||||
|
@ -1147,6 +1129,8 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InBraill.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InBugine.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InBuhid.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InByzant.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCarian.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCham.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCherok.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCjkCo2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCjkCo3.pl
|
||||
|
@ -1164,13 +1148,19 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCombi4.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCombin.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InContro.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCoptic.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCounti.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCunei2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCuneif.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCurren.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCyprio.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCyril2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCyril3.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCyril4.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InCyrill.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InDesere.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InDevana.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InDingba.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InDomino.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InEnclo2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InEnclos.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InEthio2.pl
|
||||
|
@ -1202,6 +1192,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InKangxi.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InKannad.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InKatak2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InKataka.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InKayahL.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InKharos.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InKhmer.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InKhmerS.pl
|
||||
|
@ -1209,12 +1200,18 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLao.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLatin1.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLatin2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLatin3.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLatin4.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLatin5.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLatinE.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLepcha.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLetter.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLimbu.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLinea2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLinear.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLowSur.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLycian.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InLydian.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InMahjon.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InMalaya.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InMathe2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InMathem.pl
|
||||
|
@ -1228,22 +1225,30 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InMongol.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InMusica.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InMyanma.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InNewTai.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InNko.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InNumber.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InOgham.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InOlChik.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InOldIta.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InOldPer.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InOptica.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InOriya.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InOsmany.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InPhagsP.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InPhaist.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InPhoeni.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InPhone2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InPhonet.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InPrivat.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InRejang.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InRunic.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InSauras.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InShavia.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InSinhal.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InSmallF.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InSpacin.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InSpecia.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InSundan.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InSupers.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InSuppl2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InSuppl3.pl
|
||||
|
@ -1266,6 +1271,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InTibeta.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InTifina.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InUgarit.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InUnifie.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InVai.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InVaria2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InVariat.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InVertic.pl
|
||||
|
@ -1275,6 +1281,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/InYijing.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/JoinC.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/JoinCont.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Kana.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/KayahLi.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Khar.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Khmr.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Knda.pl
|
||||
|
@ -1283,6 +1290,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/LC.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/LOE.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Laoo.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Latn.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Lepcha.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Limb.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/LinearB.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Ll.pl
|
||||
|
@ -1293,6 +1301,8 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Lower.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Lowercas.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Lt.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Lu.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Lycian.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Lydian.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/M.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Math.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Mc.pl
|
||||
|
@ -1305,6 +1315,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/N.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/NChar.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Nd.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/NewTaiLu.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Nkoo.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Nl.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/No.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Nonchara.pl
|
||||
|
@ -1317,6 +1328,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/OLower.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/OMath.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/OUpper.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Ogam.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/OlChiki.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/OldItali.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/OldPersi.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Orya.pl
|
||||
|
@ -1338,6 +1350,8 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Pc.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Pd.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Pe.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Pf.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/PhagsPa.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Phnx.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Pi.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Po.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Print.pl
|
||||
|
@ -1348,10 +1362,12 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Qaai.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Quotatio.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Radical.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Radical2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Rejang.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Runr.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/S.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/SD.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/STerm.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Saurasht.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Sc.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Shaw.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Sinh.pl
|
||||
|
@ -1362,6 +1378,7 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/SoftDott.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Space.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/SpacePer.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Sterm2.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Sundanes.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/SylotiNa.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Syrc.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Tagb.pl
|
||||
|
@ -1382,11 +1399,13 @@ lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/UnifiedI.pl
|
|||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Upper.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Uppercas.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/VS.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Vai.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Variatio.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/WSpace.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/WhiteSpa.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Word.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/XDigit.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Xsux.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Yiii.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Z.pl
|
||||
lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc/Zl.pl
|
||||
|
@ -1455,23 +1474,41 @@ lib/perl5/%%PERL_VER%%/vmsish.pm
|
|||
lib/perl5/%%PERL_VER%%/warnings.pm
|
||||
lib/perl5/%%PERL_VER%%/warnings/register.pm
|
||||
%%GDBM%%lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/GDBM_File/GDBM_File.so
|
||||
%%GDBM%%lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/GDBM_File/GDBM_File.bs
|
||||
%%GDBM%%lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/GDBM_File.pm
|
||||
@dirrm lib/perl5/%%PERL_VER%%/BSDPAN/BSDPAN
|
||||
@dirrm lib/perl5/%%PERL_VER%%/BSDPAN/ExtUtils
|
||||
@dirrm lib/perl5/%%PERL_VER%%/BSDPAN
|
||||
@unexec find %D/%%SITE_PERL%%/%%PERL_ARCH%%/ -name '*.ph' -delete 2>/dev/null || true
|
||||
%%GDBM%%@dirrm lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/GDBM_File
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/auto/POSIX/SigAction
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/auto/POSIX
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/threads
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/XS
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Unicode
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Time
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Text
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Sys
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Scalar
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/PerlIO
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/MIME
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/List
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IPC
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IO/Socket
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IO
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/I18N
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Hash
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Filter/Util
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Filter
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/File
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/Unicode
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/MIME/Header
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/MIME
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/KR
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/JP
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode/CN
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Encode
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Digest
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Devel
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Data
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/CORE
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/B
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/threads/shared
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/threads
|
||||
|
@ -1484,17 +1521,22 @@ lib/perl5/%%PERL_VER%%/warnings/register.pm
|
|||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Unicode
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Time/HiRes
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Time
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Text/Soundex
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Text
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Sys/Syslog
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Sys/Hostname
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Sys
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Storable
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Socket
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Scalar
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/sdbm
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/SDBM_File
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/PerlIO/via
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/PerlIO/scalar
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/PerlIO/encoding
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/PerlIO
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigRt
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX/SigAction
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/POSIX
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Opcode
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/NDBM_File
|
||||
|
@ -1507,6 +1549,8 @@ lib/perl5/%%PERL_VER%%/warnings/register.pm
|
|||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/IO
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/I18N/Langinfo
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/I18N
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Hash/Util
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Hash
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Filter/Util/Call
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Filter/Util
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/Filter
|
||||
|
@ -1537,37 +1581,8 @@ lib/perl5/%%PERL_VER%%/warnings/register.pm
|
|||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/B
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto/DynaLoader
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/auto
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Unicode
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Time
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/PerlIO
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/IPC
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/I18N
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Filter/Util
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Filter
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/File
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/Devel
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%/CORE
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/%%PERL_ARCH%%
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/IO/Socket
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/IO
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/B
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/warnings
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/User
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Time
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Search
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/IPC
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Exporter
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Scalar
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/List
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Digest
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Devel
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/DBM_Filter
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode/CN
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode/MIME
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode/KR
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode/JP
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/CPAN
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Carp
|
||||
@dirrm lib/perl5/%%PERL_VER%%/unicore/To
|
||||
@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/gc_sc
|
||||
@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/dt
|
||||
|
@ -1580,8 +1595,10 @@ lib/perl5/%%PERL_VER%%/warnings/register.pm
|
|||
@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/ccc
|
||||
@dirrm lib/perl5/%%PERL_VER%%/unicore/lib
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/unicore
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/User
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Unicode/Collate
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Unicode
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Time
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Tie
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Thread
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Text/TabsWrap
|
||||
|
@ -1595,6 +1612,7 @@ lib/perl5/%%PERL_VER%%/warnings/register.pm
|
|||
@dirrmtry lib/perl5/%%PERL_VER%%/Term/ANSIColor
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Term
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Switch
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Search
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Pod/Text
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Pod/Perldoc
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Pod
|
||||
|
@ -1604,6 +1622,8 @@ lib/perl5/%%PERL_VER%%/warnings/register.pm
|
|||
@dirrmtry lib/perl5/%%PERL_VER%%/Net/Ping
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Net/FTP
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Net
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Module/Pluggable
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Module
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Memoize
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Math/BigInt
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Math/BigFloat
|
||||
|
@ -1611,28 +1631,40 @@ lib/perl5/%%PERL_VER%%/warnings/register.pm
|
|||
@dirrmtry lib/perl5/%%PERL_VER%%/Locale/Maketext
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Locale/Codes
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Locale
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/IPC
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/IO/Socket
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/IO
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/I18N/LangTags
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/I18N
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Hash
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Getopt/Long
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Getopt
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Filter/Simple
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Filter
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/File/Spec
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/File
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode/Unicode
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode/MIME/Header
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode/MIME
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/ExtUtils/Command
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/ExtUtils/Constant
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/ExtUtils/Liblist
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/ExtUtils/MakeMaker
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/ExtUtils
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Exporter
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode/KR
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode/JP
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode/CN
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Encode
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Digest
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Devel
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/DBM_Filter
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Class/ISA
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Class
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Carp
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/CPAN/Kwalify
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/CPAN/API
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/CPAN
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/CGI/eg
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/CGI
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/B/Lint
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/B
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Attribute/Handlers
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/Attribute
|
||||
@dirrmtry lib/perl5/%%PERL_VER%%/pod
|
||||
|
|
Loading…
Reference in a new issue