-
Notifications
You must be signed in to change notification settings - Fork 33
/
MANIFEST
2225 lines (2225 loc) · 52.9 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
add_version
bin/defs
bin/defunc
bin/newstyle
bin/perms
bin/tkman
bin/unres
bin/uselib
build_ptk Perl Script to rebuild "perl build"
Canvas/Canvas.pm
Canvas/Canvas.xs
Canvas/canvtxt
Canvas/demo.txt
Canvas/Makefile.PL
Change.log
Changes What has changed
check_source
check_syms
checklen Check names not > 14 chars long for old UNIXes.
chnGlue.c
cleanup Remove authour's junk files
compile/Compile.pod
compile/findloader
compile/PreLoad.pm
compile/splitfunc
Compound/Compound.pm
Compound/Compound.xs
Compound/compound_demo
Compound/Makefile.PL
config/Ksprintf.c
config/copstashset.c Test for changed CopSTASH_set macro in perl5.17.x
config/perlrx.c Test for changed regexp structure in perl5.9.x
config/pmop.c Test for changed pmop structure in perl5.9.x
config/pregcomp2.c Test for changed pregcomp call in perl5.9.x
config/regexp511.c Test for changed REGEXP in perl5.11.x
config/signedchar.c Test to see of 'signed char' is legal
config/svtrv.c Test for changed SVt_RV in perl5.11.0
config/tod.c Test for gettimeofday()
config/unsigned.c See if 'char' is signed
config/xft.c
Contrib/book-examples/f-15.5.pl
Contrib/book-examples/f-16.1.pl
Contrib/book-examples/f-16.10.pl
Contrib/book-examples/f-16.2.pl
Contrib/book-examples/f-16.3.pl
Contrib/book-examples/f-16.6.pl
Contrib/book-examples/f-16.7.pl
Contrib/book-examples/f-16.8.pl
Contrib/book-examples/f-16.9.pl
Contrib/book-examples/lusol-f16.3
Contrib/book-examples/README Notes on book-examples
Contrib/fd_demo Demo of FileDialog
Contrib/README Notes on Contrib directory
Contrib/testlistbox
Contrib/TickerTape
copydate Utility to update copyright notices
COPYING CopyRight and License info.
db57
debug Run perl Tk script under GNU gdb
debug.bat
demos/browse
demos/color_editor
demos/composite
demos/demos/images/c.icon
demos/demos/images/cursor.cur
demos/demos/images/cursor.mask
demos/demos/images/cursor.xbm
demos/demos/images/dir.icon
demos/demos/images/dir.mask
demos/demos/images/earth.gif
demos/demos/images/earthris.gif
demos/demos/images/face
demos/demos/images/flagdown
demos/demos/images/flagup
demos/demos/images/grey.25
demos/demos/images/grey.5
demos/demos/images/letters
demos/demos/images/mickey.gif
demos/demos/images/ned.xpm
demos/demos/images/noletters
demos/demos/images/page.icon
demos/demos/images/page.mask
demos/demos/images/pattern
demos/demos/images/QuitPB.xpm
demos/demos/images/QuitPBa.xpm
demos/demos/images/teapot.ppm
demos/demos/LabEnLabRad.pm
demos/demos/widget_lib/arrows.pl
demos/demos/widget_lib/Ball.pm
demos/demos/widget_lib/balloon.pl
demos/demos/widget_lib/bind.pl
demos/demos/widget_lib/bitmaps.pl
demos/demos/widget_lib/bounce.pl
demos/demos/widget_lib/browseentry.pl
demos/demos/widget_lib/browseentry2.pl
demos/demos/widget_lib/button.pl
demos/demos/widget_lib/check.pl
demos/demos/widget_lib/choosedir.pl
demos/demos/widget_lib/clrpick.pl
demos/demos/widget_lib/colors.pl
demos/demos/widget_lib/cscroll.pl
demos/demos/widget_lib/ctext.pl
demos/demos/widget_lib/dialog1.pl
demos/demos/widget_lib/dialog2.pl
demos/demos/widget_lib/dirtree.pl
demos/demos/widget_lib/entry1.pl
demos/demos/widget_lib/entry2.pl
demos/demos/widget_lib/entry3.pl
demos/demos/widget_lib/filebox.pl
demos/demos/widget_lib/floor.pl
demos/demos/widget_lib/form.pl
demos/demos/widget_lib/form_mgr.pl
demos/demos/widget_lib/hello.pl
demos/demos/widget_lib/HList.pl
demos/demos/widget_lib/HList2.pl
demos/demos/widget_lib/hscale.pl
demos/demos/widget_lib/icon.pl
demos/demos/widget_lib/image1.pl
demos/demos/widget_lib/image2.pl
demos/demos/widget_lib/items.pl
demos/demos/widget_lib/keysyms.pl
demos/demos/widget_lib/labframe.pl
demos/demos/widget_lib/labelframe.pl
demos/demos/widget_lib/labels.pl
demos/demos/widget_lib/mega.pl
demos/demos/widget_lib/menbut.pl
demos/demos/widget_lib/menus.pl
demos/demos/widget_lib/menus2.pl
demos/demos/widget_lib/msgBox.pl
demos/demos/widget_lib/notebook.pl
demos/demos/widget_lib/paned1.pl
demos/demos/widget_lib/paned2.pl
demos/demos/widget_lib/photo1.pl
demos/demos/widget_lib/photo2.pl
demos/demos/widget_lib/plot.pl
demos/demos/widget_lib/Plot.pm
demos/demos/widget_lib/progress.pl
demos/demos/widget_lib/puzzle.pl
demos/demos/widget_lib/radio.pl
demos/demos/widget_lib/ruler.pl
demos/demos/widget_lib/sayings.pl
demos/demos/widget_lib/search.pl
demos/demos/widget_lib/showVars.pl
demos/demos/widget_lib/slide.pl
demos/demos/widget_lib/spin.pl
demos/demos/widget_lib/states.pl
demos/demos/widget_lib/style.pl
demos/demos/widget_lib/texts.pl
demos/demos/widget_lib/trace1.pl
demos/demos/widget_lib/trace2.pl
demos/demos/widget_lib/transtile.pl
demos/demos/widget_lib/twind.pl
demos/demos/widget_lib/unicodeout.pl
demos/demos/widget_lib/virtevents1.pl
demos/demos/widget_lib/vscale.pl
demos/demos/widget_lib/WidgetDemo.pm
demos/demos/widtrib/Gedi.pl
demos/demos/widtrib/all.pl
demos/demos/widtrib/cursor.pl
demos/demos/widtrib/lib/npuz/Xcamel.npuz
demos/demos/widtrib/npuz.pl
demos/demos/widtrib/plop.pl
demos/demos/widtrib/TEMPLATE.pl
demos/demos/widtrib/Tiler.pl
demos/dialog
demos/hello
demos/ixset
demos/Makefile.PL
demos/MANIFEST
demos/MANIFEST.SKIP
demos/README
demos/rmt
demos/rolodex
demos/timer
demos/tom
demos/widget
demos/widget_old
DragDrop/drag_test
DragDrop/DragDrop.pm
DragDrop/DragDrop/Common.pm
DragDrop/DragDrop/Common.pod
DragDrop/DragDrop/LocalDrop.pm
DragDrop/DragDrop/Rect.pm
DragDrop/DragDrop/SunConst.pm
DragDrop/DragDrop/SunConst.pod
DragDrop/DragDrop/SunDrop.pm
DragDrop/DragDrop/SunSite.pm
DragDrop/DragDrop/XDNDDrop.pm
DragDrop/DragDrop/XDNDSite.pm
DragDrop/DropSite.pm
DragDrop/DropSite.pod
DragDrop/has_sun
DragDrop/local_test
DragDrop/Makefile.PL
DragDrop/motion_test
DragDrop/selection
DragDrop/site_test
DragDrop/Win32Site/Makefile.PL
DragDrop/Win32Site/NotUnix.exc
DragDrop/Win32Site/Win32Drop.pm
DragDrop/Win32Site/Win32Site.pm
DragDrop/Win32Site/Win32Site.xs
dupsyms
encGlue.c
Entry/Entry.pm
Entry/Entry.xs
Entry/Makefile.PL
Event/Event.pm
Event/Event.xs
Event/Event/IO.pm
Event/event_demo
Event/eventWin32Dll.c
Event/findEvent
Event/Makefile.PL
Event/pTkCallback.c
Event/t/basic.t
Event/tclAsync.c
Event/tclEvent.c
Event/tclNotify.c
Event/tclPlatEvent.c
Event/tclPlatNotfy.c
Event/tclPlatTime.c
Event/tclTimer.c
Event/typemap
evtGlue.c
examples/adj_demo Example of packAdjust usage.
examples/after_demo Simple (= boring) demo of after.
examples/after_leak Check for "leaked" values when using after.
examples/al_bug Simple Table app.
examples/animate Demo of animated GIFs
examples/autoraise Popup which attempts to keep itself "on top"
examples/basic_demo Scruffy demo/test of many Tk constucts.
examples/bindtest Test of key bindings with qualifiers
examples/bulkedit Utility to make changes in many files - with Tk GUI
examples/canvas_ps Writes PostScript for Canvas to a file.
examples/canvas_scroll Basic test of scrolling a Canvas
examples/canvasps
examples/canvastile Test background tiles in a Canvas.
examples/cbtest Test of callback returns.
examples/chfont Test of chinese fonts
examples/classtree Show the Tk class tree.
examples/clip_bug Demonstrates some "features" of clipping.
examples/cursor_demo Lists all built-in (X) cursors.
examples/derived_test Test of Tk::Derived
examples/destroy_test Test of <Destroy> binding
examples/dialog_test
examples/disbutton
examples/dnd_demo
examples/dump_test
examples/embed
examples/error_prop
examples/ewidth_demo
examples/fedemo
examples/fetail
examples/font_demo
examples/font_test
examples/fonthook
examples/fonts
examples/forward_test Send events to other widgets.
examples/geo_mgr
examples/geom
examples/grid_adj
examples/grid_test
examples/gridbug
examples/hlfm
examples/hlist_bg
examples/hlist_demo
examples/icon
examples/iconimg
examples/iconwin
examples/image_test
examples/inline_bitmap
examples/iso8859-1
examples/labelpack
examples/lbformat_demo
examples/leak_test
examples/lentry
examples/linux-progbar-toy
examples/local_demo
examples/ls_table
examples/lsfonts
examples/mcHL
examples/menubar
examples/mitem_test
examples/motif_hack
examples/nested_dialog
examples/oddmenu_demo
examples/olduni
examples/pfm
examples/pipe_test
examples/pixels-points
examples/pixmap_test
examples/point_test
examples/popup
examples/popup_menu
examples/prop_demo
examples/ptknews
examples/scale_test
examples/scrolled_demo
examples/sillymenu
examples/sockets
examples/spinbox
examples/style_test
examples/table_demo
examples/taint_test
examples/taint_test2
examples/tainted
examples/tcolour
examples/tent
examples/text_demo
examples/tie_basic
examples/tiehandle
examples/tietext
examples/time
examples/tiny
examples/tixwm_demo
examples/tkfontsel
examples/tkperldoc
examples/tkpsh
examples/tktail
examples/tlist_demo
examples/tmenu
examples/try
examples/two_main
examples/unicode
examples/unidemo
examples/ventry_demo
examples/xlib_demo
exetype
Extensions/ImageBack/background
Extensions/ImageBack/ImageBack.pm
Extensions/ImageBack/ImageBack.xs
Extensions/ImageBack/Makefile.PL
Extensions/ImageBack/MANIFEST
Extensions/ImageBack/MANIFEST.SKIP
Extensions/ImageBack/README
fix_4_os2.pl
fixfunc
Funcs.doc Ancient but better than nothing list of functions
gdb.plx
gedi
generate
hackMM
HList/HList.pm
HList/HList.xs
HList/Makefile.PL
HList/Tix2perl
InputO/InputO.pm
InputO/InputO.xs
InputO/Makefile.PL
InputO/NotWin.exc
INSTALL
IO/IO.pm
IO/IO.xs
IO/Makefile.PL
JPEG/config/has_jpeg.c
JPEG/imgJPEG.c
JPEG/JPEG.pm
JPEG/JPEG.xs
JPEG/jpeg/ansi2knr.1
JPEG/jpeg/ansi2knr.c
JPEG/jpeg/cderror.h
JPEG/jpeg/cdjpeg.c
JPEG/jpeg/cdjpeg.h
JPEG/jpeg/change.log
JPEG/jpeg/cjpeg.1
JPEG/jpeg/cjpeg.c
JPEG/jpeg/ckconfig.c
JPEG/jpeg/coderules.doc
JPEG/jpeg/config.guess
JPEG/jpeg/config.sub
JPEG/jpeg/configure
JPEG/jpeg/djpeg.1
JPEG/jpeg/djpeg.c
JPEG/jpeg/example.c
JPEG/jpeg/filelist.doc
JPEG/jpeg/install-sh
JPEG/jpeg/install.doc
JPEG/jpeg/jcapimin.c
JPEG/jpeg/jcapistd.c
JPEG/jpeg/jccoefct.c
JPEG/jpeg/jccolor.c
JPEG/jpeg/jcdctmgr.c
JPEG/jpeg/jchuff.c
JPEG/jpeg/jchuff.h
JPEG/jpeg/jcinit.c
JPEG/jpeg/jcmainct.c
JPEG/jpeg/jcmarker.c
JPEG/jpeg/jcmaster.c
JPEG/jpeg/jcomapi.c
JPEG/jpeg/jconfig.b32
JPEG/jpeg/jconfig.bcc
JPEG/jpeg/jconfig.cfg
JPEG/jpeg/jconfig.dj
JPEG/jpeg/jconfig.doc
JPEG/jpeg/jconfig.mac
JPEG/jpeg/jconfig.manx
JPEG/jpeg/jconfig.mc6
JPEG/jpeg/jconfig.sas
JPEG/jpeg/jconfig.st
JPEG/jpeg/jconfig.v32
JPEG/jpeg/jconfig.vc
JPEG/jpeg/jconfig.vms
JPEG/jpeg/jconfig.wat
JPEG/jpeg/jcparam.c
JPEG/jpeg/jcphuff.c
JPEG/jpeg/jcprepct.c
JPEG/jpeg/jcsample.c
JPEG/jpeg/jctrans.c
JPEG/jpeg/jdapimin.c
JPEG/jpeg/jdapistd.c
JPEG/jpeg/jdatadst.c
JPEG/jpeg/jdatasrc.c
JPEG/jpeg/jdcoefct.c
JPEG/jpeg/jdcolor.c
JPEG/jpeg/jdct.h
JPEG/jpeg/jddctmgr.c
JPEG/jpeg/jdhuff.c
JPEG/jpeg/jdhuff.h
JPEG/jpeg/jdinput.c
JPEG/jpeg/jdmainct.c
JPEG/jpeg/jdmarker.c
JPEG/jpeg/jdmaster.c
JPEG/jpeg/jdmerge.c
JPEG/jpeg/jdphuff.c
JPEG/jpeg/jdpostct.c
JPEG/jpeg/jdsample.c
JPEG/jpeg/jdtrans.c
JPEG/jpeg/jerror.c
JPEG/jpeg/jerror.h
JPEG/jpeg/jfdctflt.c
JPEG/jpeg/jfdctfst.c
JPEG/jpeg/jfdctint.c
JPEG/jpeg/jidctflt.c
JPEG/jpeg/jidctfst.c
JPEG/jpeg/jidctint.c
JPEG/jpeg/jidctred.c
JPEG/jpeg/jinclude.h
JPEG/jpeg/jmemansi.c
JPEG/jpeg/jmemdos.c
JPEG/jpeg/jmemdosa.asm
JPEG/jpeg/jmemmac.c
JPEG/jpeg/jmemmgr.c
JPEG/jpeg/jmemname.c
JPEG/jpeg/jmemnobs.c
JPEG/jpeg/jmemsys.h
JPEG/jpeg/jmorecfg.h
JPEG/jpeg/jmorecfg.h.diff
JPEG/jpeg/jpegint.h
JPEG/jpeg/jpeglib.h
JPEG/jpeg/jpegtran.1
JPEG/jpeg/jpegtran.c
JPEG/jpeg/jquant1.c
JPEG/jpeg/jquant2.c
JPEG/jpeg/jutils.c
JPEG/jpeg/jversion.h
JPEG/jpeg/libjpeg.doc
JPEG/jpeg/libtool
JPEG/jpeg/ltconfig
JPEG/jpeg/ltmain.sh
JPEG/jpeg/makcjpeg.st
JPEG/jpeg/makdjpeg.st
JPEG/jpeg/makeapps.ds
JPEG/jpeg/makefile.ansi
JPEG/jpeg/makefile.b32
JPEG/jpeg/makefile.bcc
JPEG/jpeg/makefile.cfg
JPEG/jpeg/makefile.dj
JPEG/jpeg/makefile.manx
JPEG/jpeg/makefile.mc6
JPEG/jpeg/makefile.mingw32
JPEG/jpeg/makefile.mms
JPEG/jpeg/makefile.sas
JPEG/jpeg/makefile.unix
JPEG/jpeg/makefile.v32
JPEG/jpeg/makefile.vc
JPEG/jpeg/makefile.vms
JPEG/jpeg/makefile.wat
JPEG/jpeg/makelib.ds
JPEG/jpeg/makeproj.mac
JPEG/jpeg/makljpeg.st
JPEG/jpeg/maktjpeg.st
JPEG/jpeg/makvms.opt
JPEG/jpeg/rdbmp.c
JPEG/jpeg/rdcolmap.c
JPEG/jpeg/rdgif.c
JPEG/jpeg/rdjpgcom.1
JPEG/jpeg/rdjpgcom.c
JPEG/jpeg/rdppm.c
JPEG/jpeg/rdrle.c
JPEG/jpeg/rdswitch.c
JPEG/jpeg/rdtarga.c
JPEG/jpeg/README
JPEG/jpeg/structure.doc
JPEG/jpeg/testimg.bmp
JPEG/jpeg/testimg.jpg
JPEG/jpeg/testimg.ppm
JPEG/jpeg/testimgp.jpg
JPEG/jpeg/testorig.jpg
JPEG/jpeg/testprog.jpg
JPEG/jpeg/transupp.c
JPEG/jpeg/transupp.h
JPEG/jpeg/usage.doc
JPEG/jpeg/wizard.doc
JPEG/jpeg/wrbmp.c
JPEG/jpeg/wrgif.c
JPEG/jpeg/wrjpgcom.1
JPEG/jpeg/wrjpgcom.c
JPEG/jpeg/wrppm.c
JPEG/jpeg/wrrle.c
JPEG/jpeg/wrtarga.c
JPEG/Makefile.PL
JPEG/Makefile.jpeg.maybe
JPEG/Nick.jpg
JPEG/README
JPEG/t/more.t
JPEG/t/Read.t
JPEG/tkjpeg
keyWords
lib/Tie/Watch.pm
Listbox/Listbox.pm
Listbox/Listbox.xs
Listbox/Makefile.PL
Makefile.PL
MANIFEST
MANIFEST.SKIP
MANIFEST.SKIP.PL
menubug
Menubutton/Makefile.PL
Menubutton/Menubutton.pm
Menubutton/Menubutton.xs
mkExt
mkppm.bat
Mwm/Makefile.PL
Mwm/Mwm.pm
Mwm/Mwm.xs
Mwm/NotWin.exc
myConfig
NBFrame/Makefile.PL
NBFrame/NBFrame.pm
NBFrame/NBFrame.xs
needed
objGlue.c
perlfiles
PNG/config/has_png.c
PNG/imgPNG.c
PNG/libpng/ANNOUNCE
PNG/libpng/CHANGES
PNG/libpng/INSTALL
PNG/libpng/KNOWNBUG
PNG/libpng/LICENSE
PNG/libpng/Makefile.am
PNG/libpng/Makefile.in
PNG/libpng/README
PNG/libpng/TODO
PNG/libpng/Y2KINFO
PNG/libpng/aclocal.m4
PNG/libpng/autogen.sh
PNG/libpng/config.guess
PNG/libpng/config.h.in
PNG/libpng/config.sub
PNG/libpng/configure
PNG/libpng/configure.ac
PNG/libpng/contrib/gregbook/LICENSE
PNG/libpng/contrib/gregbook/Makefile.sgi
PNG/libpng/contrib/gregbook/Makefile.unx
PNG/libpng/contrib/gregbook/Makefile.w32
PNG/libpng/contrib/gregbook/README
PNG/libpng/contrib/gregbook/makevms.com
PNG/libpng/contrib/gregbook/readpng.c
PNG/libpng/contrib/gregbook/readpng.h
PNG/libpng/contrib/gregbook/readpng2.c
PNG/libpng/contrib/gregbook/readpng2.h
PNG/libpng/contrib/gregbook/rpng-win.c
PNG/libpng/contrib/gregbook/rpng-x.c
PNG/libpng/contrib/gregbook/rpng2-win.c
PNG/libpng/contrib/gregbook/rpng2-x.c
PNG/libpng/contrib/gregbook/toucan.png
PNG/libpng/contrib/gregbook/wpng.c
PNG/libpng/contrib/gregbook/writepng.c
PNG/libpng/contrib/gregbook/writepng.h
PNG/libpng/contrib/pngminus/README
PNG/libpng/contrib/pngminus/makefile.std
PNG/libpng/contrib/pngminus/makefile.tc3
PNG/libpng/contrib/pngminus/makevms.com
PNG/libpng/contrib/pngminus/png2pnm.bat
PNG/libpng/contrib/pngminus/png2pnm.c
PNG/libpng/contrib/pngminus/png2pnm.sh
PNG/libpng/contrib/pngminus/pngminus.bat
PNG/libpng/contrib/pngminus/pngminus.sh
PNG/libpng/contrib/pngminus/pnm2png.bat
PNG/libpng/contrib/pngminus/pnm2png.c
PNG/libpng/contrib/pngminus/pnm2png.sh
PNG/libpng/contrib/pngsuite/README
PNG/libpng/contrib/pngsuite/basn0g01.png
PNG/libpng/contrib/pngsuite/basn0g02.png
PNG/libpng/contrib/pngsuite/basn0g04.png
PNG/libpng/contrib/pngsuite/basn0g08.png
PNG/libpng/contrib/pngsuite/basn0g16.png
PNG/libpng/contrib/pngsuite/basn2c08.png
PNG/libpng/contrib/pngsuite/basn2c16.png
PNG/libpng/contrib/pngsuite/basn3p01.png
PNG/libpng/contrib/pngsuite/basn3p02.png
PNG/libpng/contrib/pngsuite/basn3p04.png
PNG/libpng/contrib/pngsuite/basn3p08.png
PNG/libpng/contrib/pngsuite/basn4a08.png
PNG/libpng/contrib/pngsuite/basn4a16.png
PNG/libpng/contrib/pngsuite/basn6a08.png
PNG/libpng/contrib/pngsuite/basn6a16.png
PNG/libpng/contrib/visupng/PngFile.c
PNG/libpng/contrib/visupng/PngFile.h
PNG/libpng/contrib/visupng/README.txt
PNG/libpng/contrib/visupng/VisualPng.c
PNG/libpng/contrib/visupng/VisualPng.dsp
PNG/libpng/contrib/visupng/VisualPng.dsw
PNG/libpng/contrib/visupng/VisualPng.ico
PNG/libpng/contrib/visupng/VisualPng.png
PNG/libpng/contrib/visupng/VisualPng.rc
PNG/libpng/contrib/visupng/cexcept.h
PNG/libpng/contrib/visupng/resource.h
PNG/libpng/depcomp
PNG/libpng/example.c
PNG/libpng/install-sh
PNG/libpng/libpng.3
PNG/libpng/libpng.txt
PNG/libpng/libpngpf.3
PNG/libpng/ltmain.sh
PNG/libpng/missing
PNG/libpng/mkinstalldirs
PNG/libpng/png.5
PNG/libpng/png.c
PNG/libpng/png.h
PNG/libpng/pngbar.jpg
PNG/libpng/pngbar.png
PNG/libpng/pngconf.h
PNG/libpng/pngerror.c
PNG/libpng/pnggccrd.c
PNG/libpng/pngget.c
PNG/libpng/pngmem.c
PNG/libpng/pngnow.png
PNG/libpng/pngpread.c
PNG/libpng/pngread.c
PNG/libpng/pngrio.c
PNG/libpng/pngrtran.c
PNG/libpng/pngrutil.c
PNG/libpng/pngset.c
PNG/libpng/pngtest.c
PNG/libpng/pngtest.png
PNG/libpng/pngtrans.c
PNG/libpng/pngvcrd.c
PNG/libpng/pngwio.c
PNG/libpng/pngwrite.c
PNG/libpng/pngwtran.c
PNG/libpng/pngwutil.c
PNG/libpng/projects/beos/x86-shared.proj
PNG/libpng/projects/beos/x86-shared.txt
PNG/libpng/projects/beos/x86-static.proj
PNG/libpng/projects/beos/x86-static.txt
PNG/libpng/projects/cbuilder5/libpng.bpf
PNG/libpng/projects/cbuilder5/libpng.bpg
PNG/libpng/projects/cbuilder5/libpng.bpr
PNG/libpng/projects/cbuilder5/libpng.cpp
PNG/libpng/projects/cbuilder5/libpng.readme.txt
PNG/libpng/projects/cbuilder5/libpngstat.bpf
PNG/libpng/projects/cbuilder5/libpngstat.bpr
PNG/libpng/projects/cbuilder5/zlib.readme.txt
PNG/libpng/projects/netware.txt
PNG/libpng/projects/visualc6/README.txt
PNG/libpng/projects/visualc6/libpng.dsp
PNG/libpng/projects/visualc6/libpng.dsw
PNG/libpng/projects/visualc6/pngtest.dsp
PNG/libpng/projects/visualc71/PRJ0041.mak
PNG/libpng/projects/visualc71/README.txt
PNG/libpng/projects/visualc71/README_zlib.txt
PNG/libpng/projects/visualc71/libpng.sln
PNG/libpng/projects/visualc71/libpng.vcproj
PNG/libpng/projects/visualc71/pngtest.vcproj
PNG/libpng/projects/visualc71/zlib.vcproj
PNG/libpng/projects/wince.txt
PNG/libpng/scripts/SCOPTIONS.ppc
PNG/libpng/scripts/descrip.mms
PNG/libpng/scripts/libpng-config-body.in
PNG/libpng/scripts/libpng-config-head.in
PNG/libpng/scripts/libpng-config.in
PNG/libpng/scripts/libpng.icc
PNG/libpng/scripts/libpng.pc.in
PNG/libpng/scripts/makefile.32sunu
PNG/libpng/scripts/makefile.64sunu
PNG/libpng/scripts/makefile.acorn
PNG/libpng/scripts/makefile.aix
PNG/libpng/scripts/makefile.amiga
PNG/libpng/scripts/makefile.atari
PNG/libpng/scripts/makefile.bc32
PNG/libpng/scripts/makefile.beos
PNG/libpng/scripts/makefile.bor
PNG/libpng/scripts/makefile.cygwin
PNG/libpng/scripts/makefile.darwin
PNG/libpng/scripts/makefile.dec
PNG/libpng/scripts/makefile.dj2
PNG/libpng/scripts/makefile.elf
PNG/libpng/scripts/makefile.freebsd
PNG/libpng/scripts/makefile.gcc
PNG/libpng/scripts/makefile.gcmmx
PNG/libpng/scripts/makefile.hp64
PNG/libpng/scripts/makefile.hpgcc
PNG/libpng/scripts/makefile.hpux
PNG/libpng/scripts/makefile.ibmc
PNG/libpng/scripts/makefile.intel
PNG/libpng/scripts/makefile.knr
PNG/libpng/scripts/makefile.linux
PNG/libpng/scripts/makefile.mingw
PNG/libpng/scripts/makefile.mips
PNG/libpng/scripts/makefile.msc
PNG/libpng/scripts/makefile.ne12bsd
PNG/libpng/scripts/makefile.netbsd
PNG/libpng/scripts/makefile.openbsd
PNG/libpng/scripts/makefile.os2
PNG/libpng/scripts/makefile.sco
PNG/libpng/scripts/makefile.sggcc
PNG/libpng/scripts/makefile.sgi
PNG/libpng/scripts/makefile.so9
PNG/libpng/scripts/makefile.solaris
PNG/libpng/scripts/makefile.std
PNG/libpng/scripts/makefile.sunos
PNG/libpng/scripts/makefile.tc3
PNG/libpng/scripts/makefile.vcawin32
PNG/libpng/scripts/makefile.vcwin32
PNG/libpng/scripts/makefile.watcom
PNG/libpng/scripts/makevms.com
PNG/libpng/scripts/pngos2.def
PNG/libpng/scripts/pngw32.def
PNG/libpng/scripts/pngw32.rc
PNG/libpng/scripts/smakefile.ppc
PNG/libpng/test-pngtest.sh
PNG/Makefile.PL
PNG/Makefile.libpng.maybe
PNG/Makefile.zlib.maybe
PNG/PNG.pm
PNG/PNG.xs
PNG/pngtest.png
PNG/README
PNG/t/basic.t
PNG/t/crash.t
PNG/zlib/ChangeLog
PNG/zlib/FAQ
PNG/zlib/INDEX
PNG/zlib/Makefile.in
PNG/zlib/README
PNG/zlib/adler32.c
PNG/zlib/algorithm.txt
PNG/zlib/amiga/Makefile.pup
PNG/zlib/amiga/Makefile.sas
PNG/zlib/as400/bndsrc
PNG/zlib/as400/compile.clp
PNG/zlib/as400/readme.txt
PNG/zlib/as400/zlib.inc
PNG/zlib/compress.c
PNG/zlib/configure
PNG/zlib/contrib/README.contrib
PNG/zlib/contrib/ada/buffer_demo.adb
PNG/zlib/contrib/ada/mtest.adb
PNG/zlib/contrib/ada/read.adb
PNG/zlib/contrib/ada/readme.txt
PNG/zlib/contrib/ada/test.adb
PNG/zlib/contrib/ada/zlib-streams.adb
PNG/zlib/contrib/ada/zlib-streams.ads
PNG/zlib/contrib/ada/zlib-thin.adb
PNG/zlib/contrib/ada/zlib-thin.ads
PNG/zlib/contrib/ada/zlib.adb
PNG/zlib/contrib/ada/zlib.ads
PNG/zlib/contrib/ada/zlib.gpr
PNG/zlib/contrib/asm586/README.586
PNG/zlib/contrib/asm586/match.S
PNG/zlib/contrib/asm686/README.686
PNG/zlib/contrib/asm686/match.S
PNG/zlib/contrib/blast/Makefile
PNG/zlib/contrib/blast/README
PNG/zlib/contrib/blast/blast.c
PNG/zlib/contrib/blast/blast.h
PNG/zlib/contrib/blast/test.pk
PNG/zlib/contrib/blast/test.txt
PNG/zlib/contrib/delphi/ZLib.pas
PNG/zlib/contrib/delphi/ZLibConst.pas
PNG/zlib/contrib/delphi/readme.txt
PNG/zlib/contrib/delphi/zlibd32.mak
PNG/zlib/contrib/dotzlib/DotZLib/AssemblyInfo.cs
PNG/zlib/contrib/dotzlib/DotZLib/ChecksumImpl.cs
PNG/zlib/contrib/dotzlib/DotZLib/CircularBuffer.cs
PNG/zlib/contrib/dotzlib/DotZLib/CodecBase.cs
PNG/zlib/contrib/dotzlib/DotZLib/Deflater.cs
PNG/zlib/contrib/dotzlib/DotZLib/DotZLib.cs
PNG/zlib/contrib/dotzlib/DotZLib/DotZLib.csproj
PNG/zlib/contrib/dotzlib/DotZLib/GZipStream.cs
PNG/zlib/contrib/dotzlib/DotZLib/Inflater.cs
PNG/zlib/contrib/dotzlib/DotZLib/UnitTests.cs
PNG/zlib/contrib/dotzlib/DotZLib.build
PNG/zlib/contrib/dotzlib/DotZLib.chm
PNG/zlib/contrib/dotzlib/DotZLib.sln
PNG/zlib/contrib/dotzlib/LICENSE_1_0.txt
PNG/zlib/contrib/dotzlib/readme.txt
PNG/zlib/contrib/infback9/README
PNG/zlib/contrib/infback9/infback9.c
PNG/zlib/contrib/infback9/infback9.h
PNG/zlib/contrib/infback9/inffix9.h
PNG/zlib/contrib/infback9/inflate9.h
PNG/zlib/contrib/infback9/inftree9.c
PNG/zlib/contrib/infback9/inftree9.h
PNG/zlib/contrib/inflate86/inffas86.c
PNG/zlib/contrib/inflate86/inffast.S
PNG/zlib/contrib/iostream/test.cpp
PNG/zlib/contrib/iostream/zfstream.cpp
PNG/zlib/contrib/iostream/zfstream.h
PNG/zlib/contrib/iostream2/zstream.h
PNG/zlib/contrib/iostream2/zstream_test.cpp
PNG/zlib/contrib/iostream3/README
PNG/zlib/contrib/iostream3/TODO
PNG/zlib/contrib/iostream3/test.cc
PNG/zlib/contrib/iostream3/zfstream.cc
PNG/zlib/contrib/iostream3/zfstream.h
PNG/zlib/contrib/masm686/match.asm
PNG/zlib/contrib/masmx64/bld_ml64.bat
PNG/zlib/contrib/masmx64/gvmat64.asm
PNG/zlib/contrib/masmx64/gvmat64.obj
PNG/zlib/contrib/masmx64/inffas8664.c
PNG/zlib/contrib/masmx64/inffasx64.asm
PNG/zlib/contrib/masmx64/inffasx64.obj
PNG/zlib/contrib/masmx64/readme.txt
PNG/zlib/contrib/masmx86/bld_ml32.bat
PNG/zlib/contrib/masmx86/gvmat32.asm
PNG/zlib/contrib/masmx86/gvmat32.obj
PNG/zlib/contrib/masmx86/gvmat32c.c
PNG/zlib/contrib/masmx86/inffas32.asm
PNG/zlib/contrib/masmx86/inffas32.obj
PNG/zlib/contrib/masmx86/mkasm.bat
PNG/zlib/contrib/masmx86/readme.txt
PNG/zlib/contrib/minizip/ChangeLogUnzip
PNG/zlib/contrib/minizip/Makefile
PNG/zlib/contrib/minizip/crypt.h
PNG/zlib/contrib/minizip/ioapi.c
PNG/zlib/contrib/minizip/ioapi.h
PNG/zlib/contrib/minizip/iowin32.c
PNG/zlib/contrib/minizip/iowin32.h
PNG/zlib/contrib/minizip/miniunz.c
PNG/zlib/contrib/minizip/minizip.c
PNG/zlib/contrib/minizip/mztools.c
PNG/zlib/contrib/minizip/mztools.h
PNG/zlib/contrib/minizip/unzip.c
PNG/zlib/contrib/minizip/unzip.h
PNG/zlib/contrib/minizip/zip.c
PNG/zlib/contrib/minizip/zip.h
PNG/zlib/contrib/pascal/example.pas
PNG/zlib/contrib/pascal/readme.txt
PNG/zlib/contrib/pascal/zlibd32.mak
PNG/zlib/contrib/pascal/zlibpas.pas
PNG/zlib/contrib/puff/Makefile
PNG/zlib/contrib/puff/README
PNG/zlib/contrib/puff/puff.c
PNG/zlib/contrib/puff/puff.h
PNG/zlib/contrib/puff/zeros.raw
PNG/zlib/contrib/testzlib/testzlib.c
PNG/zlib/contrib/testzlib/testzlib.txt
PNG/zlib/contrib/untgz/Makefile
PNG/zlib/contrib/untgz/Makefile.msc
PNG/zlib/contrib/untgz/untgz.c
PNG/zlib/contrib/vstudio/readme.txt
PNG/zlib/contrib/vstudio/vc7/miniunz.vcproj
PNG/zlib/contrib/vstudio/vc7/minizip.vcproj
PNG/zlib/contrib/vstudio/vc7/testzlib.vcproj
PNG/zlib/contrib/vstudio/vc7/zlib.rc
PNG/zlib/contrib/vstudio/vc7/zlibstat.vcproj
PNG/zlib/contrib/vstudio/vc7/zlibvc.def
PNG/zlib/contrib/vstudio/vc7/zlibvc.sln
PNG/zlib/contrib/vstudio/vc7/zlibvc.vcproj
PNG/zlib/contrib/vstudio/vc8/miniunz.vcproj
PNG/zlib/contrib/vstudio/vc8/minizip.vcproj
PNG/zlib/contrib/vstudio/vc8/testzlib.vcproj
PNG/zlib/contrib/vstudio/vc8/testzlibdll.vcproj
PNG/zlib/contrib/vstudio/vc8/zlib.rc
PNG/zlib/contrib/vstudio/vc8/zlibstat.vcproj
PNG/zlib/contrib/vstudio/vc8/zlibvc.def
PNG/zlib/contrib/vstudio/vc8/zlibvc.sln
PNG/zlib/contrib/vstudio/vc8/zlibvc.vcproj
PNG/zlib/crc32.c
PNG/zlib/crc32.h
PNG/zlib/deflate.c
PNG/zlib/deflate.h
PNG/zlib/example.c
PNG/zlib/examples/README.examples
PNG/zlib/examples/fitblk.c
PNG/zlib/examples/gun.c
PNG/zlib/examples/gzappend.c
PNG/zlib/examples/gzjoin.c
PNG/zlib/examples/gzlog.c
PNG/zlib/examples/gzlog.h
PNG/zlib/examples/zlib_how.html
PNG/zlib/examples/zpipe.c
PNG/zlib/examples/zran.c
PNG/zlib/gzio.c
PNG/zlib/infback.c
PNG/zlib/inffast.c
PNG/zlib/inffast.h
PNG/zlib/inffixed.h
PNG/zlib/inflate.c
PNG/zlib/inflate.h
PNG/zlib/inftrees.c
PNG/zlib/inftrees.h
PNG/zlib/make_vms.com
PNG/zlib/minigzip.c
PNG/zlib/msdos/Makefile.bor
PNG/zlib/msdos/Makefile.dj2
PNG/zlib/msdos/Makefile.emx
PNG/zlib/msdos/Makefile.msc
PNG/zlib/msdos/Makefile.tc
PNG/zlib/old/Makefile.riscos
PNG/zlib/old/README
PNG/zlib/old/descrip.mms
PNG/zlib/old/os2/Makefile.os2
PNG/zlib/old/os2/zlib.def
PNG/zlib/old/visual-basic.txt
PNG/zlib/old/zlib.html
PNG/zlib/projects/README.projects
PNG/zlib/projects/visualc6/README.txt
PNG/zlib/projects/visualc6/example.dsp
PNG/zlib/projects/visualc6/minigzip.dsp
PNG/zlib/projects/visualc6/zlib.dsp
PNG/zlib/projects/visualc6/zlib.dsw
PNG/zlib/qnx/package.qpg
PNG/zlib/trees.c
PNG/zlib/trees.h
PNG/zlib/uncompr.c
PNG/zlib/win32/DLL_FAQ.txt
PNG/zlib/win32/Makefile.bor
PNG/zlib/win32/Makefile.emx
PNG/zlib/win32/Makefile.gcc
PNG/zlib/win32/Makefile.msc
PNG/zlib/win32/VisualC.txt
PNG/zlib/win32/zlib.def
PNG/zlib/win32/zlib1.rc
PNG/zlib/zconf.h
PNG/zlib/zconf.in.h
PNG/zlib/zlib.3
PNG/zlib/zlib.h
PNG/zlib/zutil.c
PNG/zlib/zutil.h
pod/804delta.pod
pod/Adjuster.pod
pod/after.pod
pod/Animation.pod
pod/Balloon.pod
pod/bind.pod
pod/bindtags.pod
pod/Bitmap.pod
pod/BrowseEntry.pod
pod/Button.pod
pod/callbacks.pod
pod/Canvas.pod
pod/CHANGES
pod/Checkbutton.pod
pod/chooseColor.pod
pod/chooseDirectory.pod
pod/Clipboard.pod
pod/CmdLine.pod
pod/ColorEditor.pod
pod/composite.pod
pod/Compound.pod
pod/ConfigSpecs.pod
pod/Derived.pod
pod/Dialog.pod
pod/DialogBox.pod
pod/DirTree.pod
pod/DItem.pod
pod/DupName/Dialog.pod
pod/Entry.pod
pod/Error.pod
pod/ErrorDialog.pod
pod/event.pod
pod/Eventloop.pod
pod/exit.pod
pod/extract/extpod
pod/FBox.pod
pod/fileevent.pod
pod/FileSelect.pod
pod/focus.pod
pod/Font.pod
pod/form.pod
pod/Frame.pod
pod/gencmd
pod/getOpenFile.pod
pod/getSaveFile.pod
pod/grab.pod
pod/grid.pod
pod/HList.pod
pod/IconList.pod
pod/Image.pod
pod/InputO.pod
pod/Internals.pod
pod/IO.pod
pod/Label.pod
pod/Labelframe.pod
pod/LabFrame.pod