-
Notifications
You must be signed in to change notification settings - Fork 4
/
ChangeLog
6374 lines (3886 loc) · 207 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
Fri Mar 16 12:46:19 GMT 2001 Bernd Schmidt ([email protected])
* gcc-2.95.3 Released.
Tue Mar 7 21:48:55 2000 Jeffrey A Law ([email protected])
* config.guess: Fix detection of ReliantUNIX.
Sun Oct 24 23:54:10 PDT 1999 Jeff Law ([email protected])
* gcc-2.95.2 Released.
Mon Aug 16 01:29:24 PDT 1999 Jeff Law ([email protected])
* gcc-2.95.1 Released.
Wed Aug 4 02:07:14 1999 Jeffrey A Law ([email protected])
* config.sub (vxworks case): Use os=-vxworks, not os=vxworks.
Wed Jul 28 21:39:31 PDT 1999 Jeff Law ([email protected])
* gcc-2.95 Released.
Sun Jul 25 23:40:51 PDT 1999 Jeff Law ([email protected])
* gcc-2.95 Released.
Tue Jun 22 23:39:29 1999 Tom Tromey <[email protected]>
* configure.in (target_libs): Added target-zlib.
* Makefile.in (ALL_TARGET_MODULES): Added zlib.
(CONFIGURE_TARGET_MODULES): Likewise.
(CHECK_TARGET_MODULES): Likewise.
(INSTALL_TARGET_MODULES): Likewise.
(CLEAN_TARGET_MODULES): Likewise.
(configure-target-zlib): New target.
(all-target-zlib): Likewise.
(all-target-libjava): Depend on all-target-zlib.
(configure-target-libjava): Depend on configure-target-zlib.
* Makefile.in (configure-target-libjava): Depend on
configure-target-newlib.
(configure-target-boehm-gc): New target.
(configure-target-qthreads): New target.
* configure.in (host_tools): Added zip.
* Makefile.in (all-target-libjava): Depend on all-zip.
(all-zip): New target.
(ALL_MODULES): Added all-zip.
(NATIVE_CHECK_MODULES): Added check-zip.
(INSTALL_MODULES): Added install-zip.
(CLEAN_MODULES): Added clean-zip.
* configure.in (target_libs): Added target-qthreads.
* Makefile.in (ALL_TARGET_MODULES): Added qthreads.
(CONFIGURE_TARGET_MODULES): Likewise.
(CHECK_TARGET_MODULES): Likewise.
(INSTALL_TARGET_MODULES): Likewise.
(CLEAN_TARGET_MODULES): Likewise.
(all-target-qthreads): New target.
(configure-target-libjava): Depend on configure-target-qthreads.
(all-target-libjava): Depend on all-target-qthreads.
* Makefile.in (ALL_TARGET_MODULES): Added libjava, boehm-gc.
(CONFIGURE_TARGET_MODULES): Likewise.
(CHECK_TARGET_MODULES): Likewise.
(INSTALL_TARGET_MODULES): Likewise.
(CLEAN_TARGET_MODULES): Likewise.
(all-target-libjava): New target.
(all-target-boehm-gc): Likewise.
* configure.in (target_libs): Added libjava, boehm-gc.
Sun May 30 16:03:16 1999 Cort Dougan <[email protected]>
* config.guess (ppc-*-linux-gnu): Also use ld emul elf32ppclinux.
Thu May 20 10:00:42 1999 Stephen L Moshier <[email protected]>
* Makefile.in (GCC_FOR_TARGET): Add -I$(build_tooldir)/include.
1999-04-23 Tom Tromey <[email protected]>
* ltconfig, ltmain.sh: Update to libtool 1.2f.
Tue Apr 13 22:50:54 1999 Donn Terry ([email protected])
Martin Heller ([email protected])
* config.guess (interix Alpha): Add.
Sun Apr 11 23:55:34 1999 Alexandre Oliva <[email protected]>
* config-ml.in: On mips*-*-*, if multidirs contains mabi=64, try to
link a trivial program with -mabi=64. If it fails, remove mabi=64
from multidirs.
Sat Apr 10 21:50:01 1999 Philipp Thomas ([email protected])
* config.sub: Set basic_machine to i586 when target_alias = k6-*.
Fri Apr 2 15:11:32 1999 H.J. Lu ([email protected])
* configure (gxx_include_dir): Removed.
* configure.in (gxx_include_dir): Handle it.
* Makefile.in: Likewise.
Thu Mar 18 00:17:50 1999 Mark Elbrecht <[email protected]>
* config/mh-go32: Delete.
* config/mh-djgpp: New. Renamed from mh-go32.
* configure.in (pc-msdosdjgpp): Set host_makefile_frag to
config/mh-djgpp.
Thu Mar 11 01:19:31 1999 Mumit Khan <[email protected]>
* config.sub: Add i386-uwin support.
* config.guess: Likewise.
Thu Mar 11 01:07:55 1999 Franz Sirl <[email protected]>
* configure.in: cleanup, add mh-*pic handling for arm, special
case powerpc*-*-aix*
1999-03-02 Nick Clifton <[email protected]>
* config.sub: Rename CYGNUS LOCAL to EGCS LOCAL
Sun Feb 28 02:20:00 1999 Geoffrey Noer <[email protected]>
* config.sub: Check for "cygwin*" rather than "cygwin32*"
1999-02-24 Nick Clifton <[email protected]>
* config.sub: Fix typo in arm recognition.
Thu Feb 18 19:55:09 1999 Marc Espie <[email protected]>
* config.guess: Recognize openbsd-*-hppa.
Wed Feb 17 01:38:59 1999 H.J. Lu ([email protected])
* Makefile.in (REALLY_SET_LIB_PATH): Append $$$(RPATH_ENVVAR)
only if it is not empty.
1999-02-17 Nick Clifton <[email protected]>
Patch from: Scott Bambrough <[email protected]>
* config.guess: Modified to recognize uname's armv* syntax.
* config.sub: Modified to recognize uname's armv* syntax.
Sun Feb 7 18:01:54 1999 Mumit Khan <[email protected]>
* configure.in (*-*-cygwin32*): Use config/mh-cygwin instead of
the old name config/mh-cygwin32.
Enable texinfo.
Tue Feb 2 19:46:40 1999 Jim Wilson <[email protected]>
* Makefile.in (EXTRA_GCC_FLAGS): Set AR to $AR instead of
$AR_FOR_TARGET. Likewise for RANLIB.
Tue Feb 2 20:05:05 1999 Catherine Moore <[email protected]>
* config.sub (oabi): Recognize.
* configure.in (arm-*-oabi): Handle.
Sat Jan 30 06:09:00 1999 Robert Lipe ([email protected])
* config.guess: Improve detection of i686 on UnixWare 7.
Sat Jan 30 08:04:00 1999 Mumit Khan <[email protected]>
* config.guess: Add support for i386-pc-interix.
* config.sub: Likewise.
* configure.in: Likewise.
* config/mh-interix: New file.
Wed Dec 23 00:20:50 1998 Jeffrey A Law ([email protected])
* config.sub: Clean up handling of hppa2.0.
Tue Dec 22 23:56:31 1998 Rodney Brown ([email protected])
* config.guess: Use C code to identify more HP machines.
Thu Dec 17 01:22:30 1998 Jeffrey A Law ([email protected])
* config.sub: Handle hppa2.0.
Fri Dec 4 01:34:02 1998 Jeffrey A Law ([email protected])
* config.guess: Improve detection of hppa2.0 processors.
Fri Dec 4 01:33:05 1998 Niall Smart <[email protected]>
* config.guess: Recognize FreeBSD using ELF automatically.
1998-11-26 Manfred Hollstein <[email protected]>
* configure (skip-this-dir): Add handling for new shell script, which
might be created by a sub-directory's configure to indicate, this particular
directory is "unwanted".
* Makefile.in ($(CONFIGURE_TARGET_MODULES)): Likewise.
Thu Oct 22 10:55:25 1998 Robert Lipe <[email protected]>
* config.guess: Match any version of Unixware7.
Sun Oct 18 18:34:50 1998 Jeffrey A Law ([email protected])
* config.if (cxx_interface, libstdcxx_interface): Do not try to set
these if the appropriate directories and files to not exist.
Wed Oct 14 10:29:06 1998 Jeffrey A Law ([email protected])
* Makefile.in (DEVO_SUPPORT): Add config.if.
Tue Oct 13 15:45:36 1998 Manfred Hollstein <[email protected]>
* configure: Add pattern to replace "build_tooldir"'s
definition in the generated Makefile with "tooldir"'s
actual value.
Tue Oct 13 09:17:06 1998 Jeffrey A Law ([email protected])
* configure.in: Fix merge typo.
* config.sub: Bring back lost sparcv9.
* Makefile.in (all-snvavigator): Remove all-flexlm dependency.
Mon Oct 12 12:09:44 1998 Jeffrey A Law ([email protected])
* Makefile.in (CHILL_FOR_TARGET): Mirror recent changes to
CC_FOR_TARGET and friends.
Mon Oct 12 12:09:30 1998 Alexandre Oliva <[email protected]>
* Makefile.in (build_tooldir): New variable, same as tooldir.
(CC_FOR_TARGET, GCC_FOR_TARGET, CXX_FOR_TARGET): Add
-B$(build_tooldir)/bin/.
(BASE_FLAGS_TO_PASS): Pass build_tooldir down.
Tue Sep 1 16:23:11 1998 Gerald Pfeifer <[email protected]>
* README: Remove installation instructions and refer to the
INSTALL directory instead.
Wed Sep 30 22:20:50 1998 Robert Lipe <[email protected]>
* config.sub: Add support for i[34567]86-pc-udk.
* configure.in: Likewise.
Wed Sep 30 19:23:48 1998 Geoffrey Noer <[email protected]>
* Makefile.in: add bzip2 package building bits for user
tools module
* configure.in: ditto
Wed Sep 30 03:00:05 1998 Jeffrey A Law ([email protected])
* Makefile.in (TARGET_CONFIGDIRS): Add libobjc.
(ALL_TARGET_MODULES): Add all-target-libobjc.
(CONFIGURE_TARGET_MODULES, CHECK_TARGET_MODULES): Similarly.
(INSTALL_TARGET_MODULES, CLEAN_TARGET_MODULES): Similarly.
(all-target-libchill): Add dependencies.
* configure.in (target_libs): Add libchill.
1998-09-30 Manfred Hollstein <[email protected]>
* configure.in (target_subdir): Remove duplicate line.
Tue Sep 29 22:45:41 1998 Felix Lee <[email protected]>
* Makefile.in (all-automake): fix dependencies.
Mon Sep 28 04:04:27 1998 Jeffrey A Law ([email protected])
* configure.in: Minor cleanups for building in the $(target_alias)
subdir.
1998-09-22 Jim Wilson <[email protected]>
* Makefile.in (bootstrap): Set r and s before make all. Use
BASE_FLAGS_TO_PASS in make all.
(cross): Likewise.
1998-09-20 Mark Mitchell <[email protected]>
* Makefile.in (bootstrap): Pass TARGET_FLAGS_TO_PASS to `make all'.
Sun Sep 20 00:13:02 1998 Richard Henderson <[email protected]>
* config.sub: Fix typo in last change.
1998-09-19 Michael Hayes <[email protected]>
* config.sub: Add support for C4x target.
* configure.in: Likewise.
1998-09-13 David S. Miller <[email protected]>
* config.sub: Recognize sparcv9 just like sparc64.
Wed Sep 9 15:44:52 1998 Robert Lipe <[email protected]>
* config.guess: Match "Pent II" or "PentII" for OpenServer.
Tue Sep 8 01:18:39 1998 Jeffrey A Law ([email protected])
* config.guess: Correctly identify Pentium II sco boxes.
* config.guess: Fix "tr" code. From Weiwen Liu.
Sat Sep 5 13:56:52 1998 John Hughes <[email protected]>
* configure.in: Do not assume x86-svr4 or x86-unixware can handle
stabs.
Sat Sep 5 02:12:02 1998 Jeffrey A Law ([email protected])
* Makefile.in (TARGET_CONFIGDIRS): Add libchill.
(ALL_TARGET_MODULES): Add all-target-libchill.
(CONFIGURE_TARGET_MODULES, CHECK_TARGET_MODULES): Similarly.
(INSTALL_TARGET_MODULES, CLEAN_TARGET_MODULES): Similarly.
(all-target-libchill): Add dependencies.
* configure.in (target_libs): Add libchill.
Sun Aug 30 22:27:02 1998 Lutz Wohlrab <[email protected]>
* config.guess: Avoid assumptions about "tr" behaves when
LANG is set to something other than English.
Sun Aug 30 22:14:44 1998 H.J. Lu ([email protected])
* configure (gxx_include_dir): Changed to
'${prefix}/include/g++'-${libstdcxx_interface}.
* config.if: New to determine the interfaces.
Sun Aug 30 21:15:19 1998 Mark Klein ([email protected])
* config.guess: Detect and handle MPE/IX.
* config.sub: Deal with MPE/IX.
Sat Aug 29 14:32:55 1998 David Edelsohn <[email protected]>
* configure.in: Use mh-aix43.
1998-07-29 Manfred Hollstein <[email protected]>
* configure: Fix --without/--disable cases for gxx-include-dir.
Fri Aug 28 12:28:26 1998 Per Bothner <[email protected]>
* mdata-sh: Imported. Needed for automake support.
Thu Aug 13 12:49:29 1998 H.J. Lu <[email protected]>
* Makefile.in (taz): Try "chmod -R og=u ." before
"chmod og=u `find . -print`".
Fri Jul 31 09:38:33 1998 Catherine Moore <[email protected]>
* configure.in: Add arm-elf and thumb-elf support.
Mon Jul 27 16:23:58 1998 Doug Evans <[email protected]>
* Makefile.in: Undo previous patch.
Fri Jul 24 19:55:24 1998 Doug Evans <[email protected]>
* Makefile.in (INSTALL_TARGET): Move EXTRA_TARGET_HOST_INSTALL_MODULES
to here ...
(install-no-fixedincludes): and here
(INSTALL_MODULES): ... from here.
Fri Jul 24 17:01:42 1998 Ian Lance Taylor <[email protected]>
* config.sub: Merge with FSF.
* config.guess: Merge with FSF.
Sat Jul 18 14:32:43 CDT 1998 Robert Lipe <[email protected]>
* config.guess: (*-pc-sco3.2v5) Add detection for Pentium II.
(*-pc-unixware7) Add detection for Pentium II, Pentium Pro.
Sun Jul 19 00:46:53 CEST 1998 Marc Lehmann <[email protected]>
* INSTALL/README: Fix typo.
Fri Jul 17 13:30:18 1998 Ian Lance Taylor <[email protected]>
* ylwrap: Change absolute path checks to check for DOS style path
names.
* ylwrap: Don't use a full path name if the source file is in the
same directory. From [email protected] (H.J. Lu).
* config-ml.in: Default to being verbose, to match Feb 18 change to
configure.
Thu Jul 16 12:29:51 1998 Ian Lance Taylor <[email protected]>
Brought over from egcs:
Sat Jun 27 22:46:32 1998 Jeffrey A Law ([email protected])
* configure.in (target_subdir): Set to ${target_alias} instead
of "libraries".
Mon Sep 1 16:45:44 1997 Jim Wilson <[email protected]>
* configure.in (target_subdir): Set to libraries if enable_multilib.
Wed Jul 15 01:00:54 1998 Ian Lance Taylor <[email protected]>
* Makefile.in ($(CONFIGURE_TARGET_MODULES)): If there are any
multilibs, force reconfiguration the first time we create
multilib.out in a subdirectory, in case TARGET_SUBDIR is `.'.
Tue Jul 14 23:41:03 1998 Ian Lance Taylor <[email protected]>
* configure.in: Strip any --no option from CONFIG_ARGUMENTS, to
avoid confusion with --no-recursion.
Tue Jul 14 15:37:41 1998 Geoffrey Noer <[email protected]>
* configure.in: Win32 hosts shouldn't use install -x
* install-sh: remove -x option, and special .exe-handling
hack.
Tue Jul 14 13:22:18 1998 Ian Lance Taylor <[email protected]>
* configure: If CC is set but CFLAGS is not, and CC is gcc, make
CFLAGS default to -O2.
* ltmain.sh: Add some hacks to make SunOS --enable-shared work
when using GNU ld.
Fri Jul 10 13:18:23 1998 Ian Lance Taylor <[email protected]>
* ltmain.sh: Correct install when using a different shell.
Tue Jul 7 15:24:38 1998 Ian Lance Taylor <[email protected]>
* ltconfig, ltmain.sh: Update to libtool 1.2b.
Wed Jul 1 16:45:21 1998 Ian Lance Taylor <[email protected]>
* ltconfig: Update to correct AIX handling.
Sat Jun 27 22:46:32 1998 Jeffrey A Law ([email protected])
* Makefile.in (BASE_FLAGS_TO_PASS): Add TARGET_SUBDIR.
* configure.in (target_subdir): Set to ${target_alias} instead
of "libraries".
1998-06-26 Manfred Hollstein <[email protected]>
* Makefile.in (BASE_FLAGS_TO_PASS): Add gcc_version_trigger.
(Makefile): Depend on $(gcc_version_trigger).
* configure (gcc_version): Change default initializer to empty
string.
(gcc_version_trigger): New variable; pass this variable down
to subdir configures to enable them checking gcc's version
themselves. Emit make macros for both gcc_version vars.
(topsrcdir): Initialize reliably.
(recursion line): Remove --with-gcc-version=${gcc_version}.
1998-06-24 Manfred Hollstein <[email protected]>
* configure (enable_version_specific_runtime_libs): Implement new flag
--enable-version-specific-runtime-libs which installs C++ runtime stuff
in $(libsubdir); emit definition in each generated Makefile.
(gxx_include_dir): Initialize depending on
$enable_version_specific_runtime_libs.
1998-06-24 Manfred Hollstein <[email protected]>
* configure (gcc_version): Initialize properly depending on
how and where configure is started.
(recursion line): Pass a --with-gcc-version=${gcc_version}
to configures in subdirs.
Tue Jun 23 22:42:32 1998 Mark Alexander <[email protected]>
* configure.in: Add cygmon and libstub support for mn10200.
1998-06-19 Manfred Hollstein <[email protected]>
* configure (gcc_version): Add new variable describing the
particular gcc version we're building.
* Makefile.in (libsubdir): Add new macro for the directory
in which the compiler finds executables, libraries, etc.
(BASE_FLAGS_TO_PASS): Pass down gcc_version, target_alias
and libsubdir.
Fri Jun 19 02:36:59 1998 Alexandre Oliva <[email protected]>
* Makefile.in (local-clean): Remove *.log.
(warning.log): Built with warn_summary from build.log.
(mail-report.log): Run test_summary.
(mail-report-with-warnings.log): Run test_summary including
warning.log in the report.
Thu Jun 18 11:26:03 1998 Robert Lipe <[email protected]>
* config.guess: Detection of Pentium II for *-sco-3.2v5*.
Mon Jun 15 14:53:54 1998 Andrew Cagney <[email protected]>
* Makefile.in (grep): Grep no longer depends on libiberty.
Fri Jun 12 14:03:34 1998 Syd Polk <[email protected]>
* Makefile.in: all-snavigator needs all-libgui.
Thu Jun 11 19:43:47 1998 Mark Alexander <[email protected]>
* configure.in: Add cygmon and libstub support for mn10300.
Wed Jun 10 11:19:47 1998 Ian Lance Taylor <[email protected]>
* missing: Update to version from automake 1.3.
* ltmain.sh: On installation, don't get confused if the same name
appears more than once in the list of library names.
Wed Jun 3 14:51:42 1998 Ian Lance Taylor <[email protected]>
* config.sub: Accept m68060 and m5200 as CPU names.
Mon Jun 1 17:25:16 1998 Ian Lance Taylor <[email protected]>
* configure: Use && rather than using -a in test, because odd
strings can confuse test.
* configure.in: Likewise.
Thu May 28 19:31:13 1998 Ian Lance Taylor <[email protected]>
* ltconfig, ltmain.sh: Bring in Visual C++ support.
Sat May 23 23:44:13 1998 Alexandre Oliva <[email protected]>
* Makefile.in (boostrap2-lean, bootstrap3-lean,
bootstrap4-lean): New targets.
Mon May 11 23:55:56 1998 Jeffrey A Law ([email protected])
* mpw-* Delete. Not used.
Mon May 11 23:11:34 1998 Jeffrey A Law ([email protected])
* COPYING.LIB: Update FSF address.
Fri May 8 01:30:20 1998 Ian Lance Taylor <[email protected]>
* ltconfig, ltmain.sh: Update to libtool 1.2a.
* Makefile.in (GASB_SUPPORT_DIRS): Remove intl; already included via
GAS_SUPPORT_DIRS.
Thu May 7 17:27:35 1998 Ian Lance Taylor <[email protected]>
* ltconfig, ltmain.sh: Avoid producing a version number if
-version-info was not used.
Tue May 5 18:02:24 1998 Ian Lance Taylor <[email protected]>
* configure.in: Add --with-newlib to CONFIG_ARGUMENTS if we are
building with newlib.
1998-04-30 Paul Eggert <[email protected]>
* Makefile.in (EXTRA_GCC_FLAGS): Remove backslash at end;
Solaris `make' causes it to continue to next definition.
Tue Apr 28 18:11:24 1998 Ian Lance Taylor <[email protected]>
* configure.in: Change alpha to alpha* in several places.
Tue Apr 28 07:35:02 1998 Michael Meissner <[email protected]>
* configure.in (--enable-target-optspace): Remove debug echo.
Thu Apr 23 21:31:16 1998 Jim Wilson <[email protected]>
* configure: Set CXXFLAGS from CXXFLAGS, not CFLAGS.
Thu Apr 23 12:26:38 1998 Ian Lance Taylor <[email protected]>
* ltconfig: Update cygwin32 support.
* Makefile.in (GAS_SUPPORT_DIRS): Add intl.
(BINUTILS_SUPPORT_DIRS, GASB_SUPPORT_DIRS): Likewise.
(GDB_SUPPORT_DIRS): Likewise.
Wed Apr 22 12:30:10 1998 Michael Meissner <[email protected]>
* configure.in (target_makefile_frag): If --enable-target-optspace,
use -Os to compile target libraries rather than -O2. Default to
using -Os for m32r if --{enable,disable}-target-optspace is not
used.
Tue Apr 21 23:06:54 1998 Tom Tromey <[email protected]>
* Makefile.in (all-bfd): Depend on all-intl.
(all-binutils): Likewise.
(all-gas): Likewise.
(all-gprof): Likewise.
(all-ld): Likewise.
1998-04-19 Brendan Kehoe <[email protected]>
* configure.in (host_tools): Fix typo, lbtool -> libtool.
Fri Apr 17 16:20:42 1998 Ian Lance Taylor <[email protected]>
* Makefile.in (all-bfd): Depend upon all-libiberty.
* ltconfig, ltmain.sh: Bring in newer cygwin32 support.
Fri Apr 17 12:22:22 1998 Bob Manson <[email protected]>
* Makefile.in: Add libstub.
* configure.in: Ditto. Build libstub for targets that have cygmon
support.
Tue Apr 14 18:01:55 1998 Ian Lance Taylor <[email protected]>
* configure.in: Don't set PICFLAG on ix86-cygwin32.
Tue Apr 14 12:24:45 1998 J. Kean Johnston <[email protected]>
* configure.in: Recognise i[3456]96-*-sysv5* as a valid host, and
use mh-sysv5 if specified. Support gprof on SCO Open Server.
Tue Apr 14 11:33:51 1998 Krister Walfridsson <[email protected]>
* configure: Define DEFAULT_M4 by searching PATH.
* Makfile.in: Use DEFAULT_M4.
Mon Apr 13 15:37:24 1998 Ian Lance Taylor <[email protected]>
* ltconfig: Add cygwin32 support.
* Makefile.in, configure.in: Add libtool as a native only directory
to configure and build.
Sun Apr 12 20:58:46 1998 Jeffrey A Law ([email protected])
* Makefile.in (INSTALL_MODULES): Remove texinfo.
Wed Apr 8 13:18:56 1998 Philippe De Muyter <[email protected]>
* Makefile.in (EXTRA_GCC_FLAGS): XFOO lines shortened.
Thu Apr 2 14:48:44 1998 Geoffrey Noer <[email protected]>
* Makefile.in: add ash make rules
* configure.in: add ash to native_only and host_tools lists
Thu Mar 26 12:53:20 1998 Tom Tromey <[email protected]>
* Makefile.in (all-gettext, all-intl): New targets.
(ALL_MODULES): Added all-gettext, all-intl.
(CROSS_CHECK_MODULES): Added check-gettext, check-intl.
(INSTALL_MODULES): Added install-gettext, install-intl.
(CLEAN_MODULES): Added clean-gettext, clean-intl.
* configure.in (host_tools): Added gettext.
(native_only): Likewise.
(noconfigdirs) [various cases]: Likewise.
(host_libs): Added intl.
Wed Mar 25 10:04:18 1998 Nick Clifton <[email protected]>
* configure.in: Add thumb-coff target.
* config.sub: Add thumb-coff target.
Wed Mar 25 11:49:12 1998 Jason Molenda ([email protected])
* Makefile.in: Revert yesterday's change.
(all-target-winsup): all-target-librx stays out of here.
Tue Mar 24 16:58:29 1998 Jason Molenda ([email protected])
* Makefile.in (TARGET_CONFIGDIRS, ALL_TARGET_MODULES,
CONFIGURE_TARGET_MODULES, CHECK_TARGET_MODULES,
INSTALL_TARGET_MODULES, CLEAN_TARGET_MODULES, all-target-winsup):
Remove references to librx and libg++.
Tue Mar 24 18:28:12 1998 Eric Mumpower <[email protected]>
* Makefile.in (BASE_FLAGS_TO_PASS): Pass $(lispdir) down to
recursive makes
Tue Mar 24 11:37:45 1998 Ian Lance Taylor <[email protected]>
* Makefile.in (CC_FOR_TARGET): Use $(TARGET_SUBDIR) when passing -B
for newlib directory.
(CXX_FOR_TARGET): Likewise.
Mon Mar 23 11:30:21 1998 Jeffrey A Law ([email protected])
* ltconfig: Update after libtool/ltconfig.in change for
hpux11.
Fri Mar 20 18:51:43 1998 Ian Lance Taylor <[email protected]>
* ltconfig, ltmain.sh: Update to libtool 1.2.
Fri Mar 20 09:32:14 1998 Manfred Hollstein <[email protected]>
* Makefile.in (install-gcc): Don't specify LANGUAGES here.
(install-gcc-cross): Instead, override LANGUAGES here.
1998-03-18 Dave Love <[email protected]>
* Makefile.in ($(CONFIGURE_TARGET_MODULES)): Set CONFIG_SITE to a
non-existent file since /dev/null loses with bash 2.0/autoconf 2.12.
Tue Mar 17 16:59:00 1998 Syd Polk <[email protected]>
* Makefile.in - changed sn targets to snavigator
* configure.in - changed sn targets to snavigator
Tue Mar 17 10:33:28 1998 Manfred Hollstein <[email protected]>
* config-ml.in: After building symlink tree call make distclean
if a Makefile got linked into ${ml_dir}/${ml_libdir}; this happens
to be the case for libiberty.
Tue Mar 17 10:22:37 1998 H.J. Lu ([email protected])
* configure: When making link, also check the current
directory. The configure scripts may create one.
Fri Mar 6 01:02:03 1998 Richard Henderson <[email protected]>
* config.sub: Accept alphapca56 and alphaev6 properly.
Fri Mar 6 00:14:55 1998 Franz Sirl <[email protected]>
* configure.in: Revert 3 Jan change for powerpc-linux-gnulibc1.
Mon Feb 23 15:09:18 1998 Bruno Haible <[email protected]
* config.sub (sco5): Fix typo.
Mon Feb 23 14:46:06 1998 Ian Lance Taylor <[email protected]>
* Makefile.in (INSTALL_MODULES): Move install-tcl before
install-itcl.
(install-itcl): Remove dependency on install-tcl.
Mon Feb 23 09:53:28 1998 Mark Alexander <[email protected]>
* configure.in: Remove libgloss from noconfigdirs for MN10300.
Thu Feb 19 13:40:41 1998 Ian Lance Taylor <[email protected]>
* configure.in: Don't build libgui for a cygwin32 target when not on
a cygwin32 host.
Wed Feb 18 12:29:00 1998 Jason Molenda ([email protected])
* configure (redirect): Set to null, so default behavior of
configure is now --verbose.
1998-02-16 Dave Love <[email protected]>
* Makefile.in ($(CONFIGURE_TARGET_MODULES)): Run configure with
CONFIG_SITE=/dev/null to forestall lossage with site configuration.
Mon Feb 16 12:23:53 1998 Manfred Hollstein <[email protected]>
* Makefile.in (BASE_FLAGS_TO_PASS, EXTRA_TARGET_FLAGS): Really add
this change to sync Makefile.in with its ChangeLog entries.
Thu Feb 12 15:03:08 1998 H.J. Lu <[email protected]>
* ltmain.sh (mkdir): Check that the directory doesn't exist
before we exit with error, so that we don't get races during
parallel builds.
Sat Feb 7 15:19:18 1998 Ian Lance Taylor <[email protected]>
* ltconfig, ltmain.sh: Update from libtool 1.0i.
Fri Feb 6 01:33:52 1998 Manfred Hollstein <[email protected]>
* Makefile.in (BASE_FLAGS_TO_PASS): Don't pass PICFLAG and
PICFLAG_FOR_TARGET.
(EXTRA_TARGET_FLAGS): Don't pass PICFLAG_FOR_TARGET.
* configure: Emit a definition for the new macro enable_shared
into each Makefile.
* config/mh-sparcpic (PICFLAG): Define to properly according
to current multilib configuration.
* config/mt-sparcpic (PICFLAG_FOR_TARGET): Define to properly
according to current multilib configuration.
Thu Feb 5 17:01:12 1998 Jason Molenda ([email protected])
* configure.in (host_tools, native_only): Add libtool.
Wed Feb 4 16:53:58 1998 Geoffrey Noer <[email protected]>
* configure.in: add target-gperf to noconfigdirs for Cygwin32.
Fix typo in ming config comment.
Wed Feb 4 18:56:13 1998 Ian Lance Taylor <[email protected]>
* ltconfig, ltmain.sh: Update from libtool 1.0h.
Mon Feb 2 19:38:19 1998 Ian Lance Taylor <[email protected]>
* config.sub: Add tic30 cases, and map c30 to tic30.
Sun Feb 1 02:40:41 1998 Richard Henderson <[email protected]>
* Makefile.in (TARGET_CONFIGDIRS): Add libf2c.
(ALL_TARGET_MODULES, CONFIGURE_TARGET_MODULES): Similarly
(CHECK_TARGET_MODULES, INSTALL_TARGET_MODULES): Similarly
(CLEAN_TARGET_MODULES): Similarly
(all-target-libf2c): Add dependences.
* configure.in (target_libs): Add libf2c.
Fri Jan 30 17:18:32 1998 Geoffrey Noer <[email protected]>
* configure.in: Remove expect from noconfigdirs when target
is cygwin32. OK to build expect and dejagnu with Canadian
Cross.
Wed Jan 28 12:58:49 1998 Ian Lance Taylor <[email protected]>
* configure.in: Do build expect, dejagnu, and cvssrc for a cygwin32
host.
* config.guess: Use ${UNAME_MACHINE} rather than i386 for cygwin32
and mingw32.
Wed Jan 28 10:26:37 1998 Manfred Hollstein <[email protected]>
* Makefile.in (BASE_FLAGS_TO_PASS): Remove passing $(local_prefix)
here as it is not defined in the toplevel Makefile.
Tue Jan 27 23:25:06 1998 Manfred Hollstein <[email protected]>
* configure (package_makefile_rules_frag): New variable, which names
a file with generic rules, ...
Change comment to mention we now have FIVE parts.
* configure: Undo last change.
Tue Jan 27 23:15:55 1998 Lassi A. Tuura <[email protected]>
* config.guess: More accurate determination of HP processor types.
* config.sub: More accurate determination of HP processor types.
Sat Jan 24 01:59:45 1998 Manfred Hollstein <[email protected]>
* configure (package_makefile_frag): Move inserting the
${package_makefile_frag} to where it should be according
to the comment.
Fri Jan 23 00:29:28 1998 Philip Blundell <[email protected]>
* config.guess: Add support for Linux/ARM.
Thu Jan 22 01:38:33 1998 Richard Henderson <[email protected]>
* configure.in: Revert 3 Jan change for alpha-linux-gnulibc1.
Sat Jan 17 21:28:08 1998 Pieter Nagel <[email protected]>
* Makefile.in (FLAGS_TO_PASS): Pass down gcc_include_dir and
local_prefix to sub-make invocations.
Sat Jan 17 21:04:59 1998 H.J. Lu ([email protected])
* configure.in: Check makefile fragments in the source
directory.
Fri Jan 16 00:41:37 1998 Alexandre Oliva <[email protected]>
* configure.in: Check whether host and target makefile
fragments exist before adding them to *_makefile_frag.
Wed Jan 14 23:39:10 1998 Bob Manson <[email protected]>
* configure.in (target_configdirs): Add cygmon for sparc64-elf.
Wed Jan 14 12:48:07 1998 Keith Seitz <[email protected]>
* configure.in: Make sure we only replace RPATH_ENVVAR on
lines which begin with RPATH_ENVVAR, i.e. add "^" to the
regexp to sed.
* Makefile.in (BASE_FLAGS_TO_PASS): Pass RRPATH_ENVVAR down
to sub-makes.
1998-01-13 Lee Iverson ([email protected])
* config-ml.in (multi-do): LDFLAGS must include multilib
designator.
Tue Jan 13 01:13:24 1998 Robert Lipe ([email protected])
* config.guess: Recognize i[3456]-i586-UnixWare7-sysv5.
Sun Jan 4 01:06:55 1998 Mumit Khan <[email protected]>
* config.sub: Add mingw32 support.
* configure.in: Likewise.
* config/mh-mingw32: New file.
Sat Jan 3 12:11:05 1998 Franz Sirl <[email protected]>
* configure.in: Finalize support for {alpha|powerpc}*-*-linux-gnulibc1
Sun Dec 28 11:28:58 1997 Jeffrey A Law ([email protected])
* Makefile.in (INSTALL_TARGET): Do install-gcc first.
* configure (gxx_include_dir): Provide a definition for subdirs
which do not use autoconf.
Wed Dec 24 22:46:55 1997 Jeffrey A Law ([email protected])
* config.guess: Sync with egcs. Picks up new alpha support,
BeOS & some additional linux support.
Tue Dec 23 12:44:24 1997 Jeffrey A Law ([email protected])
* config.guess: HP 9000/803 is a PA1.1 machine.
Mon Dec 22 02:39:24 1997 Richard Henderson <[email protected]>
* configure.in: It's alpha*-...
Sun Dec 21 16:53:12 1997 H.J. Lu ([email protected])
* configure.in (host_makefile_frag, target_makefile_frag):
Handle multiple config files.
(alpha-*-linux*): Treat alpha-*-linux* as alpha-*-linux* and
alpha-*-*.
Tue Dec 16 17:36:05 1997 Ian Lance Taylor <[email protected]>
* Makefile.in: Add libgui directory.
(GDB_TK): Add all-libgui.
* configure.in: Add libgui directory.
* configure: Add all-libgui to GDB_TK.
Mon Dec 15 16:12:28 1997 Nick Clifton <[email protected]>
* config-ml.in (multidirs): Add m32r to multilib list.
Fri Dec 12 10:43:31 1997 Brendan Kehoe <[email protected]>
* Makefile.in (all-target-gperf): Change dependency to
all-target-libstdc++.
Thu Dec 11 23:30:51 1997 Fred Fish <[email protected]>
* config.guess: Add BeOS support.
Wed Dec 10 15:10:38 1997 Ian Lance Taylor <[email protected]>
Source directory cvs renamed to cvssrc:
* configure.in (host_tools): Change cvs to cvssrc.
(native_only): Likewise.
(noconfigdirs) [various cases]: Likewise.
* Makefile.in (ALL_MODULES): Change all-cvs to all-cvssrc.
(CROSS_CHECK_MODULES): Change check-cvs to check-cvssrc.
(INSTALL_MODULES): Change install-cvs to install-cvssrc.
(CLEAN_MODULES): Change clean-cvs to clean-cvssrc.
(all-cvssrc): Rename target from all-cvs.
Wed Dec 3 07:55:59 1997 Jeffrey A Law ([email protected])
* configure (gxx_include_dir): Fix thinko.
Tue Dec 2 10:55:34 1997 Jeffrey A Law ([email protected])
* Makefile.in (INSTALL_TARGET_CROSS): Define.
(install-cross, install-gcc-cross): New targets.
Tue Dec 2 10:08:31 1997 Nick Clifton <[email protected]>
* configure.in (noconfigdirs): Add support for Thumb target.