-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
9133 lines (5451 loc) · 272 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
2015-11-17 Will Estes <[email protected]>
* configure.ac: Declared version 2.6.0
2015-11-17 Will Estes <[email protected]>
* NEWS: Dated, described flex release 2.6.0
2015-11-13 Will Estes <[email protected]>
* NEWS, configure.ac: Declared version 2.6.0rc1
2015-11-13 lukeallardyce <[email protected]>
* src/Makefile.am: Supplied versioning information in flex
libraries. Resolves sourceforge bug #182. On OSX, and possibly other platforms,
building the libfl libraries without versioning information caused a
build failures.
2015-11-12 Will Estes <[email protected]>
* tests/Makefile.am: Cleaned up more precisely after make check. BUILT_SOURCES is now just the list of headers built as per the
automake manual. We provide the list of files to clean to make
rebuilding the test suite programs easier. We then use the
CLEANFILES list in a dist-hook to clean up the distribution that
automake gathers since not distributing flex generated files is
foreign to automake's mindset, but we need exactly that. Additionally, we locate inputs to the tables-related tests more
precisely. Some files are in srcdir and some are in builddir, which
the arguments to the log compiler are now made aware of.
2015-11-11 Will Estes <[email protected]>
* tests/Makefile.am: Pulled out scripts in tests/Makefile.am
2015-11-11 Will Estes <[email protected]>
* tests/Makefile.am: Added srcdir to tableopts.am include
2015-11-11 Will Estes <[email protected]>
* doc/Makefile.am: Changed man page dependencies. The man page is just the --help output as reformatted by help2man.
The --help option is most likely to change when the flex skeleton
changes or one of the option parsing files changes or the
configure.ac script itself changes. The dependencies reflect this
now. It is still necessary, under some circumstances, to rebuild flex
explicitly before building the man page. In theory, it's possible to
have automake arrange to do this all the time, but doing so works
out to be fragile, given the rest of the build system.
2015-11-10 Will Estes <[email protected]>
* autogen.sh: Called libtoolize directly because autoreconf fails to
pick up LT_INIT properly
2015-11-10 Will Estes <[email protected]>
* tests/Makefile.am: Added tableopts.sh to EXTRA_DIST
2015-11-08 Mightyjo <[email protected]>
* tests/Makefile.am: Made tests depend on the built flex binary.
2015-11-08 Mightyjo <[email protected]>
* : commit cf6cb4dce791c26567cc506770ca96b4f4118024 Author: Mightyjo
<[email protected]> Date: Sat Nov 7 23:11:35 2015 -0800
2015-11-04 Mightyjo <[email protected]>
* doc/flex.texi: Updated documentation to reflect the revisions to
FlexLexer.h
2015-10-26 Mightyjo <[email protected]>
* src/FlexLexer.h, src/flex.skl: Changed several pointers to istream
(and ostream) to references in c++-only sections of the skeleton. Patched up a variety of expected errors caused by changing istream*
to istream&. Added a stray 'make' at line 545. Oops. Changed the buffer_state struct to store std::streambuf* instead of
std::istream* for C++ mode. Changed interfaces in FlexLexer.h to
take std::istream& instead of *. Backward compatibility temporarily
broken. Patched up backward compatibility with reasonable behavior in the
presence of null pointers. Re-added backward-compatible versions of the yyFlexLexer methods
that take iostream pointers. All tests passing.
2015-09-29 Translation Project <[email protected]>
* po/zh_CN.po: new zh_CN translation from the translation project
2015-07-27 Jaska Uimonen <[email protected]>
* src/gen.c: fix possible resource leak with yynultrans_tbl
2015-07-27 Jaska Uimonen <[email protected]>
* src/dfa.c: fix possible uninitialized array values
2015-08-05 Will Estes <[email protected]>
* doc/flex.texi: add %{...%} block to example in manual
2015-07-15 Will Estes <[email protected]>
* configure.ac: initialize libtool earlier in build system
generation
2015-05-08 Translation Project <[email protected]>
* po/da.po: new da translation from the Translation Project
2014-07-25 Mariusz Pluciński <[email protected]>
* src/gen.c, src/scan.l, tests/bison_nr_parser.y,
tests/bison_yylloc_parser.y, tests/bison_yylval_parser.y,
tests/multiple_scanners_nr_main.c: Fix `label unused` warning
2014-07-25 Mariusz Pluciński <[email protected]>
* src/flex.skl: Fix two "signed/unsigned" warnings
2014-07-25 Mariusz Pluciński <[email protected]>
* tests/alloc_extra.l, tests/array_nr.l, tests/array_r.l,
tests/basic_nr.l, tests/basic_r.l, tests/bison_nr_scanner.l,
tests/bison_yylloc_scanner.l, tests/bison_yylval_scanner.l,
tests/ccl.l, tests/cxx_basic.ll, tests/debug_nr.l, tests/debug_r.l,
tests/extended.l, tests/header_nr_scanner.l,
tests/header_r_scanner.l, tests/include_by_buffer.direct.l,
tests/include_by_push.direct.l,
tests/include_by_reentrant.direct.l, tests/lineno_nr.l,
tests/lineno_r.l, tests/lineno_trailing.l, tests/mem_nr.l,
tests/mem_r.l, tests/multiple_scanners_nr_1.l,
tests/multiple_scanners_nr_2.l, tests/multiple_scanners_r_1.l,
tests/multiple_scanners_r_2.l, tests/noansi_nr.l, tests/noansi_r.l,
tests/posix.l, tests/posixly_correct.l, tests/prefix_nr.l,
tests/prefix_r.l, tests/pthread.l, tests/quotes.l, tests/reject.l4,
tests/rescan_nr.direct.l, tests/rescan_r.direct.l,
tests/string_nr.l, tests/string_r.l, tests/tableopts.l4,
tests/top.l, tests/yyextra.l: Fix `unused function` warnings in
tests
2014-07-25 Mariusz Pluciński <[email protected]>
* tests/bison_nr_parser.y, tests/bison_yylloc_parser.y,
tests/bison_yylval_parser.y: Fix `implicit function declaration`
warnings in tests
2014-07-25 Mariusz Pluciński <[email protected]>
* tests/header_r_main.c, tests/multiple_scanners_nr_main.c,
tests/reject.l4, tests/tableopts.l4, tests/top_main.c: Remove a few
`unused variable` warnings
2014-07-25 Mariusz Pluciński <[email protected]>
* src/filter.c: Remove unused variable from
src/filter.c:filter_fix_linedirs
2014-07-25 Mariusz Pluciński <[email protected]>
* src/scanopt.c: Remove unused argument and variable from
src/scanopt.c:scanopt_err
2014-07-25 Mariusz Pluciński <[email protected]>
* src/flex.skl, src/libmain.c, src/parse.y, tests/bison_nr_main.c,
tests/bison_yylloc_main.c, tests/bison_yylloc_parser.y,
tests/bison_yylval_main.c, tests/bison_yylval_parser.y,
tests/header_nr_main.c, tests/header_r_main.c, tests/lineno_nr.l,
tests/lineno_r.l, tests/lineno_trailing.l, tests/mem_r.l,
tests/multiple_scanners_nr_main.c,
tests/multiple_scanners_r_main.c, tests/pthread.l,
tests/rescan_nr.direct.l, tests/rescan_r.direct.l, tests/top_main.c:
Fix a few "unused parameter" warnings
2014-07-25 Mariusz Pluciński <[email protected]>
* src/main.c: Fix warning about redefined macro when multiple
scanners are used.
2014-07-25 Mariusz Pluciński <[email protected]>
* tests/bison_nr_parser.y: Avoid passing `const char*` argument as
`char*` in test-bison-nr
2014-11-21 Alexis La Goutte <[email protected]>
* src/misc.c, src/regex.c, src/tables.c, src/tables_shared.c: Fix
-Wdocumentation warnings
2014-11-16 Will Estes <[email protected]>
* tests/README: document new suite layout
2014-11-16 Will Estes <[email protected]>
* tests/TEMPLATE/.gitignore, tests/TEMPLATE/Makefile.am,
tests/TEMPLATE/cvsignore, tests/TEMPLATE/parser.y,
tests/TEMPLATE/scanner.l, tests/TEMPLATE/test.input,
tests/create-test, tests/descriptions: remove unused files after
test suite refactor
2014-11-14 Will Estes <[email protected]>
* .gitignore, doc/.gitignore: Ignore directories build-aux/, m4/ Since build-aux/ now contains a number of files previously at the
top level, we ignore build-aux/. Therefore, it's not necessary to
list any files that are now kept in it. Also, explicitly mark m4/ as
a directory to ignore.
2014-11-14 Will Estes <[email protected]>
* configure.ac: added back call to AC_CONFIG_AUX_DIR. In an effort to reduce top level directory clutter, reintroduced the
call to AC_CONFIG_AUX_DIR. Moved the call to LT_INIT to after that
call so configure will be able to find its files.
2014-07-18 Will Estes <[email protected]>
* tests/tableopts.sh, tests/testwrapper.sh: use unofficial bash
strict mode and cleanups in supporting bash scripts
2014-07-18 Will Estes <[email protected]>
* tests/.gitignore, tests/Makefile.am, tests/tableopts.am,
tests/tableopts.l4, tests/tableopts.sh, tests/tableopts.txt,
tests/test-table-opts/.gitignore,
tests/test-table-opts/Makefile.am, tests/test-table-opts/scanner.l,
tests/test-table-opts/test.input: split apart table options tests
into tests per threading, table option, serialization and
verification
2014-07-17 Will Estes <[email protected]>
* tests/tableopts.sh: add tableopts.sh script
2014-07-02 Will Estes <[email protected]>
* configure.ac, tests/Makefile.am: use automake conditional around
pthread test
2014-07-01 Will Estes <[email protected]>
* tests/.gitignore, tests/Makefile.am, tests/lineno_trailing.l,
tests/lineno_trailing.one.txt,
tests/test-lineno-trailing/.gitignore,
tests/test-lineno-trailing/Makefile.am,
tests/test-lineno-trailing/scanner.l,
tests/test-lineno-trailing/test.input: refactor lineno_trailing test
for new test suite layout
2014-07-01 Will Estes <[email protected]>
* tests/.gitignore, tests/Makefile.am, tests/lineno_r.l,
tests/lineno_r.one.txt, tests/test-lineno-r/.gitignore,
tests/test-lineno-r/Makefile.am, tests/test-lineno-r/scanner.l,
tests/test-lineno-r/test.input: refactor lineno_r test for new test
suite layout
2014-07-01 Will Estes <[email protected]>
* tests/.gitignore, tests/Makefile.am, tests/lineno_nr.l,
tests/lineno_nr.one.txt, tests/test-lineno-nr/.gitignore,
tests/test-lineno-nr/Makefile.am, tests/test-lineno-nr/scanner.l,
tests/test-lineno-nr/test.input, tests/testwrapper.sh: refactor
lineno_nr test for new test suite layout
2014-06-30 Will Estes <[email protected]>
* tests/test-linedir-r/.gitignore,
tests/test-linedir-r/Makefile.am,
tests/test-linedir-r/check-lines.awk, tests/test-linedir-r/main.c,
tests/test-linedir-r/scanner.l, tests/test-linedir-r/test.input:
Remove linedir_r test. The linedir_r test tested the implementation of line number
tracking, not its results.
2014-06-24 Will Estes <[email protected]>
* tests/.gitignore, tests/Makefile.am, tests/pthread.l,
tests/pthread_1.txt, tests/pthread_2.txt, tests/pthread_3.txt,
tests/pthread_4.txt, tests/pthread_5.txt,
tests/test-pthread/.gitignore, tests/test-pthread/Makefile.am,
tests/test-pthread/scanner.l, tests/test-pthread/test-1.input,
tests/test-pthread/test-2.input, tests/test-pthread/test-3.input,
tests/test-pthread/test-4.input, tests/test-pthread/test-5.input:
refactor pthread test for new test suite layout
2014-06-24 Will Estes <[email protected]>
* tests/Makefile.am: build reject_[vs]er tests explicitly to pass
proper compiler flags
2014-06-24 Will Estes <[email protected]>
* tests/.gitignore, tests/Makefile.am, tests/cxx_yywrap.ll,
tests/cxx_yywrap.txt, tests/test-c++-yywrap/.gitignore,
tests/test-c++-yywrap/Makefile.am, tests/test-c++-yywrap/scanner.l,
tests/test-c++-yywrap/test.input, tests/testwrapper.sh: refactor
cxx_yywrap test for new test suite layout
2014-06-17 Will Estes <[email protected]>
* tests/Makefile.am, tests/options.cn,
tests/test-concatenated-options/.gitignore,
tests/test-concatenated-options/Makefile.am: refactor concatenated
options test for new test suite layout
2014-06-17 Will Estes <[email protected]>
* tests/.gitignore, tests/Makefile.am,
tests/include_by_buffer.direct.l,
tests/include_by_buffer.direct.txt,
tests/include_by_buffer.direct_2.txt,
tests/include_by_buffer.direct_3.txt,
tests/include_by_push.direct.l, tests/include_by_push.direct.txt,
tests/include_by_push.direct_2.txt,
tests/include_by_push.direct_3.txt,
tests/include_by_reentrant.direct.l,
tests/include_by_reentrant.direct.txt,
tests/include_by_reentrant.direct_2.txt,
tests/include_by_reentrant.direct_3.txt,
tests/test-include-by-buffer/.gitignore,
tests/test-include-by-buffer/Makefile.am,
tests/test-include-by-buffer/scanner.l,
tests/test-include-by-buffer/test-1.input,
tests/test-include-by-buffer/test-2.input,
tests/test-include-by-buffer/test-3.input,
tests/test-include-by-push/.gitignore,
tests/test-include-by-push/Makefile.am,
tests/test-include-by-push/scanner.l,
tests/test-include-by-push/test-1.input,
tests/test-include-by-push/test-2.input,
tests/test-include-by-push/test-3.input,
tests/test-include-by-reentrant/.gitignore,
tests/test-include-by-reentrant/Makefile.am,
tests/test-include-by-reentrant/scanner.l,
tests/test-include-by-reentrant/test-1.input,
tests/test-include-by-reentrant/test-2.input,
tests/test-include-by-reentrant/test-3.input: refactor include_by_*
tests for new test suite layout
2014-06-16 Will Estes <[email protected]>
* tests/.gitignore, tests/Makefile.am, tests/rescan_nr.direct.l,
tests/rescan_nr.direct.txt, tests/rescan_nr.l, tests/rescan_nr.txt,
tests/rescan_r.direct.l, tests/rescan_r.direct.txt,
tests/test-rescan-r/.gitignore, tests/test-rescan-r/Makefile.am,
tests/test-rescan-r/scanner.l, tests/test-rescan-r/test.input,
tests/testwrapper.sh: refactor rescan_r test for new test suite
layout
2014-06-16 Will Estes <[email protected]>
* tests/.gitignore, tests/Makefile.am, tests/rescan_nr.l,
tests/rescan_nr.txt, tests/test-rescan-nr/.gitignore,
tests/test-rescan-nr/Makefile.am, tests/test-rescan-nr/scanner.l,
tests/test-rescan-nr/test.input, tests/testwrapper.sh: Refactor
rescan_nr test for new test suite layout. Also add -r option to testwrapper.sh to support passing input file
as a command line argument to the test scanner without using shell
redirection.
2014-06-16 Will Estes <[email protected]>
* tests/Makefile.am: correct use of objext to OBJEXT
2014-06-16 Will Estes <[email protected]>
* tests/.gitignore, tests/Makefile.am, tests/quotes.l,
tests/quotes.txt, tests/test-quotes/.gitignore,
tests/test-quotes/Makefile.am, tests/test-quotes/scanner.l,
tests/test-quotes/test.input: refactor quotes test for new test
suite layout
2014-06-16 Will Estes <[email protected]>
* tests/.gitignore, tests/Makefile.am, tests/reject.l4,
tests/reject.txt, tests/test-reject/.gitignore,
tests/test-reject/Makefile.am, tests/test-reject/scanner.l,
tests/test-reject/test.input, tests/testwrapper.sh: Refactor reject
test for new test suite layout. Split out reject test into its constituant tests. Add .reject tests
and .table tests for automake test log generation. Rewrite
testwrapper.sh to handle running with a tables file and specifying
optional input using command line options rather than positional
parameters.
2014-06-15 Will Estes <[email protected]>
* tests/.gitignore, tests/Makefile.am,
tests/multiple_scanners_r_1.l, tests/multiple_scanners_r_2.l,
tests/multiple_scanners_r_main.c,
tests/test-multiple-scanners-r/.gitignore,
tests/test-multiple-scanners-r/Makefile.am,
tests/test-multiple-scanners-r/main.c,
tests/test-multiple-scanners-r/scanner-1.l,
tests/test-multiple-scanners-r/scanner-2.l: Refactor
multiple_scanners_r test for new test suite layout. Also, remove the use of table files from this test as that tests two
features at once and we want to be as close to testing one feature
at a time as we can be.
2014-06-15 Will Estes <[email protected]>
* tests/.gitignore, tests/Makefile.am,
tests/multiple_scanners_nr_1.l, tests/multiple_scanners_nr_2.l,
tests/multiple_scanners_nr_main.c,
tests/test-multiple-scanners-nr/.gitignore,
tests/test-multiple-scanners-nr/Makefile.am,
tests/test-multiple-scanners-nr/main.c,
tests/test-multiple-scanners-nr/scanner-1.l,
tests/test-multiple-scanners-nr/scanner-2.l: refactor
multiple_scanners_nr test for new test suite layout
2014-06-14 Will Estes <[email protected]>
* tests/.gitignore, tests/Makefile.am,
tests/cxx_multiple_scanners.txt, tests/cxx_multiple_scanners_1.ll,
tests/cxx_multiple_scanners_2.ll,
tests/cxx_multiple_scanners_main.cc,
tests/test-c++-multiple-scanners/.gitignore,
tests/test-c++-multiple-scanners/Makefile.am,
tests/test-c++-multiple-scanners/main.cpp,
tests/test-c++-multiple-scanners/scanner-1.l,
tests/test-c++-multiple-scanners/scanner-2.l,
tests/test-c++-multiple-scanners/test.input: refactor
cxx_multiple_scanners test for new test suite layout
2014-06-14 Will Estes <[email protected]>
* tests/.gitignore, tests/Makefile.am, tests/c_cxx_nr.lll,
tests/c_cxx_nr.txt, tests/c_cxx_r.lll, tests/c_cxx_r.txt,
tests/test-c-cpp-nr/.gitignore, tests/test-c-cpp-nr/Makefile.am,
tests/test-c-cpp-nr/scanner.l, tests/test-c-cpp-nr/test.input,
tests/test-c-cpp-r/.gitignore, tests/test-c-cpp-r/Makefile.am,
tests/test-c-cpp-r/scanner.l, tests/test-c-cpp-r/test.input:
refactor c_cxx_nr, c_cxx_r tests for new test suite layout
2014-06-14 Will Estes <[email protected]>
* tests/.gitignore, tests/Makefile.am, tests/cxx_basic.ll,
tests/cxx_basic.txt, tests/test-c++-basic/.gitignore,
tests/test-c++-basic/Makefile.am, tests/test-c++-basic/scanner.l,
tests/test-c++-basic/test.input: refactor cxx_basic test for new
test suite layout
2014-06-14 Will Estes <[email protected]>
* tests/.gitignore, tests/Makefile.am, tests/posixly_correct.l,
tests/test-posixly-correct/.gitignore,
tests/test-posixly-correct/Makefile.am,
tests/test-posixly-correct/scanner.l: refactor posixly_correct test
for new test suite layout
2014-06-14 Will Estes <[email protected]>
* tests/.gitignore, tests/Makefile.am,
tests/test-yyextra/.gitignore, tests/test-yyextra/Makefile.am,
tests/test-yyextra/scanner.l, tests/test-yyextra/test.input,
tests/yyextra.l, tests/yyextra.txt: refactor yyextra test for new
test suite layout
2014-06-14 Will Estes <[email protected]>
* tests/.gitignore, tests/Makefile.am, tests/test-top/.gitignore,
tests/test-top/Makefile.am, tests/test-top/main.c,
tests/test-top/scanner.l, tests/test-top/test.input, tests/top.l,
tests/top.txt, tests/top_main.c: refactor top test for new test
suite layout
2014-06-14 Will Estes <[email protected]>
* tests/.gitignore, tests/Makefile.am, tests/string_r.l,
tests/test-string-r/.gitignore, tests/test-string-r/Makefile.am,
tests/test-string-r/scanner.l: refactor string_r test for new test
suite layout
2014-06-14 Will Estes <[email protected]>
* tests/.gitignore, tests/Makefile.am, tests/string_nr.l,
tests/test-string-nr/.gitignore, tests/test-string-nr/Makefile.am,
tests/test-string-nr/scanner.l: refactor string_nr test for new test
suite layout
2014-06-12 Will Estes <[email protected]>
* tests/.gitignore, tests/Makefile.am, tests/prefix_r.l,
tests/prefix_r.txt, tests/test-prefix-r/.gitignore,
tests/test-prefix-r/Makefile.am, tests/test-prefix-r/README,
tests/test-prefix-r/scanner.l, tests/test-prefix-r/test.input:
refactor prefix_r test for new test suite layout
2014-06-12 Will Estes <[email protected]>
* tests/.gitignore, tests/Makefile.am, tests/prefix_nr.l,
tests/prefix_nr.txt, tests/test-prefix-nr/.gitignore,
tests/test-prefix-nr/Makefile.am, tests/test-prefix-nr/README,
tests/test-prefix-nr/scanner.l, tests/test-prefix-nr/test.input:
refactor prefix_nr for new test suite layout
2014-06-12 Will Estes <[email protected]>
* tests/testwrapper.sh: Check if test input file exists. Not all tests have input files, so check if one exists and run the
test program accordingly.
2014-06-12 Will Estes <[email protected]>
* tests/.gitignore, tests/Makefile.am, tests/posix.l,
tests/test-posix/.gitignore, tests/test-posix/Makefile.am,
tests/test-posix/scanner.l: refactor posix test for new test suite
layout
2014-06-12 Will Estes <[email protected]>
* tests/.gitignore, tests/Makefile.am, tests/noansi_r.l,
tests/noansi_r.txt, tests/test-noansi-r/.gitignore,
tests/test-noansi-r/Makefile.am, tests/test-noansi-r/scanner.l,
tests/test-noansi-r/test.input: refactor noansi_r test for new test
suite layout
2014-06-12 Will Estes <[email protected]>
* tests/.gitignore, tests/Makefile.am, tests/noansi_nr.l,
tests/noansi_nr.txt, tests/test-noansi-nr/.gitignore,
tests/test-noansi-nr/Makefile.am, tests/test-noansi-nr/scanner.l,
tests/test-noansi-nr/test.input: refactor noansi_nr for new test
suite layout
2014-06-05 Will Estes <[email protected]>
* tests/.gitignore, tests/Makefile.am, tests/mem_r.l,
tests/mem_r.txt, tests/test-mem-r/.gitignore,
tests/test-mem-r/Makefile.am, tests/test-mem-r/scanner.l,
tests/test-mem-r/test.input: refactor mem_r test for new test suite
layout
2014-06-05 Will Estes <[email protected]>
* tests/.gitignore, tests/Makefile.am, tests/mem_nr.l,
tests/mem_nr.txt, tests/test-mem-nr/.gitignore,
tests/test-mem-nr/Makefile.am, tests/test-mem-nr/scanner.l,
tests/test-mem-nr/test.input: refactor mem_nr test for new test
suite layout
2014-06-04 Will Estes <[email protected]>
* tests/.gitignore, tests/Makefile.am, tests/header_r.txt,
tests/header_r_main.c, tests/header_r_scanner.l,
tests/test-header-r/.gitignore, tests/test-header-r/Makefile.am,
tests/test-header-r/main.c, tests/test-header-r/scanner.l,
tests/test-header-r/test.input: refactor header_r test for new test
suite layout
2014-06-04 Will Estes <[email protected]>
* tests/.gitignore, tests/Makefile.am, tests/header_nr.txt,
tests/header_nr_main.c, tests/header_nr_scanner.l,
tests/test-header-nr/.gitignore, tests/test-header-nr/Makefile.am,
tests/test-header-nr/main.c, tests/test-header-nr/scanner.l,
tests/test-header-nr/test.input: refactor header_nr test for new
test suite layout
2014-06-04 Will Estes <[email protected]>
* tests/.gitignore, tests/Makefile.am, tests/extended.l,
tests/extended.txt, tests/test-extended/.gitignore,
tests/test-extended/Makefile.am, tests/test-extended/scanner.l,
tests/test-extended/test.input: refactor extended test for new test
suite layout
2014-06-04 Will Estes <[email protected]>
* tests/.gitignore, tests/Makefile.am, tests/debug_r.l,
tests/debug_r.txt, tests/test-debug-r/.gitignore,
tests/test-debug-r/Makefile.am, tests/test-debug-r/scanner.l,
tests/test-debug-r/test.input: refactor debug_r test for new test
suite layout
2014-06-04 Will Estes <[email protected]>
* tests/.gitignore, tests/Makefile.am, tests/debug_nr.l,
tests/debug_nr.txt, tests/test-debug-nr/.gitignore,
tests/test-debug-nr/Makefile.am, tests/test-debug-nr/scanner.l,
tests/test-debug-nr/test.input: refactor debug_nr test for new test
suite layout
2014-06-04 Will Estes <[email protected]>
* tests/.gitignore, tests/Makefile.am, tests/ccl.l, tests/ccl.txt,
tests/test-ccl/.gitignore, tests/test-ccl/Makefile.am,
tests/test-ccl/scanner.l, tests/test-ccl/test.input: refactor ccl
test for new test suite layout
2014-06-04 Will Estes <[email protected]>
* tests/.gitignore, tests/Makefile.am, tests/alloc-extra.l,
tests/alloc-extra.txt, tests/alloc_extra.l, tests/alloc_extra.txt,
tests/array-nr.l, tests/array-nr.txt, tests/array-r.l,
tests/array-r.txt, tests/array_nr.l, tests/array_nr.txt,
tests/array_r.l, tests/array_r.txt, tests/basic-nr.l,
tests/basic-nr.txt, tests/basic-r.l, tests/basic-r.txt,
tests/basic_nr.l, tests/basic_nr.txt, tests/basic_r.l,
tests/basic_r.txt, tests/bison-nr-main.c, tests/bison-nr-parser.y,
tests/bison-nr-scanner.l, tests/bison-nr.txt,
tests/bison-yylloc-main.c, tests/bison-yylloc-parser.y,
tests/bison-yylloc-scanner.l, tests/bison-yylloc.txt,
tests/bison-yylval-main.c, tests/bison-yylval-parser.y,
tests/bison-yylval-scanner.l, tests/bison-yylval.txt,
tests/bison_nr.txt, tests/bison_nr_main.c, tests/bison_nr_parser.y,
tests/bison_nr_scanner.l, tests/bison_yylloc.txt,
tests/bison_yylloc_main.c, tests/bison_yylloc_parser.y,
tests/bison_yylloc_scanner.l, tests/bison_yylval.txt,
tests/bison_yylval_main.c, tests/bison_yylval_parser.y,
tests/bison_yylval_scanner.l: use underscores in test file names to
silence automake warnings
2014-06-04 Will Estes <[email protected]>
* .gitignore, m4/.gitignore, m4/Makefile.am: do not track m4
subdirectory any more
2014-06-04 Will Estes <[email protected]>
* .gitignore, configure.ac: upgrade automake version to 1.14.1 Unfortunately, automake 1.14.1 does not play nicely with
AC_CONFIG_AUX_DIR, so upgrading the used automake version required
removing the build-aux directory and letting autoconf's installed
helper files live more over the tree.
2014-06-04 Will Estes <[email protected]>
* doc/.gitignore: ignore more files generated by texinfo
2014-06-04 Will Estes <[email protected]>
* configure.ac: update gettext version to 0.19
2014-06-04 Will Estes <[email protected]>
* configure.ac: call LT_INIT earlier in configure.ac
2014-06-04 Will Estes <[email protected]>
* tests/.gitignore, tests/Makefile.am, tests/bison-yylval-main.c,
tests/bison-yylval-parser.y, tests/bison-yylval-scanner.l,
tests/bison-yylval.txt, tests/test-bison-yylval/.gitignore,
tests/test-bison-yylval/Makefile.am,
tests/test-bison-yylval/main.c, tests/test-bison-yylval/parser.y,
tests/test-bison-yylval/scanner.l,
tests/test-bison-yylval/test.input: refactor bison-yylval test for
new test suite layout
2014-06-04 Will Estes <[email protected]>
* tests/.gitignore, tests/Makefile.am, tests/bison-yylloc-main.c,
tests/bison-yylloc-parser.y, tests/bison-yylloc-scanner.l,
tests/bison-yylloc.txt, tests/test-bison-yylloc/.gitignore,
tests/test-bison-yylloc/Makefile.am,
tests/test-bison-yylloc/main.c, tests/test-bison-yylloc/parser.y,
tests/test-bison-yylloc/scanner.l,
tests/test-bison-yylloc/test.input: refactor bison-yylloc test for
new test suite layout
2014-06-03 Will Estes <[email protected]>
* tests/.gitignore, tests/Makefile.am, tests/bison-nr-main.c,
tests/bison-nr-parser.y, tests/bison-nr-scanner.l,
tests/bison-nr.txt, tests/test-bison-nr/.gitignore,
tests/test-bison-nr/Makefile.am, tests/test-bison-nr/main.c,
tests/test-bison-nr/parser.y, tests/test-bison-nr/scanner.l,
tests/test-bison-nr/test.input: refactor bison-nr test for new test
suite layout
2014-06-01 Will Estes <[email protected]>
* tests/.gitignore, tests/Makefile.am, tests/array-r.l,
tests/array-r.txt, tests/test-array-r/.gitignore,
tests/test-array-r/Makefile.am, tests/test-array-r/scanner.l,
tests/test-array-r/test.input: refactor array-r test for new test
suite layout
2014-06-01 Will Estes <[email protected]>
* tests/Makefile.am: list tests/README with other EXTRA_DIST files
in tests/
2014-06-01 Will Estes <[email protected]>
* tests/.gitignore, tests/Makefile.am, tests/array-nr.l,
tests/array-nr.txt, tests/test-array-nr/.gitignore,
tests/test-array-nr/Makefile.am, tests/test-array-nr/scanner.l,
tests/test-array-nr/test.input: refactor array-nr test for new test
suite layout
2014-06-01 Will Estes <[email protected]>
* tests/Makefile.am, tests/testwrapper.sh: make tests/testwrapper.sh
more verbose; find input in srcdir Since output is redirected by the automake parallel test suite
driver, turn on both -v and -x in bash for the testwrapper.sh shell
script. This helps a ton in debugging problems with the test harness
itself. In general, the input files are in automake's srcdir and the name of
the test includes the relative path to it (even though that's
supposed to be ./). Therefore, pass srcdir in AM_LOG_FLAGS and
prepend that to the test name as part of constructing the input
file's name.
2014-06-01 Will Estes <[email protected]>
* tests/Makefile.am: distribute tests/testwrapper.sh
2014-06-01 Will Estes <[email protected]>
* tests/.gitignore, tests/Makefile.am, tests/alloc-extra.l,
tests/alloc-extra.txt, tests/test-alloc-extra/.gitignore,
tests/test-alloc-extra/Makefile.am,
tests/test-alloc-extra/scanner.l, tests/test-alloc-extra/test.input:
refacter alloc-extra for new test suite layout
2014-05-29 Will Estes <[email protected]>
* tests/.gitignore, tests/Makefile.am, tests/basic-r.l,
tests/basic-r.txt, tests/test-basic-r/.gitignore,
tests/test-basic-r/Makefile.am, tests/test-basic-r/scanner.l,
tests/test-basic-r/test.input: refactor basic-r test for new test
suite layout
2014-04-22 Will Estes <[email protected]>
* tests/Makefile.am, tests/basic-nr.l, tests/basic-nr.txt,
tests/test-basic-nr/.gitignore, tests/test-basic-nr/Makefile.am,
tests/test-basic-nr/scanner.l, tests/test-basic-nr/test.input,
tests/testwrapper.sh: refactor basic-nr test for new test suite
layout
2014-04-22 Will Estes <[email protected]>
* configure.ac: remove old tests/ subdirectories from build system
2014-04-22 Will Estes <[email protected]>
* configure.ac: add parallel test suite option to build system
2014-04-22 Will Estes <[email protected]>
* tests/.gitignore: ignore files for new test suite layout
2014-04-22 Will Estes <[email protected]>
* tests/Makefile.am: use automake parallel test suite option to
build test suite
2014-04-09 Manoj Srivastava <[email protected]>
* tests/test-bison-yylloc/parser.y,
tests/test-bison-yylval/parser.y: Do not use obsolete bison
constructs in tests. In Bison 3.0, support for YYLEX_PARAM and YYPARSE_PARAM has been
removed (deprecated in Bison 1.875): use %lex-param, %parse-param,
or %param. This commit fixes the tests so they still work. Signed-off-by: Manoj Srivastava <[email protected]>
2014-10-31 Christos Zoulas <[email protected]>
* src/buf.c, src/filter.c, src/flex.skl, src/flexdef.h, src/gen.c,
src/libmain.c, src/libyywrap.c, src/main.c, src/misc.c, src/nfa.c,
src/scan.l, src/scanflags.c, src/scanopt.c, src/yylex.c: NetBSD
downstream patches. const fixes. -Wconversion fixes for the skeleton files. param namespace protection (add _ to inline function parameters). unused variable/code removal. rename warn to lwarn to avoid conflict with <err.h>. ctype.h function argument correction. merged the error functions lerrif and lerrsf -> lerr.
2014-07-25 Mariusz Pluciński <[email protected]>
* src/flexdef.h, src/misc.c, src/scanflags.c: Allow error reporting
routines to accept varying number of arguments in modern style
2014-07-25 Mariusz Pluciński <[email protected]>
* src/buf.c: Fix warning on assigning from `const char*` to `char*`
2014-07-24 Mariusz Pluciński <[email protected]>
* src/main.c: Add disambiguation braces in main.c
2014-07-17 Yuri <[email protected]>
* doc/flex.texi, examples/fastwc/mywc.c, src/ccl.c, src/dfa.c,
src/ecs.c, src/flex.skl, src/flexdef.h, src/gen.c, src/misc.c,
src/nfa.c, src/parse.y, src/scan.l, src/sym.c, src/tblcmp.c: Removed
deprecated 'register' storage class specifier. clang-3.5.0 now
complains about them: warning: 'register' storage class specifier is
deprecated [-Wdeprecated-register]
2014-06-21 Mariusz Pluciński <[email protected]>
* src/flexdef.h, src/main.c, src/misc.c, src/options.c,
src/options.h, src/yylex.c: Change output formats from octal to
hexadecimal
2014-06-11 Will Estes <[email protected]>
* NEWS, configure.ac: update version number to 2.6.0-pre
2014-05-03 Will Estes <[email protected]>
* src/ecs.c: check limits before using array index cclp; resolves
sf-166
2014-04-02 Sean McBride <[email protected]>
* src/flex.skl: Suppress clang warning about empty @param paragraph;
resolves sf#158 Signed-off-by: Will Estes <[email protected]>
2014-04-02 Will Estes <[email protected]>
* doc/flex.texi: fix punction when talking about colon-bracket
delimiters; resolves sf#167
2014-04-02 Will Estes <[email protected]>
* doc/flex.texi: remove proofreading comment
2014-04-02 Will Estes <[email protected]>
* doc/flex.texi: Put angle brackets around start condition name;
resolves bug #168.
2014-04-02 Michael Haubenwallner <[email protected]>
* lib/Makefile.am, lib/realloc.c: Fix malloc/realloc replacement,
bug#151. Signed-off-by: Will Estes <[email protected]>
2014-04-02 Will Estes <[email protected]>
* lib/malloc.c: change crlf line ending to lf
2014-03-26 Will Estes <[email protected]>
* NEWS: mention flex 2.5.39 release in NEWS file
2014-03-26 Will Estes <[email protected]>
* control.ac: initial default control file for shipper
2014-03-05 Cyril Brulebois <[email protected]>
* src/flex.skl: Adjust buffer sizes on ia64. From the debian change entry: > Finish fixing the ia64 buffer issue. Previous commits increased
YY_READ_BUF_SIZE (where __ia64__ is defined) but left YY_BUF_SIZE
unchanged, so that didn't fix the problem in the end. In the general
case, the latter is twice the former. Therefore set it to the same
ratio in the ia64 case. In general, this sort of architecture specific fix is not the path
we want to take, but the cleanup should be done in a more organized
way in the future and getting it working would be preferrable now.
2014-02-18 Will Estes <[email protected]>
* Makefile.am, src/Makefile.am: move m4 make variable to
src/Makefile.am. This prevents an error when building skel.c caused by the $(m4) make
variable not being defined. Particularly nasty since skel.c would
still be created, thus causing make to think skel.c was up to date.
2014-02-18 Will Estes <[email protected]>
* devel/00EXTRACT-ALL-SYMS.sh, devel/README, devel/dump-tables.pl,
devel/tables.pl: remove unused devel/ subdirectory from codebase
2014-02-15 Will Estes <[email protected]>
* po/Rules-getpo: Add make rule to rsync latest .po files from
translation project. The rule assumes that rsync is on the path and that there is exactly
one domain listed in the DOMAIN make variable. The intent is that
the rule will work with vpath builds.
2014-02-14 Will Estes <[email protected]>
* .gitignore: git ignore directories of the form flex-*
2014-02-14 Will Estes <[email protected]>
* po/POTFILES.in: list source files for translation as now being in
src/
2014-02-14 Will Estes <[email protected]>
* Makefile.am, configure.ac, tools/Makefile.am: Add tools/
directory. Since tools/git2cl is a dependency of ChangeLog, not distributing
tools/git2cl with flex causes the "make dist" target to fail in the
distributed tar ball.
2014-02-14 Will Estes <[email protected]>
* Makefile.am: removes extraneous files from EXTRA_DIST as automake
picks them up better without mentioning them
2014-02-14 Will Estes <[email protected]>
* NEWS: mention version 2.6.0 in release news
2014-02-14 Will Estes <[email protected]>
* .gitignore, FlexLexer.h, Makefile.am, buf.c, ccl.c, configure.ac,
dfa.c, doc/.gitignore, doc/Makefile.am, ecs.c, filter.c, flex.skl,
flexdef.h, flexint.h, gen.c, gettext.h, lib/.gitignore, libmain.c,
libyywrap.c, main.c, misc.c, mkskel.sh, nfa.c, options.c,
options.h, parse.y, regex.c, scan.l, scanflags.c, scanopt.c,
scanopt.h, src/.gitignore, src/FlexLexer.h, src/Makefile.am,
src/buf.c, src/ccl.c, src/dfa.c, src/ecs.c, src/filter.c,
src/flex.skl, src/flexdef.h, src/flexint.h, src/gen.c,
src/gettext.h, src/libmain.c, src/libyywrap.c, src/main.c,
src/misc.c, src/mkskel.sh, src/nfa.c, src/options.c, src/options.h,
src/parse.y, src/regex.c, src/scan.l, src/scanflags.c,
src/scanopt.c, src/scanopt.h, src/sym.c, src/tables.c,
src/tables.h, src/tables_shared.c, src/tables_shared.h,
src/tblcmp.c, src/version.h, src/yylex.c, sym.c, tables.c,
tables.h, tables_shared.c, tables_shared.h, tblcmp.c, version.h,
yylex.c: move flex program sources into src/ directory The *.[chly] sources are now in the src directory. This implies a
bunch of changes in Makefile.am and friends to account for the new
location. The .gitignore files are now more local to places where
various object files and generated source files occur.
2014-02-13 Will Estes <[email protected]>
* configure.ac: increment flex version to 2.6.0
2014-02-16 Translation Project <[email protected]>
* po/ru.po: update ru translation from the translation project
2014-02-14 Will Estes <[email protected]>
* NEWS: mention updated da translation in release news
2014-02-14 Translation Project <[email protected]>
* po/da.po: update da translation from the translation project
2014-02-14 Will Estes <[email protected]>
* NEWS: mention updated es translation in release news
2014-02-14 Translation Project <[email protected]>
* po/es.po: update es translation from the translation project
2014-02-14 Will Estes <[email protected]>
* NEWS: mention updated ko translation in release news
2014-02-14 Translation Project <[email protected]>
* po/ko.po: update ko translation from the translation project
2014-02-14 Will Estes <[email protected]>
* NEWS: mention updated ro translation in release news
2014-02-14 Translation Project <[email protected]>
* po/ro.po: update ro translation from the translation project
2014-02-14 Will Estes <[email protected]>
* NEWS: mention updated ru translation in release news
2014-02-14 Translation Project <[email protected]>
* po/ru.po: update ru translation from the translation project
2014-02-14 Will Estes <[email protected]>
* NEWS: mention updated sv translation in news
2014-02-14 Translation Project <[email protected]>
* po/sv.po: update sv translation from the translation project
2014-02-14 Will Estes <[email protected]>
* NEWS: mention updated tr translation in news
2014-02-14 Translation Project <[email protected]>
* po/tr.po: update tr translation from the translation project
2014-02-14 Will Estes <[email protected]>
* NEWS: mention updated zh_CN in release news
2014-02-14 Translation Project <[email protected]>
* po/zh_CN.po: update zh_CN translation from the translation project
2014-02-14 Will Estes <[email protected]>
* NEWS, po/LINGUAS, po/zh_TW.po, po/zh_tw.po: rename zh_tw
translation to its proper zh_TW name
2014-02-14 Will Estes <[email protected]>
* NEWS: mention updated nl, vi translations in release news
2014-02-14 Translation Project <[email protected]>
* po/vi.po: update vi translation from the translation project
2014-02-14 Translation Project <[email protected]>
* po/nl.po: update nl translation from the translation project
2014-02-14 Will Estes <[email protected]>
* TODO: remove some unneeded entries from the todo list