This repository was archived by the owner on Sep 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 87
Expand file tree
/
Copy pathChangeLog.19
More file actions
5235 lines (4132 loc) · 213 KB
/
ChangeLog.19
File metadata and controls
5235 lines (4132 loc) · 213 KB
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
2007-09-13 Dalibor Topic <[email protected]>
* configure.ac, README: Set version to 1.1.8.
* RELEASE-NOTES: Cleaned up tested platforms.
2007-09-13 Robert Schuster <[email protected]>
* native/jni/java-net/gnu_java_net_local_LocalSocketImpl.c:
Add #ifndef guard around definition of _GNU_SOURCE.
2007-09-13 Dalibor Topic <[email protected]>
* config/i386/trampolines.S: Mark stack as executable.
Reported by: Joshua Nichols <[email protected]>
2007-09-12 Dalibor Topic <[email protected]>
Fix for build with gcc-4.2, merged in from GNU Classpath.
2007-09-08 Michael Koch <[email protected]>
* native/jni/midi-alsa/Makefile.am (AM_CFLAGS):
Removed @ERROR_CFLAGS@ to not fail build with GCC 4.2.
2007-09-12 Dalibor Topic <[email protected]>
Fix for #72.
* config/alpha/callKaffeException.h (callKaffeException):
Don't clobber frame pointer ($15). That fixes the build with gcc 4.1.
Reported by: Daniel Plaza <[email protected]>
2007-09-12 Dalibor Topic <[email protected]>
Fix for #102.
* configure.ac: Reverted erroring out when gif headers are not found,
that was introduced in 2006-11-19 Dalibor Topic <[email protected]>.
Reported by: Riccardo Mottola <[email protected]>
2007-09-12 Dalibor Topic <[email protected]>
* config/Makefile.in: Regenerated.
2007-09-12 Dalibor Topic <[email protected]>
Merged in Kurt Miller's port to x86_64-openbsd from
OpenBSD ports repository.
* README: Added x86_64-openbsd.
* WHATSNEW: Added x86_64-openbsd port.
2007-09-12 Kurt Miller <[email protected]>
* config/x86_64/openbsd2/config.frag,
config/x86_64/openbsd2/md.c,
config/x86_64/openbsd2/md.h: New files.
* config/Makefile.am (EXTRA_DIST): Added x86_64/openbsd2/config.frag,
x86_64/openbsd2/md.c and x86_64/openbsd2/md.h.
* config/x86_64/threads.h (THREASTACKSIZE): Increase to 512K.
2007-09-12 Dalibor Topic <[email protected]>
Fix for bug #91.
* libraries/clib/awt/X/Makefile.am (libxawt_la_LDFLAGS),
libraries/clib/awt/xynth/Makefile.am (libxynthawt_la_LDFLAGS),
libraries/clib/awt/nano-X/Makefile.am (libnanoxawt_la_LDFLAGS):
export symbols starting with JNI_, like JNI_OnLoad.
2007-09-12 Dalibor Topic <[email protected]>
* libraries/clib/awt/X/cbd.c: Removed unnecessary jcl.h include.
2007-09-12 Dalibor Topic <[email protected]>
* libraries/clib/awt/X/evt.c: Removed unnecessary jcl.h include.
2007-09-11 Dalibor Topic <[email protected]>
Fix for bug #98.
* developers/autogen.sh:
Drop boehm-gc reconfiguration.
* libraries/javalib/Makefile.am:
(MAYBE_GLIBJ_ZIP) Removed.
(link-glibj-zip, unlink-glibj-zip, install-exec-local) Added
when using system classpath, or prebuilt glibj.zip.
(clean-local) Use RM instead of hardcoding 'rm'.
(SUBDIRS) Don't evaluate '.' first.
(jrelib_DATA) Removed MAYBE_GLIBJ_ZIP.
(uninstall-local) Add unlink-glibj-zip as a dependency, to
make sure that glibj.zip link is removed in the cases
when it is set (i.e. when configure to use system classpath
or prebuilt glibj.zip).
* libraries/javalib/external/classpath/lib/Makefile.am:
(all-local) Add glibj.zip as a dependency to make sure
the built continues to function for tools when prebuilt glibj.zip
is used.
2007-08-27 Ito Kazumitsu <[email protected]>
Fixes bug #100
* kaffe/kaffevm/baseClasses.c: Added interfaces implemented by
java.lang.Class.
2007-08-12 Kiyo Inaba <[email protected]>
* RELEASE-NOTES,
FAQ.platform-status: Added results for m68k/netbsd/intrp.
2007-08-12 Kiyo Inaba <[email protected]>
* FAQ/FAQ.arm: New file.
2007-08-11 Kiyo Inaba <[email protected]>
* RELEASE-NOTES,
FAQ.platform-status: Added results for m68k/netbsd.
2007-08-09 Kiyo Inaba <[email protected]>
* RELEASE-NOTES: Added results for i386/netbsd.
* FAQ.platform-status: Added results and statuses for arm,i386,m68k.
2007-08-09 Kazuyuki Shudo <[email protected]>
* kaffe/scripts/kaffe.in: Add KAFFE_NATIVE_LIBRARY_DIR to PATH.
2007-08-09 Dalibor Topic <[email protected]>
* RELEASE-NOTES: Added results for sparc.
2007-08-09 Dalibor Topic <[email protected]>
* RELEASE-NOTES: Added results for cygwin.
2007-08-09 Dalibor Topic <[email protected]>
* FAQ/FAQ.win32: Updated.
2007-08-09 Kazuyuki Shudo <[email protected]>
This brings pthreads failures on Cygwin down to 11 for intrp,
and 24 for jit.
* kaffe/kaffevm/unix-pthreads/signal.c
(KaffePThread_detectStackBoundaries) Work around Cygwin
getpagesize issue. [STACK_GROWS_UP] Add pagesize to
guessPointer.
* kaffe/kaffevm/unix-pthreads/thread-impl.c
(tInitSignals) Treat Cygwin like OLD_LINUXTHREADS.
[__CYGWIN__] Set sigInterrupt to SIGCONT.
2007-08-09 Kiyo Inaba <[email protected]>
* config/arm/netbsd1/md.h: Added signal handler macro.
2007-08-08 Guilhem Lavaux <[email protected]>
* kaffe/kaffevm/boehm-gc/gc-kaffe.c
(GC_notify_or_invoke_finalizers): Added declaration of a private
boehm-gc function.
(maybe_finalize): Use GC_notify_or_invoke_finalizers instead of
GC_invoke_finalizers.
* kaffe/kaffevm/boehm-gc/Makefile.frag: Define GC_THREADS to
enable the pthread function wrappers.
2007-08-08 Dalibor Topic <[email protected]>
* kaffe/kaffevm/reference.c (KaffeVM_registerObjectReference,
defaultObjectFinalizer): Added debug code.
* kaffe/kaffevm/kaffe-gc/gc-refs.c (resizeWeakReferenceObject,
KaffeGC_addWeakRef): Mark weak references correctly.
2007-08-07 Kazuyuki Shudo <[email protected]>
Down to 19 failures from 25 in jit mode with jthreads
and kaffe gc.
* config/i386/cygwin32/jit-md.h (EXCEPTIONPROTO,
EXCEPTIONFRAME): Updated.
* config/i386/cygwin32/md.h (SIGNAL_ARGS,
SIGNAL_CONTEXT_POINTER): Updated.
* kaffe/kaffevm/jit/stackTrace-impl.h (STACKTRACEINIT):
Adapted for Cygwin.
2007-08-07 Dalibor Topic <[email protected]>
* configure.ac, kaffe/kaffe/version.c (printShortVersion): Updated
copyright year.
* configure.ac: Simplified java compiler checking. Error out if no compiler
is selected. Fixes bug #87. Added comment for zlib detection. Cleaned up
comments for classpath configure invocation.
2007-08-07 Dalibor Topic <[email protected]>
* FAQ/FAQ.win32: Updated for Kazayuki Shudo's PIC patch.
2007-08-07 Kazuyuki Shudo <[email protected]>
* config/i386/trampolines.S: Don't generate PIC code
for Cygwin.
2007-08-08 Kiyo Inaba <[email protected]>
* RELEASE-NOTES, TODO: Include status for arm, m68k.
2007-08-07 Dalibor Topic <[email protected]>
* configure.ac: Abort if headers or libary required for
boehm-gc can not be found.
2007-08-07 Dalibor Topic <[email protected]>
* config/x86_64/common.h (ALIGNMENTOF_VOIDP_IN_STACK):
Undefine previous definition from defs.h, before redefining it.
2007-08-07 Dalibor Topic <[email protected]>
* RELEASE-NOTES, TODO: Updated.
* FAQ.platform-status: Reformatted.
2007-08-07 Dalibor Topic <[email protected]>
* THIRDPARTY: Removed fastjar, zip, boehm gc. Updated information on
GNU Classpath.
2007-08-07 Dalibor Topic <[email protected]>
* FAQ/FAQ.automake, developers/autogen.sh: Updated to libtool 1.5.24.
* configure,
libltdl/Makefile.am,
libltdl/Makefile.in,
libltdl/acinclude.m4,
libltdl/configure,
libltdl/ltdl.c,
libltdl/ltdl.h,
libltdl/ltmain.sh,
libraries/javalib/external/classpath/Makefile.in,
libraries/javalib/external/classpath/aclocal.m4,
libraries/javalib/external/classpath/configure,
libraries/javalib/external/classpath/ltmain.sh,
libraries/javalib/external/classpath/doc/Makefile.in,
libraries/javalib/external/classpath/doc/api/Makefile.in,
libraries/javalib/external/classpath/examples/Makefile.in,
libraries/javalib/external/classpath/external/Makefile.in,
libraries/javalib/external/classpath/external/relaxngDatatype/Makefile.in,
libraries/javalib/external/classpath/external/sax/Makefile.in,
libraries/javalib/external/classpath/external/w3c_dom/Makefile.in,
libraries/javalib/external/classpath/include/Makefile.in,
libraries/javalib/external/classpath/lib/Makefile.in,
libraries/javalib/external/classpath/native/Makefile.in,
libraries/javalib/external/classpath/native/fdlibm/Makefile.in,
libraries/javalib/external/classpath/native/jawt/Makefile.in,
libraries/javalib/external/classpath/native/jni/Makefile.in,
libraries/javalib/external/classpath/native/jni/classpath/Makefile.in,
libraries/javalib/external/classpath/native/jni/gconf-peer/Makefile.in,
libraries/javalib/external/classpath/native/jni/gtk-peer/Makefile.in,
libraries/javalib/external/classpath/native/jni/java-io/Makefile.in,
libraries/javalib/external/classpath/native/jni/java-lang/Makefile.in,
libraries/javalib/external/classpath/native/jni/java-net/Makefile.in,
libraries/javalib/external/classpath/native/jni/java-nio/Makefile.in,
libraries/javalib/external/classpath/native/jni/java-util/Makefile.in,
libraries/javalib/external/classpath/native/jni/midi-alsa/Makefile.in,
libraries/javalib/external/classpath/native/jni/midi-dssi/Makefile.in,
libraries/javalib/external/classpath/native/jni/native-lib/Makefile.in,
libraries/javalib/external/classpath/native/jni/qt-peer/Makefile.in,
libraries/javalib/external/classpath/native/jni/xmlj/Makefile.in,
libraries/javalib/external/classpath/native/plugin/Makefile.in,
libraries/javalib/external/classpath/resource/Makefile.in,
libraries/javalib/external/classpath/scripts/Makefile.in,
libraries/javalib/external/classpath/tools/Makefile.in,
m4/libtool.m4,
scripts/ltmain.sh:
Regenerated.
2007-08-07 Dalibor Topic <[email protected]>
* WHATSNEW: Mention that kaffe's copy of boehm gc
was removed.
2007-08-07 Dalibor Topic <[email protected]>
Removed kaffe's copy of Boehm-Weiser garbage collector.
* kaffe/kaffevm/boehm-gc/boehm/.cvsignore,
kaffe/kaffevm/boehm-gc/boehm/AmigaOS.c,
kaffe/kaffevm/boehm-gc/boehm/BCC_MAKEFILE,
kaffe/kaffevm/boehm-gc/boehm/ChangeLog,
kaffe/kaffevm/boehm-gc/boehm/EMX_MAKEFILE,
kaffe/kaffevm/boehm-gc/boehm/MacOS.c,
kaffe/kaffevm/boehm-gc/boehm/MacProjects.sit.hqx,
kaffe/kaffevm/boehm-gc/boehm/Makefile.DLLs,
kaffe/kaffevm/boehm-gc/boehm/Makefile.am,
kaffe/kaffevm/boehm-gc/boehm/Makefile.direct,
kaffe/kaffevm/boehm-gc/boehm/Makefile.dist,
kaffe/kaffevm/boehm-gc/boehm/Makefile.dj,
kaffe/kaffevm/boehm-gc/boehm/Makefile.in,
kaffe/kaffevm/boehm-gc/boehm/NT_MAKEFILE,
kaffe/kaffevm/boehm-gc/boehm/NT_STATIC_THREADS_MAKEFILE,
kaffe/kaffevm/boehm-gc/boehm/NT_THREADS_MAKEFILE,
kaffe/kaffevm/boehm-gc/boehm/OS2_MAKEFILE,
kaffe/kaffevm/boehm-gc/boehm/PCR-Makefile,
kaffe/kaffevm/boehm-gc/boehm/README.QUICK,
kaffe/kaffevm/boehm-gc/boehm/SMakefile.amiga,
kaffe/kaffevm/boehm-gc/boehm/WCC_MAKEFILE,
kaffe/kaffevm/boehm-gc/boehm/acinclude.m4,
kaffe/kaffevm/boehm-gc/boehm/aclocal.m4,
kaffe/kaffevm/boehm-gc/boehm/add_gc_prefix.c,
kaffe/kaffevm/boehm-gc/boehm/allchblk.c,
kaffe/kaffevm/boehm-gc/boehm/alloc.c,
kaffe/kaffevm/boehm-gc/boehm/alpha_mach_dep.S,
kaffe/kaffevm/boehm-gc/boehm/backgraph.c,
kaffe/kaffevm/boehm-gc/boehm/blacklst.c,
kaffe/kaffevm/boehm-gc/boehm/callprocs,
kaffe/kaffevm/boehm-gc/boehm/checksums.c,
kaffe/kaffevm/boehm-gc/boehm/config.guess,
kaffe/kaffevm/boehm-gc/boehm/config.sub,
kaffe/kaffevm/boehm-gc/boehm/configure,
kaffe/kaffevm/boehm-gc/boehm/configure.host,
kaffe/kaffevm/boehm-gc/boehm/configure.in,
kaffe/kaffevm/boehm-gc/boehm/darwin_stop_world.c,
kaffe/kaffevm/boehm-gc/boehm/dbg_mlc.c,
kaffe/kaffevm/boehm-gc/boehm/depcomp,
kaffe/kaffevm/boehm-gc/boehm/digimars.mak,
kaffe/kaffevm/boehm-gc/boehm/dyn_load.c,
kaffe/kaffevm/boehm-gc/boehm/finalize.c,
kaffe/kaffevm/boehm-gc/boehm/gc.mak,
kaffe/kaffevm/boehm-gc/boehm/gc_cpp.cc,
kaffe/kaffevm/boehm-gc/boehm/gc_cpp.cpp,
kaffe/kaffevm/boehm-gc/boehm/gc_dlopen.c,
kaffe/kaffevm/boehm-gc/boehm/gcc_support.c,
kaffe/kaffevm/boehm-gc/boehm/gcj_mlc.c,
kaffe/kaffevm/boehm-gc/boehm/gcname.c,
kaffe/kaffevm/boehm-gc/boehm/headers.c,
kaffe/kaffevm/boehm-gc/boehm/hpux_test_and_clear.s,
kaffe/kaffevm/boehm-gc/boehm/ia64_save_regs_in_stack.s,
kaffe/kaffevm/boehm-gc/boehm/if_mach.c,
kaffe/kaffevm/boehm-gc/boehm/if_not_there.c,
kaffe/kaffevm/boehm-gc/boehm/install-sh,
kaffe/kaffevm/boehm-gc/boehm/libtool.m4,
kaffe/kaffevm/boehm-gc/boehm/ltmain.sh,
kaffe/kaffevm/boehm-gc/boehm/mach_dep.c,
kaffe/kaffevm/boehm-gc/boehm/malloc.c,
kaffe/kaffevm/boehm-gc/boehm/mallocx.c,
kaffe/kaffevm/boehm-gc/boehm/mark.c,
kaffe/kaffevm/boehm-gc/boehm/mark_rts.c,
kaffe/kaffevm/boehm-gc/boehm/mips_sgi_mach_dep.s,
kaffe/kaffevm/boehm-gc/boehm/mips_ultrix_mach_dep.s,
kaffe/kaffevm/boehm-gc/boehm/misc.c,
kaffe/kaffevm/boehm-gc/boehm/missing,
kaffe/kaffevm/boehm-gc/boehm/mkinstalldirs,
kaffe/kaffevm/boehm-gc/boehm/new_hblk.c,
kaffe/kaffevm/boehm-gc/boehm/obj_map.c,
kaffe/kaffevm/boehm-gc/boehm/os_dep.c,
kaffe/kaffevm/boehm-gc/boehm/pc_excludes,
kaffe/kaffevm/boehm-gc/boehm/pcr_interface.c,
kaffe/kaffevm/boehm-gc/boehm/powerpc_darwin_mach_dep.s,
kaffe/kaffevm/boehm-gc/boehm/pthread_stop_world.c,
kaffe/kaffevm/boehm-gc/boehm/pthread_support.c,
kaffe/kaffevm/boehm-gc/boehm/ptr_chck.c,
kaffe/kaffevm/boehm-gc/boehm/real_malloc.c,
kaffe/kaffevm/boehm-gc/boehm/reclaim.c,
kaffe/kaffevm/boehm-gc/boehm/rs6000_mach_dep.s,
kaffe/kaffevm/boehm-gc/boehm/setjmp_t.c,
kaffe/kaffevm/boehm-gc/boehm/solaris_pthreads.c,
kaffe/kaffevm/boehm-gc/boehm/solaris_threads.c,
kaffe/kaffevm/boehm-gc/boehm/sparc_mach_dep.S,
kaffe/kaffevm/boehm-gc/boehm/sparc_netbsd_mach_dep.s,
kaffe/kaffevm/boehm-gc/boehm/sparc_sunos4_mach_dep.s,
kaffe/kaffevm/boehm-gc/boehm/specific.c,
kaffe/kaffevm/boehm-gc/boehm/stubborn.c,
kaffe/kaffevm/boehm-gc/boehm/threadlibs.c,
kaffe/kaffevm/boehm-gc/boehm/typd_mlc.c,
kaffe/kaffevm/boehm-gc/boehm/version.h,
kaffe/kaffevm/boehm-gc/boehm/win32_threads.c,
kaffe/kaffevm/boehm-gc/boehm/Mac_files/MacOS_Test_config.h,
kaffe/kaffevm/boehm-gc/boehm/Mac_files/MacOS_config.h,
kaffe/kaffevm/boehm-gc/boehm/Mac_files/dataend.c,
kaffe/kaffevm/boehm-gc/boehm/Mac_files/datastart.c,
kaffe/kaffevm/boehm-gc/boehm/cord/cordbscs.c,
kaffe/kaffevm/boehm-gc/boehm/cord/cordprnt.c,
kaffe/kaffevm/boehm-gc/boehm/cord/cordtest.c,
kaffe/kaffevm/boehm-gc/boehm/cord/cordxtra.c,
kaffe/kaffevm/boehm-gc/boehm/cord/de.c,
kaffe/kaffevm/boehm-gc/boehm/cord/de_cmds.h,
kaffe/kaffevm/boehm-gc/boehm/cord/de_win.ICO,
kaffe/kaffevm/boehm-gc/boehm/cord/de_win.RC,
kaffe/kaffevm/boehm-gc/boehm/cord/de_win.c,
kaffe/kaffevm/boehm-gc/boehm/cord/de_win.h,
kaffe/kaffevm/boehm-gc/boehm/doc/.cvsignore,
kaffe/kaffevm/boehm-gc/boehm/doc/Makefile.am,
kaffe/kaffevm/boehm-gc/boehm/doc/Makefile.in,
kaffe/kaffevm/boehm-gc/boehm/doc/README,
kaffe/kaffevm/boehm-gc/boehm/doc/README.DGUX386,
kaffe/kaffevm/boehm-gc/boehm/doc/README.Mac,
kaffe/kaffevm/boehm-gc/boehm/doc/README.MacOSX,
kaffe/kaffevm/boehm-gc/boehm/doc/README.OS2,
kaffe/kaffevm/boehm-gc/boehm/doc/README.amiga,
kaffe/kaffevm/boehm-gc/boehm/doc/README.arm.cross,
kaffe/kaffevm/boehm-gc/boehm/doc/README.autoconf,
kaffe/kaffevm/boehm-gc/boehm/doc/README.changes,
kaffe/kaffevm/boehm-gc/boehm/doc/README.contributors,
kaffe/kaffevm/boehm-gc/boehm/doc/README.cords,
kaffe/kaffevm/boehm-gc/boehm/doc/README.darwin,
kaffe/kaffevm/boehm-gc/boehm/doc/README.dj,
kaffe/kaffevm/boehm-gc/boehm/doc/README.environment,
kaffe/kaffevm/boehm-gc/boehm/doc/README.ews4800,
kaffe/kaffevm/boehm-gc/boehm/doc/README.hp,
kaffe/kaffevm/boehm-gc/boehm/doc/README.linux,
kaffe/kaffevm/boehm-gc/boehm/doc/README.macros,
kaffe/kaffevm/boehm-gc/boehm/doc/README.rs6000,
kaffe/kaffevm/boehm-gc/boehm/doc/README.sgi,
kaffe/kaffevm/boehm-gc/boehm/doc/README.solaris2,
kaffe/kaffevm/boehm-gc/boehm/doc/README.uts,
kaffe/kaffevm/boehm-gc/boehm/doc/README.win32,
kaffe/kaffevm/boehm-gc/boehm/doc/barrett_diagram,
kaffe/kaffevm/boehm-gc/boehm/doc/debugging.html,
kaffe/kaffevm/boehm-gc/boehm/doc/gc.man,
kaffe/kaffevm/boehm-gc/boehm/doc/gcdescr.html,
kaffe/kaffevm/boehm-gc/boehm/doc/gcinterface.html,
kaffe/kaffevm/boehm-gc/boehm/doc/leak.html,
kaffe/kaffevm/boehm-gc/boehm/doc/scale.html,
kaffe/kaffevm/boehm-gc/boehm/doc/simple_example.html,
kaffe/kaffevm/boehm-gc/boehm/doc/tree.html,
kaffe/kaffevm/boehm-gc/boehm/include/.cvsignore,
kaffe/kaffevm/boehm-gc/boehm/include/Makefile.am,
kaffe/kaffevm/boehm-gc/boehm/include/Makefile.in,
kaffe/kaffevm/boehm-gc/boehm/include/cord.h,
kaffe/kaffevm/boehm-gc/boehm/include/ec.h,
kaffe/kaffevm/boehm-gc/boehm/include/gc.h,
kaffe/kaffevm/boehm-gc/boehm/include/gc_alloc.h,
kaffe/kaffevm/boehm-gc/boehm/include/gc_allocator.h,
kaffe/kaffevm/boehm-gc/boehm/include/gc_amiga_redirects.h,
kaffe/kaffevm/boehm-gc/boehm/include/gc_backptr.h,
kaffe/kaffevm/boehm-gc/boehm/include/gc_config_macros.h,
kaffe/kaffevm/boehm-gc/boehm/include/gc_cpp.h,
kaffe/kaffevm/boehm-gc/boehm/include/gc_gcj.h,
kaffe/kaffevm/boehm-gc/boehm/include/gc_inl.h,
kaffe/kaffevm/boehm-gc/boehm/include/gc_inline.h,
kaffe/kaffevm/boehm-gc/boehm/include/gc_local_alloc.h,
kaffe/kaffevm/boehm-gc/boehm/include/gc_mark.h,
kaffe/kaffevm/boehm-gc/boehm/include/gc_pthread_redirects.h,
kaffe/kaffevm/boehm-gc/boehm/include/gc_typed.h,
kaffe/kaffevm/boehm-gc/boehm/include/javaxfc.h,
kaffe/kaffevm/boehm-gc/boehm/include/leak_detector.h,
kaffe/kaffevm/boehm-gc/boehm/include/new_gc_alloc.h,
kaffe/kaffevm/boehm-gc/boehm/include/weakpointer.h,
kaffe/kaffevm/boehm-gc/boehm/include/private/cord_pos.h,
kaffe/kaffevm/boehm-gc/boehm/include/private/darwin_semaphore.h,
kaffe/kaffevm/boehm-gc/boehm/include/private/darwin_stop_world.h,
kaffe/kaffevm/boehm-gc/boehm/include/private/dbg_mlc.h,
kaffe/kaffevm/boehm-gc/boehm/include/private/gc_hdrs.h,
kaffe/kaffevm/boehm-gc/boehm/include/private/gc_locks.h,
kaffe/kaffevm/boehm-gc/boehm/include/private/gc_pmark.h,
kaffe/kaffevm/boehm-gc/boehm/include/private/gc_priv.h,
kaffe/kaffevm/boehm-gc/boehm/include/private/gcconfig.h,
kaffe/kaffevm/boehm-gc/boehm/include/private/pthread_stop_world.h,
kaffe/kaffevm/boehm-gc/boehm/include/private/pthread_support.h,
kaffe/kaffevm/boehm-gc/boehm/include/private/solaris_threads.h,
kaffe/kaffevm/boehm-gc/boehm/include/private/specific.h,
kaffe/kaffevm/boehm-gc/boehm/tests/leak_test.c,
kaffe/kaffevm/boehm-gc/boehm/tests/middle.c,
kaffe/kaffevm/boehm-gc/boehm/tests/test.c,
kaffe/kaffevm/boehm-gc/boehm/tests/test_cpp.cc,
kaffe/kaffevm/boehm-gc/boehm/tests/thread_leak_test.c,
kaffe/kaffevm/boehm-gc/boehm/tests/trace_test.c:
Removed.
2007-08-07 Dalibor Topic <[email protected]>
Fixed boehm gc to no longer fail most tests. Adapted code
to use a system wide install of the library.
* configure.ac (KAFFE_BOEHM_GC): Define when using boehm-gc.
Check for gc library. Check for gc/gc.h header. Removed
boehm gc configuration option. Removed boehm gc settings block.
Removed BOEHMGC_SPECIFIC_FLAGS.
* kaffe/kaffevm/gc.h (GarbageCollectorInterface_Ops): Set
return value of getObjectIndex to gc_alloc_type_t.
* kaffe/kaffevm/boehm-gc/Makefile.am (SUBDIRS): Don't
recurse into boehm subdirectory.
(AM_CPPFLAGS) Removed BOEHMGC_SPECIFIC_FLAGS.
(libkaffegc_la_LIBADD) Removed, use system install instead.
* kaffe/kaffevm/boehm-gc/gc-kaffe.c: Cleaned up include files to
use system installation. Added missing standard headers.
(maybe_finalize, GC_kaffe_malloc) Rewritten to use exported boehm APIs.
(GENERAL_MALLOC) Removed.
(GC_kaffe_init) Use numerical constants per boehm API spec,
rather than TRUE or FALSE.
* kaffe/kaffevm/boehm-gc/gc-kaffe.h: Include system header for gc_mark.h.
* kaffe/kaffevm/boehm-gc/gc-refs.c: Include system header for gc.h.
(KaffeGC_addRef, resizeWeakReferenceObject, KaffeGC_rmRef, KaffeGC_addWeakRef,
KaffeGC_rmWeakRef, KaffeGC_clearWeakRef) Use GC_MALLOC_UNCOLLECTABLE and
GC_FREE rather than lower case variants for debuggability.
* kaffe/kaffevm/boehm-gc/gc2.c: Include system header for gc.h and gc_mark.h.
(KaffeGC_realloc, KaffeGC_free, KaffeGC_malloc)
Use GC_REALLOC, GC_FREE and GC_MALLOC_UNCOLLECTABLE rather than lower case
variants for debuggability.
(KaffeGC_malloc) Don't use GC_malloc_atomic_uncollectable, as it's only available
conditionally.
(KaffeGC_GetObjectBase) Added assert.
(KaffeGC_GetObjectIndex) Changed prototype to return gc_alloc_type_t.
Added assert.
(KaffeGC_GetObjectDescription) Changed type if idx to gc_alloc_type_t, and
simplified.
(KaffeGC_Init) Added comments. Use GC_INIT rather than explicitly calling
GC_init. Fixed boehm gc initialization order. Removed unnecessary setting of
heap size to its default unlimited value. Simplified code for setting the
minimal heap size.
* kaffe/kaffevm/boehm-gc/gc2.h: Include system header for gc.h and gc_mark.h.
(MemDescriptor) Changed type of memtype to gc_alloc_type_t.
* kaffe/kaffevm/systems/unix-pthreads/lock-impl.c,
kaffe/kaffevm/systems/unix-pthreads/signal.c,
kaffe/kaffevm/systems/unix-pthreads/thread-impl.c:
Include system header for gc.h.
* kaffe/kaffevm/systems/unix-pthreads/thread-impl.c (jthread_suspendall):
Use GC_disable instead of GC_stop_world and hope for the best.
(jthread_unsuspendall) Use GC_enable instead of GC_start_world and hope
for the best.
2007-08-06 Dalibor Topic <[email protected]>
* configure.ac: Mention configure.ac in copryght information.
(AM_INIT_AUTOMAKE): Require automake 1.10.
2007-08-06 Dalibor Topic <[email protected]>
* TODO: Removed finished merge tasks, added gcj integration.
2007-08-06 Dalibor Topic <[email protected]>
* README, WHATSNEW: Added i386-Interix port.
2007-08-06 Dalibor Topic <[email protected]>
Added port to i386-interix6.
* config/i386/interix6/config.frag,
config/i386/interix6/jit-md.h,
config/i386/interix6/md.c,
config/i386/interix6/md.h:
New files.
* config/config.alias: Added interix.
* include/system.h: Define file separators for interix.
* kaffe/kaffevm/intrp/methodcalls.c: Only include alloca.h,
if it is detected by configure.
* kaffe/kaffevm/systems/unix-pthreads/thread-impl.c (jthread_sleep):
Interix uses usleep instead of nanosleep.
* libraries/clib/native/java_lang_Object.c (PRIi64): Define if not
defined before.
* libraries/javalib/external/classpath/native/jni/java-nio/javanio.h:
Include sys/time.h.
2007-08-06 Dalibor Topic <[email protected]>
Merged in plugin fix for automake 1.10 LDFLAGS issue from GNU Classpath,
and regenerated generated files.
* libraries/javalib/external/classpath/native/plugin/Makefile.am,
libraries/javalib/external/classpath/native/plugin/Makefile.in:
2007-04-16 Dalibor Topic <robilad at kaffe.org>
* native/plugin/Makefile.am (libgcjwebplugin_la_LDFLAGS):
Added AM_LDFLAGS for automake 1.10.
2007-08-06 Dalibor Topic <[email protected]>
Merged in Mark's fix for automake 1.10 LDFLAGS issue from GNU Classpath,
and regenerated generated files. This fixes the GNU Classpath gtk peers.
* libraries/javalib/external/classpath/aclocal.m4,
libraries/javalib/external/classpath/autogen.sh,
libraries/javalib/external/classpath/config.guess,
libraries/javalib/external/classpath/config.sub,
libraries/javalib/external/classpath/configure,
libraries/javalib/external/classpath/configure.ac,
libraries/javalib/external/classpath/ltmain.sh,
libraries/javalib/external/classpath/native/jawt/Makefile.am,
libraries/javalib/external/classpath/native/jawt/Makefile.in,
libraries/javalib/external/classpath/native/jni/gconf-peer/Makefile.am,
libraries/javalib/external/classpath/native/jni/gconf-peer/Makefile.in,
libraries/javalib/external/classpath/native/jni/gtk-peer/Makefile.am,
libraries/javalib/external/classpath/native/jni/gtk-peer/Makefile.in,
libraries/javalib/external/classpath/native/jni/midi-alsa/Makefile.am,
libraries/javalib/external/classpath/native/jni/midi-alsa/Makefile.in,
libraries/javalib/external/classpath/native/jni/midi-dssi/Makefile.am,
libraries/javalib/external/classpath/native/jni/midi-dssi/Makefile.in,
libraries/javalib/external/classpath/native/jni/qt-peer/Makefile.am,
libraries/javalib/external/classpath/native/jni/qt-peer/Makefile.in:
2007-04-05 Mark Wielaard <mark at klomp.org>
* autogen.sh: Recognize automake 1.10.
* configure.ac (AM_INIT_AUTOMAKE): Add -Wno-portability.
* native/jawt/Makefile.am (libjawt_la_LDFLAGS): Add AM_LDFLAGS.
* native/jni/gconf-peer/Makefile.am (libgconfpeer_la_LDFLAGS): Likewise.
* native/jni/gtk-peer/Makefile.am (libgtkpeer_la_LDFLAGS): Likewise.
* native/jni/midi-alsa/Makefile.am (libgjsmalsa_la_LDFLAGS): Likewise.
* native/jni/midi-dssi/Makefile.am (libgjsmdssi_la_LDFLAGS): Likewise.
* native/jni/qt-peer/Makefile.am (libqtpeer_la_LDFLAGS): Likewise.
2007-08-02 Kiyo Inaba <[email protected]>
* config/arm/jit.h,
config/arm/linux/jit3-md.h: Make arm/jit3 work. Not so fast...
2007-07-31 Alper Akcan <[email protected]>
* libraries/clib/awt/xynth/graphic.c: Code update for new GRLib API.
2007-07-22 Kiyo Inaba <[email protected]>
* config/arm/jit-arm.def: FP reg numbering fix for jit.
2007-07-11 Ito Kazumitsu <[email protected]>
* FAQ/FAQ.classlibrary-compile: Updated the ecj status.
2007-07-03 Kiyo Inaba <[email protected]>
ARM FP registers numbering fix.
* config/arm/jit3-arm.def,
config/arm/jit.h
2007-07-03 Kiyo Inaba <[email protected]>
First step to merge coldfire/dragonball port...
* config/m68k/trampolines.S : Replace inst not supported by coldfire.
Reported by: Roland Lezuo <[email protected]>
2007-07-02 Dalibor Topic <[email protected]>
* configure.ac : Check if zlib is recent enough (1.2.3, or later).
Reported by: Kiyo Inaba <[email protected]>
2007-07-02 Dalibor Topic <[email protected]>
Fixed --with-staticlib --disable-zlib-zip build.
* kaffe/kaffe/Makefile.am (kaffe_bin_LDADD),
test/internal/Makefile.am (jitBasic_LDADD),
test/jni/Makefile.am (jniBase_LDADD, jniExecClass_LDADD,
jniReflect_LDADD, jniWeakTest_LDADD) dlopen libkaffevm.
* test/internal/Makefile.am (LIBNATIVE) Removed.
Reported by: Kiyo Inaba <[email protected]>
2007-07-01 Dalibor Topic <[email protected]>
Fixed --with-staticvm --disable-zlib-zip build.
* kaffe/kaffevm/Makefile.am (native_LTLIBRARIES) Added libkaffe.la
for the core VM.
(libkaffe_la_CFLAGS, libkaffe_la_LDFLAGS, libkaffe_la_DEPENDENCIES,
libkaffe_la_LIBADD, nodist_libkaffe_la_SOURCES) Adapted from their
libkaffevm precursors.
(libkaffe_la_SOURCES, libkaffevm_la_SOURCES) Split out the native
vm class library interface into libkaffevm and the core vm code into
libkaffe.
* kaffe/jvmpi/Makefile.am (libkaffejvmpi_la_DEPENDENCIES),
kaffe/kaffe/Makefile.am (LIBKAFFEVM),
libraries/clib/management/Makefile.am (libmanagement_la_LIBADD),
libraries/clib/math/Makefile.am (libmath_la_LIBADD),
libraries/clib/security/Makefile.am (libsecurity_la_LIBADD),
libraries/clib/zip/Makefile.am (libzip_la_LIBADD),
test/internal/Makefile.am (LIBKAFFEVM),
test/jni/Makefile.am (LIBKAFFEVM),
use libkaffe rather then libkaffevm.
* kaffe/jvmpi/Makefile.in,
kaffe/kaffe/Makefile.in,
kaffe/kaffevm/Makefile.in,
libraries/clib/management/Makefile.in,
libraries/clib/math/Makefile.in,
libraries/clib/security/Makefile.in,
libraries/clib/zip/Makefile.in,
test/internal/Makefile.in,
test/jni/Makefile.am,
Regenerated.
* test/jni/Makefile.am (jniBase_LDFLAGS, jniExecClass_LDFLAGS,
jniReflect_LDFLAGS,jniWeakTest_LDFLAGS) New, added -export-dynamic
for the staticvm build.
* kaffe/kaffeh/mem.c (KGC_getMainCollector): New function.
* kaffe/kaffevm/code.c (addLineNumbers): Added debugging messages.
Made start_pc check more lenient to allow for ecj-generated code
to work.
* kaffe/kaffevm/external.c (loadNativeLibrary): Removed unused code.
* kaffe/kaffevm/gc.c (KGC_getMainCollector): Added new function.
* kaffe/kaffevm/gc.h (KGC_getMainCollector): Added new prototype.
(gc_malloc, gc_calloc, gc_realloc, gc_free, gc_add_ref, gc_rm_ref,
invokeGC, adviseGC, invokeFinalizer, gc_throwOOM, gc_enableGC,
gc_disableGC): Use KGC_getMainCollector.
* kaffe/kaffevm/readClass.c (readAttributes): Added debugging messages.
* kaffe/kaffevm/string.c (stringJava2C): Simplified.
Reported by: Kiyo Inaba <[email protected]>
2007-06-29 Ito Kazumitsu <[email protected]>
* FAQ/FAQ.freebsd: Recommends the use of --with-system-classpath.
2007-06-27 Christian Thalinger <[email protected]>
* kaffe/kaffevm/readClass.c (readClass): Accept classes generated
by javac 1.6.
* kaffe/kaffevm/readClass.h (MAJOR_VERSION_V1_6, MINOR_VERSION_V1_6):
New constants.
2007-06-25 Dalibor Topic <[email protected]>
* libraries/javalib/awt-implementations/kaffe/Makefile.am,
libraries/javalib/dnsjava/Makefile.am,
libraries/javalib/tritonus-sound/Makefile.am,
libraries/javalib/vmspecific/Makefile.am,
libraries/javalib/zlib-zip/Makefile.am,
tools/gjdoc/javalib/Makefile.am:
Simplified jar commands to use a single one as much as possible,
since jar on cygwin does not implement -u.
* libraries/javalib/awt-implementations/kaffe/Makefile.in,
libraries/javalib/dnsjava/Makefile.in,
libraries/javalib/tritonus-sound/Makefile.in,
libraries/javalib/vmspecific/Makefile.in,
libraries/javalib/zlib-zip/Makefile.in,
tools/gjdoc/javalib/Makefile.in:
Regenerated.
2007-06-14 Dalibor Topic <[email protected]>
* m4/classpath.m4: Removed unused check for jni.h.
2007-06-13 Dalibor Topic <[email protected]>
* test/regression/Reflect.java: Simplified.
2007-06-13 Dalibor Topic <[email protected]>
* test/regression/ProcessClassStop.java: Simplified.
2007-06-13 Dalibor Topic <[email protected]>
* test/regression/ProcessClassInst.java: Simplified.
2007-06-13 Dalibor Topic <[email protected]>
* test/awt/WidgetsDemo/WidgetsDemo.java (itemStateChanged): Fixed jikes warning.
2007-06-11 Dalibor Topic <[email protected]>
* WHATSNEW: Updated.
2007-06-11 Dalibor Topic <[email protected]>
* THIRDPARTY: Added m4/classpath.m4.
2007-06-11 Dalibor Topic <[email protected]>
Added support for using an existing GNU Classpath installation.
* m4/classpath.m4: Taken from Cacao, slightly adapted.
* Makefile.am (BUILD_ENVIRONMENT-make): Add the installed GNU Classpath
libraries to the KAFFELIBRARPATH.
* configure.ac: Added support for using an existing GNU Classpath installation.
Set GLIBJ_ZIP according to the class library used.
* developers/autogen.sh: Removed fastjar-related parts.
* kaffe/scripts/kaffe.in (KAFFELIBRARYPATH): Add the installed GNU Classpath
libraries.
* libraries/javalib/Makefile.am (USE_SYSTEM_CLASSPATH): Added section to
handle an existing GNU Classpath installation.
* test/internal/Makefile.am (LIBNATIVE): Set according to the source of native
class library code.
* test/regression/TestScript.in (JAVA_COMPILER): Use GLIBJ_ZIP.
2007-06-08 Dalibor Topic <[email protected]>
* FAQ/FAQ.requiredlibraries: Documented zlib & jar tool requirements.
Reported by: Kiyo Inaba <[email protected]>
2007-06-07 Dalibor Topic <[email protected]>
* FAQ/FAQ.automake: Documented use of gettext 0.16.1.
* Makefile.am (SUBDIRS, DIST_SUBDIRS): Removed external.
* configure.ac: Removed support for built-in
fastjar and zip library.
* developers/autogen.sh: Updated to use gettext 0.16.1.
* external/.cvsignore,
external/Makefile.am,
external/Makefile.in,
external/gcc/.cvsignore,
external/gcc/Makefile.am,
external/gcc/Makefile.in,
external/gcc/fastjar/.cvsignore,
external/gcc/fastjar/AUTHORS,
external/gcc/fastjar/CHANGES,
external/gcc/fastjar/COPYING,
external/gcc/fastjar/ChangeLog,
external/gcc/fastjar/INSTALL,
external/gcc/fastjar/Makefile.am,
external/gcc/fastjar/Makefile.in,
external/gcc/fastjar/NEWS,
external/gcc/fastjar/README,
external/gcc/fastjar/aclocal.m4,
external/gcc/fastjar/compile,
external/gcc/fastjar/compress.c,
external/gcc/fastjar/compress.h,
external/gcc/fastjar/config.guess,
external/gcc/fastjar/config.h.in,
external/gcc/fastjar/config.sub,
external/gcc/fastjar/configure,
external/gcc/fastjar/configure.ac,
external/gcc/fastjar/depcomp,
external/gcc/fastjar/dostime.c,
external/gcc/fastjar/dostime.h,
external/gcc/fastjar/fastjar.1,
external/gcc/fastjar/fastjar.info,
external/gcc/fastjar/fastjar.texi,
external/gcc/fastjar/gcc-common.texi,
external/gcc/fastjar/gpl.texi,
external/gcc/fastjar/grepjar.1,
external/gcc/fastjar/install-defs.sh.in,
external/gcc/fastjar/install-sh,
external/gcc/fastjar/jargrep.c,
external/gcc/fastjar/jargrep.h,
external/gcc/fastjar/jartool.c,
external/gcc/fastjar/jartool.h,
external/gcc/fastjar/ltmain.sh,
external/gcc/fastjar/m4/accross.m4,
external/gcc/fastjar/m4/ax_cflags_gcc_option.m4,
external/gcc/fastjar/m4/ax_cflags_warn_all.m4,
external/gcc/fastjar/m4/gcc_AC_FUNC_MKDIR_TAKES_ONE_ARG.m4,
external/gcc/fastjar/m4/getopt.m4,
external/gcc/fastjar/missing,
external/gcc/fastjar/pushback.c,
external/gcc/fastjar/pushback.h,
external/gcc/fastjar/scripts/compile,
external/gcc/fastjar/scripts/config.guess,
external/gcc/fastjar/scripts/config.sub,
external/gcc/fastjar/scripts/depcomp,
external/gcc/fastjar/scripts/install-sh,
external/gcc/fastjar/scripts/ltmain.sh,
external/gcc/fastjar/scripts/missing,
external/gcc/fastjar/shift.c,
external/gcc/fastjar/shift.h,
external/gcc/fastjar/zipfile.h,
external/gcc/zlib/.cvsignore,
external/gcc/zlib/ChangeLog,
external/gcc/zlib/ChangeLog.gcj,
external/gcc/zlib/ChangeLog.kaffe,
external/gcc/zlib/FAQ,
external/gcc/zlib/INDEX,
external/gcc/zlib/Makefile.am,
external/gcc/zlib/Makefile.in,
external/gcc/zlib/README,
external/gcc/zlib/acinclude.m4,
external/gcc/zlib/aclocal.m4,
external/gcc/zlib/adler32.c,
external/gcc/zlib/algorithm.txt,
external/gcc/zlib/amiga/Makefile.pup,
external/gcc/zlib/amiga/Makefile.sas,
external/gcc/zlib/as400/bndsrc,
external/gcc/zlib/as400/compile.clp,
external/gcc/zlib/as400/readme.txt,
external/gcc/zlib/as400/zlib.inc,
external/gcc/zlib/compress.c,
external/gcc/zlib/configure,
external/gcc/zlib/configure.ac,
external/gcc/zlib/contrib/README.contrib,
external/gcc/zlib/contrib/ada/buffer_demo.adb,
external/gcc/zlib/contrib/ada/mtest.adb,
external/gcc/zlib/contrib/ada/read.adb,
external/gcc/zlib/contrib/ada/readme.txt,
external/gcc/zlib/contrib/ada/test.adb,
external/gcc/zlib/contrib/ada/zlib-streams.adb,
external/gcc/zlib/contrib/ada/zlib-streams.ads,
external/gcc/zlib/contrib/ada/zlib-thin.adb,
external/gcc/zlib/contrib/ada/zlib-thin.ads,
external/gcc/zlib/contrib/ada/zlib.adb,
external/gcc/zlib/contrib/ada/zlib.ads,
external/gcc/zlib/contrib/ada/zlib.gpr,
external/gcc/zlib/contrib/asm586/README.586,
external/gcc/zlib/contrib/asm586/match.S,
external/gcc/zlib/contrib/asm686/README.686,
external/gcc/zlib/contrib/asm686/match.S,
external/gcc/zlib/contrib/blast/Makefile,
external/gcc/zlib/contrib/blast/README,
external/gcc/zlib/contrib/blast/blast.c,
external/gcc/zlib/contrib/blast/blast.h,
external/gcc/zlib/contrib/blast/test.txt,
external/gcc/zlib/contrib/delphi/ZLib.pas,
external/gcc/zlib/contrib/delphi/ZLibConst.pas,
external/gcc/zlib/contrib/delphi/readme.txt,
external/gcc/zlib/contrib/delphi/zlibd32.mak,
external/gcc/zlib/contrib/dotzlib/DotZLib.build,
external/gcc/zlib/contrib/dotzlib/DotZLib.sln,
external/gcc/zlib/contrib/dotzlib/DotZLib/AssemblyInfo.cs,
external/gcc/zlib/contrib/dotzlib/DotZLib/ChecksumImpl.cs,
external/gcc/zlib/contrib/dotzlib/DotZLib/CircularBuffer.cs,
external/gcc/zlib/contrib/dotzlib/DotZLib/CodecBase.cs,
external/gcc/zlib/contrib/dotzlib/DotZLib/Deflater.cs,
external/gcc/zlib/contrib/dotzlib/DotZLib/DotZLib.cs,
external/gcc/zlib/contrib/dotzlib/DotZLib/DotZLib.csproj,
external/gcc/zlib/contrib/dotzlib/DotZLib/GZipStream.cs,
external/gcc/zlib/contrib/dotzlib/DotZLib/Inflater.cs,
external/gcc/zlib/contrib/dotzlib/DotZLib/UnitTests.cs,
external/gcc/zlib/contrib/dotzlib/LICENSE_1_0.txt,
external/gcc/zlib/contrib/dotzlib/readme.txt,
external/gcc/zlib/contrib/infback9/README,
external/gcc/zlib/contrib/infback9/infback9.c,
external/gcc/zlib/contrib/infback9/infback9.h,
external/gcc/zlib/contrib/infback9/inffix9.h,
external/gcc/zlib/contrib/infback9/inflate9.h,
external/gcc/zlib/contrib/infback9/inftree9.c,
external/gcc/zlib/contrib/infback9/inftree9.h,
external/gcc/zlib/contrib/inflate86/inffas86.c,
external/gcc/zlib/contrib/inflate86/inffast.S,
external/gcc/zlib/contrib/iostream/test.cpp,
external/gcc/zlib/contrib/iostream/zfstream.cpp,
external/gcc/zlib/contrib/iostream/zfstream.h,
external/gcc/zlib/contrib/iostream2/zstream.h,
external/gcc/zlib/contrib/iostream2/zstream_test.cpp,
external/gcc/zlib/contrib/iostream3/README,
external/gcc/zlib/contrib/iostream3/TODO,
external/gcc/zlib/contrib/iostream3/test.cc,
external/gcc/zlib/contrib/iostream3/zfstream.cc,
external/gcc/zlib/contrib/iostream3/zfstream.h,
external/gcc/zlib/contrib/masm686/match.asm,
external/gcc/zlib/contrib/masmx64/bld_ml64.bat,
external/gcc/zlib/contrib/masmx64/gvmat64.asm,
external/gcc/zlib/contrib/masmx64/inffas8664.c,
external/gcc/zlib/contrib/masmx64/inffasx64.asm,
external/gcc/zlib/contrib/masmx64/readme.txt,
external/gcc/zlib/contrib/masmx86/bld_ml32.bat,
external/gcc/zlib/contrib/masmx86/gvmat32.asm,
external/gcc/zlib/contrib/masmx86/gvmat32c.c,
external/gcc/zlib/contrib/masmx86/inffas32.asm,
external/gcc/zlib/contrib/masmx86/mkasm.bat,
external/gcc/zlib/contrib/masmx86/readme.txt,
external/gcc/zlib/contrib/minizip/ChangeLogUnzip,
external/gcc/zlib/contrib/minizip/Makefile,
external/gcc/zlib/contrib/minizip/crypt.h,
external/gcc/zlib/contrib/minizip/ioapi.c,
external/gcc/zlib/contrib/minizip/ioapi.h,
external/gcc/zlib/contrib/minizip/iowin32.c,
external/gcc/zlib/contrib/minizip/iowin32.h,
external/gcc/zlib/contrib/minizip/miniunz.c,
external/gcc/zlib/contrib/minizip/minizip.c,
external/gcc/zlib/contrib/minizip/mztools.c,
external/gcc/zlib/contrib/minizip/mztools.h,
external/gcc/zlib/contrib/minizip/unzip.c,