-
Notifications
You must be signed in to change notification settings - Fork 0
/
MANIFEST
3456 lines (3456 loc) · 171 KB
/
MANIFEST
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
apollo/netinet/in.h Apollo DomainOS port: C header file frontend
Artistic The "Artistic License"
AUTHORS Contact info for contributors
autodoc.pl Creates pod/perlintern.pod and pod/perlapi.pod
av.c Array value code
av.h Array value header
beos/beos.c BeOS port
beos/beosish.h BeOS port
beos/nm.c BeOS port
bytecode.pl Produces ext/ByteLoader/byterun.h, ext/ByteLoader/byterun.c and ext/B/Asmdata.pm
cc_runtime.h Macros need by runtime of compiler-generated code
cflags.SH A script that emits C compilation flags per file
Changes Differences from previous version
Changes5.000 Differences between 4.x and 5.000
Changes5.001 Differences between 5.000 and 5.001
Changes5.002 Differences between 5.001 and 5.002
Changes5.003 Differences between 5.002 and 5.003
Changes5.004 Differences between 5.003 and 5.004
Changes5.005 Differences between 5.004 and 5.005
Changes5.6 Differences between 5.005 and 5.6
Changes5.8 Differences between 5.6.0 and 5.8.0 (and maint-5.6)
Changes5.8.1 Differences between 5.8.0 and 5.8.1
Changes5.8.2 Differences between 5.8.1 and 5.8.2
Changes5.8.3 Differences between 5.8.2 and 5.8.3
Changes5.8.4 Differences between 5.8.3 and 5.8.4
Changes5.8.5 Differences between 5.8.4 and 5.8.5
Changes5.8.6 Differences between 5.8.5 and 5.8.6
Changes5.8.7 Differences between 5.8.6 and 5.8.7
Changes5.8.8 Differences between 5.8.7 and 5.8.8
config_h.SH Produces config.h
configpm Produces lib/Config.pm
Configure Portability tool
configure.com Configure-equivalent for VMS
configure.gnu Crude emulation of GNU configure
cop.h Control operator header
Copying The GNU General Public License
Cross/config Cross-compilation
Cross/config.sh-arm-linux Cross-compilation
Cross/generate_config_sh Cross-compilation
Cross/installperl.patch Cross-compilation
Cross/Makefile Cross-compilation
Cross/Makefile.SH.patch Cross-compilation
Cross/README Cross-compilation
Cross/TODO Cross-compilation
Cross/warp Cross-compilation
cv.h Code value header
cygwin/cygwin.c Additional code for Cygwin port
cygwin/Makefile.SHs Shared library generation for Cygwin port
deb.c Debugging routines
djgpp/config.over DOS/DJGPP port
djgpp/configure.bat DOS/DJGPP port
djgpp/djgpp.c DOS/DJGPP port
djgpp/djgpp.h DOS/DJGPP port
djgpp/djgppsed.sh DOS/DJGPP port
djgpp/fixpmain DOS/DJGPP port
doio.c I/O operations
doop.c Support code for various operations
dosish.h Some defines for MS/DOSish machines
dump.c Debugging output
emacs/cperl-mode.el An alternate perl-mode
emacs/e2ctags.pl etags to ctags converter
emacs/ptags Creates smart TAGS file
embed.fnc Database used by embed.pl
embed.h Maps symbols to safer names
embed.pl Produces {embed,embedvar,proto}.h, global.sym
embedvar.h C namespace management
epoc/config.sh EPOC port config.sh template
epoc/createpkg.pl EPOC port generate PKG file
epoc/epoc.c EPOC port
epoc/epocish.c EPOC port
epoc/epocish.h EPOC port
epoc/epoc_stubs.c EPOC port
epoc/link.pl EPOC port link a exe
ext/attrs/attrs.pm attrs extension Perl module
ext/attrs/attrs.xs attrs extension external subroutines
ext/attrs/Makefile.PL attrs extension makefile writer
ext/attrs/t/attrs.t See if attrs works with C<sub : attrs>
ext/B/B/Asmdata.pm Compiler backend data for assembler
ext/B/B/assemble Assemble compiler bytecode
ext/B/B/Assembler.pm Compiler backend assembler support functions
ext/B/B/Bblock.pm Compiler basic block analysis support
ext/B/B/Bytecode.pm Compiler Bytecode backend
ext/B/B/cc_harness Simplistic wrapper for using -MO=CC compiler
ext/B/B/CC.pm Compiler CC backend
ext/B/B/Concise.pm Compiler Concise backend
ext/B/B/C.pm Compiler C backend
ext/B/B/Debug.pm Compiler Debug backend
ext/B/B/Deparse.pm Compiler Deparse backend
ext/B/B/disassemble Disassemble compiler bytecode output
ext/B/B/Disassembler.pm Compiler Disassembler backend
ext/B/B/Lint/Debug.pm Adds debugging stringification to B::
ext/B/B/Lint.pm Compiler Lint backend
ext/B/B/makeliblinks Make a simplistic XSUB .so symlink tree for compiler
ext/B/B.pm Compiler backend support functions and methods
ext/B/B/Showlex.pm Compiler Showlex backend
ext/B/B/Stackobj.pm Compiler stack objects support functions
ext/B/B/Stash.pm Compiler module to identify stashes
ext/B/B/Terse.pm Compiler Terse backend
ext/B/B/Xref.pm Compiler Xref backend
ext/B/B.xs Compiler backend external subroutines
ext/B/C/C.xs Compiler C backend external subroutines
ext/B/C/Makefile.PL Compiler C backend makefile writer
ext/B/defsubs_h.PL Generator for constant subroutines
ext/B/hints/darwin.pl Hints for named architecture
ext/B/hints/openbsd.pl Hints for named architecture
ext/B/Makefile.PL Compiler backend makefile writer
ext/B/NOTES Compiler backend notes
ext/B/O.pm Compiler front-end module (-MO=...)
ext/B/ramblings/cc.notes Compiler ramblings: notes on CC backend
ext/B/ramblings/curcop.runtime Compiler ramblings: notes on curcop use
ext/B/ramblings/flip-flop Compiler ramblings: notes on flip-flop
ext/B/ramblings/magic Compiler ramblings: notes on magic
ext/B/ramblings/reg.alloc Compiler ramblings: register allocation
ext/B/ramblings/runtime.porting Compiler ramblings: porting PP engine
ext/B/README Compiler backend README
ext/B/t/asmdata.t See if B::Asmdata works
ext/B/t/assembler.t See if B::Assembler, B::Disassembler comply
ext/B/t/bblock.t See if B::Bblock works
ext/B/t/b.t See if B works
ext/B/t/bytecode.t See whether B::Bytecode works
ext/B/t/concise.t See whether B::Concise works
ext/B/t/concise-xs.t See whether B::Concise recognizes XS functions
ext/B/t/debug.t See if B::Debug works
ext/B/t/deparse.t See if B::Deparse works
ext/B/TESTS Compiler backend test data
ext/B/t/f_map code from perldoc -f map
ext/B/t/f_map.t converted to optreeCheck()s
ext/B/t/f_sort optree test raw material
ext/B/t/f_sort.t optree test raw material
ext/B/t/lint.t See if B::Lint works
ext/B/Todo Compiler backend Todo list
ext/B/t/OptreeCheck.pm optree comparison tool
ext/B/t/optree_check.t test OptreeCheck apparatus
ext/B/t/optree_concise.t more B::Concise tests
ext/B/t/optree_constants.t B::Concise rendering of optimized constant subs
ext/B/t/optree_misc.t misc optree tests
ext/B/t/optree_samples.t various basic codes: if for while
ext/B/t/optree_sort.t inplace sort optimization regression
ext/B/t/optree_specials.t BEGIN, END, etc code
ext/B/t/optree_varinit.t my,our,local var init optimization
ext/B/t/o.t See if O works
ext/B/t/pluglib/B/Lint/Plugin/Test.pm See if B::Lint works
ext/B/t/pragma.t See if user pragmas work.
ext/B/t/showlex.t See if B::ShowLex works
ext/B/t/stash.t See if B::Stash works
ext/B/t/terse.t See if B::Terse works
ext/B/t/xref.t See if B::Xref works
ext/B/typemap Compiler backend interface types
ext/ByteLoader/bytecode.h Bytecode header for bytecode loader
ext/ByteLoader/ByteLoader.pm Bytecode loader Perl module
ext/ByteLoader/ByteLoader.xs Bytecode loader external subroutines
ext/ByteLoader/byterun.c Runtime support for bytecode loader
ext/ByteLoader/byterun.h Header for byterun.c
ext/ByteLoader/hints/sunos.pl Hints for named architecture
ext/ByteLoader/Makefile.PL Bytecode loader makefile writer
ext/Cwd/Changes Cwd extension Changelog
ext/Cwd/Cwd.xs Cwd extension external subroutines
ext/Cwd/Makefile.PL Cwd extension makefile maker
ext/Cwd/t/cwd.t See if Cwd works
ext/Cwd/t/taint.t See if Cwd works with taint
ext/Cwd/t/win32.t See if Cwd works on Win32
ext/Data/Dumper/Changes Data pretty printer, changelog
ext/Data/Dumper/Dumper.pm Data pretty printer, module
ext/Data/Dumper/Dumper.xs Data pretty printer, externals
ext/Data/Dumper/Makefile.PL Data pretty printer, makefile writer
ext/Data/Dumper/t/bless.t See if Data::Dumper works
ext/Data/Dumper/t/bugs.t See if Data::Dumper works
ext/Data/Dumper/t/dumper.t See if Data::Dumper works
ext/Data/Dumper/t/freezer.t See if $Data::Dumper::Freezer works
ext/Data/Dumper/Todo Data pretty printer, futures
ext/Data/Dumper/t/overload.t See if Data::Dumper works for overloaded data
ext/Data/Dumper/t/pair.t See if Data::Dumper pair separator works
ext/DB_File/Changes Berkeley DB extension change log
ext/DB_File/DB_File_BS Berkeley DB extension mkbootstrap fodder
ext/DB_File/DB_File.pm Berkeley DB extension Perl module
ext/DB_File/DB_File.xs Berkeley DB extension external subroutines
ext/DB_File/dbinfo Berkeley DB database version checker
ext/DB_File/hints/dynixptx.pl Hint for DB_File for named architecture
ext/DB_File/hints/sco.pl Hint for DB_File for named architecture
ext/DB_File/Makefile.PL Berkeley DB extension makefile writer
ext/DB_File/t/db-btree.t See if DB_File works
ext/DB_File/t/db-hash.t See if DB_File works
ext/DB_File/t/db-recno.t See if DB_File works
ext/DB_File/typemap Berkeley DB extension interface types
ext/DB_File/version.c Berkeley DB extension interface version check
ext/Devel/DProf/Changes Perl code profiler changelog
ext/Devel/DProf/DProf.pm Perl code profiler
ext/Devel/DProf/DProf.xs Perl code profiler
ext/Devel/DProf/Makefile.PL Perl code profiler makefile writer
ext/Devel/DProf/t/DProf.t Perl code profiler
ext/Devel/DProf/Todo Perl code profiler todo list
ext/Devel/Peek/Changes Data debugging tool, changelog
ext/Devel/Peek/Makefile.PL Data debugging tool, makefile writer
ext/Devel/Peek/Peek.pm Data debugging tool, module and pod
ext/Devel/Peek/Peek.xs Data debugging tool, externals
ext/Devel/Peek/t/Peek.t See if Devel::Peek works
ext/Devel/PPPort/apicheck_c.PL Devel::PPPort apicheck generator
ext/Devel/PPPort/Changes Devel::PPPort changes
ext/Devel/PPPort/devel/buildperl.pl Devel::PPPort perl version builder
ext/Devel/PPPort/devel/devtools.pl Devel::PPPort development utilities
ext/Devel/PPPort/devel/mkapidoc.sh Devel::PPPort apidoc collector
ext/Devel/PPPort/devel/mktodo Devel::PPPort baseline/todo generator
ext/Devel/PPPort/devel/mktodo.pl Devel::PPPort baseline/todo generator
ext/Devel/PPPort/devel/regenerate Devel::PPPort API re-generator
ext/Devel/PPPort/devel/scanprov Devel::PPPort provided API scanner
ext/Devel/PPPort/HACKERS Devel::PPPort hackers documentation
ext/Devel/PPPort/Makefile.PL Devel::PPPort makefile writer
ext/Devel/PPPort/MANIFEST.SKIP Devel::PPPort Manifest skip specs
ext/Devel/PPPort/mktests.PL Devel::PPPort test file writer
ext/Devel/PPPort/module2.c Devel::PPPort test file
ext/Devel/PPPort/module3.c Devel::PPPort test file
ext/Devel/PPPort/parts/apicheck.pl Devel::PPPort apicheck generator
ext/Devel/PPPort/parts/apidoc.fnc Devel::PPPort Perl API listing
ext/Devel/PPPort/parts/base/5004000 Devel::PPPort baseline todo file
ext/Devel/PPPort/parts/base/5004010 Devel::PPPort baseline todo file
ext/Devel/PPPort/parts/base/5004020 Devel::PPPort baseline todo file
ext/Devel/PPPort/parts/base/5004030 Devel::PPPort baseline todo file
ext/Devel/PPPort/parts/base/5004040 Devel::PPPort baseline todo file
ext/Devel/PPPort/parts/base/5004050 Devel::PPPort baseline todo file
ext/Devel/PPPort/parts/base/5005000 Devel::PPPort baseline todo file
ext/Devel/PPPort/parts/base/5005010 Devel::PPPort baseline todo file
ext/Devel/PPPort/parts/base/5005020 Devel::PPPort baseline todo file
ext/Devel/PPPort/parts/base/5005030 Devel::PPPort baseline todo file
ext/Devel/PPPort/parts/base/5005040 Devel::PPPort baseline todo file
ext/Devel/PPPort/parts/base/5006000 Devel::PPPort baseline todo file
ext/Devel/PPPort/parts/base/5006001 Devel::PPPort baseline todo file
ext/Devel/PPPort/parts/base/5006002 Devel::PPPort baseline todo file
ext/Devel/PPPort/parts/base/5007000 Devel::PPPort baseline todo file
ext/Devel/PPPort/parts/base/5007001 Devel::PPPort baseline todo file
ext/Devel/PPPort/parts/base/5007002 Devel::PPPort baseline todo file
ext/Devel/PPPort/parts/base/5007003 Devel::PPPort baseline todo file
ext/Devel/PPPort/parts/base/5008000 Devel::PPPort baseline todo file
ext/Devel/PPPort/parts/base/5008001 Devel::PPPort baseline todo file
ext/Devel/PPPort/parts/base/5008002 Devel::PPPort baseline todo file
ext/Devel/PPPort/parts/base/5008003 Devel::PPPort baseline todo file
ext/Devel/PPPort/parts/base/5008004 Devel::PPPort baseline todo file
ext/Devel/PPPort/parts/base/5008005 Devel::PPPort baseline todo file
ext/Devel/PPPort/parts/base/5008006 Devel::PPPort baseline todo file
ext/Devel/PPPort/parts/base/5008007 Devel::PPPort baseline todo file
ext/Devel/PPPort/parts/base/5008008 Devel::PPPort baseline todo file
ext/Devel/PPPort/parts/base/5009000 Devel::PPPort baseline todo file
ext/Devel/PPPort/parts/base/5009001 Devel::PPPort baseline todo file
ext/Devel/PPPort/parts/base/5009002 Devel::PPPort baseline todo file
ext/Devel/PPPort/parts/base/5009003 Devel::PPPort baseline todo file
ext/Devel/PPPort/parts/base/5009004 Devel::PPPort baseline todo file
ext/Devel/PPPort/parts/base/5009005 Devel::PPPort baseline todo file
ext/Devel/PPPort/parts/base/5010000 Devel::PPPort baseline todo file
ext/Devel/PPPort/parts/base/5011000 Devel::PPPort baseline todo file
ext/Devel/PPPort/parts/embed.fnc Devel::PPPort Perl API listing
ext/Devel/PPPort/parts/inc/call Devel::PPPort include
ext/Devel/PPPort/parts/inc/cop Devel::PPPort include
ext/Devel/PPPort/parts/inc/exception Devel::PPPort include
ext/Devel/PPPort/parts/inc/format Devel::PPPort include
ext/Devel/PPPort/parts/inc/grok Devel::PPPort include
ext/Devel/PPPort/parts/inc/limits Devel::PPPort include
ext/Devel/PPPort/parts/inc/magic Devel::PPPort include
ext/Devel/PPPort/parts/inc/memory Devel::PPPort include
ext/Devel/PPPort/parts/inc/misc Devel::PPPort include
ext/Devel/PPPort/parts/inc/mPUSH Devel::PPPort include
ext/Devel/PPPort/parts/inc/MY_CXT Devel::PPPort include
ext/Devel/PPPort/parts/inc/newCONSTSUB Devel::PPPort include
ext/Devel/PPPort/parts/inc/newRV Devel::PPPort include
ext/Devel/PPPort/parts/inc/newSVpv Devel::PPPort include
ext/Devel/PPPort/parts/inc/podtest Devel::PPPort include
ext/Devel/PPPort/parts/inc/ppphbin Devel::PPPort include
ext/Devel/PPPort/parts/inc/ppphdoc Devel::PPPort include
ext/Devel/PPPort/parts/inc/ppphtest Devel::PPPort include
ext/Devel/PPPort/parts/inc/pvs Devel::PPPort include
ext/Devel/PPPort/parts/inc/shared_pv Devel::PPPort include
ext/Devel/PPPort/parts/inc/snprintf Devel::PPPort include
ext/Devel/PPPort/parts/inc/strlfuncs Devel::PPPort include
ext/Devel/PPPort/parts/inc/SvPV Devel::PPPort include
ext/Devel/PPPort/parts/inc/SvREFCNT Devel::PPPort include
ext/Devel/PPPort/parts/inc/Sv_set Devel::PPPort include
ext/Devel/PPPort/parts/inc/sv_xpvf Devel::PPPort include
ext/Devel/PPPort/parts/inc/threads Devel::PPPort include
ext/Devel/PPPort/parts/inc/uv Devel::PPPort include
ext/Devel/PPPort/parts/inc/variables Devel::PPPort include
ext/Devel/PPPort/parts/inc/version Devel::PPPort include
ext/Devel/PPPort/parts/inc/warn Devel::PPPort include
ext/Devel/PPPort/parts/ppport.fnc Devel::PPPort API listing
ext/Devel/PPPort/parts/ppptools.pl Devel::PPPort various utilities
ext/Devel/PPPort/parts/todo/5004000 Devel::PPPort todo file
ext/Devel/PPPort/parts/todo/5004010 Devel::PPPort todo file
ext/Devel/PPPort/parts/todo/5004020 Devel::PPPort todo file
ext/Devel/PPPort/parts/todo/5004030 Devel::PPPort todo file
ext/Devel/PPPort/parts/todo/5004040 Devel::PPPort todo file
ext/Devel/PPPort/parts/todo/5004050 Devel::PPPort todo file
ext/Devel/PPPort/parts/todo/5005000 Devel::PPPort todo file
ext/Devel/PPPort/parts/todo/5005010 Devel::PPPort todo file
ext/Devel/PPPort/parts/todo/5005020 Devel::PPPort todo file
ext/Devel/PPPort/parts/todo/5005030 Devel::PPPort todo file
ext/Devel/PPPort/parts/todo/5005040 Devel::PPPort todo file
ext/Devel/PPPort/parts/todo/5006000 Devel::PPPort todo file
ext/Devel/PPPort/parts/todo/5006001 Devel::PPPort todo file
ext/Devel/PPPort/parts/todo/5006002 Devel::PPPort todo file
ext/Devel/PPPort/parts/todo/5007000 Devel::PPPort todo file
ext/Devel/PPPort/parts/todo/5007001 Devel::PPPort todo file
ext/Devel/PPPort/parts/todo/5007002 Devel::PPPort todo file
ext/Devel/PPPort/parts/todo/5007003 Devel::PPPort todo file
ext/Devel/PPPort/parts/todo/5008000 Devel::PPPort todo file
ext/Devel/PPPort/parts/todo/5008001 Devel::PPPort todo file
ext/Devel/PPPort/parts/todo/5008002 Devel::PPPort todo file
ext/Devel/PPPort/parts/todo/5008003 Devel::PPPort todo file
ext/Devel/PPPort/parts/todo/5008004 Devel::PPPort todo file
ext/Devel/PPPort/parts/todo/5008005 Devel::PPPort todo file
ext/Devel/PPPort/parts/todo/5008006 Devel::PPPort todo file
ext/Devel/PPPort/parts/todo/5008007 Devel::PPPort todo file
ext/Devel/PPPort/parts/todo/5008008 Devel::PPPort todo file
ext/Devel/PPPort/parts/todo/5009000 Devel::PPPort todo file
ext/Devel/PPPort/parts/todo/5009001 Devel::PPPort todo file
ext/Devel/PPPort/parts/todo/5009002 Devel::PPPort todo file
ext/Devel/PPPort/parts/todo/5009003 Devel::PPPort todo file
ext/Devel/PPPort/parts/todo/5009004 Devel::PPPort todo file
ext/Devel/PPPort/parts/todo/5009005 Devel::PPPort todo file
ext/Devel/PPPort/parts/todo/5010000 Devel::PPPort todo file
ext/Devel/PPPort/parts/todo/5011000 Devel::PPPort todo file
ext/Devel/PPPort/ppport_h.PL Devel::PPPort ppport.h writer
ext/Devel/PPPort/PPPort_pm.PL Devel::PPPort PPPort.pm writer
ext/Devel/PPPort/PPPort.xs Devel::PPPort dummy PPPort.xs
ext/Devel/PPPort/PPPort_xs.PL Devel::PPPort RealPPPort.xs writer
ext/Devel/PPPort/README Devel::PPPort Readme
ext/Devel/PPPort/soak Devel::PPPort Test Harness to run under various Perls
ext/Devel/PPPort/t/call.t Devel::PPPort test file
ext/Devel/PPPort/t/cop.t Devel::PPPort test file
ext/Devel/PPPort/t/exception.t Devel::PPPort test file
ext/Devel/PPPort/t/format.t Devel::PPPort test file
ext/Devel/PPPort/t/grok.t Devel::PPPort test file
ext/Devel/PPPort/t/limits.t Devel::PPPort test file
ext/Devel/PPPort/t/magic.t Devel::PPPort test file
ext/Devel/PPPort/t/memory.t Devel::PPPort test file
ext/Devel/PPPort/t/misc.t Devel::PPPort test file
ext/Devel/PPPort/t/mPUSH.t Devel::PPPort test file
ext/Devel/PPPort/t/MY_CXT.t Devel::PPPort test file
ext/Devel/PPPort/t/newCONSTSUB.t Devel::PPPort test file
ext/Devel/PPPort/t/newRV.t Devel::PPPort test file
ext/Devel/PPPort/t/newSVpv.t Devel::PPPort test file
ext/Devel/PPPort/TODO Devel::PPPort Todo
ext/Devel/PPPort/t/podtest.t Devel::PPPort test file
ext/Devel/PPPort/t/ppphtest.t Devel::PPPort test file
ext/Devel/PPPort/t/pvs.t Devel::PPPort test file
ext/Devel/PPPort/t/shared_pv.t Devel::PPPort test file
ext/Devel/PPPort/t/snprintf.t Devel::PPPort test file
ext/Devel/PPPort/t/strlfuncs.t Devel::PPPort test file
ext/Devel/PPPort/t/SvPV.t Devel::PPPort test file
ext/Devel/PPPort/t/SvREFCNT.t Devel::PPPort test file
ext/Devel/PPPort/t/Sv_set.t Devel::PPPort test file
ext/Devel/PPPort/t/sv_xpvf.t Devel::PPPort test file
ext/Devel/PPPort/t/testutil.pl Devel::PPPort test utilities
ext/Devel/PPPort/t/threads.t Devel::PPPort test file
ext/Devel/PPPort/t/uv.t Devel::PPPort test file
ext/Devel/PPPort/t/variables.t Devel::PPPort test file
ext/Devel/PPPort/t/warn.t Devel::PPPort test file
ext/Devel/PPPort/typemap Devel::PPPort Typemap
ext/Digest/MD5/Changes Digest::MD5 extension changes
ext/Digest/MD5/hints/dec_osf.pl Hints for named architecture
ext/Digest/MD5/hints/irix_6.pl Hints for named architecture
ext/Digest/MD5/hints/MacOS.pl Hints for named architecture
ext/Digest/MD5/Makefile.PL Digest::MD5 extension makefile writer
ext/Digest/MD5/MD5.pm Digest::MD5 extension
ext/Digest/MD5/MD5.xs Digest::MD5 extension
ext/Digest/MD5/README Digest::MD5 extension Readme
ext/Digest/MD5/t/align.t See if Digest::MD5 extension works
ext/Digest/MD5/t/badfile.t See if Digest::MD5 extension works
ext/Digest/MD5/t/bits.t See if Digest::MD5 extension works
ext/Digest/MD5/t/clone.t See if Digest::MD5 extension works
ext/Digest/MD5/t/files.t See if Digest::MD5 extension works
ext/Digest/MD5/t/md5-aaa.t See if Digest::MD5 extension works
ext/Digest/MD5/t/utf8.t See if Digest::MD5 extension works
ext/Digest/MD5/typemap Digest::MD5 extension
ext/DynaLoader/dl_aix.xs AIX implementation
ext/DynaLoader/dl_beos.xs BeOS implementation
ext/DynaLoader/dl_dld.xs GNU dld style implementation
ext/DynaLoader/dl_dllload.xs S/390 dllload() style implementation
ext/DynaLoader/dl_dlopen.xs BSD/SunOS4&5 dlopen() style implementation
ext/DynaLoader/dl_dyld.xs NeXT/Apple dyld implementation
ext/DynaLoader/dl_hpux.xs HP-UX implementation
ext/DynaLoader/dl_mac.xs MacOS implementation
ext/DynaLoader/dl_mpeix.xs MPE/iX implementation
ext/DynaLoader/dl_next.xs NeXT implementation
ext/DynaLoader/dl_none.xs Stub implementation
ext/DynaLoader/dlutils.c Dynamic loader utilities for dl_*.xs files
ext/DynaLoader/dl_vmesa.xs VM/ESA implementation
ext/DynaLoader/dl_vms.xs VMS implementation
ext/DynaLoader/DynaLoader_pm.PL Dynamic Loader perl module
ext/DynaLoader/hints/aix.pl Hint for DynaLoader for named architecture
ext/DynaLoader/hints/gnukfreebsd.pl Hint for DynaLoader for named architecture
ext/DynaLoader/hints/gnuknetbsd.pl Hint for DynaLoader for named architecture
ext/DynaLoader/hints/linux.pl Hint for DynaLoader for named architecture
ext/DynaLoader/hints/netbsd.pl Hint for DynaLoader for named architecture
ext/DynaLoader/hints/openbsd.pl Hint for DynaLoader for named architecture
ext/DynaLoader/Makefile.PL Dynamic Loader makefile writer
ext/DynaLoader/README Dynamic Loader notes and intro
ext/DynaLoader/t/DynaLoader.t See if DynaLoader works
ext/DynaLoader/t/XSLoader.t See if XSLoader works
ext/DynaLoader/XSLoader_pm.PL Simple XS Loader perl module
ext/Encode/AUTHORS List of authors
ext/Encode/bin/enc2xs Encode module generator
ext/Encode/bin/piconv iconv by perl
ext/Encode/bin/ucm2table Table Generator for testing
ext/Encode/bin/ucmlint A UCM Lint utility
ext/Encode/bin/ucmsort A UCM sort utility
ext/Encode/bin/unidump Unicode Dump like hexdump(1)
ext/Encode/Byte/Byte.pm Encode extension
ext/Encode/Byte/Makefile.PL Encode extension
ext/Encode/Changes Change Log
ext/Encode/CN/CN.pm Encode extension
ext/Encode/CN/Makefile.PL Encode extension
ext/Encode/EBCDIC/EBCDIC.pm Encode extension
ext/Encode/EBCDIC/Makefile.PL Encode extension
ext/Encode/encengine.c Encode extension
ext/Encode/Encode/Changes.e2x Skeleton file for enc2xs
ext/Encode/Encode/ConfigLocal_PM.e2x Skeleton file for enc2xs
ext/Encode/Encode/encode.h Encode extension header file
ext/Encode/Encode/Makefile_PL.e2x Skeleton file for enc2xs
ext/Encode/Encode.pm Mother of all Encode extensions
ext/Encode/Encode/_PM.e2x Skeleton file for enc2xs
ext/Encode/Encode/README.e2x Skeleton file for enc2xs
ext/Encode/Encode/_T.e2x Skeleton file for enc2xs
ext/Encode/Encode.xs Encode extension
ext/Encode/encoding.pm Perl Pragmatic Module
ext/Encode/JP/JP.pm Encode extension
ext/Encode/JP/Makefile.PL Encode extension
ext/Encode/KR/KR.pm Encode extension
ext/Encode/KR/Makefile.PL Encode extension
ext/Encode/lib/Encode/Alias.pm Encode extension
ext/Encode/lib/Encode/CJKConstants.pm Encode extension
ext/Encode/lib/Encode/CN/HZ.pm Encode extension
ext/Encode/lib/Encode/Config.pm Encode configuration module
ext/Encode/lib/Encode/Encoder.pm OO Encoder
ext/Encode/lib/Encode/Encoding.pm Encode extension
ext/Encode/lib/Encode/GSM0338.pm Encode extension
ext/Encode/lib/Encode/Guess.pm Encode Extension
ext/Encode/lib/Encode/JP/H2Z.pm Encode extension
ext/Encode/lib/Encode/JP/JIS7.pm Encode extension
ext/Encode/lib/Encode/KR/2022_KR.pm Encode extension
ext/Encode/lib/Encode/MIME/Header/ISO_2022_JP.pm Encode extension
ext/Encode/lib/Encode/MIME/Header.pm Encode extension
ext/Encode/lib/Encode/MIME/Name.pm Encode extension
ext/Encode/lib/Encode/PerlIO.pod Documents for Encode & PerlIO
ext/Encode/lib/Encode/Supported.pod Documents for supported encodings
ext/Encode/lib/Encode/Unicode/UTF7.pm Encode extension
ext/Encode/Makefile.PL Encode extension makefile writer
ext/Encode/README Encode extension
ext/Encode/Symbol/Makefile.PL Encode extension
ext/Encode/Symbol/Symbol.pm Encode extension
ext/Encode/t/Aliases.t test script
ext/Encode/t/at-cn.t test script
ext/Encode/t/at-tw.t test script
ext/Encode/t/big5-eten.enc test data
ext/Encode/t/big5-eten.utf test data
ext/Encode/t/big5-hkscs.enc test data
ext/Encode/t/big5-hkscs.utf test data
ext/Encode/t/CJKT.t test script
ext/Encode/t/enc_data.t test script for utf8 DATA
ext/Encode/t/enc_eucjp.t test script
ext/Encode/t/enc_module.enc test data for t/enc_module.t
ext/Encode/t/enc_module.t test script
ext/Encode/t/Encoder.t test script
ext/Encode/t/Encode.t test script
ext/Encode/t/encoding.t test script
ext/Encode/t/enc_utf8.t test script
ext/Encode/t/fallback.t test script
ext/Encode/t/from_to.t test script
ext/Encode/t/gb2312.enc test data
ext/Encode/t/gb2312.utf test data
ext/Encode/t/grow.t test script
ext/Encode/t/gsm0338.t test script
ext/Encode/t/guess.t test script
ext/Encode/t/jis7-fallback.t test script
ext/Encode/t/jisx0201.enc test data
ext/Encode/t/jisx0201.utf test data
ext/Encode/t/jisx0208.enc test data
ext/Encode/t/jisx0208.utf test data
ext/Encode/t/jisx0212.enc test data
ext/Encode/t/jisx0212.utf test data
ext/Encode/t/jperl.t test script
ext/Encode/t/ksc5601.enc test data
ext/Encode/t/ksc5601.utf test data
ext/Encode/t/mime_header_iso2022jp.t test script
ext/Encode/t/mime-header.t test script
ext/Encode/t/mime-name.t test script
ext/Encode/t/Mod_EUCJP.pm module that t/enc_module.enc uses
ext/Encode/t/perlio.t test script
ext/Encode/t/rt.pl test script
ext/Encode/t/unibench.pl benchmark script
ext/Encode/t/Unicode.t test script
ext/Encode/t/utf8strict.t test script
ext/Encode/TW/Makefile.PL Encode extension
ext/Encode/TW/TW.pm Encode extension
ext/Encode/ucm/8859-10.ucm Unicode Character Map
ext/Encode/ucm/8859-11.ucm Unicode Character Map
ext/Encode/ucm/8859-13.ucm Unicode Character Map
ext/Encode/ucm/8859-14.ucm Unicode Character Map
ext/Encode/ucm/8859-15.ucm Unicode Character Map
ext/Encode/ucm/8859-16.ucm Unicode Character Map
ext/Encode/ucm/8859-1.ucm Unicode Character Map
ext/Encode/ucm/8859-2.ucm Unicode Character Map
ext/Encode/ucm/8859-3.ucm Unicode Character Map
ext/Encode/ucm/8859-4.ucm Unicode Character Map
ext/Encode/ucm/8859-5.ucm Unicode Character Map
ext/Encode/ucm/8859-6.ucm Unicode Character Map
ext/Encode/ucm/8859-7.ucm Unicode Character Map
ext/Encode/ucm/8859-8.ucm Unicode Character Map
ext/Encode/ucm/8859-9.ucm Unicode Character Map
ext/Encode/ucm/adobeStdenc.ucm Unicode Character Map
ext/Encode/ucm/adobeSymbol.ucm Unicode Character Map
ext/Encode/ucm/adobeZdingbat.ucm Unicode Character Map
ext/Encode/ucm/ascii.ucm Unicode Character Map
ext/Encode/ucm/big5-eten.ucm Unicode Character Map
ext/Encode/ucm/big5-hkscs.ucm Unicode Character Map
ext/Encode/ucm/cp037.ucm Unicode Character Map
ext/Encode/ucm/cp1006.ucm Unicode Character Map
ext/Encode/ucm/cp1026.ucm Unicode Character Map
ext/Encode/ucm/cp1047.ucm Unicode Character Map
ext/Encode/ucm/cp1250.ucm Unicode Character Map
ext/Encode/ucm/cp1251.ucm Unicode Character Map
ext/Encode/ucm/cp1252.ucm Unicode Character Map
ext/Encode/ucm/cp1253.ucm Unicode Character Map
ext/Encode/ucm/cp1254.ucm Unicode Character Map
ext/Encode/ucm/cp1255.ucm Unicode Character Map
ext/Encode/ucm/cp1256.ucm Unicode Character Map
ext/Encode/ucm/cp1257.ucm Unicode Character Map
ext/Encode/ucm/cp1258.ucm Unicode Character Map
ext/Encode/ucm/cp424.ucm Unicode Character Map
ext/Encode/ucm/cp437.ucm Unicode Character Map
ext/Encode/ucm/cp500.ucm Unicode Character Map
ext/Encode/ucm/cp737.ucm Unicode Character Map
ext/Encode/ucm/cp775.ucm Unicode Character Map
ext/Encode/ucm/cp850.ucm Unicode Character Map
ext/Encode/ucm/cp852.ucm Unicode Character Map
ext/Encode/ucm/cp855.ucm Unicode Character Map
ext/Encode/ucm/cp856.ucm Unicode Character Map
ext/Encode/ucm/cp857.ucm Unicode Character Map
ext/Encode/ucm/cp858.ucm Unicode Character Map
ext/Encode/ucm/cp860.ucm Unicode Character Map
ext/Encode/ucm/cp861.ucm Unicode Character Map
ext/Encode/ucm/cp862.ucm Unicode Character Map
ext/Encode/ucm/cp863.ucm Unicode Character Map
ext/Encode/ucm/cp864.ucm Unicode Character Map
ext/Encode/ucm/cp865.ucm Unicode Character Map
ext/Encode/ucm/cp866.ucm Unicode Character Map
ext/Encode/ucm/cp869.ucm Unicode Character Map
ext/Encode/ucm/cp874.ucm Unicode Character Map
ext/Encode/ucm/cp875.ucm Unicode Character Map
ext/Encode/ucm/cp932.ucm Unicode Character Map
ext/Encode/ucm/cp936.ucm Unicode Character Map
ext/Encode/ucm/cp949.ucm Unicode Character Map
ext/Encode/ucm/cp950.ucm Unicode Character Map
ext/Encode/ucm/ctrl.ucm Unicode Character Map
ext/Encode/ucm/dingbats.ucm Unicode Character Map
ext/Encode/ucm/euc-cn.ucm Unicode Character Map
ext/Encode/ucm/euc-jp.ucm Unicode Character Map
ext/Encode/ucm/euc-kr.ucm Unicode Character Map
ext/Encode/ucm/gb12345.ucm Unicode Character Map
ext/Encode/ucm/gb2312.ucm Unicode Character Map
ext/Encode/ucm/hp-roman8.ucm Unicode Character Map
ext/Encode/ucm/ir-165.ucm Unicode Character Map
ext/Encode/ucm/jis0201.ucm Unicode Character Map
ext/Encode/ucm/jis0208.ucm Unicode Character Map
ext/Encode/ucm/jis0212.ucm Unicode Character Map
ext/Encode/ucm/johab.ucm Unicode Character Map
ext/Encode/ucm/koi8-f.ucm Unicode Character Map
ext/Encode/ucm/koi8-r.ucm Unicode Character Map
ext/Encode/ucm/koi8-u.ucm Unicode Character Map
ext/Encode/ucm/ksc5601.ucm Unicode Character Map
ext/Encode/ucm/macArabic.ucm Unicode Character Map
ext/Encode/ucm/macCentEuro.ucm Unicode Character Map
ext/Encode/ucm/macChinsimp.ucm Unicode Character Map
ext/Encode/ucm/macChintrad.ucm Unicode Character Map
ext/Encode/ucm/macCroatian.ucm Unicode Character Map
ext/Encode/ucm/macCyrillic.ucm Unicode Character Map
ext/Encode/ucm/macDingbats.ucm Unicode Character Map
ext/Encode/ucm/macFarsi.ucm Unicode Character Map
ext/Encode/ucm/macGreek.ucm Unicode Character Map
ext/Encode/ucm/macHebrew.ucm Unicode Character Map
ext/Encode/ucm/macIceland.ucm Unicode Character Map
ext/Encode/ucm/macJapanese.ucm Unicode Character Map
ext/Encode/ucm/macKorean.ucm Unicode Character Map
ext/Encode/ucm/macRoman.ucm Unicode Character Map
ext/Encode/ucm/macROMnn.ucm Unicode Character Map
ext/Encode/ucm/macRUMnn.ucm Unicode Character Map
ext/Encode/ucm/macSami.ucm Unicode Character Map
ext/Encode/ucm/macSymbol.ucm Unicode Character Map
ext/Encode/ucm/macThai.ucm Unicode Character Map
ext/Encode/ucm/macTurkish.ucm Unicode Character Map
ext/Encode/ucm/macUkraine.ucm Unicode Character Map
ext/Encode/ucm/nextstep.ucm Unicode Character Map
ext/Encode/ucm/null.ucm Unicode Character Map
ext/Encode/ucm/posix-bc.ucm Unicode Character Map
ext/Encode/ucm/shiftjis.ucm Unicode Character Map
ext/Encode/ucm/symbol.ucm Unicode Character Map
ext/Encode/ucm/viscii.ucm Unicode Character Map
ext/Encode/Unicode/Makefile.PL Encode extension
ext/Encode/Unicode/Unicode.pm Encode extension
ext/Encode/Unicode/Unicode.xs Encode extension
EXTERN.h Included before foreign .h files
ext/Errno/ChangeLog Errno changes
ext/Errno/Errno_pm.PL Errno perl module create script
ext/Errno/Makefile.PL Errno extension makefile writer
ext/Errno/t/Errno.t See if Errno works
ext/Fcntl/Fcntl.pm Fcntl extension Perl module
ext/Fcntl/Fcntl.xs Fcntl extension external subroutines
ext/Fcntl/Makefile.PL Fcntl extension makefile writer
ext/Fcntl/t/fcntl.t See if Fcntl works
ext/Fcntl/t/mode.t See if S_ISREG() and S_ISDIR() work
ext/Fcntl/t/syslfs.t See if large files work for sysio
ext/File/Glob/bsd_glob.c File::Glob extension run time code
ext/File/Glob/bsd_glob.h File::Glob extension header file
ext/File/Glob/Changes File::Glob extension changelog
ext/File/Glob/Glob.pm File::Glob extension module
ext/File/Glob/Glob.xs File::Glob extension external subroutines
ext/File/Glob/Makefile.PL File::Glob extension makefile writer
ext/File/Glob/t/basic.t See if File::Glob works
ext/File/Glob/t/case.t See if File::Glob works
ext/File/Glob/t/global.t See if File::Glob works
ext/File/Glob/TODO File::Glob extension todo list
ext/File/Glob/t/taint.t See if File::Glob works
ext/Filter/t/call.t See if Filter::Util::Call works
ext/Filter/Util/Call/Call.pm Filter::Util::Call extension module
ext/Filter/Util/Call/Call.xs Filter::Util::Call extension external subroutines
ext/Filter/Util/Call/Makefile.PL Filter::Util::Call extension makefile writer
ext/GDBM_File/GDBM_File.pm GDBM extension Perl module
ext/GDBM_File/GDBM_File.xs GDBM extension external subroutines
ext/GDBM_File/hints/sco.pl Hint for GDBM_File for named architecture
ext/GDBM_File/Makefile.PL GDBM extension makefile writer
ext/GDBM_File/t/gdbm.t See if GDBM_File works
ext/GDBM_File/typemap GDBM extension interface types
ext/Hash/Util/Changes Change history of Hash::Util
ext/Hash/Util/lib/Hash/Util.pm Hash::Util
ext/Hash/Util/Makefile.PL Makefile for Hash::Util
ext/Hash/Util/t/Util.t See if Hash::Util works
ext/Hash/Util/Util.xs XS bits of Hash::Util
ext/I18N/Langinfo/fallback/const-c.inc I18N::Langinfo
ext/I18N/Langinfo/fallback/const-xs.inc I18N::Langinfo
ext/I18N/Langinfo/Langinfo.pm I18N::Langinfo
ext/I18N/Langinfo/Langinfo.xs I18N::Langinfo
ext/I18N/Langinfo/Makefile.PL I18N::Langinfo
ext/I18N/Langinfo/t/Langinfo.t See whether I18N::Langinfo works
ext/IO/ChangeLog IO perl module change log
ext/IO/hints/sco.pl Hint for IO for named architecture
ext/IO/IO.pm Top-level interface to IO::* classes
ext/IO/IO.xs IO extension external subroutines
ext/IO/lib/IO/Dir.pm IO directory reading package
ext/IO/lib/IO/File.pm IO file handle package
ext/IO/lib/IO/Handle.pm IO base handle package
ext/IO/lib/IO/Pipe.pm IO pipe package
ext/IO/lib/IO/Poll.pm IO system poll() interface
ext/IO/lib/IO/Seekable.pm IO methods for seekable handles
ext/IO/lib/IO/Select.pm IO system select() interface
ext/IO/lib/IO/Socket/INET.pm IO INET specific socket methods
ext/IO/lib/IO/Socket.pm IO socket handle package
ext/IO/lib/IO/Socket/UNIX.pm IO UNIX specific socket methods
ext/IO/Makefile.PL IO extension makefile writer
ext/IO/poll.c IO poll() emulation using select()
ext/IO/poll.h IO poll() emulation using select()
ext/IO/README IO extension maintenance notice
ext/IO/t/io_const.t See if constants from IO work
ext/IO/t/io_dir.t See if directory-related methods from IO work
ext/IO/t/io_dup.t See if dup()-related methods from IO work
ext/IO/t/io_file.t See if binmode()-related methods on IO::File work
ext/IO/t/io_linenum.t See if I/O line numbers are tracked correctly
ext/IO/t/io_multihomed.t See if INET sockets work with multi-homed hosts
ext/IO/t/io_pipe.t See if pipe()-related methods from IO work
ext/IO/t/io_poll.t See if poll()-related methods from IO work
ext/IO/t/io_sel.t See if select()-related methods from IO work
ext/IO/t/io_sock.t See if INET socket-related methods from IO work
ext/IO/t/IO.t See if IO works
ext/IO/t/io_taint.t See if the untaint method from IO works
ext/IO/t/io_tell.t See if seek()/tell()-related methods from IO work
ext/IO/t/io_udp.t See if UDP socket-related methods from IO work
ext/IO/t/io_unix.t See if UNIX socket-related methods from IO work
ext/IO/t/io_utf8.t See if perlio opens work
ext/IO/t/io_xs.t See if XSUB methods from IO work
ext/IPC/SysV/Changes IPC::SysV changes
ext/IPC/SysV/hints/cygwin.pl Hint for IPC::SysV for named architecture
ext/IPC/SysV/hints/next_3.pl Hint for IPC::SysV for named architecture
ext/IPC/SysV/lib/IPC/Msg.pm IPC::SysV extension Perl module
ext/IPC/SysV/lib/IPC/Semaphore.pm IPC::SysV extension Perl module
ext/IPC/SysV/lib/IPC/SharedMem.pm IPC::SysV extension Perl module
ext/IPC/SysV/lib/IPC/SysV.pm IPC::SysV extension Perl module
ext/IPC/SysV/Makefile.PL IPC::SysV makefile writer
ext/IPC/SysV/MANIFEST.SKIP IPC::SysV manifest skip specs
ext/IPC/SysV/README IPC::SysV README
ext/IPC/SysV/regen.pl IPC::SysV file regeneration script
ext/IPC/SysV/SysV.xs IPC::SysV extension Perl module
ext/IPC/SysV/t/ipcsysv.t IPC::SysV test file
ext/IPC/SysV/t/msg.t IPC::SysV test file
ext/IPC/SysV/TODO IPC::SysV todo file
ext/IPC/SysV/t/podcov.t IPC::SysV test file
ext/IPC/SysV/t/pod.t IPC::SysV test file
ext/IPC/SysV/t/sem.t IPC::SysV test file
ext/IPC/SysV/t/shm.t IPC::SysV test file
ext/IPC/SysV/typemap IPC::SysV typemap
ext/List/Util/Changes Util extension
ext/List/Util/lib/List/Util.pm List::Util
ext/List/Util/lib/Scalar/Util.pm Scalar::Util
ext/List/Util/Makefile.PL Util extension
ext/List/Util/multicall.h Util extension
ext/List/Util/README Util extension
ext/List/Util/t/00version.t Scalar::Util
ext/List/Util/t/blessed.t Scalar::Util
ext/List/Util/t/dualvar.t Scalar::Util
ext/List/Util/t/first.t List::Util
ext/List/Util/t/isvstring.t Scalar::Util
ext/List/Util/t/lln.t Scalar::Util
ext/List/Util/t/maxstr.t List::Util
ext/List/Util/t/max.t List::Util
ext/List/Util/t/minstr.t List::Util
ext/List/Util/t/min.t List::Util
ext/List/Util/t/openhan.t Scalar::Util
ext/List/Util/t/p_blessed.t Scalar::Util
ext/List/Util/t/p_first.t List::Util
ext/List/Util/t/p_lln.t Scalar::Util
ext/List/Util/t/p_maxstr.t List::Util
ext/List/Util/t/p_max.t List::Util
ext/List/Util/t/p_minstr.t List::Util
ext/List/Util/t/p_min.t List::Util
ext/List/Util/t/p_openhan.t Scalar::Util
ext/List/Util/t/p_readonly.t Scalar::Util
ext/List/Util/t/p_reduce.t List::Util
ext/List/Util/t/p_refaddr.t Scalar::Util
ext/List/Util/t/p_reftype.t Scalar::Util
ext/List/Util/t/proto.t Scalar::Util
ext/List/Util/t/p_shuffle.t List::Util
ext/List/Util/t/p_sum.t List::Util
ext/List/Util/t/p_tainted.t Scalar::Util
ext/List/Util/t/readonly.t Scalar::Util
ext/List/Util/t/reduce.t List::Util
ext/List/Util/t/refaddr.t Scalar::Util
ext/List/Util/t/reftype.t Scalar::Util
ext/List/Util/t/shuffle.t List::Util
ext/List/Util/t/sum.t List::Util
ext/List/Util/t/tainted.t Scalar::Util
ext/List/Util/t/weak.t Scalar::Util
ext/List/Util/Util.xs Util extension
ext/MIME/Base64/Base64.pm MIME::Base64 extension
ext/MIME/Base64/Base64.xs MIME::Base64 extension
ext/MIME/Base64/Changes MIME::Base64 extension
ext/MIME/Base64/Makefile.PL MIME::Base64 extension
ext/MIME/Base64/QuotedPrint.pm MIME::Base64 extension
ext/MIME/Base64/README README for MIME::Base64
ext/MIME/Base64/t/base64.t See whether MIME::Base64 works
ext/MIME/Base64/t/quoted-print.t See whether MIME::QuotedPrint works
ext/MIME/Base64/t/unicode.t See whether MIME::Base64 works
ext/MIME/Base64/t/warn.t See whether MIME::Base64 works
ext/Module/Pluggable/lib/Devel/InnerPackage.pm Find inner packages
ext/Module/Pluggable/lib/Module/Pluggable/Object.pm Module::Pluggable
ext/Module/Pluggable/lib/Module/Pluggable.pm Module::Pluggable
ext/Module/Pluggable/Makefile.PL Module::Pluggable
ext/NDBM_File/hints/cygwin.pl Hint for NDBM_File for named architecture
ext/NDBM_File/hints/dec_osf.pl Hint for NDBM_File for named architecture
ext/NDBM_File/hints/dynixptx.pl Hint for NDBM_File for named architecture
ext/NDBM_File/hints/gnukfreebsd.pl Hint for NDBM_File for named architecture
ext/NDBM_File/hints/gnuknetbsd.pl Hint for NDBM_File for named architecture
ext/NDBM_File/hints/linux.pl Hint for NDBM_File for named architecture
ext/NDBM_File/hints/sco.pl Hint for NDBM_File for named architecture
ext/NDBM_File/hints/solaris.pl Hint for NDBM_File for named architecture
ext/NDBM_File/hints/svr4.pl Hint for NDBM_File for named architecture
ext/NDBM_File/Makefile.PL NDBM extension makefile writer
ext/NDBM_File/NDBM_File.pm NDBM extension Perl module
ext/NDBM_File/NDBM_File.xs NDBM extension external subroutines
ext/NDBM_File/t/ndbm.t See if NDBM_File works
ext/NDBM_File/typemap NDBM extension interface types
ext/ODBM_File/hints/cygwin.pl Hint for ODBM_File for named architecture
ext/ODBM_File/hints/dec_osf.pl Hint for ODBM_File for named architecture
ext/ODBM_File/hints/gnukfreebsd.pl Hint for NDBM_File for named architecture
ext/ODBM_File/hints/gnuknetbsd.pl Hint for NDBM_File for named architecture
ext/ODBM_File/hints/hpux.pl Hint for ODBM_File for named architecture
ext/ODBM_File/hints/linux.pl Hint for NDBM_File for named architecture
ext/ODBM_File/hints/sco.pl Hint for ODBM_File for named architecture
ext/ODBM_File/hints/solaris.pl Hint for ODBM_File for named architecture
ext/ODBM_File/hints/svr4.pl Hint for ODBM_File for named architecture
ext/ODBM_File/hints/ultrix.pl Hint for ODBM_File for named architecture
ext/ODBM_File/Makefile.PL ODBM extension makefile writer
ext/ODBM_File/ODBM_File.pm ODBM extension Perl module
ext/ODBM_File/ODBM_File.xs ODBM extension external subroutines
ext/ODBM_File/t/odbm.t See if ODBM_File works
ext/ODBM_File/typemap ODBM extension interface types
ext/Opcode/Makefile.PL Opcode extension makefile writer
ext/Opcode/Opcode.pm Opcode extension Perl module
ext/Opcode/Opcode.xs Opcode extension external subroutines
ext/Opcode/ops.pm "Pragma" form of Opcode extension Perl module
ext/Opcode/Safe.pm Safe extension Perl module
ext/Opcode/t/Opcode.t See if Opcode works
ext/Opcode/t/ops.t See if Opcode works
ext/PerlIO/encoding/encoding.pm PerlIO::encoding
ext/PerlIO/encoding/encoding.xs PerlIO::encoding
ext/PerlIO/encoding/Makefile.PL PerlIO::encoding makefile writer
ext/PerlIO/encoding/MANIFEST PerlIO::encoding list of files
ext/PerlIO/encoding/t/nolooping.t Tests for PerlIO::encoding
ext/PerlIO/scalar/Makefile.PL PerlIO layer for scalars
ext/PerlIO/scalar/scalar.pm PerlIO layer for scalars
ext/PerlIO/scalar/scalar.xs PerlIO layer for scalars
ext/PerlIO/t/encoding.t See if PerlIO encoding conversion works
ext/PerlIO/t/fail.t See if bad layers fail
ext/PerlIO/t/fallback.t See if PerlIO fallbacks work
ext/PerlIO/t/open.t See if PerlIO certain special opens work
ext/PerlIO/t/PerlIO.t See if PerlIO works
ext/PerlIO/t/scalar.t See if PerlIO::scalar works
ext/PerlIO/t/via.t See if PerlIO::via works
ext/PerlIO/via/hints/aix.pl Hint for PerlIO::via for named architecture
ext/PerlIO/via/Makefile.PL PerlIO layer for layers in perl
ext/PerlIO/via/via.pm PerlIO layer for layers in perl
ext/PerlIO/via/via.xs PerlIO layer for layers in perl
ext/POSIX/hints/bsdos.pl Hint for POSIX for named architecture
ext/POSIX/hints/dynixptx.pl Hint for POSIX for named architecture
ext/POSIX/hints/freebsd.pl Hint for POSIX for named architecture
ext/POSIX/hints/gnukfreebsd.pl Hint for POSIX for named architecture
ext/POSIX/hints/gnuknetbsd.pl Hint for POSIX for named architecture
ext/POSIX/hints/linux.pl Hint for POSIX for named architecture
ext/POSIX/hints/mint.pl Hint for POSIX for named architecture
ext/POSIX/hints/netbsd.pl Hint for POSIX for named architecture
ext/POSIX/hints/next_3.pl Hint for POSIX for named architecture
ext/POSIX/hints/openbsd.pl Hint for POSIX for named architecture
ext/POSIX/hints/sunos_4.pl Hint for POSIX for named architecture
ext/POSIX/hints/svr4.pl Hint for POSIX for named architecture
ext/POSIX/hints/uts.pl Hint for POSIX for named architecture
ext/POSIX/Makefile.PL POSIX extension makefile writer
ext/POSIX/POSIX.pm POSIX extension Perl module
ext/POSIX/POSIX.pod POSIX extension documentation
ext/POSIX/POSIX.xs POSIX extension external subroutines
ext/POSIX/t/is.t See if POSIX isxxx() work
ext/POSIX/t/math.t Basic math tests for POSIX
ext/POSIX/t/posix.t See if POSIX works
ext/POSIX/t/sigaction.t See if POSIX::sigaction works
ext/POSIX/t/sysconf.t See if POSIX works
ext/POSIX/t/taint.t See if POSIX works with taint
ext/POSIX/t/termios.t See if POSIX works
ext/POSIX/t/time.t See if POSIX time-related functions work
ext/POSIX/t/waitpid.t See if waitpid works
ext/POSIX/typemap POSIX extension interface types
ext/re/hints/mpeix.pl Hints for re for named architecture
ext/re/Makefile.PL re extension makefile writer
ext/re/re_comp.h re extension wrapper for regcomp.h
ext/re/re.pm re extension Perl module
ext/re/re_top.h re extension symbol hiding header
ext/re/re.xs re extension external subroutines
ext/re/t/re.t see if re pragma works
ext/Safe/t/safe1.t See if Safe works
ext/Safe/t/safe2.t See if Safe works
ext/Safe/t/safe3.t See if Safe works
ext/Safe/t/safeops.t Tests that all ops can be trapped by Safe
ext/Safe/t/safeuniversal.t Tests Safe with functions from universal.c
ext/SDBM_File/Makefile.PL SDBM extension makefile writer
ext/SDBM_File/sdbm/biblio SDBM kit
ext/SDBM_File/sdbm/CHANGES SDBM kit
ext/SDBM_File/sdbm/COMPARE SDBM kit
ext/SDBM_File/sdbm/dba.c SDBM kit
ext/SDBM_File/sdbm/dbd.c SDBM kit
ext/SDBM_File/sdbm/dbe.1 SDBM kit
ext/SDBM_File/sdbm/dbe.c SDBM kit
ext/SDBM_File/sdbm/dbu.c SDBM kit
ext/SDBM_File/SDBM_File.pm SDBM extension Perl module
ext/SDBM_File/SDBM_File.xs SDBM extension external subroutines
ext/SDBM_File/sdbm/grind SDBM kit
ext/SDBM_File/sdbm/hash.c SDBM kit
ext/SDBM_File/sdbm/linux.patches SDBM kit
ext/SDBM_File/sdbm/Makefile.PL SDBM kit
ext/SDBM_File/sdbm/makefile.sdbm SDBM kit
ext/SDBM_File/sdbm/pair.c SDBM kit
ext/SDBM_File/sdbm/pair.h SDBM kit
ext/SDBM_File/sdbm/README SDBM kit
ext/SDBM_File/sdbm/readme.ms SDBM kit
ext/SDBM_File/sdbm/README.too SDBM kit
ext/SDBM_File/sdbm/sdbm.3 SDBM kit
ext/SDBM_File/sdbm/sdbm.c SDBM kit
ext/SDBM_File/sdbm/sdbm.h SDBM kit
ext/SDBM_File/sdbm/tune.h SDBM kit
ext/SDBM_File/sdbm/util.c SDBM kit
ext/SDBM_File/t/sdbm.t See if SDBM_File works
ext/SDBM_File/typemap SDBM extension interface types
ext/Socket/Makefile.PL Socket extension makefile writer
ext/Socket/Socket.pm Socket extension Perl module
ext/Socket/Socket.xs Socket extension external subroutines
ext/Socket/t/socketpair.t See if socketpair works
ext/Socket/t/Socket.t See if Socket works
ext/Storable/ChangeLog Storable extension
ext/Storable/hints/gnukfreebsd.pl Hint for Storable for named architecture
ext/Storable/hints/gnuknetbsd.pl Hint for Storable for named architecture
ext/Storable/hints/hpux.pl Hint for Storable for named architecture
ext/Storable/hints/linux.pl Hint for Storable for named architecture
ext/Storable/Makefile.PL Storable extension
ext/Storable/MANIFEST Storable extension
ext/Storable/README Storable extension
ext/Storable/Storable.pm Storable extension
ext/Storable/Storable.xs Storable extension
ext/Storable/t/attach_errors.t Trigger and test STORABLE_attach errors
ext/Storable/t/attach_singleton.t Test STORABLE_attach for the Singleton pattern
ext/Storable/t/blessed.t See if Storable works
ext/Storable/t/canonical.t See if Storable works
ext/Storable/t/circular_hook.t Test thaw hook called depth-first for circular refs
ext/Storable/t/code.t See if Storable works
ext/Storable/t/compat01.t See if Storable works
ext/Storable/t/compat06.t See if Storable works
ext/Storable/t/croak.t See if Storable works
ext/Storable/t/dclone.t See if Storable works
ext/Storable/t/downgrade.t See if Storable works
ext/Storable/t/file_magic.t See if file_magic function works
ext/Storable/t/forgive.t See if Storable works
ext/Storable/t/freeze.t See if Storable works
ext/Storable/t/HAS_ATTACH.pm For auto-requiring of modules for STORABLE_attach
ext/Storable/t/HAS_HOOK.pm For auto-requiring of modules for STORABLE_thaw
ext/Storable/t/HAS_OVERLOAD.pm For auto-requiring of mdoules for overload
ext/Storable/t/integer.t See if Storable works
ext/Storable/t/interwork56.t Test compatibility kludge for 64bit data under 5.6.x
ext/Storable/t/just_plain_nasty.t See if Storable works
ext/Storable/t/lock.t See if Storable works
ext/Storable/t/make_56_interwork.pl Make test data for interwork56.t
ext/Storable/t/make_downgrade.pl Make test data for downgrade.t
ext/Storable/t/make_overload.pl Make test data for overload.t
ext/Storable/t/malice.t See if Storable copes with corrupt files
ext/Storable/t/overload.t See if Storable works
ext/Storable/t/recurse.t See if Storable works
ext/Storable/t/restrict.t See if Storable works
ext/Storable/t/retrieve.t See if Storable works
ext/Storable/t/sig_die.t See if Storable works
ext/Storable/t/st-dump.pl See if Storable works
ext/Storable/t/store.t See if Storable works
ext/Storable/t/testlib.pl more helper routines for tests
ext/Storable/t/threads.t Does Storable work with threads?
ext/Storable/t/tied_hook.t See if Storable works
ext/Storable/t/tied_items.t See if Storable works
ext/Storable/t/tied.t See if Storable works
ext/Storable/t/utf8hash.t See if Storable works
ext/Storable/t/utf8.t See if Storable works
ext/Storable/t/weak.t Can Storable store weakrefs
ext/Sys/Hostname/Hostname.pm Sys::Hostname extension Perl module
ext/Sys/Hostname/Hostname.xs Sys::Hostname extension external subroutines
ext/Sys/Hostname/Makefile.PL Sys::Hostname extension makefile writer
ext/Sys/Hostname/t/Hostname.t See if Sys::Hostname works
ext/Sys/Syslog/Changes Changlog for Sys::Syslog
ext/Sys/Syslog/fallback/const-c.inc Sys::Syslog constants fallback file
ext/Sys/Syslog/fallback/const-xs.inc Sys::Syslog constants fallback file
ext/Sys/Syslog/fallback/syslog.h Sys::Syslog header fallback file
ext/Sys/Syslog/Makefile.PL Sys::Syslog extension makefile writer
ext/Sys/Syslog/README README for Sys::Syslog
ext/Sys/Syslog/README.win32 README for Sys::Syslog on Windows
ext/Sys/Syslog/Syslog.pm Sys::Syslog extension Perl module
ext/Sys/Syslog/Syslog.xs Sys::Syslog extension external subroutines
ext/Sys/Syslog/t/00-load.t test for Sys::Syslog
ext/Sys/Syslog/t/constants.t test for Sys::Syslog
ext/Sys/Syslog/t/syslog.t See if Sys::Syslog works
ext/Sys/Syslog/win32/compile.pl Sys::Syslog extension Win32 related file
ext/Sys/Syslog/win32/PerlLog_dll.uu Sys::Syslog extension Win32 related file
ext/Sys/Syslog/win32/PerlLog.mc Sys::Syslog extension Win32 related file
ext/Sys/Syslog/win32/PerlLog_RES.uu Sys::Syslog extension Win32 related file
ext/Sys/Syslog/win32/Win32.pm Sys::Syslog extension Win32 related file
ext/Text/Soundex/Changes Changelog for Text::Soundex
ext/Text/Soundex/Makefile.PL Text::Soundex extension makefile writer
ext/Text/Soundex/README README for Text::Soundex
ext/Text/Soundex/Soundex.pm Text::Soundex extension Perl module
ext/Text/Soundex/Soundex.xs Text::Soundex extension external subroutines
ext/Text/Soundex/t/Soundex.t test for Text::Soundex
ext/Thread/create.tx Test thread creation
ext/Thread/die2.tx Test thread die() differently
ext/Thread/die.tx Test thread die()
ext/Thread/io.tx Test threads doing simple I/O
ext/Thread/join2.tx Test thread joining differently
ext/Thread/join.tx Test thread joining
ext/Thread/list.tx Test getting list of all threads
ext/Thread/lock.tx Test lock primitive
ext/Thread/Makefile.PL Thread extension makefile writer
ext/Thread/Notes Thread notes
ext/Thread/Queue.pmx Threadsafe queue
ext/Thread/queue.tx Test Thread::Queue module
ext/Thread/README Thread README
ext/Thread/README.threads Notes about multithreading
ext/Thread/Semaphore.pmx Threadsafe semaphore
ext/threads/hints/hpux.pl Hint file for HPUX
ext/threads/hints/linux.pl Hint file for Linux
ext/threads/Makefile.PL ithreads
ext/Thread/specific.tx Test thread-specific user data
ext/threads/shared/hints/linux.pl thread shared variables
ext/threads/shared/Makefile.PL thread shared variables
ext/threads/shared/shared.pm thread shared variables
ext/threads/shared/shared.xs thread shared variables
ext/threads/shared/t/0nothread.t Tests for basic shared array functionality.
ext/threads/shared/t/av_refs.t Tests for arrays containing references
ext/threads/shared/t/av_simple.t Tests for basic shared array functionality.
ext/threads/shared/t/blessed.t Test blessed shared variables
ext/threads/shared/t/clone.t Test shared cloning
ext/threads/shared/t/cond.t Test condition variables
ext/threads/shared/t/disabled.t Test threads::shared when threads are disabled.
ext/threads/shared/t/hv_refs.t Test shared hashes containing references
ext/threads/shared/t/hv_simple.t Tests for basic shared hash functionality.
ext/threads/shared/t/no_share.t Tests for disabled share on variables.
ext/threads/shared/t/object.t Shared objects tests
ext/threads/shared/t/shared_attr.t Test :shared attribute
ext/threads/shared/t/stress.t Stress test
ext/threads/shared/t/sv_refs.t thread shared variables
ext/threads/shared/t/sv_simple.t thread shared variables
ext/threads/shared/t/utf8.t Test UTF-8 keys in shared hashes
ext/threads/shared/t/waithires.t Test sub-second cond_timedwait
ext/threads/shared/t/wait.t Test cond_wait and cond_timedwait
ext/threads/t/basic.t ithreads
ext/threads/t/blocks.t Test threads in special blocks
ext/threads/t/context.t Explicit thread context
ext/threads/t/end.t Test end functions
ext/threads/t/err.t Test $thr->error()