[go: up one dir, main page]

File: CHANGES.2.1

package info (click to toggle)
cook 2.19-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 7,316 kB
  • ctags: 3,969
  • sloc: ansic: 50,331; sh: 13,190; makefile: 4,542; yacc: 3,174; perl: 224; awk: 154
file content (1028 lines) | stat: -rw-r--r-- 28,069 bytes parent folder | download | duplicates (5)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028



Project "cook.2.1"						 Page 1
List of Changes				       Thu Oct 30 22:48:32 1997

Change	State		Description
------- -------		-------------
  10	completed	Prepare For Release
  11	completed	c_incl m4
  12	completed	make2cook -no-internal-rules
  13	completed	match context
  14	completed	c_incl --lang=optimistic
  15	completed	configure bug
  16	completed	c_incl -no-absolute
  17	completed	complex implicit recipe bug
  18	completed	warn about essential information when only in
			dependency files
  19	completed	prepare for release
  20	completed	add canned functions
  21	completed	graph walking does not interrupt correctly
  22	completed	prepare for release
  23	completed	problems with this method of adding the change
			file
  24	completed	correct make2cook % translation
  25	being_		more prep for release
	integrated



Project "cook.2.1", Change 10					 Page 1
Change Details				       Thu Oct 30 22:48:36 1997

NAME
	Project "cook.2.1", Delta 1, Change 10.

SUMMARY
	Prepare For Release

DESCRIPTION
	Prepare For Release

	This change is exempt from testing against the development
	directory.  This change is exempt from testing against the
	baseline.


ARCHITECTURE
	This change must build and test in the "linux-i486"
	architecture.

CAUSE
	This change was caused by internal_enhancement.

FILES
	Type	Action	 Edit	     File Name
	------- -------- -------     -----------
	build	modify	   13	     BUILDING
	build	modify	   47	     MANIFEST
	build	modify	   45	     Makefile.in
	build	modify	   21	     README
	source	create	    1	     aux/CHANGES.2.0
	build	modify	   34	     aux/version.so
	build	modify	    3	     common/config.h.in
	build	modify	   72	     common/patchlevel.h
	build	modify	    7	     configure
	source	create	    1	     lib/en/readme/new.2.1.so

HISTORY
	What		When		Who	 Comment
	------		------		-----	 ---------
	new_change	Sun Oct 12	pmiller
			23:06:37 1997
	develop_begin	Sun Oct 12	pmiller	 Elapsed time: 1.000
			23:07:40 1997		 days.
	develop_end	Mon Oct 13	pmiller
			21:56:28 1997
	review_pass	Mon Oct 13	pmiller
			21:56:32 1997
	integrate_begin Mon Oct 13	pmiller	 Elapsed time: 0.039
			21:58:02 1997		 days.
	integrate_pass	Mon Oct 13	pmiller
			22:15:37 1997



Project "cook.2.1", Change 11					 Page 1
Change Details				       Thu Oct 30 22:48:37 1997

NAME
	Project "cook.2.1", Delta 2, Change 11.

SUMMARY
	c_incl m4

DESCRIPTION
	This change adds M4 to the languages understood by c_incl.


ARCHITECTURE
	This change must build and test in the "linux-i486"
	architecture.

CAUSE
	This change was caused by internal_enhancement.

FILES
	Type	Action	 Edit	     File Name
	------- -------- -------     -----------
	build	modify	   13	     BUILDING
	build	modify	   48	     MANIFEST
	build	modify	   46	     Makefile.in
	build	modify	   21	     README
	build	modify	   35	     aux/version.so
	source	create	    1	     c_incl/lang.c
	source	create	    1	     c_incl/lang.h
	source	modify	    6	     c_incl/lang_c.c
	source	create	    1	     c_incl/lang_c.h
	source	create	    1	     c_incl/lang_m4.c
	source	create	    1	     c_incl/lang_m4.h
	source	modify	    6	     c_incl/lang_roff.c
	source	create	    1	     c_incl/lang_roff.h
	source	modify	    3	     c_incl/main.c
	source	modify	    4	     c_incl/sniff.h
	build	modify	    3	     common/config.h.in
	build	modify	   73	     common/patchlevel.h
	build	modify	    7	     configure
	source	modify	    4	     lib/en/LC_MESSAGES/c_incl.po
	source	modify	    4	     lib/en/man1/c_incl.1
	test	create	    1	     test/01/t0130a.sh

HISTORY
	What		When		Who	 Comment
	------		------		-----	 ---------
	new_change	Mon Oct 13	pmiller
			22:16:34 1997
	develop_begin	Mon Oct 13	pmiller	 Elapsed time: 5.106
			22:19:13 1997		 days.
	develop_end	Sat Oct 18	pmiller
			23:06:47 1997
	review_pass	Sat Oct 18	pmiller
			23:16:23 1997
	integrate_begin Sat Oct 18	pmiller	 Elapsed time: 0.027
			23:16:48 1997		 days.
	integrate_pass	Sat Oct 18	pmiller
			23:28:51 1997



Project "cook.2.1", Change 12					 Page 1
Change Details				       Thu Oct 30 22:48:37 1997

NAME
	Project "cook.2.1", Delta 3, Change 12.

SUMMARY
	make2cook -no-internal-rules

DESCRIPTION
	This change adds the make2cook -no-internal-rules option to
	supress all internal make rules.


ARCHITECTURE
	This change must build and test in the "linux-i486"
	architecture.

CAUSE
	This change was caused by internal_bug.

FILES
	Type	Action	 Edit	     File Name
	------- -------- -------     -----------
	build	modify	   13	     BUILDING
	build	modify	   49	     MANIFEST
	build	modify	   47	     Makefile.in
	build	modify	   21	     README
	build	modify	   36	     aux/version.so
	build	modify	    3	     common/config.h.in
	build	modify	   74	     common/patchlevel.h
	build	modify	    7	     configure
	source	modify	    2	     lib/en/man1/make2cook.1
	source	modify	    2	     make2cook/gram.h
	source	modify	    4	     make2cook/gram.y
	source	modify	    3	     make2cook/main.c
	test	create	    1	     test/01/t0131a.sh

HISTORY
	What		When		Who	 Comment
	------		------		-----	 ---------
	new_change	Sun Oct 19	pmiller
			09:09:02 1997
	develop_begin	Sun Oct 19	pmiller	 Elapsed time: 0.627
			09:09:07 1997		 days.
	develop_end	Sun Oct 19	pmiller	 Elapsed time: 0.048
			13:51:03 1997		 days.
	review_pass	Sun Oct 19	pmiller
			14:12:27 1997
	integrate_begin Sun Oct 19	pmiller	 Elapsed time: 0.049
			14:13:05 1997		 days.
	integrate_pass	Sun Oct 19	pmiller
			14:35:08 1997



Project "cook.2.1", Change 13					 Page 1
Change Details				       Thu Oct 30 22:48:38 1997

NAME
	Project "cook.2.1", Delta 4, Change 13.

SUMMARY
	match context

DESCRIPTION
	This change adds more information to match error messages, and
	makes match stacks local to each opcode context.


ARCHITECTURE
	This change must build and test in the "linux-i486"
	architecture.

CAUSE
	This change was caused by internal_bug.

FILES
	Type	Action	 Edit	     File Name
	------- -------- -------     -----------
	build	modify	   13	     BUILDING
	build	modify	   50	     MANIFEST
	build	modify	   48	     Makefile.in
	build	modify	   21	     README
	build	modify	   37	     aux/version.so
	build	modify	    3	     common/config.h.in
	build	modify	   75	     common/patchlevel.h
	build	modify	    7	     configure
	source	modify	    7	     cook/builtin/filter_out.c
	source	modify	    7	     cook/builtin/match.c
	source	modify	    8	     cook/expr.c
	source	modify	    6	     cook/expr.h
	source	modify	    4	     cook/expr/constant.c
	source	modify	    2	     cook/expr/constant.h
	source	modify	    5	     cook/expr/list.c
	source	modify	    4	     cook/expr/list.h
	source	modify	   11	     cook/graph/build.c
	source	modify	   12	     cook/graph/run.c
	source	modify	    5	     cook/graph/script.c
	source	modify	   13	     cook/hashline.y
	source	modify	   14	     cook/lex.c
	source	modify	    8	     cook/match.c
	source	modify	    4	     cook/match.h
	source	modify	    7	     cook/opcode/context.c
	source	modify	    6	     cook/opcode/context.h
	source	modify	    3	     cook/opcode/list.c
	source	modify	    3	     cook/opcode/list.h
	source	modify	    2	     cook/opcode/postlude.c
	source	modify	    2	     cook/opcode/prelude.c
	source	modify	    3	     cook/opcode/string.c
	source	modify	    2	     cook/opcode/string.h
	source	modify	    2	     cook/opcode/thread-id.c
	source	modify	   20	     cook/parse.y
	source	modify	   11	     cook/stmt.c
	source	modify	    6	     cook/stmt.h
	source	modify	    4	     cook/stmt/assign.c



Project "cook.2.1", Change 13					 Page 2
Change Details				       Thu Oct 30 22:48:38 1997

	Type	Action	 Edit	     File Name
	------- -------- -------     -----------
	test	create	    1	     test/01/t0132a.sh

HISTORY
	What		When		Who	 Comment
	------		------		-----	 ---------
	new_change	Sun Oct 19	pmiller
			13:50:08 1997
	develop_begin	Sun Oct 19	pmiller	 Elapsed time: 5.000
			13:50:25 1997		 days.
	develop_end	Thu Oct 23	pmiller
			21:27:09 1997
	review_pass	Thu Oct 23	pmiller
			21:32:16 1997
	integrate_begin Thu Oct 23	pmiller	 Elapsed time: 0.043
			21:32:53 1997		 days.
	integrate_pass	Thu Oct 23	pmiller
			21:52:06 1997



Project "cook.2.1", Change 14					 Page 1
Change Details				       Thu Oct 30 22:48:38 1997

NAME
	Project "cook.2.1", Delta 5, Change 14.

SUMMARY
	c_incl --lang=optimistic

DESCRIPTION
	This change adds the ``optimistic'' language to c_incl, which
	is quite generous about what it will accept.


ARCHITECTURE
	This change must build and test in the "linux-i486"
	architecture.

CAUSE
	This change was caused by internal_enhancement.

FILES
	Type	Action	 Edit	     File Name
	------- -------- -------     -----------
	build	modify	   13	     BUILDING
	build	modify	   51	     MANIFEST
	build	modify	   49	     Makefile.in
	build	modify	   21	     README
	build	modify	   38	     aux/version.so
	source	modify	    2	     c_incl/lang.c
	source	create	    1	     c_incl/lang_optimis.c
	source	create	    1	     c_incl/lang_optimis.h
	build	modify	    3	     common/config.h.in
	build	modify	   76	     common/patchlevel.h
	build	modify	    7	     configure
	source	modify	    5	     lib/en/man1/c_incl.1
	test	create	    1	     test/01/t0133a.sh

HISTORY
	What		When		Who	 Comment
	------		------		-----	 ---------
	new_change	Thu Oct 23	pmiller
			20:40:16 1997
	develop_begin	Thu Oct 23	pmiller	 Elapsed time: 0.155
			20:40:31 1997		 days.
	develop_end	Thu Oct 23	pmiller
			21:50:27 1997
	review_pass	Thu Oct 23	pmiller
			21:50:52 1997
	integrate_begin Thu Oct 23	pmiller	 Elapsed time: 0.050
			21:53:56 1997		 days.
	integrate_pass	Thu Oct 23	pmiller
			22:16:28 1997



Project "cook.2.1", Change 15					 Page 1
Change Details				       Thu Oct 30 22:48:39 1997

NAME
	Project "cook.2.1", Delta 6, Change 15.

SUMMARY
	configure bug

DESCRIPTION
	This change corrects and installation problem where ${prefix}
	can sometimes arrive in aux/libdir-h, causing locatization
	problems.

	This change is exempt from testing against the development
	directory.  This change is exempt from testing against the
	baseline.


ARCHITECTURE
	This change must build and test in the "linux-i486"
	architecture.

CAUSE
	This change was caused by internal_bug.

FILES
	Type	Action	 Edit	     File Name
	------- -------- -------     -----------
	build	modify	   14	     BUILDING
	build	modify	   51	     MANIFEST
	build	modify	   50	     Makefile.in
	build	modify	   21	     README
	source	modify	    5	     aux/Makefi.file.sh
	source	modify	    5	     aux/Makefile.head
	source	modify	    8	     aux/configure.in
	build	modify	   39	     aux/version.so
	build	modify	    3	     common/config.h.in
	build	modify	   77	     common/patchlevel.h
	build	modify	    8	     configure
	source	modify	    3	     lib/en/building/main.man

HISTORY
	What		When		Who	 Comment
	------		------		-----	 ---------
	new_change	Thu Oct 23	pmiller
			21:53:22 1997
	develop_begin	Thu Oct 23	pmiller	 Elapsed time: 0.215
			21:53:28 1997		 days.
	develop_end	Thu Oct 23	pmiller
			23:30:11 1997
	review_pass	Thu Oct 23	pmiller
			23:30:17 1997
	integrate_begin Thu Oct 23	pmiller	 Elapsed time: 0.094
			23:30:41 1997		 days.
	integrate_pass	Fri Oct 24	pmiller
			00:12:58 1997



Project "cook.2.1", Change 16					 Page 1
Change Details				       Thu Oct 30 22:48:40 1997

NAME
	Project "cook.2.1", Delta 7, Change 16.

SUMMARY
	c_incl -no-absolute

DESCRIPTION
	This change adds a -no_absolute option to c_incl, to tell it
	to avoid obsolute file names.


ARCHITECTURE
	This change must build and test in the "linux-i486"
	architecture.

CAUSE
	This change was caused by internal_enhancement.

FILES
	Type	Action	 Edit	     File Name
	------- -------- -------     -----------
	build	modify	   14	     BUILDING
	build	modify	   52	     MANIFEST
	build	modify	   51	     Makefile.in
	build	modify	   21	     README
	build	modify	   40	     aux/version.so
	source	modify	    7	     c_incl/lang_c.c
	source	modify	    4	     c_incl/main.c
	source	modify	    7	     c_incl/sniff.c
	source	modify	    5	     c_incl/sniff.h
	build	modify	    3	     common/config.h.in
	build	modify	   78	     common/patchlevel.h
	build	modify	    8	     configure
	source	modify	    6	     lib/en/man1/c_incl.1
	test	create	    1	     test/01/t0134a.sh

HISTORY
	What		When		Who	 Comment
	------		------		-----	 ---------
	new_change	Thu Oct 23	pmiller
			23:31:50 1997
	develop_begin	Thu Oct 23	pmiller	 Elapsed time: 1.032
			23:32:05 1997		 days.
	develop_end	Fri Oct 24	pmiller
			23:46:22 1997
	review_pass	Fri Oct 24	pmiller
			23:47:17 1997
	integrate_begin Fri Oct 24	pmiller	 Elapsed time: 0.083
			23:47:35 1997		 days.
	integrate_pass	Sat Oct 25	pmiller
			00:24:57 1997



Project "cook.2.1", Change 17					 Page 1
Change Details				       Thu Oct 30 22:48:40 1997

NAME
	Project "cook.2.1", Delta 8, Change 17.

SUMMARY
	complex implicit recipe bug

DESCRIPTION
	This chnage fixes a bug when an implicit recipe has more than
	one target, and the file matches both targets, but it really
	needed to notice the second one.


ARCHITECTURE
	This change must build and test in the "linux-i486"
	architecture.

CAUSE
	This change was caused by internal_bug.

FILES
	Type	Action	 Edit	     File Name
	------- -------- -------     -----------
	build	modify	   14	     BUILDING
	build	modify	   53	     MANIFEST
	build	modify	   52	     Makefile.in
	build	modify	   21	     README
	build	modify	   41	     aux/version.so
	build	modify	    3	     common/config.h.in
	build	modify	   79	     common/patchlevel.h
	build	modify	    8	     configure
	source	modify	   12	     cook/graph/build.c
	source	modify	    9	     cook/match.c
	source	modify	    5	     cook/match.h
	source	modify	    6	     cook/opcode/recipe.c
	source	modify	    7	     cook/recipe.c
	source	modify	   13	     lib/en/LC_MESSAGES/cook.po
	test	create	    1	     test/01/t0135a.sh
	test	create	    1	     test/01/t0136a.sh

HISTORY
	What		When		Who	 Comment
	------		------		-----	 ---------
	new_change	Sat Oct 25	pmiller
			07:52:38 1997
	develop_begin	Sat Oct 25	pmiller	 Elapsed time: 0.667
			07:52:49 1997		 days.
	develop_end	Sat Oct 25	pmiller
			12:52:50 1997
	review_pass	Sat Oct 25	pmiller
			12:53:21 1997
	integrate_begin Sat Oct 25	pmiller	 Elapsed time: 0.028
			12:53:33 1997		 days.
	integrate_pass	Sat Oct 25	pmiller
			13:06:06 1997



Project "cook.2.1", Change 18					 Page 1
Change Details				       Thu Oct 30 22:48:41 1997

NAME
	Project "cook.2.1", Delta 11, Change 18.

SUMMARY
	warn about essential information when only in dependency files

DESCRIPTION
	Need to issue a warning for any non-leaf file A which depends
	on a non-leaf file B when A is the subject of a #include-
	cooked directive (usually the .d file itself) and the A:B
	dependecy does no appear in any explicit recipe in either (a)
	an explicit file, or (b) a leaf #include-cooked file.

	This change must pass a full regression test.  This change is
	exempt from testing against the development directory.	This
	change is exempt from testing against the baseline.


ARCHITECTURE
	This change must build and test in the "linux-i486"
	architecture.

CAUSE
	This change was caused by internal_improvement.

FILES
	Type	Action	 Edit	     File Name
	------- -------- -------     -----------
	build	modify	   14	     BUILDING
	build	modify	   55	     MANIFEST
	build	modify	   54	     Makefile.in
	build	modify	   21	     README
	source	modify	   21	     aux/Howto.cook
	build	modify	   44	     aux/version.so
	build	modify	    3	     common/config.h.in
	build	modify	   82	     common/patchlevel.h
	build	modify	    8	     configure
	source	modify	   16	     cook/cook.c
	source	modify	    2	     cook/graph.c
	source	modify	    2	     cook/graph.h
	source	modify	   13	     cook/graph/build.c
	source	modify	    2	     cook/graph/check.c
	source	modify	    2	     cook/graph/check.h
	source	create	    1	     cook/graph/file_pair.c
	source	create	    1	     cook/graph/file_pair.h
	source	modify	    2	     cook/graph/pairs.c
	source	modify	    2	     cook/graph/pairs.h
	source	modify	   13	     cook/graph/run.c
	source	modify	    2	     cook/graph/run.h
	source	modify	    6	     cook/graph/script.c
	source	modify	    2	     cook/graph/script.h
	source	modify	   10	     cook/graph/walk.c
	source	modify	   14	     lib/en/LC_MESSAGES/cook.po
	source	modify	    3	     lib/en/user-guide/include.so



Project "cook.2.1", Change 18					 Page 2
Change Details				       Thu Oct 30 22:48:41 1997

HISTORY
	What		When		Who	 Comment
	------		------		-----	 ---------
	new_change	Sat Oct 25	pmiller
			13:16:42 1997
	develop_begin	Sat Oct 25	pmiller	 Elapsed time: 1.043
			13:16:50 1997		 days.
	develop_end	Sun Oct 26	pmiller
			14:36:02 1997
	review_pass	Sun Oct 26	pmiller
			14:36:13 1997
	integrate_begin Sun Oct 26	pmiller	 Elapsed time: 0.035
			14:36:23 1997		 days.
	integrate_pass	Sun Oct 26	pmiller
			14:52:03 1997



Project "cook.2.1", Change 19					 Page 1
Change Details				       Thu Oct 30 22:48:41 1997

NAME
	Project "cook.2.1", Delta 12, Change 19.

SUMMARY
	prepare for release

DESCRIPTION
	This change cleans up a few things in preparation for release.

	This change must pass a full regression test.  This change is
	exempt from testing against the development directory.	This
	change is exempt from testing against the baseline.


ARCHITECTURE
	This change must build and test in the "linux-i486"
	architecture.

CAUSE
	This change was caused by internal_bug.

FILES
	Type	Action	 Edit	     File Name
	------- -------- -------     -----------
	build	modify	   14	     BUILDING
	build	modify	   56	     MANIFEST
	build	modify	   54	     Makefile.in
	build	modify	   21	     README
	source	create	    1	     aux/CHANGES.2.1
	source	modify	   21	     aux/Howto.cook
	source	modify	    5	     aux/Makefi.file.sh
	build	modify	   45	     aux/version.so
	build	modify	    3	     common/config.h.in
	build	modify	   83	     common/patchlevel.h
	build	modify	    8	     configure
	source	modify	    7	     cook/builtin/filter_out.c
	source	modify	    7	     cook/builtin/match.c
	source	modify	   16	     cook/cook.c
	source	modify	   13	     cook/graph/build.c
	source	modify	   13	     cook/graph/run.c
	source	modify	    6	     cook/graph/script.c
	source	modify	   13	     cook/hashline.y
	source	modify	   14	     cook/lex.c
	source	modify	    9	     cook/match.c
	source	modify	    5	     cook/match.h
	source	modify	    7	     cook/opcode/context.c
	source	modify	    6	     cook/opcode/context.h
	source	modify	    6	     cook/opcode/recipe.c
	source	modify	    3	     cook/opcode/string.c
	source	modify	   20	     cook/parse.y
	source	modify	    7	     cook/recipe.c
	source	modify	   14	     lib/en/LC_MESSAGES/cook.po
	source	modify	    3	     lib/en/user-guide/include.so
	source	modify	   10	     lib/en/user-guide/language.so
	source	modify	    5	     lib/en/user-guide/main.mm
	source	modify	    4	     make2cook/gram.y



Project "cook.2.1", Change 19					 Page 2
Change Details				       Thu Oct 30 22:48:41 1997

HISTORY
	What		When		Who	 Comment
	------		------		-----	 ---------
	new_change	Sun Oct 26	pmiller
			19:43:02 1997
	develop_begin	Sun Oct 26	pmiller	 Elapsed time: 0.343
			19:43:07 1997		 days.
	develop_end	Sun Oct 26	pmiller
			22:17:38 1997
	review_pass	Sun Oct 26	pmiller
			22:17:47 1997
	integrate_begin Sun Oct 26	pmiller	 Elapsed time: 0.058
			22:18:07 1997		 days.
	integrate_pass	Sun Oct 26	pmiller
			22:44:06 1997



Project "cook.2.1", Change 20					 Page 1
Change Details				       Thu Oct 30 22:48:42 1997

NAME
	Project "cook.2.1", Delta 9, Change 20.

SUMMARY
	add canned functions

DESCRIPTION
	This change adds several canned functions to the files
	installed by the distribution.

	This change is exempt from testing against the development
	directory.  This change is exempt from testing against the
	baseline.


ARCHITECTURE
	This change must build and test in the "linux-i486"
	architecture.

CAUSE
	This change was caused by internal_enhancement.

FILES
	Type	Action	 Edit	     File Name
	------- -------- -------     -----------
	build	modify	   14	     BUILDING
	build	modify	   54	     MANIFEST
	build	modify	   53	     Makefile.in
	build	modify	   21	     README
	build	modify	   42	     aux/version.so
	build	modify	    3	     common/config.h.in
	build	modify	   80	     common/patchlevel.h
	build	modify	    8	     configure
	source	create	    1	     lib/en/user-guide/functions.so
	source	modify	   10	     lib/en/user-guide/language.so
	source	modify	    5	     lib/en/user-guide/main.mm
	source	create	    1	     lib/functions

HISTORY
	What		When		Who	 Comment
	------		------		-----	 ---------
	new_change	Sun Oct 26	pmiller
			00:59:41 1997
	develop_begin	Sun Oct 26	pmiller	 Elapsed time: 1.000
			00:59:53 1997		 days.
	develop_end	Sun Oct 26	pmiller
			12:24:14 1997
	review_pass	Sun Oct 26	pmiller
			12:24:25 1997
	integrate_begin Sun Oct 26	pmiller	 Elapsed time: 0.026
			12:24:36 1997		 days.
	integrate_pass	Sun Oct 26	pmiller
			12:36:21 1997



Project "cook.2.1", Change 21					 Page 1
Change Details				       Thu Oct 30 22:48:42 1997

NAME
	Project "cook.2.1", Delta 10, Change 21.

SUMMARY
	graph walking does not interrupt correctly

DESCRIPTION
	This change ensures that graph walking is properly responsive
	to being interrupted.

	This change is exempt from testing against the development
	directory.  This change is exempt from testing against the
	baseline.


ARCHITECTURE
	This change must build and test in the "linux-i486"
	architecture.

CAUSE
	This change was caused by internal_bug.

FILES
	Type	Action	 Edit	     File Name
	------- -------- -------     -----------
	build	modify	   14	     BUILDING
	build	modify	   54	     MANIFEST
	build	modify	   53	     Makefile.in
	build	modify	   21	     README
	build	modify	   43	     aux/version.so
	build	modify	    3	     common/config.h.in
	build	modify	   81	     common/patchlevel.h
	build	modify	    8	     configure
	source	modify	    9	     cook/graph/walk.c

HISTORY
	What		When		Who	 Comment
	------		------		-----	 ---------
	new_change	Sun Oct 26	pmiller
			10:04:26 1997
	develop_begin	Sun Oct 26	pmiller	 Elapsed time: 0.512
			10:04:30 1997		 days.
	develop_end	Sun Oct 26	pmiller
			13:54:50 1997
	review_pass	Sun Oct 26	pmiller
			13:55:33 1997
	integrate_begin Sun Oct 26	pmiller	 Elapsed time: 0.025
			13:55:43 1997		 days.
	integrate_pass	Sun Oct 26	pmiller
			14:06:52 1997



Project "cook.2.1", Change 22					 Page 1
Change Details				       Thu Oct 30 22:48:43 1997

NAME
	Project "cook.2.1", Delta 13, Change 22.

SUMMARY
	prepare for release

DESCRIPTION
	Prepare for release, again.

	This change is exempt from testing against the development
	directory.  This change is exempt from testing against the
	baseline.


ARCHITECTURE
	This change must build and test in the "linux-i486"
	architecture.

CAUSE
	This change was caused by internal_bug.

FILES
	Type	Action	 Edit	     File Name
	------- -------- -------     -----------
	build	modify	   14	     BUILDING
	build	modify	   56	     MANIFEST
	build	modify	   54	     Makefile.in
	build	modify	   21	     README
	source	modify	    2	     aux/CHANGES.2.1
	build	modify	   46	     aux/version.so
	build	modify	    3	     common/config.h.in
	build	modify	   84	     common/patchlevel.h
	build	modify	    8	     configure

HISTORY
	What		When		Who	 Comment
	------		------		-----	 ---------
	new_change	Sun Oct 26	pmiller
			22:48:41 1997
	develop_begin	Sun Oct 26	pmiller
			22:53:15 1997
	develop_end	Sun Oct 26	pmiller
			23:02:18 1997
	review_pass	Sun Oct 26	pmiller
			23:02:23 1997
	integrate_begin Sun Oct 26	pmiller	 Elapsed time: 0.023
			23:02:44 1997		 days.
	integrate_pass	Sun Oct 26	pmiller
			23:13:15 1997



Project "cook.2.1", Change 23					 Page 1
Change Details				       Thu Oct 30 22:48:44 1997

NAME
	Project "cook.2.1", Delta 14, Change 23.

SUMMARY
	problems with this method of adding the change file

DESCRIPTION
	problems with this method of adding the change file

	This change is exempt from testing against the development
	directory.  This change is exempt from testing against the
	baseline.


ARCHITECTURE
	This change must build and test in the "linux-i486"
	architecture.

CAUSE
	This change was caused by internal_bug.

FILES
	Type	Action	 Edit	     File Name
	------- -------- -------     -----------
	build	modify	   15	     BUILDING
	build	modify	   57	     MANIFEST
	build	modify	   54	     Makefile.in
	build	modify	   21	     README
	build	remove	    1	     aux/CHANGES.2.1
	build	modify	   47	     aux/version.so
	build	modify	    3	     common/config.h.in
	build	modify	   85	     common/patchlevel.h
	build	modify	    8	     configure

HISTORY
	What		When		Who	 Comment
	------		------		-----	 ---------
	new_change	Tue Oct 28	pmiller
			20:30:51 1997
	develop_begin	Tue Oct 28	pmiller	 Elapsed time: 0.048
			20:30:56 1997		 days.
	develop_end	Tue Oct 28	pmiller
			20:52:41 1997
	review_pass	Tue Oct 28	pmiller
			20:53:12 1997
	integrate_begin Tue Oct 28	pmiller	 Elapsed time: 0.099
			20:53:51 1997		 days.
	integrate_pass	Tue Oct 28	pmiller
			21:38:21 1997



Project "cook.2.1", Change 24					 Page 1
Change Details				       Thu Oct 30 22:48:45 1997

NAME
	Project "cook.2.1", Delta 15, Change 24.

SUMMARY
	correct make2cook % translation

DESCRIPTION
	This change corrects the translation made of the % pattern
	substitution.


ARCHITECTURE
	This change must build and test in the "linux-i486"
	architecture.

CAUSE
	This change was caused by internal_bug.

FILES
	Type	Action	 Edit	     File Name
	------- -------- -------     -----------
	build	modify	   15	     BUILDING
	build	modify	   57	     MANIFEST
	build	modify	   54	     Makefile.in
	build	modify	   22	     README
	build	modify	   48	     aux/version.so
	build	modify	    3	     common/config.h.in
	build	modify	   86	     common/patchlevel.h
	build	modify	    8	     configure
	source	modify	    2	     lib/en/readme/new.2.1.so
	source	modify	    7	     make2cook/stmt/rule.c
	source	modify	    4	     make2cook/vargram.y
	source	modify	    6	     make2cook/variable.c
	test	modify	    3	     test/00/t0065a.sh
	test	modify	    4	     test/00/t0066a.sh
	test	modify	    4	     test/00/t0070a.sh
	test	modify	    3	     test/00/t0071a.sh
	test	modify	    4	     test/01/t0101a.sh
	test	modify	    3	     test/01/t0105a.sh
	test	modify	    3	     test/01/t0106a.sh

HISTORY
	What		When		Who	 Comment
	------		------		-----	 ---------
	new_change	Tue Oct 28	pmiller
			20:36:17 1997
	develop_begin	Tue Oct 28	pmiller	 Elapsed time: 2.091
			20:36:26 1997		 days.
	develop_end	Thu Oct 30	pmiller	 Elapsed time: 0.059
			21:17:31 1997		 days.
	review_pass	Thu Oct 30	pmiller
			21:44:15 1997
	integrate_begin Thu Oct 30	pmiller	 Elapsed time: 0.089
			21:45:20 1997		 days.
	integrate_pass	Thu Oct 30	pmiller
			22:25:23 1997



Project "cook.2.1", Change 25					 Page 1
Change Details				       Thu Oct 30 22:48:45 1997

NAME
	Project "cook.2.1", Delta 16, Change 25.

SUMMARY
	more prep for release

DESCRIPTION
	Back merge a couple of files.

	This change is exempt from testing against the development
	directory.  This change is exempt from testing against the
	baseline.


ARCHITECTURE
	This change must build and test in the "linux-i486"
	architecture.

	arch.	 host	  aeb	    aet	      aet -bl	aet -reg
	-------- -------- --------- --------- --------- ---------
	linux-		  required  exempt    exempt	exempt
	i486

CAUSE
	This change was caused by internal_bug.

STATE
	This change is in the 'being_integrated' state.

FILES
	Type	Action	 Edit	     File Name
	------- -------- -------     -----------
	source	modify	    6	     make2cook/stmt/rule.c
	source	modify	    5	     make2cook/variable.c

HISTORY
	What		When		Who	 Comment
	------		------		-----	 ---------
	new_change	Thu Oct 30	pmiller
			22:31:27 1997
	develop_begin	Thu Oct 30	pmiller	 Elapsed time: 0.026
			22:31:34 1997		 days.
	develop_end	Thu Oct 30	pmiller
			22:43:07 1997
	review_pass	Thu Oct 30	pmiller
			22:44:21 1997
	integrate_begin Thu Oct 30	pmiller
			22:45:02 1997