-
Notifications
You must be signed in to change notification settings - Fork 4
/
ChangeLog.lib
3799 lines (2347 loc) · 131 KB
/
ChangeLog.lib
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
1998-02-13 Richard Kenner <[email protected]>
* config.sub: Add PentiumII (i786). Add '7' to all i[3456]
entries. Add AMD and Cyrix names for P5 and P6.
1998-02-03 Philip Blundell <[email protected]>
* config.guess: Add support for Linux/ARM.
1998-02-03 Paul Eggert <[email protected]>
* obstack.h (PTR_INT_TYPE): Use __PTRDIFF_TYPE__ if available.
1998-01-28 Ian Lance Taylor <[email protected]>
* config.guess: Use ${UNAME_MACHINE} rather than i386 for cygwin32
and mingw32.
Wed Jan 1 17:54:47 1998 J.J. van der Heijden <[email protected]>
* pexecute.c (pexecute, [_WIN32]): Yes, mask termstat for mingw32.
Mon Dec 22 18:59:34 1997 Pascal Obry <[email protected]>
* pexecute.c (pexecute, [_WIN32]): For mingw32, don't mask termstat.
Sat Dec 13 09:39:32 1997 Richard Kenner <[email protected]>
* pexecute.c (fix_argv): Remove outer "const" from return type.
(pexecute): errmsg_arg is pointer to const.
Sat Nov 29 08:06:34 1997 Jan-Jaap van der Heijden <[email protected]>
* pexecute.c: Include signal.h for _WIN32.
Wed Nov 26 17:31:44 1997 J.J. van der Heijden <[email protected]>
* pexecute.c (pwait): For _WIN32, distinguish whether child process
caught fatal signal or reported nonzero exit code.
Wed Nov 26 13:24:30 1997 Richard Kenner <[email protected]>
* choose-temp.c (sys/file.h): Include if HAVE_SYS_FILE_H.
Mon Nov 17 09:07:52 1997 Richard Kenner <[email protected]>
* choose-temp.c (choose_temp_base): Remove incorrect code for VMS.
Sun Oct 19 10:34:11 1997 Richard Kenner <[email protected]>
* pexecute.c (fix_argv, pexecute): Cast result of xmalloc.
Sat Oct 18 16:55:18 1997 Jason Merrill <[email protected]>
* obstack.h (obstack_empty_p): New macro.
Mon Sep 29 12:27:59 1997 Ian Lance Taylor <[email protected]>
* pexecute.c: Use spawn if __CYGWIN32__.
Wed Sep 10 15:14:20 1997 Jeffrey A Law ([email protected])
* config.sub: Use "amigaos" instread of "amigados". Still
recognize "amigados" for backward compatability.
Tue Sep 9 18:23:57 1997 Doug Evans <[email protected]>
* config.sub: Recognize ARC cpu.
1997-09-09 Richard Kenner Richard Kenner <[email protected]>
* config.guess (alpha): Replace CPU-determining program with one
that's more precise and also supports pca56 and ev6.
Handle those in returned name.
1997-09-08 Richard Kenner <[email protected]>
* config.guess (alpha:OSF1:*:*): For V4.0, get the letter suffix.
1997-09-05 Jeffrey A Law ([email protected])
* config.sub: Recognize v850-elf.
1997-08-26 Richard Henderson <[email protected]>
* config.guess (*:Linux:*:*): Recognize alpha-linux-gnulibc1.
1997-08-17 Jeff Law <[email protected]>
* config.sub: Recognize tx39/r3900.
1997-08-08 Paul Eggert <[email protected]>
* choose-temp.c, pexecute.c:
Include "config.h" first, as per autoconf manual.
1997-08-01 Richard Stallman <[email protected]>
* config.sub: Translate -svr4 to -sysv4 and -unixware to -sysv4.2uw.
1997-07-26 Per Bothner <[email protected]>
* config.guess: Recognize SunOS 3.x.
From Tom Schmidt <[email protected]>.
1997-07-22 Richard Stallman <[email protected]>
* getloadavg.c: Test `__unix' along with `unix'.
Sun Jul 20 20:58:43 1997 Richard Kenner <[email protected]>
* config.guess (alpha*): Run program to see if ev4, ev5, or ev56.
* config.sub (alphaev5, alphaev56): New CPU types.
Wed Jul 16 10:46:14 1997 Richard Earnshaw <[email protected]>
* config.guess (arm32:NetBSD:*:*): Canonicalize to normal format
for ARM systems.
Tue Jul 15 09:13:05 1997 Jim Meyering <[email protected]>
* getloadavg.c: Add comment describing HAVE_PSTAT_GETDYNAMIC.
1997-07-14 Richard Stallman <[email protected]>
* config.guess (pc:*:*:*): New entry, for DJGPP.
1997-07-07 Richard Stallman <[email protected]>
* config.guess (i?86:UNIX_SV:4.2MP:2.*): Recognize unixware.
1997-07-06 Richard Stallman <[email protected]>
* getloadavg.c [OSF_ALPHA]:
Include sys/mbuf.h, sys/socket.h, net/route.h.
1997-06-30 Richard Stallman <[email protected]>
* getloadavg.c [__GNU__]: Test for not NeXT.
Fri Jun 27 15:20:29 1997 Scott Christley <[email protected]>
* config.sub (-mingw32*): New OS.
* config.guess (i*:MINGW*:*): New case.
* pexecute.c (fix_argv): New function.
(pexecute): Win32 but not Cygwin32 needs its arguments fixed.
Add underscore to cwait function call.
Mon Jun 23 10:51:53 1997 Jeffrey A Law ([email protected])
* config.sub (mn10200): Recognize new basic machine.
1997-06-22 Richard Stallman <[email protected]>
* config.guess: Add mips-sony-newsos6.
1997-06-09 Richard Stallman <[email protected]>
* config.guess: Use i?86, not i.86.
Don't test /usr/lib/ldscripts; instead, test whether ld_help_string
does not contain "supported emulations".
Use a case statement to distinguish systems when there IS
"supported emulations".
1997-06-07 H.J. Lu ([email protected])
* config.guess (*:Linux:*:*): Always use ${VENDOR}.
1997-06-05 Richard Stallman <[email protected]>
* config.guess (*:Linux:*:*): Don't test for elf_i.86 or m68kelf.
* config.guess (*:Linux:*:*): Recognize sparclinux.
Don't recognize UNAME_MACHINE = sparc.
Make the sample program check for libc version
and handle various machine types.
* config.sub (mipsel*-linux* and mips*-linux*):
Set `os' to -linux-gnu directly, don't go via -linux.
Mon May 26 12:46:25 1997 Paul Eggert <[email protected]>
* getopt.c, getopt.h, getopt1.c: Moved to libc-copy/copies.
Wed May 7 15:17:59 1997 Thomas Bushnell, n/BSG <[email protected]>
* config.guess: Recognize either / or - as a machine/suptype
separator from uname -m to cope with older systems that have the
older uname. Suggested by Michael Snyder ([email protected]).
Mon May 5 18:05:35 1997 Per Bothner <[email protected]>
* config.guess: CLIX patch from Thomas Dickey via
[email protected] (Urs Janssen).
Thu Apr 17 13:59:13 1997 Per Fogelstrom <[email protected]>
* config.guess: Fixes for MIPS OpenBSD systems.
Fri Apr 11 16:39:06 1997 Niklas Hallqvist <[email protected]>
* config.guess: Recognize OpenBSD systems correctly.
Mon Mar 24 15:38:37 1997 Doug Evans <[email protected]>
* config.sub: Recognize m32r and mn10300 cpus.
Sat Feb 22 22:36:44 1997 Miles Bader <[email protected]>
* getloadavg.c [__GNU__] (NeXT, host_self): New macros, to make
hurd systems use the NeXT code for getting load averages.
Sat Feb 15 19:03:48 1997 Geoffrey Noer ([email protected])
* pexecute.c: Remove special cases for cygwin32.
(pwait): Remove local definition of `pid'.
Wed Jan 15 22:36:59 1997 Jim Meyering <[email protected]>
* getloadavg.c [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's
pstat_getdynamic function so we don't need any special privileges
to determine load averages. Patch from Kaveh Ghazi, based on a
sample implementation from Richard J. Rauenzahn.
Indent cpp-directives to reflect nesting.
Tue Jan 7 14:29:37 1997 David J. MacKenzie <[email protected]>
* config.guess: Add hppa1.1-hitachi-hiuxmpp support, passed along
by rms.
Sat Jan 4 22:43:21 1997 Miles Bader <[email protected]>
* config.guess (*:GNU:*:*): The machine/subtype separator printed
by uname -m is now `-', not '/'.
Fri Jan 3 08:38:49 1997 Philippe De Muyter ([email protected])
* config.guess (M68*:*:R3V[567]*:*): Use uppercase 'M'.
Tue Dec 31 15:51:13 1996 Ian Lance Taylor <[email protected]>
* config.guess, config.sub: Recognize mips-unknown-linux-gnu.
Tue Dec 10 09:44:57 1996 Paul Eggert <[email protected]>
* choose-temp.c (choose_temp_base): Don't dump core if TMPDIR is empty.
* choose-temp.c (try): Insist that temp dir be searchable.
Sat Dec 7 17:48:02 1996 Dave Love <[email protected]>
* config.guess (PENTIUM:CPunix:4.0*:*): New case.
Sun Nov 24 19:41:31 1996 Per Bothner <[email protected]>
* config.guess: Recognize machten.
From Eric W. Bates <[email protected]>.
Sun Nov 24 18:17:53 1996 Dave Love <[email protected]>
* config.guess (PENTIUM:CPunix:4.0*:*): New case.
Fri Nov 22 11:44:13 1996 David J. MacKenzie <[email protected]>
* config.guess: Undo accidental lowercasing in
m68k-motorola-sysv regexp.
Wed Nov 20 16:27:37 1996 David J. MacKenzie <[email protected]>
* config.guess, config.sub: Additions for the Fujitsu UXP/V.
From [email protected] (Johan Danielsson).
Tue Nov 19 13:34:12 1996 David J. MacKenzie <[email protected]>
* getpagesize.h: If no sys/param.h, default to 8k.
Indent for readability.
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]>.
Patch for MIPS R4000 running System V,
from Eric S. Raymond <[email protected]>.
Fix thinko for nextstep.
Patch for OSF1 in i?86, from Dan Murphy <[email protected]> via Harlan Stenn.
Sat Jun 24 18:58:17 1995 Morten Welinder <[email protected]>
* config.guess: Guess mips-dec-mach_bsd4.3.
Thu Oct 10 04:07:04 1996 Harlan Stenn <[email protected]>
* config.guess (i?86-ncr-sysv*): Emit just enough of the minor
release numbers.
* config.guess (mips-mips-riscos*): Emit just enough of the
release number.
Tue Oct 8 10:37:22 1996 Frank Vance <[email protected]>
* config.guess (sparc-auspex-sunos*): Added.
(f300-fujitsu-*): Added.
Wed Sep 25 22:00:35 1996 Jeff Woolsey <[email protected]>
* config.guess: Recognize a Tadpole as a sparc.
Wed Nov 13 00:53:09 1996 David J. MacKenzie <[email protected]>
* config.guess: Don't assume that NextStep version is either 2 or
3. NextStep 4 (aka OpenStep 4) has come out now.
Tue Nov 12 18:26:15 1996 Doug Rupp ([email protected])
* pexecute.c (vfork): Supply new definition for VMS.
(pwait): Use waitpid instead of wait for VMS.
Mon Nov 11 23:52:03 1996 David J. MacKenzie <[email protected]>
* config.guess: Support Cray T90 that reports itself as "CRAY TS".
From Rik Faith <[email protected]>.
Fri Nov 8 11:34:58 1996 David J. MacKenzie <[email protected]>
* config.sub: Contributions from bug-gnu-utils to:
Support plain "hppa" (no version given) architecture, reported by
OpenStep.
OpenBSD like NetBSD.
LynxOs is not a hardware supplier.
* config.guess: Contributions from bug-gnu-utils to add support for:
OpenBSD like NetBSD.
Stratus systems.
More Pyramid systems.
i[n>4]86 Intel chips.
M680[n>4]0 Motorola chips.
Use unknown instead of lynx for hardware manufacturer.
Mon Oct 28 17:15:52 1996 Christian Limpach <[email protected]>
* config.sub: Recognize hppa-next as a valid CPU-COMPANY combination.
Wed Oct 23 17:36:39 1996 Doug Rupp ([email protected])
* choose-temp.c (choose_temp_base): On VMS, use proper syntax
for current directory.
Wed Oct 9 23:30:18 1996 Jim Meyering <[email protected]>
* getloadavg.c: [__hpux]: Define hpux. From Eric Backus.
[__sun]: Define sun. Reported by Kaveh Ghazi.
Mon Sep 23 22:45:15 1996 Sean McNeil <[email protected]>
* config.sub (-vxsim*): New operating system.
1996-09-12 Richard Stallman <[email protected]>
* config.guess: Use pc instead of unknown, for pc clone systems.
Change linux to linux-gnu.
Thu Sep 12 20:12:26 1996 Richard Stallman <[email protected]>
* config.sub: Use pc instead of unknown, for pc clones.
Use -linux-gnu for Linux-based GNU systems.
1996-09-04 Richard Stallman <[email protected]>
* getloadavg.c (getloadavg): Add new code for SUNOS_5 to use -lkstat.
Sat Aug 17 15:23:39 1996 Geoffrey Noer <[email protected]>
* choose-temp.c: Delete !defined(_WIN32) condition when including
sys/file.h (NO_SYS_FILE_H is still used).
* getopt.c: Change win32 test from WIN32 to _WIN32.
* pexecute.c: Update test for win32 (&& ! cygwin32).
Mon Jul 15 23:51:11 1996 Karl Heuer <[email protected]>
* config.guess: Avoid non-portable tr syntax.
Mon Jul 15 11:53:00 1996 Jeffrey A Law ([email protected])
* config.guess (HP 9000/811): Recognize this as a PA1.1
machine.
Thu Jul 11 17:02:23 1996 David J. MacKenzie <[email protected]>
* install-sh: Add MIT copyright notice. From [email protected].
Sun Jul 7 13:27:04 1996 Joel Sherrill <[email protected]>
* config.sub: Recognize rtems as an o/s.
Tue Jul 2 16:45:02 1996 Torbjorn Granlund <[email protected]>
* config.guess: Generalize C90 alternative to all x90 machines.
Fri Jun 28 13:29:05 1996 Richard Kenner <[email protected]>
* config.guess (mips:*:*:UMIPS): Fix typo in last change.
Tue Jun 25 22:43:48 1996 Doug Evans <[email protected]>
* pexecute.c (PEXECUTE_VERBOSE): Define.
(MPW pexecute): Check flags & PEXECUTE_VERBOSE instead of verbose_flag.
Mon Jun 24 14:32:22 1996 Jim Wilson <[email protected]>
* getopt.c (getpid): Don't redefine it if __CYGWIN32__ is defined.
Thu Jun 20 12:20:33 1996 Michael Meissner <[email protected]>
* config.guess (*:Linux:*:*): Add support for PowerPC Linux.
Mon Jun 10 16:10:57 1996 Doug Evans <[email protected]>
* pexecute.c: New file.
Fri Jun 7 18:16:52 1996 Harlan Stenn <[email protected]>
* config.guess (i?86-ncr-sysv*): Emit minor release numbers.
Recognize the NCR 4850 machine and NCR Pentium-based platforms.
Wed Jun 5 00:09:17 1996 Per Bothner <[email protected]>
* config.guess: Combine mips-mips-riscos cases, and use cpp to
distinguish sysv/svr4/bsd variants.
Based on a patch from Harlan Stenn <[email protected]>.
Mon Jun 3 08:49:14 1996 Karl Heuer <[email protected]>
* config.guess (*:Linux:*:*): Add guess for sparc-unknown-linux.
Mon May 27 20:16:42 1996 Karl Heuer <[email protected]>
* getloadavg.c [SOLARIS2]: Define SUNOS_5.
Fri May 24 18:34:53 1996 Roland McGrath <[email protected]>
* config.guess (AViiON:dgux:*:*): Fix typo in recognizing mc88110.
Wed May 22 17:20:59 1996 Roland McGrath <[email protected]>
* getloadavg.c [WIN32]: No-op as for [MSDOS].
* getopt.c [WIN32] (getpid): Define using GetCurrentProcessId.
* getopt.c [VMS]: Include unixlib.h, string.h.
Tue May 21 18:55:59 1996 Roland McGrath <[email protected]>
* config.sub: Restore `hp9k2[0-9][0-9] | hp9k31[0-9])' case line
apparently accidentally removed in the last change.
Mon May 20 11:58:15 1996 Jeffrey A. Law <[email protected]>
* config.sub: Recognize -proelf as a basic system type.
Fri May 3 02:35:56 1996 Noah Friedman <[email protected]>
* mkinstalldirs: Don't report an error if mkdir fails because
a directory was created by another process.
Sun Apr 21 09:50:09 1996 Stephen L Moshier ([email protected])
* choose-temp.c: Include sys/types.h before sys/file.h for sco3.2v5.
Tue Apr 9 14:37:31 1996 Ulrich Drepper <[email protected]>
* obstack.h [__STDC__] (obstack_init, obstack_begin,
obstack_specify_allocation, obstack_specify_allocation_with_arg,
obstack_chunkfun, obstack_freefun): Duplicate definition with complete
type cast.
Wed Apr 17 14:28:43 1996 Doug Evans <[email protected]>
* choose-temp.c: Don't include sys/file.h ifdef NO_SYS_FILE_H.
#include <stdio.h>.
(choose_temp_base): Make tmp,usrtmp, static locals.
Mon Apr 15 14:08:12 1996 Doug Evans <[email protected]>
* choose-temp.c: New file.
Fri Apr 12 20:03:59 1996 Per Bothner <[email protected]>
* config.guess: Combine two OSF1 rules.
Also recognize field test versions. From [email protected].
* config.guess (dgux): Use /usr/bin/uname rather than uname,
because GNU uname does not support -p. From [email protected].
Mon Apr 8 16:16:20 1996 Michael Meissner <[email protected]>
* config.guess (prep*:SunOS:5.*:*): Turn into
powerpele-unknown-solaris2.
Thu Mar 28 02:06:03 1996 Roland McGrath <[email protected]>
* error.c (_): New macro, define iff undefined.
(private_strerror): Use it for message string.
(error_at_line): New function.
(error_one_per_line): New variable.
* error.h (error_at_line, error_one_per_line): Declare them.
Thu Mar 21 14:42:26 1996 Doug Evans <[email protected]>
* config.sub (os): sunos[3456] -> sunos[34],
sunos[56] have their own entries.
Wed Mar 20 09:59:30 1996 Roland McGrath <[email protected]>
* signame.c [HAVE_STRING_H]: Include string.h.
Tue Mar 19 20:07:39 1996 Roland McGrath <[email protected]>
* alloca.c (NULL): Define only if not already defined.
* alloca.c [HAVE_STRING_H]: Include string.h.
[HAVE_STDLIB_H]: Include stdlib.h.
Thu Mar 14 19:12:52 1996 Ian Lance Taylor <[email protected]>
* config.guess: Recognize mips-*-sysv*, with a specific case for
NEC (which has its own compiler and libraries).
Sat Mar 9 23:52:33 1996 Jim Meyering ([email protected])
* getdate.y (RelativeMonth): Add 1900 to the year so that relative
date specs that push the year through the end of the century work.
For example, `date -d "01/01/1998 3 years" +%Y' now prints 2001.
From Peter Dalgaard ([email protected]).
Tue Mar 5 18:43:43 1996 Richard Henderson <[email protected]>
* config.sub: Add -apple and -aux.
Tue Mar 5 03:02:53 1996 Erik Naggum <[email protected]>
* config.sub (moss): Fix previous change.
Mon Mar 4 18:03:38 1996 Bryan Ford ([email protected])
* config.sub: Accept -moss* as op sys.
Fri Mar 1 09:57:54 1996 Roland McGrath <[email protected]>
* config.sub: Recognize cpu-vendor [ctj]90-cray, default
c90-cray-unicos. From tege.
Wed Feb 28 19:55:05 1996 Miles Bader <[email protected]>
* getopt.c (_getopt_internal): Always set OPTOPT to *something* if
returning '?', so it can be distinguished from an option.
Thu Feb 22 15:51:09 1996 Karl Heuer <[email protected]>
* getdate.y (Convert): Accept dates beyond 1999.
Tue Feb 13 13:20:32 1996 Miles Bader <[email protected]>
* getopt.c (_getopt_internal): Give FIRST_NONOPT & LAST_NONOPT
rational values if OPTIND has been moved back by the user.
Mon Feb 12 18:23:35 1996 Doug Evans <[email protected]>
* config.sub: Recognize sparclet cpu.
Sun Feb 11 18:40:11 1996 Richard Stallman <[email protected]>
* config.sub: Fix typo in previous change.
Sat Feb 10 08:28:12 1996 Martin Anantharaman <[email protected]>
* config.sub (-psos*): New case.
Thu Feb 8 15:37:52 1996 Brendan Kehoe <[email protected]>
* config.guess (UNAME_VERSION): Recognize X4.x as an OSF version.
Sun Feb 4 16:51:11 1996 Steve Chamberlain <[email protected]>
* config.guess (*:CYGWIN*): New
Mon Feb 12 15:33:59 1996 Christian Bauernfeind <[email protected]>
* config.guess: Support m68k-cbm-sysv4.
Sat Feb 10 12:06:42 1996 Andreas Schwab <[email protected]>
* config.guess (*:Linux:*:*): Guess m68k-unknown-linux and
m68k-unknown-linuxaout from linker help string. Put quotes around
$ld_help_string.
Wed Feb 7 15:31:09 1996 Roland McGrath <[email protected]>
* getopt.c [__GNU_LIBRARY__]: Include <unistd.h>.
* getopt.c (nonoption_flags, nonoption_flags_len): New variables.
(_getopt_initialize): If not POSIXLY_CORRECT, check for special
environment variable from Bash 2.0 and set those vars from it.
(_getopt_internal): Do not consider as options argv elts whose
nonoption_flags elt from the shell is '1'.
Thu Feb 1 09:10:02 1996 Steve Chamberlain <[email protected]>
* config.sub (-cygwin32): New.
Wed Jan 31 14:13:25 1996 Richard Henderson <[email protected]>
* config.sub: Add support for A/UX.
* config.guess: Recognize A/UX.
Tue Jan 23 13:15:50 1996 Roland McGrath <[email protected]>
* obstack.h [__STDC__] (struct obstack, _obstack_begin,
_obstack_begin_1): Use prototypes in function decls.
* obstack.c (CALL_CHUNKFUN, CALL_FREEFUN): Cast function type for
call w/o extra_arg.
* error.c (error_print_progname) [__STDC__]: Declare with
prototype.
[_LIBC]: Include errno.h to declare program_invocation_name.
* getopt.c [__STDC__] (exchange, _getopt_initialize): Declare
prototypes for these.
Mon Jan 22 08:53:45 1996 Roland McGrath <[email protected]>
* xmalloc.c [__STDC__] (fixup_null_alloc): Declare prototype.
Sun Jan 21 01:08:09 1996 Roland McGrath <[email protected]>
* error.h: Declare error_print_progname. Add comments.
Wed Jan 17 17:39:51 1996 Richard Stallman <[email protected]>
* config.sub: Default OS to nextstep if machine vendor is Next.
-ns2 is an alias for -nextstep.
Wed Jan 17 09:51:58 1996 Doug Evans <[email protected]>
* config.sub: Recognize go32* as an os.
Sun Jan 7 02:00:27 1996 Karl Heuer <[email protected]>
* alloca.c (alloca): If malloc fails, just abort.
Mon Jan 15 20:59:49 1996 J. Kean Johnston <[email protected]>
* config.sub (sco5): New case.
Tue Dec 19 15:56:15 1995 Eli Zaretskii <[email protected]>
* getloadavg.c (getloadavg) [MSDOS]: Return 0 load instead of
failing the call.
Fri Dec 15 22:34:08 1995 Stan Coxs <[email protected]>
* config.guess (AViiON): Add ix86-dg-dgux
* config.sub (i*86*) Change [345] to [3456]
Thu Dec 7 09:03:24 1995 Tom Horsley <[email protected]>
* config.guess (powerpc-harris-powerunix): Add guess for port
to new target.
Wed Dec 6 09:44:53 1995 Paul Eggert <[email protected]>
* install-sh (transformbasename): Fix misspelling in initialization.
Wed Dec 6 06:58:23 1995 Richard Earnshaw ([email protected])
* config.sub: Recognize aof in the OS field.
Tue Dec 5 18:36:41 1995 Roland McGrath <[email protected]>
* error.c [_LIBC]: Adapt for use in GNU libc.
Mon Dec 4 13:21:51 1995 Jeffrey A. Law <[email protected]>
* config.guess: Recognize HP model 816 machines as having
a PA1.1 processor.
Thu Nov 30 16:57:33 1995 Per Bothner <[email protected]>
* config.guess: Recognize Pentium under SCO.
From Robert Lipe <[email protected]>.
Tue Nov 21 16:59:12 1995 Richard Stallman <[email protected]>
* getdate.y: If config.h defines FORCE_ALLOCA_H, include alloca.h.
Mon Oct 16 11:34:00 1995 Jeffrey A. Law <[email protected]>
* config.guess: Recognize HP model 819 machines as having
a PA 1.1 processor.
Sat Sep 30 14:03:17 1995 Roland McGrath <[email protected]>
* getopt.c (_): New macro, define if not already defined.
(gettext): Never define as a macro.
(_getopt_internal): Use ``_("message")'' instead of
`gettext ("message")''.
Mon Aug 14 19:27:56 1995 Per Bothner <[email protected]>
* config.guess (*Linux*): Add missing "exit"s.
Also, need specific check for alpha-unknown-linux (uses COFF).
Fri Jul 28 00:16:31 1995 Jeffrey A. Law <[email protected]>
* config.guess: Recognize lynx-2.3.
Thu Jul 27 13:31:05 1995 Fred Fish ([email protected])
* config.guess (*:Linux:*:*): First try asking the linker what the
default object file format is (elf, aout, or coff). Then if this
fails, try previous methods.
Mon Aug 7 16:48:13 1995 Roland McGrath <[email protected]>
* getloadavg.c [ps2]: Use nlist instead of knlist #ifdef _AIX.
Fri Aug 4 10:27:54 1995 Jim Meyering ([email protected])
* getopt.c (_getopt_internal) [lint]: Initialize INDFOUND to
avoid warning from gcc.
Tue Aug 1 14:29:43 1995 Roland McGrath <[email protected]>
* getloadavg.c (getloadavg): Set FD_CLOEXEC flag on /dev/kmem file
descriptor.
Wed Jul 26 00:26:34 1995 David J. MacKenzie <[email protected]>
* mkinstalldirs: Remove weird unnecessary shell construction.
Wed Jun 28 17:57:27 1995 David Edelsohn <[email protected]>
* config.guess (AIX4): More robust release numbering discovery.
Thu Jun 22 19:01:24 1995 Kenneth Stailey ([email protected])
* config.guess (i386-sequent-ptx): Properly get version number.
Thu Jun 22 18:36:42 1995 Uwe Seimet ([email protected])
* config.guess (mips:*:4*:UMIPS): New case.
Tue Jun 20 02:41:41 1995 Roland McGrath <[email protected]>
* getloadavg.c [convex] (LOAD_AVE_TYPE, LDAV_CVT): Define to
double, no conversion.
* obstack.c (OBSTACK_INTERFACE_VERSION): New macro. Rewrote
conditionals to use that macro to ensure that the installed GNU
libc supports the interface the obstack.h corresponding to this
obstack.c needs, and only then elide the code in this file.
Sun May 28 18:53:29 1995 Richard Kenner ([email protected])
* config.guess (21064:Windows_NT:50:3): New case.
Fri May 19 16:52:50 1995 Roland McGrath <[email protected]>
* error.c (error_message_count): New variable.
(error): Increment it.
* error.h: Declare error_message_count.
Mon May 15 17:47:55 1995 Per Bothner ([email protected])
* config.guess: Recognize Cray90 (from Pete TerMaat).
Thu May 11 17:13:14 1995 Per Bothner ([email protected])
* config.guess: Recognize PCs running Solaris2.
(Patch from Bruno Haible <[email protected]>.)
* config.guess: Merge two CRAY*Y-MP entries.
Ignore system field for Cray xmp and cray2 since "uname -s" on
a Cray gets you the hostname, which is useless.
(According to Pete TerMaat <[email protected]>.)
Wed May 10 11:03:56 1995 Roland McGrath <[email protected]>
* getloadavg.c: AIX support from Tim Bell <[email protected]>:
[_AIX] (LOAD_AVE_TYPE, FSCALE, NLIST_STRUCT): Define these for AIX.
(getloadavg) [_AIX]: Use `knlist' instead of `nlist'.
Fri May 5 05:50:56 1995 Allen Briggs ([email protected])
* config.guess: Add more NetBSD cases: atari, sun3*, and mac68k.
Wed May 3 16:22:31 1995 Richard Stallman <[email protected]>
* crt0.c: Add APOLLO alternative.
Sat Apr 29 15:48:03 1995 Roland McGrath <[email protected]>
* signame.c: Move include of config.h before all others.
Thu Apr 27 11:33:29 1995 Michael Meissner ([email protected])
* config.guess (*:Linux:*:*): Check for whether the pre-BFD linker is
installed, and if so return linuxoldld as the system name.
Thu Apr 27 13:11:11 1995 Jim Meyering ([email protected])
* error.h: Use __-protected versions of `format' and `printf'
attributes only with gcc-2.7 and later.
Thu Apr 27 09:22:33 1995 Peder Chr. Norgaard <[email protected]>
* config.guess (i[34]86:*:3.2:*) test for /usr/options/cb.name
before calling uname.
Wed Apr 26 17:19:34 1995 Roland McGrath <[email protected]>
* signame.c [HAVE_UNISTD_H]: Include unistd.h so it can declare
sys_siglist.
Wed Apr 26 14:00:00 1995 Michael Meissner ([email protected])
* config.guess (*:Linux:*:*): Determine whether the default compiler is
a.out or ELF based.
(parisc*:Lites*:*:*): New entry from Jeff Law.
Wed Apr 26 11:48:21 1995 Jim Meyering ([email protected])
* error.h: New file.
Wed Apr 26 10:27:50 1995 Travis L Priest ([email protected])
* config.guess (CRAY*Y-MP:*:*:*): New entry.
Wed Apr 26 12:54:26 1995 Jeffrey A. Law <[email protected]>
* config.guess: Add hppa1.1-hp-lites support.
Thu Apr 6 19:55:54 1995 Richard Stallman <[email protected]>
* crt0.c [__bsdi__]: Maybe declare __progname.
Fri Mar 24 00:52:31 1995 Roland McGrath <[email protected]>
* getopt.c (_getopt_internal): When optind is zero, bump it to 1
after initializing; we don't want to scan ARGV[0], which is the
program name.
Tue Mar 21 16:44:37 1995 Roland McGrath <[email protected]>
* signame.c (signame_init): Define SIGINFO.
Tue Mar 7 01:41:09 1995 Roland McGrath <[email protected]>
* signame.c (strsignal): Cast sys_siglist elt to char *.
Thu Feb 23 18:42:16 1995 Roland McGrath <[email protected]>
* signame.h [! __STDC__]: Don't use prototype for strsignal decl.
Wed Feb 22 19:08:43 1995 Niklas Hallqvist ([email protected])
* config.guess: Recognize NetBSD/Amiga as m68k-cbm-netbsd.
Tue Feb 21 22:13:19 1995 Roland McGrath <[email protected]>
* signame.h (strsignal): Declare it.
* signame.c [! HAVE_STRSIGNAL] (strsignal): New function.
Wed Feb 8 10:03:36 1995 David J. MacKenzie <[email protected]>
* install-sh config.guess mkinstalldirs: Add a blank in the #!
line for 4.2BSD, Dynix, etc.
Sat Feb 4 12:59:59 1995 Jim Wilson <[email protected]>
* config.guess (IRIX): Sed - to _.
Sat Jan 28 20:09:49 1995 Daniel Hagerty <[email protected]>
* error.c: Under older versions of SCO, strerror is a preprocessor
macro. Added a check for this.
Fri Jan 27 09:55:28 1995 Jim Meyering ([email protected])
* getdate.y: Remove obsolete comments. Rewrite others.
Mon Jan 23 19:41:57 1995 Karl Heuer <[email protected]>
* config.guess (i[34]86:*:3.2:*): Test for ISC before SCO; newer
ISC releases have uname -X.
Tue Jan 10 09:26:41 1995 Jim Meyering ([email protected])
* getdate.y (ToSeconds): Interpret 12am as 00:00 and 12pm as 12:00.
Before, `date -d 'Jan 1 12am'' printed `...12:00:00...'.
From Takeshi Sone <[email protected]>.
Sat Jan 7 11:57:40 1995 Roland McGrath <[email protected]>
* getloadavg.c: Include config.h first.
Wed Jan 4 15:52:17 1995 Per Bothner ([email protected])
* config.guess: Recognize BSD/OS as bsdi.
Patch from Chris Torek <[email protected]>.
Wed Dec 21 15:51:08 1994 Warner Losh ([email protected])
* config.guess (sun4:SunOS:*:*): Handle Solbourne OS/MP systems.
Tue Dec 6 02:29:42 1994 Roland McGrath <[email protected]>
* config.guess (dummy.c) [sony]: Include <sys/param.h> and emit
newsos4 #ifdef NEWSOS4.
Tue Nov 29 17:01:29 1994 Mark Dapoz ([email protected])
* config.guess (ibmrt): Add more cases for various forms of BSD.
Tue Nov 29 16:19:54 1994 Paul Eggert <[email protected]>
* getopt.c (_getopt_internal): Add gettext wrappers around
message strings.
* xmalloc.c (fixup_null_alloc): Add gettext wrapper.
Capitalize initial letter of error message, for consistency
with regex.c.
Fri Nov 25 19:22:24 1994 Roland McGrath <[email protected]>
* crt0.c (start1): Add self reference.
Wed Nov 23 16:51:11 1994 R. Bernstein ([email protected])
* config.guess: Add cases for romp-ibm-aix and romp-ibm-bsd.
Mon Nov 14 19:03:29 1994 Per Bothner ([email protected])
* config.guess: Support paragon as i860-intel-osf1. (From RMS.)
Fri Nov 11 14:04:58 1994 Andreas Luik ([email protected])
* obstack.h: Add one missing test on value of __STDC__.
Sat Nov 05 08:08:52 1994 Jim Meyering ([email protected])
* obstack.h: NextStep 2.0 cc is really gcc 1.93 but it defines
__GNUC__ = 2 and does not implement __extension__. So add
`|| (__NeXT__ && !__GNUC_MINOR__)' to the test for whether to
define-away __extension__. Reported by Kaveh Ghazi.
Thu Nov 03 14:36:58 1994 Jim Meyering ([email protected])
* filemode.c (rwx): Use S_IRUSR, S_IWUSR, S_IXUSR instead of
obsolete S_IREAD, S_IWRITE, S_IEXEC.
Make sure the former three are defined.
Tue Nov 1 14:24:39 1994 Per Bothner ([email protected])
* config.guess (*-unknown-freebsd): Remove [-(] from
UNAME_RELEASE. Patch from Warner Losh <[email protected]>.
Mon Oct 31 07:02:15 1994 Roland McGrath <[email protected]>
* getopt.h: Change #if __STDC__ to #if defined (__STDC__) &&
__STDC__.
* getopt.c: Change #ifndef __STDC__ to #if !defined (__STDC__) ||
!__STDC__.
* getopt1.c: Likewise.
* obstack.c: Change #ifdef __STDC__ to #if defined (__STDC__) &&
__STDC__.
* obstack.h: Likewise.
Wed Oct 26 20:34:59 1994 Roland McGrath <[email protected]>
* getloadavg.c [alliant && i860] (FSCALE): Move defn before
#ifndef FSCALE.
Tue Oct 25 19:10:41 1994 Paul Eggert <[email protected]>
* xmalloc.c (fixup_null_alloc): New function.
(xmalloc, xrealloc): Use it to fix up returned NULL values,
instead of preemptively adjusting a zero N to 1.
Tue Oct 25 11:22:30 1994 David J. MacKenzie <[email protected]>
* xmalloc.c (xmalloc, xrealloc): If 0 bytes requested, pretend
it's 1, for diff.
Thu Oct 20 18:47:53 1994 Per Bothner ([email protected])
* config.guess: Better support for NCR - covers more machines,
and prints sysv4.3 if uname says the OS is 4.3.
Patch from Tom McConnell <[email protected]>.
Wed Oct 19 15:55:38 1994 David J. MacKenzie <[email protected]>