-
Notifications
You must be signed in to change notification settings - Fork 3
/
ChangeLog
5666 lines (3453 loc) · 186 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
Sun Mar 14 02:38:07 PST 1999 Jeff Law ([email protected])
* egcs-1.1.2 Released.
Mon Mar 1 23:37:06 1999 Jeffrey A Law ([email protected])
Fri Dec 4 01:33:05 1998 Niall Smart <[email protected]>
* config.guess: Recognize FreeBSD using ELF automatically.
Thu Feb 25 02:19:26 1999 Jeffrey A Law ([email protected])
Thu Feb 18 19:55:09 1999 Marc Espie <[email protected]>
* config.guess: Recognize openbsd-*-hppa.
Mon Feb 22 23:25:59 1999 Jeffrey A Law ([email protected])
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.
Sat Feb 13 12:03:28 1999 Jeffrey A Law ([email protected])
Sat Jan 30 06:09:00 1999 Robert Lipe ([email protected])
* config.guess: Improve detection of i686 on UnixWare 7.
Wed Dec 2 01:44:03 1998 Jeffrey A Law ([email protected])
* egcs-1.1.1 Released.
Fri Oct 23 22:24:47 1998 Robert Lipe <[email protected]>
* config.guess: Match any version of Unixware7.
Fri Oct 2 01:29:30 1998 Gerald Pfeifer <[email protected]>
* README: Remove installation instructions and refer to the
INSTALL directory instead.
Fri Oct 2 01:13:31 1998 John Hughes <[email protected]>
* configure.in: Do not assume x86-svr4 or x86-unixware can handle
stabs.
Tue Sep 1 01:58:21 1998 Jeffrey A Law ([email protected])
* egcs-1.1 Released.
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.
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.
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.
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*.
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.
Fri May 8 01:30:20 1998 Ian Lance Taylor <[email protected]>
* ltconfig, ltmain.sh: Update to libtool 1.2a.
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 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.
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.
Fri Apr 17 16:20:42 1998 Ian Lance Taylor <[email protected]>
* ltconfig, ltmain.sh: Bring in newer cygwin32 support.
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.
Sun Apr 12 20:58:46 1998 Jeffrey A Law ([email protected])
* Makefile.in (INSTALL_MODULES): Remove texinfo.
Wed Mar 25 10:04:18 1998 Nick Clifton <[email protected]>
* configure.in: Add thumb-coff target.
* config.sub: Add thumb-coff target.
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 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.
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.
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.
Wed Feb 4 18:56:13 1998 Ian Lance Taylor <[email protected]>
* ltconfig, ltmain.sh: Update from libtool 1.0h.
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.
Wed Jan 28 12:58:49 1998 Ian Lance Taylor <[email protected]>
* 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
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
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-*-*.
Thu Dec 11 23:30:51 1997 Fred Fish <[email protected]>
* config.guess: Add BeOS support.
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.
Thu Nov 27 01:31:30 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 Nov 26 16:08:50 1997 Jeffrey A Law ([email protected])
* From Franz Sirl.
* config.guess (powerpc*-*-linux): Handle glibc2 beta release
found on RedHat Linux systems.
Fri Nov 21 09:51:01 1997 Jeffrey A Law ([email protected])
* config.guess (alpha stuff): Merge with FSF to avoid incorrect
guesses.
Thu Nov 13 11:38:37 1997 Jeffrey A Law ([email protected])
* configure.in (i[3456]86-ncr-sysv4.3*): Tweak.
Mon Oct 27 12:03:53 1997 Jason Merrill <[email protected]>
* Makefile.in: check-target-libio depends on all-target-libstdc++.
Sun Oct 26 11:48:27 1997 Manfred Hollstein ([email protected])
* Makefile.in (bootstrap-lean): Combined with `normal' bootstrap
targets using "$@" to provide support for similar but not identical
targets without having to duplicate code.
Mon Sep 29 00:38:08 1997 Aaron Jackson <[email protected]>
* Makefile.in (bootstrap-lean): New target.
Thu Sep 18 23:58:27 1997 Jeffrey A Law ([email protected])
* Makefile.in (cross): New target.
Thu Sep 18 21:43:23 1997 Alexandre Oliva <[email protected]>
Jeff Law <[email protected]>
* Makefile.in (bootstrap2, bootstrap3): New targets.
(all-bootstrap): Remove outdated and confusing target.
(bootstrap, bootstrap2, bootstrap3): Don't pass BOOT_CFLAGS down.
1997-09-15 02:37 Ulrich Drepper <[email protected]>
* config/mt-linux: Define CXXFLAGS to make sure -fvtable-thunks is
used.
* configure.in: Name Linux target fragment.
* configure: Rewrite so that project Makefile fragment is inserted
first and appears last in the resulting Makefile.
Thu Sep 11 16:40:46 1997 H.J. Lu ([email protected])
* Makefile.in (local-distclean): Also remove mh-frag mt-frag.
* configure.in (skipdirs): Add target-librx for Linux.
(alpha-*-linux*): Use config/mh-elfalphapic and config/mt-elfalphapic.
Wed Sep 10 21:29:54 1997 Jeffrey A Law ([email protected])
* Makefile.in (bootstrap): New target.
Wed Sep 10 15:19:22 1997 Jeffrey A Law ([email protected])
* config.sub: Accept 'amigados' for backward compatability.
Sun Sep 7 23:18:32 1997 Fred Fish <[email protected]>
* config.sub: Change 'amigados' to 'amigaos' to match current usage.
Fri Sep 5 16:11:28 1997 Joel Sherrill ([email protected])
* configure.in (*-*-rtems*): Do not build libgloss for rtems.
Fri Sep 5 12:27:17 1997 Jeffrey A Law ([email protected])
* config.sub: Handle v850-elf.
Wed Sep 3 22:01:58 1997 Fred Fish <[email protected]>
* .cvsignore (*-install): Remove.
Wed Sep 3 12:15:24 1997 Chris Provenzano <[email protected]>
* ltconfig: Set CONFIG_SHELL in libtool.
* ltmain.sh: Use CONFIG_SHELL instead of /bin/sh
Mon Sep 1 16:45:44 1997 Jim Wilson <[email protected]>
* configure.in (target_subdir): Set to libraries if enable_multilib.
Wed Aug 27 16:15:11 1997 Jim Wilson <[email protected]>
* config.guess: Update from gcc directory.
Wed Aug 20 19:57:37 1997 Jason Merrill <[email protected]>
* Makefile.in (BISON, YACC): Use $$s.
(all-bison): Depend on all-texinfo.
Tue Aug 19 01:41:32 1997 Jason Merrill <[email protected]>
* Makefile.in (BISON): Add -L flag.
(YACC): Likewise.
Mon Aug 18 09:24:06 1997 Gavin Koch <[email protected]>
* config.sub: Add mipstx39. Delete r3900.
Mon Aug 18 17:20:10 1997 Jason Molenda ([email protected])
* Makefile.in (all-autoconf): Depends on all-texinfo.
Fri Aug 15 23:09:26 1997 Michael Meissner <[email protected]>
* config-ml.in ({powerpc,rs6000}*-*-*): Update to current AIX and
eabi targets.
Thu Aug 14 14:42:17 1997 Ian Lance Taylor <[email protected]>
* configure: Get CFLAGS and CXXFLAGS from Makefile, if possible.
* configure: When handling a Canadian Cross, handle YACC as well as
BISON. Just set BISON to bison. When setting YACC, prefer bison.
Tue Aug 12 20:09:48 1997 Jason Merrill <[email protected]>
* Makefile.in (BISON): bison, not byacc or bison -y.
(YACC): bison -y or byacc or yacc.
(various): Add *-bison as appropriate.
(taz): No need to mess with BISON anymore.
Tue Aug 12 22:33:08 1997 Ian Lance Taylor <[email protected]>
* configure: If OSTYPE matches *win32*, try to find a good value for
CONFIG_SHELL.
Sun Aug 10 14:41:11 1997 Ian Lance Taylor <[email protected]>
* Makefile.in (taz): Get the version number from AM_INIT_AUTOMAKE in
configure.in if it is present.
Sat Aug 9 00:58:01 1997 Ian Lance Taylor <[email protected]>
* Makefile.in (LD_FOR_TARGET): Change ld.new to ld-new.
Fri Aug 8 16:30:13 1997 Doug Evans <[email protected]>
* config.sub: Recognize `arc' cpu.
* configure.in: Likewise.
* config-ml.in: Likewise.
Thu Aug 7 11:02:34 1997 Ian Lance Taylor <[email protected]>
* Makefile.in ($(INSTALL_X11_MODULES)): Depend upon installdirs.
Wed Aug 6 16:27:29 1997 Chris Provenzano <[email protected]>
* configure: Changed sed delimiter from ':' to '|' when
attempting to substitute ${config_shell} for SHELL. On
NT ${config_shell} may contain a ':' in it.
Wed Aug 6 12:29:05 1997 Jason Merrill <[email protected]>
* Makefile.in (EXTRA_GCC_FLAGS): Fix for non-bash shells.
Wed Aug 6 00:42:35 1997 Ian Lance Taylor <[email protected]>
* Makefile.in (AS_FOR_TARGET): Change as.new to as-new.
Tue Aug 5 14:08:51 1997 Ian Lance Taylor <[email protected]>
* Makefile.in (NM_FOR_TARGET): Change nm.new to nm-new.
* ylwrap: If the program is a relative path, force it to be
absolute.
Tue Aug 5 12:12:44 1997 Andrew Cagney <[email protected]>
* configure (tooldir): Set BISON to `bison -y' and not just bison.
Mon Aug 4 22:59:02 1997 Andrew Cagney <[email protected]>
* Makefile.in (CC_FOR_TARGET): When winsup/Makefile present,
correctly specify the target build directory $(TARGET_SUBDIR)/winsup
for libraries.
Mon Aug 4 12:40:24 1997 Jason Merrill <[email protected]>
* Makefile.in (EXTRA_GCC_FLAGS): Fix handling of macros with values
separated by spaces.
Thu Jul 31 19:49:49 1997 Ian Lance Taylor <[email protected]>
* ylwrap: New file.
* Makefile.in (DEVO_SUPPORT): Add ylwrap.
* ltmain.sh: Handle /bin/sh at start of install program.
* Makefile.in (DEVO_SUPPORT): Add ltconfig, ltmain.sh, and missing.
* ltconfig, ltmain.sh: New files, from libtool 1.0.
* missing: New file, from automake 1.2.
Thu Jul 24 12:57:56 1997 Ian Lance Taylor <[email protected]>
* Makefile.in: Treat tix like tk, putting it in X11_MODULES. Add
check-tk to CHECK_X11_MODULES.
Wed Jul 23 17:03:29 1997 Ian Lance Taylor <[email protected]>
* config.sub: Merge with FSF.
Tue Jul 22 19:08:29 1997 Ian Lance Taylor <[email protected]>
* config.guess: Merge with FSF.
Tue Jul 22 14:50:42 1997 Robert Hoehne <[email protected]>
* configure: Treat msdosdjgpp like go32.
* configure.in: Likewise. Don't remove gprof for go32.
* configure: Change Makefile.tem2 to Makefile.tm2.
Mon Jul 21 10:31:26 1997 Stephen Peters <[email protected]>
* configure.in (noconfigdirs): For alpha-dec-osf*, don't ignore grep.
Tue Jul 15 14:33:03 1997 Brendan Kehoe <[email protected]>
* install-sh (chmodcmd): Set to null if the DST directory already
exists. Same as Nov 11th change.
Mon Jul 14 11:01:15 1997 Martin M. Hunt <[email protected]>
* configure (GDB_TK): Needs itcl and tix.
Mon Jul 14 00:32:10 1997 Jason Merrill <[email protected]>
* config.guess: Update from FSF.
Fri Jul 11 11:57:11 1997 Martin M. Hunt <[email protected]>
* Makefile.in (GDB_TK): Depend on itcl and tix.
Fri Jul 4 13:25:31 1997 Ian Lance Taylor <[email protected]>
* Makefile.in (INSTALL_PROGRAM_ARGS): New variable.
(INSTALL_PROGRAM): Use $(INSTALL_PROGRAM_ARGS).
(INSTALL_SCRIPT): New variable.
(BASE_FLAGS_TO_PASS): Pass down INSTALL_SCRIPT.
* configure.in: If host is *-*-cygwin32*, set INSTALL_PROGRAM_ARGS
to -x.
* install-sh: Add support for -x option.
Mon Jun 30 15:51:30 1997 Ian Lance Taylor <[email protected]>
* configure.in, Makefile.in: Treat tix like itcl.
Thu Jun 26 13:59:19 1997 Ian Lance Taylor <[email protected]>
* Makefile.in (WINDRES): New variable.
(WINDRES_FOR_TARGET): New variable.
(BASE_FLAGS_TO_PASS): Add WINDRES_FOR_TARGET.
(EXTRA_HOST_FLAGS): Add WINDRES.
(EXTRA_TARGET_FLAGS): Add WINDRES.
(EXTRA_GCC_FLAGS): Add WINDRES.
($(DO_X)): Pass down WINDRES.
($(CONFIGURE_TARGET_MODULES)): Set WINDRES when configuring.
* configure: Treat WINDRES like DLLTOOL, and WINDRES_FOR_TARGET like
DLLTOOL_FOR_TARGET.
Wed Jun 25 15:01:26 1997 Felix Lee <[email protected]>
* configure.in: configure sim before gdb for win32-x-ppc
Wed Jun 25 12:18:54 1997 Brendan Kehoe <[email protected]>
Move gperf into the toplevel, from libg++.
* configure.in (target_tools): Add target-gperf.
(native_only): Add target-gperf.
* Makefile.in (all-target-gperf): New target, depend on
all-target-libg++.
(configure-target-gperf): Empty rule.
(ALL_TARGET_MODULES): Add all-target-gperf.
(CONFIGURE_TARGET_MODULES): Add configure-target-gperf.
(CHECK_TARGET_MODULES): Add check-target-gperf.
(INSTALL_TARGET_MODULES): Add install-target-gperf.
(CLEAN_TARGET_MODULES): Add clean-target-gperf.
Mon Jun 23 10:51:53 1997 Jeffrey A Law ([email protected])
* config.sub (mn10200): Recognize new basic machine.
Thu Jun 19 14:16:42 1997 Brendan Kehoe <[email protected]>
* configure.in: Don't set ENABLE_MULTILIB, so we'll be passing
--enable-multilib down to subdirs; setting TARGET_SUBDIR was enough.
Tue Jun 17 15:31:20 1997 Brendan Kehoe <[email protected]>
* configure.in: If we're building mips-sgi-irix6* native, turn on
ENABLE_MULTILIB and set TARGET_SUBDIR.
Tue Jun 17 12:20:59 1997 Tom Tromey <[email protected]>
* Makefile.in (all-sn): Depend on all-grep.
Mon Jun 16 11:11:10 1997 Ian Lance Taylor <[email protected]>
* configure.in: Use mh-ppcpic and mt-ppcpic for powerpc*-* targets.
* configure: Set CFLAGS and CXXFLAGS, and substitute them into
Makefile. From Jeff Makey <[email protected]>.
* Makefile.in: Add comment for CFLAGS and CXXFLAGS.
* Makefile.in (DISTBISONFILES): Remove.
(taz): Don't futz with DISTBISONFILES. Change BISON to use
$(DEFAULT_YACC).
* configure.in: Build itl, db, sn, etc., when building for native
cygwin32.
* Makefile.in (LD): New variable.
(EXTRA_HOST_FLAGS): Pass down LD.
($(DO_X)): Likewise.
Mon Jun 16 11:10:35 1997 Philip Blundell <[email protected]>
* Makefile.in (INSTALL): Use $(SHELL) when executing install-sh.
Fri Jun 13 10:22:56 1997 Bob Manson <[email protected]>
* configure.in (targargs): Strip out any supplied --build argument
before adding our own. Always add --build.
Thu Jun 12 21:12:28 1997 Bob Manson <[email protected]>
* configure.in (targargs): Pass --build if we're doing
a cross-compile.
Fri Jun 6 21:38:40 1997 Rob Savoye <[email protected]>
* configure: Use '|' instead of ":" as the seperator in
sed. Otherwise sed chokes on NT path names with drive
designators. Also look for "?:*" as the leading characters in an
absolute pathname.
Mon Jun 2 13:05:20 1997 Gavin Koch <[email protected]>
* config.sub: Support for r3900.
Wed May 21 17:33:31 1997 Ian Lance Taylor <[email protected]>
* configure.in: Use install-sh, not install.sh.
Wed May 14 16:06:51 1997 Ian Lance Taylor <[email protected]>
* Makefile.in (taz): Improve check for BISON so it doesn't try to
apply it twice.
Fri May 9 17:22:05 1997 Ian Lance Taylor <[email protected]>
* Makefile.in (INSTALL_MODULES): Put install-opcodes before
install-binutils.
Thu May 8 17:29:50 1997 Ian Lance Taylor <[email protected]>
* Makefile.in: Add automake targets.
* configure.in (host_tools): Add automake.
Tue May 6 15:49:52 1997 Ian Lance Taylor <[email protected]>
* configure: Default CXX to c++, not gcc.
* Makefile.in (CXX): Set to c++, not gcc.
(CXX_FOR_TARGET): When cross, transform c++, not gcc.
Thu May 1 10:11:43 1997 Geoffrey Noer <[email protected]>
* install-sh: try appending a .exe if source file doesn't
exist
Wed Apr 30 12:05:36 1997 Jason Merrill <[email protected]>
* configure.in: Turn on multilib by default.
(cross_only): Remove target-libiberty.
* Makefile.in (all-gcc): Don't depend on libiberty.
Mon Apr 28 18:39:45 1997 Michael Snyder <[email protected]>
* config.guess: improve algorithm for recognizing Gnu Hurd x86.
Thu Apr 24 19:30:07 1997 Ian Lance Taylor <[email protected]>
* Makefile.in (DEVO_SUPPORT): Add mpw-install.
(DISTBISONFILES): Add ld/Makefile.in
Tue Apr 22 17:17:28 1997 Geoffrey Noer <[email protected]>
* configure.in: if target is cygwin32 but host isn't cygwin32,
don't configure gdb tcl tk expect, not just gdb.
Mon Apr 21 13:33:39 1997 Tom Tromey <[email protected]>
* configure.in: Added gnuserv everywhere sn appears.
* Makefile.in (ALL_MODULES): Added all-gnuserv.
(CROSS_CHECK_MODULES): Added check-gnuserv.
(INSTALL_MODULES): Added install-gnuserv.
(CLEAN_MODULES): Added clean-gnuserv.
(all-gnuserv): New target.
Thu Apr 17 13:57:06 1997 Per Fogelstrom <[email protected]>
* config.guess: Fixes for MIPS OpenBSD systems.
Tue Apr 15 12:21:07 1997 Ian Lance Taylor <[email protected]>
* Makefile.in (INSTALL_XFORM): Remove.
(BASE_FLAGS_TO_PASS): Remove INSTALL_XFORM.
* mkinstalldirs: New file, copied from automake.
* Makefile.in (installdirs): Rename from install-dirs. Use
mkinstalldirs. Change all users.
(DEVO_SUPPORT): Add mkinstalldirs.
Mon Apr 14 11:21:38 1997 Ian Lance Taylor <[email protected]>
* install-sh: Rename from install.sh.
* Makefile.in (INSTALL): Change install.sh to install-sh.
(DEVO_SUPPORT): Likewise.
* configure: Use ${config_shell} with ${moveifchange}. From Thomas
Graichen <[email protected]>.
Fri Apr 11 16:37:10 1997 Niklas Hallqvist <[email protected]>
* config.guess: Recognize OpenBSD systems correctly.
Fri Apr 11 17:07:04 1997 Jason Molenda ([email protected])
* README, Makefile.in (ETC_SUPPORT): Remove references to
cfg-paper*, configure.{texi,man,info*}._
Sun Apr 6 18:47:57 1997 Andrew Cagney <[email protected]>
* Makefile.in (all.normal): Ensure that gcc is built after all
the x11 - ie gdb - targets.
Tue Apr 1 16:28:50 1997 Klaus Kaempf <[email protected]>
* makefile.vms: Don't run conf-a-gas.
Mon Mar 31 16:26:55 1997 Joel Sherrill <[email protected]>
* configure.in (hppa1.1-*-rtems*): New target, like hppa-*-*elf*.
Fri Mar 28 18:28:52 1997 Ian Lance Taylor <[email protected]>
* configure: Set cache_file to config.cache.
* Makefile.in (local-distclean): Remove config.cache.
Wed Mar 26 18:49:39 1997 Ian Lance Taylor <[email protected]>
* COPYING: Update FSF address.
Mon Mar 24 15:02:39 1997 Ian Lance Taylor <[email protected]>
* Makefile.in (install-dirs): Don't crash if prefix, and hence
MAKEDIRS, is empty.
Mon Mar 24 12:40:55 1997 Doug Evans <[email protected]>
* config.sub: Tweak mn10300 entry.
Fri Mar 21 15:35:27 1997 Michael Meissner <[email protected]>
* configure.in (host_tools): Put sim before gdb, so gdb's
configure.tgt can determine if the simulator was configured.
Sun Mar 16 16:07:08 1997 Fred Fish <[email protected]>
* config.sub: Move BeOS $os case to be with other Cygnus
local cases.
Sun Mar 16 01:34:55 1997 Martin Hunt <[email protected]>
* config.sub: Remove misplaced comment that broke Linux.
Sat Mar 15 22:50:15 1997 Fred Fish <[email protected]>
* config.sub: Add BeOS support.
Mon Mar 10 13:30:11 1997 Tom Tromey <[email protected]>
* Makefile.in (CHECK_X11_MODULES): Don't run check-tk.
Wed Mar 5 12:09:29 1997 Martin <[email protected]>
* configure.in (noconfigdirs): Remove tcl and tk from
noconfigdirs for cygwin32 builds.
Thu Feb 27 14:57:26 1997 Ken Raeburn <[email protected]>
* Makefile.in (GAS_SUPPORT_DIRS, BINUTILS_SUPPORT_DIRS): Remove
make-all.com, use makefile.vms instead.
Tue Feb 25 18:46:14 1997 Stan Shebs <[email protected]>
* config.sub: Accept -lnews*.
Thu Feb 13 22:04:44 1997 Klaus Kaempf <[email protected]>
* makefile.vms: New file.
* make-all.com: Remove.
Wed Feb 12 12:54:18 1997 Jim Wilson <[email protected]>
* Makefile.in (EXTRA_GCC_FLAGS): Add LIBGCC2_DEBUG_CFLAGS.
Sat Feb 8 20:36:49 1997 Michael Meissner <[email protected]>
* Makefile.in (all-itcl): The rule is all-itcl, not all-tcl.
Tue Feb 4 11:39:29 1997 Tom Tromey <[email protected]>
* Makefile.in (ALL_MODULES): Added all-db.
(CROSS_CHECK_MODULES): Addec check-db.
(INSTALL_MODULES): Added install-db.
(CLEAN_MODULES): Added clean-db.
Mon Feb 3 13:29:36 1997 Ian Lance Taylor <[email protected]>
* config.guess: Merge with latest FSF sources.
Tue Jan 28 09:20:37 1997 Tom Tromey <[email protected]>
* Makefile.in (ALL_MODULES): Added all-itcl.
(CROSS_CHECK_MODULES): Added check-itcl.
(INSTALL_MODULES): Added install-itcl.
(CLEAN_MODULES): Added clean-itcl.
Thu Jan 23 01:44:27 1997 Geoffrey Noer <[email protected]>
* configure.in: build gdb for mn10200
Fri Jan 17 15:32:15 1997 Doug Evans <[email protected]>
* Makefile.in (all-target-winsup): Depend on all-target-libio.
Fri Jan 3 16:04:03 1997 Ian Lance Taylor <[email protected]>
* Makefile.in (MAKEINFO): Check for the existence of the Makefile,
rather than the makeinfo program.
(do-info): Depend upon all-texinfo.
Tue Dec 31 16:00:31 1996 Ian Lance Taylor <[email protected]>
* configure.in: Remove uses of config/mh-linux.
* config.sub, config.guess: Merge with latest FSF sources.
Fri Dec 27 12:07:59 1996 Ian Lance Taylor <[email protected]>
* config.sub, config.guess: Merge with latest FSF sources.
Wed Dec 18 22:46:39 1996 Stan Shebs <[email protected]>
* mpw-build.in: Build ld before gcc, use NewFolderRecursive.
* mpw-config.in: Test for NewFolderRecursive.
* mpw-install: Use symbolic name for startup filename.
* mpw-README: Add various additional details.
Wed Dec 18 13:11:46 1996 Jim Wilson <[email protected]>
* configure.in (mips*-sgi-irix6*): Remove binutils from noconfigdirs.
Wed Dec 18 10:29:31 1996 Jeffrey A Law ([email protected])
* configure.in: Do build gcc and the target libraries for
the mn10200.
Wed Dec 4 16:53:05 1996 Geoffrey Noer <[email protected]>
* configure.in: don't avoid building gdb for mn10300 any more
* Makefile.in: double-quote GCC_FOR_TARGET line in EXTRA_GCC_FLAGS
instead of single-quoting it.
Tue Dec 3 23:26:50 1996 Jason Merrill <[email protected]>
* configure.in: Don't use --with-stabs on IRIX 6.
Tue Dec 3 09:05:25 1996 Doug Evans <[email protected]>
* configure.in (m32r): Build gdb, libg++ now.
Sun Dec 1 00:18:59 1996 Peter Schauer ([email protected])
* configure.in (mips*-sgi-irix6*): Remove gdb and related
directories from noconfigdirs.
Tue Nov 26 11:45:33 1996 Kim Knuttila <[email protected]>
* config.sub (basic_machine): added mips16 configuration
Sat Nov 23 19:26:22 1996 Michael Meissner <[email protected]>
* config.sub: Handle d10v-unknown.
Thu Nov 21 16:19:44 1996 Geoffrey Noer <[email protected]>
* Makefile.in: add findutils
* configure.in: add findutils to list of host_tools
Wed Nov 20 10:09:01 1996 Jeffrey A Law ([email protected])
* config.sub: Handle mn10200 and mn10300.
Tue Nov 19 16:35:14 1996 Michael Meissner <[email protected]>
* configure.in (d10v-*): Do not build librx.
Mon Nov 18 13:28:41 1996 Jeffrey A Law ([email protected])
* configure.in (mn10300): Build everything except gdb & libgloss.
Wed Nov 13 14:59:46 1996 Per Bothner <[email protected]>
* config.guess: Patch for Dansk Data Elektronik servers,
from Niels Skou Olsen <[email protected]>.
For ncr, use /bin/uname rather than uname, since GNU uname does not
support -p. Suggested by Mark Mitchell <[email protected]>.