-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathChangeLog
10521 lines (6412 loc) · 326 KB
/
ChangeLog
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
2006-03-05 Release Manager
* GCC 3.4.6 released.
2005-11-30 Release Manager
* GCC 3.4.5 released.
2005-05-19 Release Manager
* GCC 3.4.4 released.
2005-05-08 Matt Kraai <[email protected]>
* README.SCO: Update the URL.
2005-03-08 Daniel Jacobowitz <[email protected]>
* configure.in: Use an absolute path to install-sh.
* configure: Regenerated.
2005-01-12 David Edelsohn <[email protected]>
Andreas Schwab <[email protected]>
PR bootstrap/18033
* config-ml.in: Eval option if surrounded by single quotes.
2005-01-06 Laurent GUERBY <[email protected]>
* MAINTAINERS: Update my email address.
2004-11-04 Release Manager
* GCC 3.4.3 released.
2004-11-04 H.J. Lu <[email protected]>
PR other/17783
* configure.in: Set up LD_LIBRARY_PATH by default for gcc.
* configure: Regenerated.
2004-10-31 Mark Mitchell <[email protected]>
* README.SCO: Update per FSF instructions.
2004-10-06 Josef Zlomek <[email protected]>
* MAINTAINERS: Update my e-mail address.
2004-09-24 Michael Roth <[email protected]>
* configure.in (--without-headers): Add missing double quotes.
* configure: Regenerate.
2004-09-23 H.J. Lu <[email protected]>
PR bootstrap/17369
* Makefile.tpl (REALLY_SET_LIB_PATH): Add @SET_GCC_LIB_PATH@.
(configure-target-[+module+]): Add @SET_GCC_LIB_PATH@. Set and
export SET_GCC_LIB_PATH_CMD.
(configure-gcc): Likewise.
* Makefile.in: Regenerated.
* configure.in (SET_GCC_LIB_PATH): Set and substitute.
* configure: Regenerated.
2004-09-06 Release Manager
* GCC 3.4.2 released.
2004-07-08 John David Anglin <[email protected]>
PR target/16344
* Makefile.tpl (profiledbootstrap): Build runtime libraries with
feedback based compiler.
* Makefile.in: Rebuilt.
2004-07-01 Release Manager
* GCC 3.4.1 released.
2004-06-25 Nathanael Nerode <[email protected]>
PR bootstrap/14760
* configure.in: When computing baseargs, strip *all* copies of
offending options. Also, don't match/substitute the trailing space,
so that this actually works when two similar options are separated by
only one space.
* configure: Regenerate.
2004-05-18 Kaz Kojima <[email protected]>
PR bootstrap/15120
* libtool.m4 (lt_cv_deplibs_check_method): Use pass_all on sh*.
* */configure: Rebuilt.
2004-04-18 Release Manager
* GCC 3.4.0 released.
2004-03-05 David Edelsohn <[email protected]>
* ltconfig: Disable building static libraries if building shared
libraries on AIX 5L.
2004-03-01 Richard Sandiford <[email protected]>
* configure.in (mips64*-*-linux*): Override mips*-*-linux* case
and disable libgcj.
* configure: Regenerated.
2004-02-25 Nathanael Nerode <[email protected]>
PR bootstrap/11932
* mkinstalldirs: Update to version 2004-02-15.20
2004-02-25 Kelley Cook <[email protected]>
* MAINTAINERS: Add myself to write-after-approval.
2004-02-22 Matthias Klose <[email protected]>
* config.guess: Update from version 2003-10-16 to 2004-02-16.
* config.sub: Update from version 2003-11-03 to 2004-02-16.
2004-02-20 Andrew Pinski <[email protected]>
* MAINTAINERS: Add Nicola Pero and myself as libobjc
maintainers.
2004-02-14 Jerry Quinn <[email protected]>
* MAINTAINERS: Added myself to write-after-approval.
2004-02-12 Kazu Hirata <[email protected]>
* MAINTAINERS: Alphabetize.
2004-02-04 Geoffrey Keating <[email protected]>
Partial merge from upstream:
* ltmain.in: When setting IFS to '~', be careful about user
arguments that contain '~'.
2004-02-05 Rainer Orth <[email protected]>
* configure.in: Don't pass --with-stabs on IRIX 5 either.
* configure: Regenerate.
2004-01-19 Paolo Carlini <[email protected]>
* MAINTAINERS: Update my email address.
2004-01-17 Volker Reichelt <[email protected]>
* MAINTAINERS: Remove entries without email address.
2004-01-15 Daniel Jacobowitz <[email protected]>
* MAINTAINERS: Add myself to write-after-approval.
2004-01-15 Steven Bosscher <[email protected]>
* MAINTAINERS: Update my email address.
2004-01-14 Loren J. Rittle <[email protected]>
* Makefile.def (target_modules) [libtermcap, libiberty, zlib]: Stage.
* Makefile.tpl (configure-target-[+module+]): Support stage.
* Makefile.in: Rebuilt.
2004-01-12 Ian Lance Taylor <[email protected]>
* MAINTAINERS: Add myself as a libiberty MAINTAINER.
2004-01-10 Richard Sandiford <[email protected]>
* MAINTAINERS: Add myself as a MIPS maintainer.
2004-01-04 Nathanael Nerode <[email protected]>
* configure.in: Use ./config.cache, not config.cache.
* configure: Regenerate.
* Makefile.tpl: Special-casing not needed for GCC any more.
* Makefile.in: Regenerate.
* configure.in: Don't share a cache file for host dirs.
* configure: Regenerate.
* config-ml.in: Don't mess with the cache file.
2004-01-04 Eric Botcazou <[email protected]>
* MAINTAINERS: Move myself from 'Write After Approval' to
'CPU Port Maintainers' section as SPARC maintainer.
2004-01-03 Nathanael Nerode <[email protected]>
* Makefile.tpl: Make GCC use a separate config.cache.
* Makefile.in: Regenerate.
PR bootstrap/11932, PR bootstrap/11933
(I don't know if it will fix either of them, but it relates
to them.)
* configure.in: Don't use shared config.cache for target
directories.
* configure: Regenerate.
2004-01-02 Dan Nicolaescu <[email protected]>
* MAINTAINERS: Add myself to 'Write After Approval' section.
2003-12-31 Roger Sayle <[email protected]>
* configure.in (ia64*-*-hpux*): Disable building java libraries.
* configure: Regenerated.
2003-12-23 Kazu Hirata <[email protected]>
* MAINTAINERS: Remove the mn10200 maintainer.
2003-12-21 Bernardo Innocenti <[email protected]>
* configure.in (*-*-uclinux): Exclude newlib, libgloss and rda.
* configure: Regenerated.
2003-12-16 Jan Hubicka <[email protected]>
* MAINTAINERS: Add myself as callgraph maintainer.
2003-12-08 Thomas Fitzsimmons <[email protected]>
* configure.in (raw_libstdcxx_flags): Remove the leading space.
* configure: Regenerate.
2003-12-01 Giovanni Bajo <[email protected]>
* MAINTAINERS: Move myself from 'Bug database only accounts' to
'Write After Approval' section. Update email.
2003-12-01 James Lemke <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2003-11-20 Matt Thomas <[email protected]>
* MAINTAINERS: Add myself as a vax port maintainer.
2003-11-20 Kelley Cook <[email protected]>
* Makefile.tpl (BASE_FLAGS_TO_PASS): Pass along CONFIG_SHELL.
(configure-build-[+module+], configure-[+module+]): Likewise.
(configure-target-[+module+], configure-gcc, config.status): Likewise.
* Makefile.in: Regenerate.
2003-11-19 Andreas Tobler <[email protected]>
* libtool.m4: Sync darwin bits from libtool cvs to build a gcc with
shared/dylibed libraries.
* ltmain.sh: Likewise.
* ltcf-c.sh: Likewise, disable shared library build for OS-X < 10.3.
* ltcf-cxx.sh: Likewise.
* ltcf-gcj.sh: Likewise.
* ltconfig: Likewise.
2003-11-17 Stan Cox <[email protected]>
* MAINTAINERS: Add myself as iq2000 port maintainer.
2003-11-14 Arnaud Charlet <[email protected]>
* Makefile.tpl (EXTRA_GCC_FLAGS): Pass BOOT_ADAFLAGS.
* Makefile.in: Regenerate.
2003-11-03 Ulrich Weigand <[email protected]>
* config.sub: Update to 2003-11-03 version.
2003-10-20 Phil Edwards <[email protected]>
* configure.in (*-*-vxworks): Add target-libiberty to noconfdirs.
* configure: Regenerate.
2003-10-20 Nicolas Pitre <[email protected]>
* MAINTAINERS: Add myself to 'Write After Approval' section.
2003-10-20 Arnaud Charlet <[email protected]>
* MAINTAINERS (Various maintainers: Ada front end): Added myself.
2003-10-19 Joseph S. Myers <[email protected]>
* MAINTAINERS: Update my email address.
2003-10-17 Rainer Orth <[email protected]>
* config-ml.in (multi-do): Pass MULTIFLAGS to subdir makes.
2003-10-17 Ralph Loader <[email protected]>
* MAINTAINERS: Add myself to 'Write After Approval' section.
2003-10-16 Bernardo Innocenti <[email protected]>
* config.guess: Update to 2003-10-16 version.
* config.sub: Update to 2003-10-16 version.
2003-10-15 David Daney <[email protected]>
* MAINTAINERS: Added myself to 'Write After Approval' section.
2003-10-15 Falk Hueffner <[email protected]>
* MAINTAINERS: Move myself from 'Bug database only accounts' to
'Write After Approval' section. Update email.
2003-10-14 Roger Sayle <[email protected]>
* MAINTAINERS: Move myself from 'Write After Approval' to
'Various Maintainers' section as middle-end maintainer.
2003-10-13 Nathanael Nerode <[email protected]>
* Makefile.tpl: Make GCC_FLAGS_TO_PASS a superset of
HOST_FLAGS_TO_PASS.
* Makefile.in: Regenerate.
2003-10-11 Bernardo Innocenti <[email protected]>
* config.guess: Update to 2003-10-07 version.
* config.sub: Update to 2003-10-07 version.
2003-10-06 Rainer Orth <[email protected]>
* ltcf-cxx.sh (irix5*, irix6*): Prefix -soname and its arg with ${wl}.
* ltconfig (irix5*, irix6*): Don't override version_type.
2003-10-05 Mohan Embar <[email protected]>
* configure.in: Allow explicit specification of CFLAGS_FOR_BUILD.
* configure: Rebuilt
* Makefile.tpl: Use CFLAGS_FOR_BUILD computed by configure
* Makefile.in: Rebuilt
2003-10-03 H.J. Lu <[email protected]>
* ltconfig (sys_lib_search_path_spec): Fix a typo for HPUX.
2003-09-30 Carlo Wood <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2003-09-29 Paul Koning <[email protected]>
* MAINTAINERS: Move myself from "Write After Approval"
to CPU platform maintainers for pdp11 platform.
2003-09-23 Andreas Tobler <[email protected]>
* MAINTAINERS: Move myself from 'Write After Approval' to
'Various Maintainers' section as libffi testsuite maintainer.
2003-09-21 Daniel Jacobowitz <[email protected]>
* configure.in: Pass a computed --program-transform-name
to subconfigures.
* configure: Regenerated.
2003-09-20 Nathanael Nerode <[email protected]>
* Makefile.tpl: Don't pass down obsolete ENQUIRE variable.
* Makefile.in: Regenerate.
* Makefile.tpl: Don't pass (unused) DLLTOOL or WINDRES to gcc.
* Makefile.in: Regenerate.
2003-09-19 Ziemowit Laski <[email protected]>
* MAINTAINERS: Move myself from 'Write After Approval'
to 'Various Maintainers' (objective-c) section.
2003-09-17 Daniel Jacobowitz <[email protected]>
* configure.in (TOPLEVEL_CONFIGURE_ARGUMENTS, baseargs): Fix
quoting.
* configure: Regenerated.
2003-09-16 Joel Brobecker <[email protected]>
* MAINTAINERS (Write After Approval): Add myself to write after
approval list.
2003-09-16 Dorit Naishlos <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2003-09-09 Ian Lance Taylor <[email protected]>
* MAINTAINERS: Update my e-mail address.
2003-09-09 Alan Modra <[email protected]>
* libtool.m4 (LD): Correct powerpc64 host match.
2003-09-06 James E Wilson <[email protected]>
* MAINTAINTERS: Update my affiliation and email address.
2003-09-06 Zdenek Dvorak <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2003-09-04 DJ Delorie <[email protected]>
* configure: Regenerate.
2003-09-04 Robert Millan <[email protected]>
* configure.in: Match GNU/KFreeBSD with new kfreebsd*-gnu triplet.
2003-09-02 Kaveh R. Ghazi <[email protected]>
* configure.in: Ensure arguments to sed are properly spaced.
* configure: Regenerate.
2003-08-30 Gerald Pfeifer <[email protected]>
* MAINTAINERS: Update my e-mail address.
2003-08-28 Mohan Embar <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2003-08-27 Daniel Jacobowitz <[email protected]>
* configure.in: Set RAW_CXX_FOR_TARGET if unset.
* configure: Regenerated.
2003-08-23 Marek Michalkiewicz <[email protected]>
* MAINTAINERS: Update my email address.
2003-08-23 Phil Edwards <[email protected]>
* configure.in: Use newline instead of semicolon when assuming
shell arguments in a for loop.
* configure: Regenerated.
2003-08-22 Jason Eckhardt <[email protected]>
* MAINTAINERS: Resurrect the i860 maintainer.
2003-08-20 Geoffrey Keating <[email protected]>
PR 8180
* configure.in: When testing with_libs and with_headers, treat
'no' as unset. Based on a patch by Dan Kegel <[email protected]>.
* configure: Regenerate.
* configure.in (TOPLEVEL_CONFIGURE_ARGUMENTS): Quote properly for
make, shell, etc.
(baseargs): Likewise.
* configure: Regenerate.
2003-08-20 Bernardo Innocenti <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2003-08-19 Geoffrey Keating <[email protected]>
* configure.in: Disable libgcj for darwin not on powerpc.
* configure: Rebuild.
2003-08-14 Alexandre Duret-Lutz <[email protected]>
* config-ml.in, symlink-tree: Add license.
2003-08-03 Richard Stallman <[email protected]>
Eben Moglen <[email protected]>
* README.SCO: New file.
2003-08-01 Matt Kraai <[email protected]>
* Makefile.tpl (check, check-c++): Express dependencies using
dependencies rather than commands.
* Makefile.in: Regenerate.
2003-08-01 Andrew Cagney <[email protected]>
* configure.in (noconfigdirs): Do not add GDB when m32r-*-*.
* configure: Ditto.
2003-07-31 Geoffrey Keating <[email protected]>
* Makefile.tpl (libsubdir): Use gcc instead of gcc-lib.
* Makefile.in: Update.
2003-07-30 Andreas Tobler <[email protected]>
* configure.in: Enable libgcj for darwin.
* configure: Rebuild.
2003-07-29 Phil Edwards <[email protected]>
* config-ml.in: Use ac_configure_args directly instead of
ml_arguments. Only set ml_norecursion if --no[-]recursion is
actually seen.
2003-07-27 Nathanael Nerode <[email protected]>
* Makefile.tpl: Use 'mkinstalldirs' rather than 'mkdir' when
creating target and build subdirs to build all parent dirs as needed.
* Makefile.in: Rebuild.
* configure.in: Don't build dirs explicitly here.
* configure: Rebuild.
2003-07-26 Paul Brook <[email protected]>
* MAINTAINERS (fortran 95): Add myself, Steven Bosscher and Toon Moene.
2003-07-22 Alexandre Oliva <[email protected]>
* Makefile.tpl (all-make): Depend on intl.
* Makefile.in: Rebuilt.
2003-07-20 Phil Edwards <[email protected]>
* install-sh: Update to newer upstream versions (associated with
aclocal 1.7).
* mkinstalldirs: Likewise.
* missing: Likewise, plus $1Help2man -> $1 typo fix.
2003-07-16 Andrew Pinski <[email protected]>
* MAINTAINERS: Move self from Bug database only accounts
to write-after-approval.
2003-07-16 Nathanael Nerode <[email protected]>
* config.if: Remove unused libc_interface determination.
2003-07-14 Nathanael Nerode <[email protected]>
* MAINTAINERS: Move self from write-after-approval to
build machinery (*.in).
2003-07-13 Nathanael Nerode <[email protected]>
PR bootstrap/11273
PR bootstrap/11408
* Makefile.tpl: Set INSTALL and friends using autoconf. Remove
unused INSTALL_PROGRAM_ARGS.
* configure.in: Use AC_PROG_INSTALL.
* Makefile.in: Regenerate.
* configure: Regenerate.
2003-07-13 Kazu Hirata <[email protected]>
* MAINTAINERS: Alphabetize.
2003-07-10 Alexandre Oliva <[email protected]>
* configure: Rebuilt.
2001-09-26 Alexandre Oliva <[email protected]>
* configure.in (noconfigdirs) [am33_2.0-*-linux*]: Don't build
newlib nor libgloss.
Wed May 9 10:07:19 2001 Alexandre Oliva <[email protected]>
* configure.in (am33_2.0-*-linux*): Added.
2003-07-09 Bob Wilson <[email protected]>
* configure.in: Add ${libgcj} to noconfigdirs for xtensa-*-* targets.
* configure: Regenerate.
2003-07-07 Zack Weinberg <[email protected]>
* Makefile.tpl (configure-gcc): Depend on maybe-configure-intl.
* Makefile.in: Regenerate.
2003-07-04 Zack Weinberg <[email protected]>
* Makefile.tpl (all-bootstrap): Depend on maybe-all-intl.
* Makefile.in: Regenerate.
2003-07-04 H.J. Lu <[email protected]>
* Makefile.tpl: Replace PWD with PWD_COMMAND.
* Makefile.in: Regenerated.
* config-ml.in: Replace PWD with PWD_COMMAND.
2003-07-04 Zack Weinberg <[email protected]>
* intl: New directory; see intl/ChangeLog for details.
* ABOUT-NLS, config.rpath: Import from gettext 0.12.1.
* Makefile.tpl: all-gcc depends on maybe-all-intl.
* Makefile.in: Regenerate.
2003-06-27 Nathanael Nerode <[email protected]>
* configure.in: Clean up config-lang.in handling. Delete
useless assignment to "subdirs".
* configure: Regenerate.
2003-06-26 Nathanael Nerode <[email protected]>
* configure.in: Rename 'target_libs' to 'target_libraries'.
Remove useless reference to 'target_libs'.
* configure: Regenerate.
2003-06-23 Keith Seitz <[email protected]>
* Makefile.tpl: Add maybe-configure-itcl to configure-gdb.
* Makefile.in: Regenerate.
2003-06-23 Nathanael Nerode <[email protected]>
* Makefile.def: Introduce flags_to_pass.
* Makefile.tpl: Generate BASE_FLAGS_TO_PASS using it.
* Makefile.in: Regenerate.
2003-06-23 Hans-Peter Nilsson <[email protected]>
* configure.in (noconfigdirs) <cris-*-*>: Disable target-newlib
and target-libgloss.
<d30v-*-*, fr30-*-*, i960-*-*, m32r-*-*>: Disable gdb.
<h8300*-*-*>: Disable libf2c and ${libgcj}.
* configure: Regenerate.
2003-06-17 Benjamin Kosnik <[email protected]>
* configure.in: Update testsuite_flags to new location.
* configure. Regenerate.
2003-06-18 Nathanael Nerode <[email protected]>
* Makefile.tpl: Remove BUILD_CC stuff.
* Makefile.in: Regenerate.
2003-06-17 Kazu Hirata <[email protected]>
* MAINTAINERS (Write After Approval): Remove Andrew Haley.
2003-06-16 Graeme Peterson <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2003-06-14 H.J. Lu <[email protected]>
* config.guess: Update to 2003-06-12 version.
* config.sub: Update to 2003-06-13 version.
2003-06-12 H.J. Lu <[email protected]>
* config.guess: Update to 2003-06-06 version.
* config.sub: Update to 2003-06-06 version.
2003-06-11 Rainer Orth <[email protected]>
* configure.in: Don't pass --with-stabs for mips*-sgi-irix6*o32.
* configure. Regenerate.
2003-06-10 Nathanael Nerode <[email protected]>
* configure.in: Disable serial configure by default.
* configure: Regenerate.
* Makefile.tpl: Abolish .NOTPARALLEL.
* Makefile.in: Regenerate.
* Makefile.tpl: Replace {build,host,target}_canonical by
{build,host,target}.
* Makefile.in: Regenerate.
* Makefile.tpl: Fix stupid pasto.
* Makefile.in: Regenerate.
2003-06-09 Nathanael Nerode <[email protected]>
* Makefile.tpl: Remove bogus conditional.
* Makefile.in: Regenerate.
2003-06-05 Jan Hubicka <[email protected]>
* Makefile.tpl (profiledbootstrap): New target.
* Makefile.in (profiledbootstrap): New target.
2003-06-05 Wolfgang Bangerth <[email protected]>
* MAINTAINERS (Bugzilla only): Add Dara Hazeghi and Andrew
Pinski. Remove user names from other bugzilla-only maintainers.
2003-06-03 Nathanael Nerode <[email protected]>
* Makefile.tpl: Make 'recursive targets' using autogen rather
than shell loop. Remove duplicate 'clean' targets and false
comments.
* Makefile.def: Add systematic dependencies to 'recursive' targets.
Add systematic method of specifying missing targets in subdirs.
Add copyright boilerplate.
* Makefile.in: Regenerate.
* configure.in: Add 'recursive targets' to maybe list.
* configure: Regenerate.
* MAINTAINERS: "GNATS only" -> "Bug database only".
* Makefile.tpl: Rename [+target+] to [+make_target+].
* Makefile.def: Rename 'target' to 'make_target'.
2003-05-31 Neil Booth <[email protected]>
* MAINTAINERS: Add self as options handling maintainer.
2003-05-28 Michael Meissner <[email protected]>
* MAINTAINERS: Remove myself as m32r/v850 maintainer, since it has
been too long since I touched those ports.
2003-05-28 DJ Delorie <[email protected]>
* Makefile.tpl: Make maybe-check-gcc .PHONY.
* Makefile.in: Regenerate.
2003-05-21 Maciej W. Rozycki <[email protected]>
* configure.in: Use curly braces in the definition of tooldir.
* configure: Regenerate.
2003-05-21 DJ Delorie <[email protected]>
* Makefile.tpl (configure-target-libiberty): Depend only on gcc, not
newlib or libgloss.
* Makefile.in: Regenerate.
2003-05-21 DJ Delorie <[email protected]>
* Makefile.tpl: Add missing empty maybe-check-gcc target.
* Makefile.in: Regenerate.
2003-05-20 Ian Lance Taylor <[email protected]>
* MAINTAINERS: Update my e-mail address.
2003-05-19 Nathanael Nerode <[email protected]>
* configure.in: Switch more things to use maybe dependencies.
* Makefile.tpl: Switch more things to use maybe dependencies.
Factor out common code from autogen IF statements.
* configure: Regenerate.
* Makefile.in: Regenerate.
2003-05-14 Kelley Cook <[email protected]>
* configure.in: Accept i[3456789]86 for machine type.
* configure: Regenerate.
2003-05-18 Nathanael Nerode <[email protected]>
* configure.in: Switch more things to use maybe dependencies.
Rearrange a little. Use GCC_TOPLEV_SUBDIRS.
* configure: Regenerate.
* Makefile.tpl: Switch more things to use maybe dependencies.
* Makefile.in: Regenerate.
2003-05-16 Andreas Schwab <[email protected]>
* Makefile.tpl (install-opcodes): Define.
* Makefile.in: Rebuild.
2003-05-13 Andreas Jaeger <[email protected]>
* config.guess: Update to 2003-05-09 version.
* config.sub: Update to 2003-05-09 version.
2003-05-13 Michael Eager <[email protected]>
* configure.in: Correct sed script so that options in quotes are not
deleted.
* configure: Rebuild.
2003-05-12 Corinna Vinschen <[email protected]>
* configure.in (FLAGS_FOR_TARGET): Remove $$s/newlib/libc/sys/cygwin
and $$s/newlib/libc/sys/cygwin32 include paths.
* configure: Ditto.
2003-05-12 Michael Meissner <[email protected]>
* MAINTAINERS: Update my email addresses.
2003-05-06 Eric Botcazou <[email protected]>
* config-ml.in: Propagate INSTALL variables.
2003-05-04 Gerald Pfeifer <[email protected]>
* MAINTAINERS: Remove duplicate entries in Write After Approval.
2003-05-02 Chris Demetriou <[email protected]>
* Makefile.tpl: Require "makeinfo" from texinfo 4.2 or later.
* Makefile.in: Regenerate.
2003-05-02 Wolfgang Bangerth <[email protected]>
* MAINTAINERS (GNATS only): Add Falk Hueffner.
2003-04-30 Wolfgang Bangerth <[email protected]>
* MAINTAINERS (GNATS only): Add Giovanni Bajo.
2003-04-27 Daniel Jacobowitz <[email protected]>
* Makefile.tpl: Clean $(BUILD_SUBDIR).
* Makefile.in: Regenerated.
2003-04-25 Wolfgang Bangerth <[email protected]>
* MAINTAINERS (Write After Approval): Upgrade myself from
GNATS only to write-after-approval. Update my mail address.
2003-04-25 Loren J. Rittle <[email protected]>
(OS Port Maintainers: freebsd): Add myself.
2003-04-22 Mark Mitchell <[email protected]>
* MAINTAINERS (java): Remove Alexandre Petit-Bianco.
2003-04-22 Kean Johnston <[email protected]>
* MAINTAINERS (SCO ports): Added myself.
2003-04-21 Nathan Sidwell <[email protected]>
* MAINTAINERS (gcov): Add myself and Jan Hubicka.
2003-04-19 Kean Johnston <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2003-04-18 Gerald Pfeifer <[email protected]>
* Makefile.tpl (MAKEINFOFLAGS): Default to --split-size=5000000.
* Makefile.in: Regenerate.
2003-04-18 Jakub Jelinek <[email protected]>
* configure.in (powerpc64*-*-linux*): Remove.
* configure: Rebuilt.
2003-04-17 Phil Edwards <[email protected]>
* Makefile.tpl (GCC_STRAP_TARGETS): New variable containing all the
previous bootstrap targets, plus bubblestrap, quickstrap, cleanstrap,
and restrap.
* Makefile.in: Regenerate.
2003-04-16 Richard Earnshaw <[email protected]>
* configure.in (arm-*-netbsdelf*): Enable building java libraries.
* configure: Regenerated.
2003-04-15 DJ Delorie <[email protected]>
* MAINTAINERS: Remove myself as windows/cygwin/mingw maintainer.
2003-04-13 Nick Clifton <[email protected]>
* config-ml.in: Remove support for --disable-aix removing
call-aix multilibs.
2003-04-10 Alexandre Oliva <[email protected]>
* libtool.m4 (lt_cv_deplibs_check_method): Use pass_all on mips*.
* */configure: Rebuilt.
2003-04-08 Joel Sherrill <[email protected]>
* MAINTAINERS: Add my email address.
2003-03-17 Olivier Hainque <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2003-03-14 Nathanael Nerode <[email protected]>
* Makefile.tpl: Move .NOEXPORT, MAKEOVERRIDES back down.
* Makefile.in: Regenerate.
2003-03-14 Michael Chastain <[email protected]>
* Makefile.in: Regenerate with correct Makefile.def.
2003-03-12 Nathanael Nerode <[email protected]>
* Makefile.tpl: Move .NOEXPORT, MAKEOVERRIDES up. Delete unused
Make macro.
* Makefile.in: Regenerate.
* configure.in: Clean up gxx_include_dir logic.
* configure: Regenerate.
2003-03-12 Ansgar Esztermann <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2003-03-10 Ben Elliston <[email protected]>
* MAINTAINERS: Update my mail address.
2003-03-09 Franz Sirl <[email protected]>
* configure.in (gxx_include_dir): Fix typo.
* configure: Regenerated.
2003-03-04 Nathanael Nerode <[email protected]>
* Makefile.tpl: Reindent.
* Makefile.in: Regenerate.
* configure.in: Reindent. Don't set unused variables.
* configure: Regenerate.
2003-03-04 Daniel Jacobowitz <[email protected]>
* configure.in: Include $(build_tooldir)/sys-include in
FLAGS_FOR_TARGET.
* configure: Regenerated.
2003-03-04 Nathanael Nerode <[email protected]>
* Makefile.tpl: Always pass down RANLIB.
* Makefile.in: Regenerate.
* Makefile.tpl: Don't set unused enable_shared, enable_threads macros.
* Makefile.in: Regenerate.
* configure.in: Remove unused logic relating to --enable-shared
and --enable-threads. Remove bogus comments. Remove redundant
noconfigdirs.
* configure: Regenerate.
* configure.in: Replace ${libstdcxx_version} by its value.
Remove reference to mh-dgux.
* configure: Regenerate.
2003-03-03 Kevin Buettner <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2003-02-28 Nathanael Nerode <[email protected]>
* Makefile.tpl: Rearrange.
* Makefile.in: Regenerate.
2003-02-25 Uwe Stieber <[email protected]>
* configure.in: Add support for kaOS as cross build target system.
* configure: Regenerated.
2003-02-24 Steven Bosscher <[email protected]>
* MAINTAINERS (Write after approval): Add myself.
2003-02-21 James E Wilson <[email protected]>
* MAINTAINERS: Update my email address.
2003-02-21 Zack Weinberg <[email protected]>
* MAINTAINERS: Add self to blanket write privs. section.
2003-02-20 Sean McNeil <[email protected]>
* Makefile.tpl: Add definition of CPPFLAGS to pass into
configure-target-* as some target builds may require additional
flags for preprocessor tests.
* Makefile.in: Regenerated.
2003-02-19 Alexandre Oliva <[email protected]>
* libtool.m4 (LD): Append -melf* option to LD on IRIX with GNU ld.
* ltconfig: Handle it.
* ltcf-cxx.sh: Use with_gnu_ld passed as a shell variable instead of
auto-detecting it.
* ltcf-cxx.sh: Replace $linker_flags with $compiler_flags wherever
it is used as argument to $CC.
* ltcf-gcj.sh: Likewise.
* configure.in: Introduce --enable-maintainer-mode.
* configure: Rebuilt.
* Makefile.tpl (Makefile.in, configure): Enable dependencies only
for maintainer mode.
* Makefile.in: Rebuilt.
2003-02-18 Jason Merrill <[email protected]>
* Makefile.tpl (check-c++): Allow parallelism.
2003-02-16 Gerald Pfeifer <[email protected]>