-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathXMLChangeLog
3051 lines (2294 loc) · 131 KB
/
XMLChangeLog
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
Thu Sep 24 11:31:22 UTC 2009 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 264.
Update infrastructure; main goal is to keep libsigsegv from installing.
Update to Autoconf 2.63, Automake 1.11, Libtool 2.2.6a.
This patch seems out of sync (see libsigsegv/ChangeLog).
Arnold or me, someone seems to have forgotten some patches.
I hope this will be fixed later with cvsps 283.
I will commit these sources because they can be built.
This wil have to be fixed later; possibly by copying.
* ltmain.sh: New file.
* configure.ac: Changes to keep infrastructure tools happy.
* alocal.m4, configure, Makefile.in, */Makefile.in:
Ignoring patches of generated files.
Thu Sep 24 08:19:54 UTC 2009 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 263.
* builtin.c (mbc_byte_count, mbc_char_count): Make sure all declarations
come before executable code, for older compilers.
* dfa.c (insert): Ditto.
* io.c (devoopen): Ditto.
Thu Sep 24 07:57:40 UTC 2009 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 262.
Add simple constant folding.
* awk.h (do_optimize): New declaration.
(calc_exp): Add declaration.
* eval.c (calc_exp): Make non-static.
* main.c (do_optimize): New variable.
(opttab): Add new entry for --optimize.
(main): Add 'O' to optlist and code for argument parsing.
(usage): Update for new option.
* awkgram.y (Node_concat, Node_exp, Node_times, Node_quotient, Node_mod,
Node_plus, Node_minus): Call `constant_fold' to create the node in
the tree.
(constant_fold): New function.
* po: Ignoring changed .po files; will do this later.
Wed Sep 23 15:50:19 UTC 2009 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 255, 256, and 257.
* main.c (struct varinit): Add flags member.
(varinit): Add values for flags member (one or both of NON_STANDARD
or NO_INSTALL). Add entries for the rest of the gawk variables and
sort them, so that the table can be searched by ...
(is_std_var): New routine to see if a name is a standard variable.
* awk.h (is_std_var): Add declaration.
* awkgram.y (func_install): Use new routine and issue error.
Wed Sep 23 15:12:10 UTC 2009 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 252 and 253.
* awkgram.y: Minor typo fix.
* awkgram.c: Regenerated. Ignoring patches of generated files.
Wed Sep 23 14:57:24 UTC 2009 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 251.
* builtin.c (sub_common): Change code for handling \<dig> replacements.
(do_length): Add a lint warning if `length' is passed an untyped
argument.
Wed Sep 23 14:22:20 UTC 2009 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 249.
* eval.c (func_call): Save nloops_active.
Tue Apr 7 14:50:07 UTC 2009 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 246.
New lint warnings and test cases.
* builtin.c (format_tree): Add lint warnings for fieldwidth and/or
precision in %%, and add lint warning for unknown format specifier
(e.g. %b). Thanks to "joanes.polus" <[email protected]> for
the report.
Tue Apr 7 14:21:36 UTC 2009 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 245.
More VMS exit changes.
* awk.h (EXIT_SUCCESS, EXIT_FAILURE): Move VMS-specific values
to vms/vms-conf.h.
(EXIT_FATAL): Define here instead of in msg.c.
* msg.c (EXIT_FATAL): Move definition to awk.h.
Tue Apr 7 14:19:27 UTC 2009 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 244.
VMS Fixes from Pat Rankin.
Tue Apr 7 14:15:33 UTC 2009 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 243.
VMS Fixes from Pat Rankin. Update NEWS.
* main.c [#if HAVE_SIGSEGV_H]: For the #else case (VMS),
(stackoverflow_context_t): Dummy typedef for use in prototypes;
(stackoverflow_install_handler): Make macro expand to 0 rather
than nothing so that (void) cast on invocation of it works.
* main.c (catchstackoverflow): Don't return 0 from void function.
Tue Apr 7 14:06:57 UTC 2009 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 242.
* awkgram.y (tokentab): Have only one copy of BEGIN / END.
(tokcompare): New function.
(check_special): Sort tokentab for EBCDIC systems.
Tue Apr 7 13:54:23 UTC 2009 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 241.
Skipping savannah gawk cvsps 240 because the file
awklib/eg/prog/translate.awk is generated.
* profile.c (pp_delete): Print tree->exec_count to actually get
the value printed.
Tue Apr 7 13:41:07 UTC 2009 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 239.
Improve exit patches.
Tue Apr 7 13:15:47 UTC 2009 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 236.
* awk.h [CONST]: Renamed CONSTANT to avoid conflict with libsigsegv
on Windows.
* awkgram.y, field.c, re.c: Update all uses.
Tue Apr 7 13:05:50 UTC 2009 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 235.
* io.c (do_close): Wrap updating of ERRNO in check for not
do_traditional.
Tue Apr 7 12:07:33 UTC 2009 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 234.
* builtin.c (format_tree): For '%s', don't count the multibyte
characters if we are just copying all the characters. Gives
big speedup.
* field.c (parse_field, re_parse_field, def_parse_field,
posix_def_parse_field, null_parse_field, sc_parse_field,
fw_parse_field): Add new last arg `in_middle'. Ignored by all
except re_parse_field.
(re_parse_field): Enhance logic to only allow ^ in a regex to match
if indeed at the beginning of a record.
(getfield): Adjust call to parse_field.
* awk.h: RE_NO_BOL changed comment.
Tue Apr 7 11:57:01 UTC 2009 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 233.
* awk.h, io.c, main.c, profile.c, eval.c:
Move to EXIT_SUCCESS and EXIT_FAILURE.
Tue Apr 7 11:48:31 UTC 2009 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 232.
* regex.h: Define __USE_GNU if not _LIBC; needed for non-GLIBC
systems such as, oh say, Mac OS X.
Sun Jan 18 19:43:58 UTC 2009 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 230.
* regex.c, regex_internal.h: Remove some changes that are no
longer needed after sync with GLIBC.
Sun Jan 18 19:32:09 UTC 2009 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 229.
Bi-annual sync with GLIBC.
* regexec.c, regex.h, regex_internal.c, regcomp.c, regex_internal.h,
regex.c: Reapply any portability patches specific to gawk.
* getopt.c: Sync with GLIBC.
Tue Jan 6 18:00:52 UTC 2009 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 228.
Add retry to calls to socketopen.
* io.c (devopen): Add a retry to calls to socketopen. Tunable
via undocumented GAWK_SOCK_RETRIES environment variable.
Tue Jan 6 17:45:22 UTC 2009 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 226.
Bug fix for getline from directory.
* io.c (redirect): A getline from a directory is no longer
fatal; instead it returns -1. Thanks to Paolo <[email protected]>
for the report.
Wed Dec 31 19:41:48 UTC 2008 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 213.
* po/LINGUAS, po/id.po: Merged cvsps 213 with a new language.
* configure.ac: XGAWKBUILD="20090101", ready for a first
release candidate.
Wed Dec 31 19:00:55 UTC 2008 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 224.
* ChangeLog, builtin.c (format_tree):
Case for 's', improve logic for setting
the number of characters to copy, also at pr_tail.
Wed Dec 31 18:46:31 UTC 2008 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 223 and 222 (po).
* Makefile.in.in (install-dvi, install-ps): New targets that
do nothing.
Wed Dec 31 17:23:53 UTC 2008 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 220.
* ChangeLog, builtin.c (do_length):
If the wide string has zero length
but the bytes are more than zero, use the number of bytes.
(do_index): Similar also: fall back to byte count if the
bytes don't make a wide-character string.
(do_substr): If defaulting to length of rest of the string,
do it based on the wide char string if it's valid.
Wed Dec 31 17:23:53 UTC 2008 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 218 and 219.
* ChangeLog: Corrected typo.
* io.c (free_rp): New function.
(redirect): Improved logic for cvsps 217, including use of free_rp.
(close_redir): Use free_rp.
Wed Dec 31 17:12:30 UTC 2008 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 217.
* io.c (redirect): Only put the new struct redirect into
the list if the file or pipe could actually be opened. Fixes
a bug with the wrong return value of close.
* dfa.c (parse_bracket_exp_mb): Don't zero out work_mbc->chars
after we malloc'ed it. Fixes a leak found by valgrind when
using UTF-8.
Wed Dec 31 15:38:36 UTC 2008 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 214. Ignoring cvsps 213 (po).
* README: Fix a typo in an e-mail address.
Wed Dec 31 14:11:04 UTC 2008 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 209 to 212.
In cvsps 209 to 211, Arnold introduced function pointers.
In cvsps 212, he removed the function pointer changes for
placement into development tree. A few changes remain.
Be carefull with these patch sets. After applying them,
my build directory was somehow disturbed and it was not
possible to complete a build. What I finally did was to
use the two changed files (configure.ac and eval.c) and
copy them into a source tree that was newly checked out.
* ChangeLog, configure.ac, eval.c:
Add -g3 and -gdwarf-2 to CFLAGS if compiling with
GCC and doing development. Should have done this ages ago.
Wed Dec 31 13:40:13 UTC 2008 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 206.
* ChangeLog, eval.c (set_BINMODE): Tighten up the code to even
more so that it matches the documentation.
Wed Dec 31 13:27:58 UTC 2008 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 205. Update libsigsegv to 2.6.
Allow building universal binaries on MacOS X.
* libsigsegv: Update libsigsegv to 2.6.
* libsigsegv/m4/libtool.m4: Update from libtool-2.2.4.
* libsigsegv/m4/ltoptions.m4: New file, from libtool-2.2.2.
* libsigsegv/m4/ltsugar.m4: New file, from libtool-2.2.2.
* libsigsegv/m4/ltversion.m4: New file, from libtool-2.2.2.
* libsigsegv/m4/lt~obsolete.m4: New file, from libtool-2.2.2.
* libsigsegv/src/machfault-macos-i386.h: Remove file.
* libsigsegv/src/machfault-macos-powerpc.h: Remove file.
* libsigsegv/src/machfault-macos.h: New file, combining
src/machfault-macos-powerpc.h and src/machfault-macos-i386.h.
* libsigsegv/src/stackvma-rofile.c: New file.
* libsigsegv/tests/sigsegv3.c: New file.
Tue Dec 30 17:50:12 UTC 2008 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 204. Revise handling of setting BINMODE.
* eval.c (set_BINMODE): Tighten up the code to only allow
certain reasonable values when setting BINMODE.
Tue Dec 30 17:45:58 UTC 2008 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 202 and 203.
Non-existant files on the command line nor being a fatal error.
* ChangeLog, io.c (nextfile): Users Strong In The Way Of The Force
can use non-existant files on the command line without it being a
fatal error.
Tue Dec 30 14:53:15 UTC 2008 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 200. Cosmetic changes to ChangeLog.
Tue Dec 30 14:22:44 UTC 2008 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 198. Bug fixes.
* re.c (research): Don't ever use DFA if need_start. It can
break on some weird cases.
* builtin.c (do_match): Add MAYBE_NUM flag to elements of array
created by `match' since data could come from user. Similar
semantics to `split'.
Tue Dec 30 13:53:18 UTC 2008 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 196 and 197. Ignoring cvsps 195.
Everything from patch set 195 is ignored because the patch set
is about generated files.
* ChangeLog, node.c, dfa.c, profile.c: Improve performace.
Use %.0f only for integral values that are outside the range of a long.
Use %ld when the value is within the range of a long.
Mon Dec 29 20:08:33 UTC 2008 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 191. Ignoring cvsps 192 (configure).
* dfa.c (epsclosure): Change type of `visited' from int to char for
potential speedup.
Mon Dec 29 20:01:24 UTC 2008 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 190.
* builtin.c (format_tree): For `%c' case, add a lint warning
if the value is greater than 255.
(mbc_byte_count, mbc_char_count): Remove unused variable `i'.
Mon Dec 29 19:49:44 UTC 2008 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 189. Ignoring cvsps 188.
Almost everything from patch sets 188 and 189 is ignored
because the patch sets are mostly about generated files.
But the changes made to get the test mbfw1 running again
are applied.
Mon Dec 29 19:35:04 UTC 2008 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 187. Reorder signal handler installation.
* ChangeLog, main.c (main):
Move call to catch SIGBUG to before installation of
libsigsegv handler, since on some systems libsigsegv installs its
own handler for SIGBUS.
[STACK_SIZE]: Add a constant instead of inline.
Mon Dec 29 15:54:19 UTC 2008 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 186.
* libsigsegv: Update to libsigsegv-2.5.
Mon Dec 29 15:22:07 UTC 2008 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 184.
* builtin.c (state): Do as an integer array for systems that need it.
(do_rand, init_rand): Modify call to `initstate' as needed.
* dfa.c (prednames): Add an extra zero to final initializer to
silence a compiler warning.
* field.c (fw_parse_field): Add code for multibyte case.
Mon Dec 29 15:12:49 UTC 2008 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 182. Ignoring cvsps 183 (po).
* builtin.c (do_length): Handle the case of the parameter being
an array that was a function parameter.
Mon Dec 29 14:59:25 UTC 2008 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 181.
* ChangeLog, builtin.c (format_tree): Fix call to mbc_byte_count to pass the
right number of characters based on the format type.
Mon Dec 29 14:04:26 UTC 2008 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 180. Ignoring cvsps 179 (po).
Add libsigsegv. After this patch, "make install" doesn't work.
The reason is twofold:
- libsigsegv/install-sh is missing (workaround: ln -s ../install-sh .)
- libsigsegv/build-aux/install-sh has no execute permission
(workaround: chmod +x libsigsegv/build-aux/install-sh)
* libsigsegv: Incorporated into the dist.
* ChangeLog, Makefile.am (SUBDIRS), NEWS:
Added libsigsegv to SUBDIRS. Make it first so that the library
is built before gawk is.
* configure.ac: Add call to AC_CONFIG_SUBDIRS for libsigsegv.
* main.c (catchsegv, catchstackoverflow): New functions.
(main): Call into sigsegv library with them.
* configure, Makefile.in,
awklib/Makefile.in, doc/Makefile.in, test/Makefile.in:
Ignoring patches of generated files.
Mon Dec 29 12:54:33 UTC 2008 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 178.
* ChangeLog, builtin.c: Multibyte fix for printf.
Sun Dec 28 21:43:15 UTC 2008 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 176.
* ChangeLog, main.c (init_args): Adjust type of third arg
to remove warning from GCC 4.2, add cast in call to make_string.
Sun Dec 28 21:31:41 UTC 2008 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 174. Ignoring cvsps 175 (po).
Sun Dec 28 20:47:45 UTC 2008 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 172. Ignoring cvsps 173 (po).
* Makefile.am: Add sed on y.tab.c to convert older Bison "parse error"
messages to "syntax error" messages.
* ChangeLog, awk.h: Added ZOS_USS compile changes.
* awkgram.y: Added USE_EBCDIC changes for EBCDIC collating sequence.
* eval.c: Added EBCDIC casetable and ZOS_USS changes.
* regcomp.c: Added btowc function for ZOS_USS.
* regex.h: Changed __string to __cstring to avoid ZOS_USS header usage.
* regex_internal.h: Added ZOS_USS changes and type defines.
* README_d/README.zos: New file.
* m4/arch.m4, m4/inttypes.m4, m4/inttypes_h.m4, m4/stdint_h.m4,
configure.ac: Added ZOS_USS changes.
* awkgram.c, Makefile.in, configure: Ignoring patches of generated files.
Sun Dec 28 20:18:49 UTC 2008 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 169. Ignoring cvsps 170 and 171 (po).
Sat Dec 27 17:36:15 UTC 2008 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 168. Ignoring cvsps 167 (po).
* configure.ac: Up version letter 3.1.6 to 3.1.6a.
* configure, version.c: Ignoring patches of generated files.
* ChangeLog, README, dfa.c (epsclosure):
Replace MALLOC + zero-out-loop with CALLOC for speedup
* profile.c (pprint): Add a missing `#ifdef PROFILING'.
Thu Dec 27 10:41:28 UTC 2007 Juergen Kahrs <[email protected]>
* .savannah: We are now in sync with all CVS savannah patches
up to 166. This is good enough for the release of xgawk-3.1.6.
Mon Dec 24 15:36:37 UTC 2007 Juergen Kahrs <[email protected]>
* Makefile.am: version.in is needed in EXTRA_DIST since Arnold
cleaned up the mechanism.
Sat Dec 22 12:01:31 UTC 2007 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 165.
* profile.c (parenthesize): Remove "!" from output string.
(tree_eval): Fix quotes for delete array case.
(pp_var): New function, call it as appropriate everywhere else.
Sat Dec 22 11:47:11 UTC 2007 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 164.
* ChangeLog, io.c (socketopen): Use NULL as first argument to `getaddrinfo'
if any_remote_host is true. Should help on Non-GLIBC systems.
* io.c (two_way_open): Case for ptys. Change search for letters
to avoid ASCII / EBCDIC problems.
Sat Dec 22 11:42:39 UTC 2007 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 163.
* POSIX.STD: Fix a spelling error.
Sat Dec 22 10:47:33 UTC 2007 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 162.
Final prep for 3.1.6 release.
* ChangeLog, configure.ac: Release 3.1.6: Release tar file made.
Thu Dec 20 17:52:06 UTC 2007 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 161.
* pc/ChangeLog, pc/Makefile.tst:
Add localenl. Expect inftest to fail with DJGPP.
Get rid of core files when cleaning and generated .ok file.
Thu Dec 20 17:41:36 UTC 2007 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 160.
* pc/ChangeLog, pc/config.h:
Add definition of HAVE_ATEXIT. Needed for replacement sprintf.
Thu Dec 20 16:44:50 UTC 2007 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 158.
* pc/Makefile.tst: Fix a typo.
Thu Dec 20 16:01:44 UTC 2007 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 156.
Fixes for PC and snprintf.
* Makefile.am: Avoid GNU make-specific `make -C'.
* configure.ac: Add check for `atexit', needed by replacement
version of `snprintf'.
* missing_d/snprintf.c (safe_tmpfile):
If have `atexit', add call to a function that closes the open
fp and unlinks the file. Needed mainly for PC which can't do
Unix-style unlink-after-open.
Thu Dec 20 15:48:13 UTC 2007 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 154.
* pc/ChangeLog, pc/Makefile.tst (fmtspcl.ok):
Remove unneeded dependency on Makefile.
Thu Dec 20 15:32:12 UTC 2007 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 152.
* missing_d/ChangeLog, missing_d/snprintf.c (safe_tmpfile):
Add use of TMPDIR and TEMP environment variables for systems
that may not have a /tmp. For MS systems do unlink at close.
Thu Dec 20 15:05:40 UTC 2007 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 151.
* configure.ac:
Revise version after posting second beta.
Thu Dec 20 10:28:39 UTC 2007 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 149.
Rationalize locale's influence on %'g, strtonum, and input.
* awk.h (use_lc_numeric): Add declaration.
* builtin.c (format_tree): Add check for quote_flag and set
LC_NUMERIC so that The Right Thing gets done, then reset it.
(do_strtonum): Pass use_lc_numeric as second arg to isnondecimal.
* main.c (main): Have do_posix set use_lc_numeric also.
* configure.ac: Do not instantiate version.c; remove the hack
to keep version.c from being removed upon `make distclean'.
* Makefile.am (version.c): New rule.
(.c.i, SUFFIXES): Remove, `.i' is unused.
(MAINTAINERCLEANFILES): Remove awkgram.c; Automake takes care of that.
Wed Dec 19 19:53:38 UTC 2007 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 146.
* Makefile.am (.c.i, SUFFIXES): Remove, `.i' is unused.
* Makefile.am (MAINTAINERCLEANFILES): Remove awkgram.c;
Automake takes care of that.
Arnold removed the previous three lines with cvsps 149.
* builtin.c: Cleaned up comment about NaN and Inf.
Wed Dec 19 18:58:07 UTC 2007 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 144.
* builtin.c (format_tree): Handle non-standard snprintf that
returns a negative value when the buffer is too small.
* pc/Makefile.tst (poundbang): Fix path in call to gawk.
(nofile): Fix output message with sed to match what test suite wants.
(msg): Use $(CMP) instead a literal "cmp".
(nonl): Use NUL instead of /dev/null.
(devfd, pid, fmtspcl, nofile, rstest4, rstest5, getlnhd, clos1way):
Expect to fail on MinGW.
(fmtspcl.ok): Depend on Makefile, not Makefile.tst.
(pipeio2, hsprint, fmttest): Expect formatting or whitespace
differences.
(exitval2): Use exitval2.w32 instead of exitval2.awk.
* pc/config.h (HAVE_DECL_TZNAME) [__MINGW32__]: Define.
(HAVE_ALLOCA) [__MINGW32__]: Don't define.
(HAVE_SNPRINTF) [__MINGW32__]: Remove _MSC_VER condition.
Wed Dec 19 15:29:24 UTC 2007 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 143.
* ChangeLog: Fixed up formatting of entries.
* NEWS: New items up to 25.
* awk.h: Add include of <io.h> for Visual Studio.
* regex_internal.h: Do the right thing for replacing alloca.
* pc/ChangeLog, pc/config.h: For Visual Studio, undef restrict,
define HAVE_TMPFILE, undef TIME_WITH_SYS_TIME.
Wed Dec 19 13:42:57 UTC 2007 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 142.
* field.c (set_FIELDWIDTHS): Restore behavior of 3.1.4 that allowed
FIELDWIDTHS to be "" without crashing, and such a value has NF = 0.
* builtin.c (format_free): Make `quote_flag' not sticky.
* main.c (main): Adjust calls to `setlocale' and `localeconv' so that
the %'d flag will work even if not using the locale's decimal point.
* array.c (hash, awk_hash, gst_hash_string): Add fourth argument
pointer to retrieve code. Only assign a value if not NULL.
Fix most places to pass NULL for fourth argument.
(assoc_lookup): Save the code in the node for use in growing the
array later.
(grow_table): Use the saved code instead of recomputing each time.
* awk.h (NODE hash): Add `code' member and `ahcode' macro.
(hash): Revise declaration.
* awkgram.y: Revise calls to `hash'.
* NEWS: Added items 21 and 22.
Wed Dec 19 12:20:28 UTC 2007 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 136.
Sync dfa to grep 2.5.3, update copyleft in code.
* ChangeLog, main.c (copyleft): Cite version 3 of the license.
* dfa.h, dfa.c: Minor edits to sync with grep 2.5.3.
Tue Oct 2 13:10:23 UTC 2007 Andrew J. Schorr <[email protected]>
* replace.c: Remove duplicate '#include "missing_d/snprintf.c"'.
Sun Aug 12 14:59:01 UTC 2007 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 135.
* COPYING ChangeLog Makefile.am array.c awk.h awkgram.y bisonfix.awk
builtin.c configure.ac custom.h eval.c eval_p.c ext.c field.c
floatcomp.c gawkmisc.c io.c main.c mbsupport.h node.c profile.c
profile_p.c protos.h random.h re.c:
Upgrade to GPL v3.
Sun Aug 12 14:59:01 UTC 2007 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 133.
* ChangeLog, builtin.c (format_tree): Free `obuf' before call to `fatal'
to keep valgrind happy.
Sun Jul 1 19:28:54 UTC 2007 Andrew J. Schorr <[email protected]>
* bisonfix.sed: Remove from CVS (no longer used).
Mon Jun 18 19:28:12 UTC 2007 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 131.
* configure.ac: Up version letter 3.1.5g to 3.1.5h.
* configure, version.c: Ignoring patches of generated files.
Sun Jun 17 18:25:37 UTC 2007 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 130. Ignoring cvsps 129 (Makefile.in).
* NEWS: Closer towards release.
Sun Jun 17 17:58:11 UTC 2007 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 128.
README_d/README.macos, README_d/README.sgi:
README_d/README.solarism README_d/README.sunos4:
README_d/README.testsm README_d/OBSOLETE/README.FIRST:
README_d/OBSOLETE/README.linux, README_d/OBSOLETE/README.sco:
README_d/OBSOLETE/README.sony, README_d/OBSOLETE/README.ultrix:
README_d/OBSOLETE/README.yacc:
Cleaned up README_d.
Sun Jun 17 16:02:11 UTC 2007 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 126.
* AUTHORS, ChangeLog, Makefile.am, POSIX.STD, README,
array.c, awk.h, awkgram.y, builtin.c, configure.ac,
dfa.c, eval.c, ext.c, field.c, floatcomp.c, io.c, main.c,
node.c, profile.c, re.c, pc/Makefile.tst,
unsupported/atari/Makefile.awklib, unsupported/atari/config.h,
vms/redirect.h, vms/vms-conf.h, vms/vmsbuild.com:
Update copyright year.
Sun Jun 17 13:16:32 UTC 2007 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 125. Ignoring cvsps 124 (po directory).
Sun Jun 17 12:02:19 UTC 2007 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 121. Ignoring cvsps 120 (po directory).
* ChangeLog, NEWS, main.c: New option `--use-lc-numeric' allows
the use of the local decimal point.
Test Case badargs fails now; this will be fixed soon.
Sun Jun 3 12:48:09 UTC 2007 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 119.
* ChangeLog, config.h(HAVE_MKTIME): Define.
Sun Jun 3 12:36:36 UTC 2007 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 118.
* ChangeLog, awk.h (_TANDME_SOURCE):
Add test for ! _SCO_DS for SCO systems.
Sun Jun 3 12:32:07 UTC 2007 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 117.
* vms/ChangeLog, vms/vms-conf.h: re-sync with configh.in.
Sun Jun 3 11:28:04 UTC 2007 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 114. Ignoring cvsps 113 (po directory).
* pc/ChangeLog: Update Makefile.tst.
* pc/Makefile.tst: Changes for DJGPP, bring in sync with main
test/Makefile.
Sun Jun 3 11:06:21 UTC 2007 Juergen Kahrs <[email protected]>
Ignoring cvsps 111 (po directory).
Sun Jun 3 10:18:56 UTC 2007 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 110.
* ChangeLog, NEWS: Allowances for skipping directories on the command line.
* configure.ac New option --disable-directories-fatal.
* io.c (iop_open): Add fourth parameter.
(nextfile): Modify call to iop_open.
(redirect): Modify call to iop_open and call fatal if isdir is true.
* doc/ChangeLog, doc/gawk.1, doc/gawk.texi, doc/gawk.info:
Documented --disable-directories-fatal.
* configh.in, configure: Ignoring patches of generated files.
Thu May 31 19:42:05 UTC 2007 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 109.
* pc/ChangeLog: DJGPP fixes from Scott Deifik.
* pc/Makefile: Add replace$0 to AWKOBJS2 and PAWKOBJS2.
* pc/config.h: Add HAVE_MKTME, HAVE_MKSTEMP, conditionalize
HAVE_SNPRINTF. (ADR: #define out restrict).
Thu May 31 19:09:15 UTC 2007 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 107.
* configure.ac: Update version.
* configure, version.c: Ignoring patches of generated files.
Mon May 28 18:30:21 UTC 2007 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 106.
Add more info about current POSIX brouhaha.
Mon May 28 18:09:06 UTC 2007 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 104 and 105.
Work around problem with /ab{0}c/.
* ChangeLog, awkgram.y, NEWS:
Revert precedence of concatenation and | getline.
From mail dated 2005-10-31.
* dfa.h (struct dfa): Add member `broken'.
* dfa.c (dfainit): Initialize it to false.
(lex): Set it if `minrep == maxrep && minrep == 0'.
* re.c (avoid_dfa): Check flag and return TRUE if set.
* configure.ac: Add calls to AM_LANGINFO_CODESET, and gt_LC_MESSAGES.
* doc/ChangeLog, doc/gawk.texi:
Cleaned up discussion of string concatenation
where needed, including a note about the mixed treatment
of `"echo " "date" | getline'. Sigh.
* test/ChangeLog, test/Makefile.am, test/getline.awk,
test/getline.ok: Add precedence check "echo " "date"|getline.
* test/parsefld.awk, test/parsefld.in, test/parsefld.ok:
Additional test files from patch set 105, already needed
in patch set 104 to avoid problems with regression tests.
* Makefile.in, aclocal.m4, awkgram.c, configh.in, configure,
awklib/Makefile.in, doc/Makefile.in, doc/gawk.info, po directory,
test/Makefile.in, test/Maketests: Ignoring patches.
* update-autotools: Added removal of test/Makefile.in and
test/Maketests. This was necessary when Arnold added the
new parsefld files to the regression test cases.
Tue May 1 11:04:11 UTC 2007 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 103.
* vms/ChangeLog, vms/redirect.h:
declare snprintf() if CRTL_VER_V732 is defined;
redefining __CRTL_VER in config.h causes <stdio.h> to suppress it.
* vms/vmstest.com (fnarray): exit code has changed to 2.
(pid): target values now passed by command line rather than file.
Tue May 1 10:52:11 UTC 2007 Juergen Kahrs <[email protected]>
Ignoring patch set 101.
Tue May 1 09:46:15 UTC 2007 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 99.
* ChangeLog, NEWS: The strftime() function now accepts an optional third argument.
* builtin.c (do_strftime): Add optional third argument to strftime()
which if non-zero or non-null means to use UTC.
* awkgram.y (tokentab): Allow three arguments to strftime.
* regcomp.c (utf8_sb_map): Remove const if not __GNUC__ >= 3.
* regex_internal.h (re_dfa_t): Bracket bizarre macro call with
check for _LIBC.
* bootstrap.sh, README.cvs, awkgram.c: Ignoring patches.
Sun Apr 29 09:31:57 UTC 2007 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 98.
* README.cvs, bootstrap.sh: Arnold added these files to his
CVS archive. We don't need them and don't put them into our
CVS repository.
Sat Apr 28 19:58:10 UTC 2007 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 97, ignoring patch set 96.
* vms/ChangeLog: More VMS improvements.
* vms/redirect.h: #define snprintf to gawk_snprintf if we're using
missing_d/snprintf.c; avoids diagnostic about its declaration.
* vms/vms-conf.h: #define HAVE_SNPRINTF for V7.3-2 and later CRTL.
Sat Apr 28 19:34:50 UTC 2007 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 95.
* ChangeLog: VMS fix, re matching bug workaround.
* awk.h: move inclusion of redirect.h before HAVE_func blocks.
* builtin.c (format_tree): Inserted assertion bufsize > 0.
* dfa.c (dfaexec): Changed indentation.
* re.c (research): In the multibyte case, fall back to the full
matcher if need_start, since there are bugs in the dfa matcher
in some obscure cases.
Sun Apr 22 16:28:01 UTC 2007 Juergen Kahrs <[email protected]>
* Makefile.am: All files missing_d/*.h are now copied
into the distribution file because missing_d/getaddrinfo.h
is needed on Cygwin.
Sat Apr 21 16:44:20 UTC 2007 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 94.
Portability fixes.
Ignoring cvsps 93 (po directory).
* vms/ChangeLog, vms/vms-conf.h:
Leave HAVE_MKSTEMP undefined; we want tmpfile().
After this patchset, all test cases succeed again.
Fri Apr 20 19:32:02 UTC 2007 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 92.
More portability fixes.
* .savannah, ChangeLog:
* configure.ac: Check for stddef.h header.
Add test for struct sockaddr_storage.
* io.c: Add macro to redefine sockaddr_storage as sockaddr.
Make get_a_record static, to match declaration.
* main.c: Update UPDATE_YEAR, add #ifdef for HAVE_MTRACE.
* regex.h: Use check and include header to get size_t definition.
* replace.c, missing_d/ChangeLog, missing_d/getaddrinfo.c:
Only include missing/getaddrinfo.c if HAVE_SOCKETS
is defined. Avoids problems on VMS.
* configh.in, configure, version.c: Ignoring patches.
* README.cvs: Arnold points to CVS repository at savannah.
We ignore this file because it is so specific for the
savannah CVS. This file would only confuse readers of
our CVS source tree.
After this patchset, the fmtspcl test case fail.
Wed Apr 11 18:36:02 UTC 2007 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 89.
Ignoring cvsps 88 (po directory).
* .savannah, ChangeLog, NEWS, awkgram.y, builtin.c, eval.c,
ext.c, field.c, io.c, node.c:
Added some sanity to the lint warnings, to only print them
once if they are syntactic or of the type where they don't
need to be repeated. Switch to `short' instead of `int',
and in general use a variable named `warned', for consistency.
* awkgram.c: Ignoring patches.
Wed Apr 11 17:55:57 UTC 2007 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 87.
* .savannah, regcomp.c: Minor additional portability fix.
Wed Apr 11 17:29:38 UTC 2007 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 86.
Simplify checks for stdarg.
Ignoring cvsps 85 (po directory).
* .savannah, ChangeLog, awk.h, main.c, msg.c, awkgram.y:
Move to use of CAN_USE_STDARG_H instead of continuously repeating
check for header and defined STDC and STDC.
* awkgram.c: Ignoring patches.
Wed Apr 11 16:40:17 UTC 2007 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 84.
Fixes for building with replacement getaddrinfo, additional fix for regcomp.
* .savannah, ChangeLog, awkgram.y: Add guard code to ifdef out "signed" for VMS.
* configure.ac, io.c, missing_d/ChangeLog, missing_d/getaddrinfo.c:
Include <arpa/inet.h> if we have it, instead of keyed off Tandem,
needed on some Unix systems.
* regcomp.c (utf8_sb_map, init_dfa): Move non-GCC code to initialize this
array into code, to preserve word-size independance.
* awkgram.c, configure, configh.in: Ignoring patches.
Fri Apr 6 18:53:43 UTC 2007 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 83.
vms/ChangeLog: Update VMS port.
vms/descrip.mms: compile floatcomp.c; add pgawk target and build
pgawk.exe for `make all'.
vms/vms-conf.h: reconcile with configh.in.
vms/vmsbuild.com: compile floatcomp.c; always build pgawk.exe in
addition to gawk.exe.
Fri Apr 6 18:35:30 UTC 2007 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 82.
* po/it.po: Updated italian translation.
Ignored the two hunks of the patch set that failed.
Fri Apr 6 18:03:06 UTC 2007 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 81.
* .savannah, missing_d/ChangeLog, pc/ChangeLog: Portability fixes.
* missing_d/snprintf.c: Fix typo and call vsnprintf
instead of calling self recursively. Thanks to Pat Rankin.
* missing_d/memmove.c: Inserted "const" before "void *src".
* pc/config.h: Undef HAVE_ALLOCA for DJGPP.
* pc/Makefile: Add floatcomp$O to AWKOBJS1 and PAWKOBJS1.
Fri Apr 6 16:38:46 UTC 2007 Juergen Kahrs <[email protected]>
Sync with savannah gawk cvsps 79.
Portability fixes, after first early alpha release (gawk-stable).
* .savannah, configure.ac, version.c, ChangeLog:
Version changed to GNU Awk 3.1.5e.