-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathChangeLog
5957 lines (4111 loc) · 197 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
2005-02-18 Joseph S. Myers <jsm@polyomino.org.uk>
* Version 2.17.
* NEWS, bsd-games.lsm, bsd-games-non-free.lsm: Update.
* wtf/acronyms, wtf/acronyms.comp: Update from NetBSD CVS.
2005-02-16 Joseph S. Myers <jsm@polyomino.org.uk>
* atc/input.c, backgammon/backgammon/main.c,
backgammon/teachgammon/teach.c, cribbage/instr.c, fish/fish.c,
phantasia/gamesupport.c, phantasia/interplayer.c, phantasia/io.c,
phantasia/misc.c, phantasia/phantstruct.h, rogue/machdep.c,
rogue/rogue.h, trek/getpar.h, trek/trek.h, wump/wump.c: Update
from NetBSD CVS.
2005-02-14 Joseph S. Myers <jsm@polyomino.org.uk>
* hack/hack.termcap.c: Remove "static" from some variables. Fix
from Andreas Jochens <aj@andaco.de> in Debian bug 284750.
* exec.objs: Include lib/strlcpy.o for atc and sail.
* atc/input.c, backgammon/backgammon/main.c,
backgammon/teachgammon/teach.c, cribbage/instr.c, fish/fish.c,
phantasia/misc.c, rogue/machdep.c, wump/wump.c: Cast last argument
of execl to char *.
* rogue/rogue.h: Avoid arrays of incomplete types.
* trek/trek.h: Likewise. Don't declare Skitab and Lentab here.
* trek/getpar.h: Declare Skitab and Lentab here.
* phantasia/phantstruct.h: Define phbool.
* phantasia/gamesupport.c, phantasia/interplayer.c,
phantasia/io.c, phantasia/misc.c: Use phbool where necessary.
* .cvsignore, adventure/.cvsignore, arithmetic/.cvsignore,
atc/.cvsignore, backgammon/backgammon/.cvsignore,
backgammon/common_source/.cvsignore,
backgammon/teachgammon/.cvsignore, banner/.cvsignore,
battlestar/.cvsignore, bcd/.cvsignore, boggle/boggle/.cvsignore,
boggle/mkdict/.cvsignore, boggle/mkindex/.cvsignore,
caesar/.cvsignore, canfield/canfield/.cvsignore,
canfield/cfscores/.cvsignore, cribbage/.cvsignore, dab/.cvsignore,
dm/.cvsignore, factor/.cvsignore, fish/.cvsignore,
fortune/datfiles/.cvsignore, fortune/fortune/.cvsignore,
fortune/strfile/.cvsignore, fortune/unstr/.cvsignore,
gomoku/.cvsignore, hack/.cvsignore, hangman/.cvsignore,
hunt/hunt/.cvsignore, hunt/huntd/.cvsignore, include/.cvsignore,
lib/.cvsignore, mille/.cvsignore, monop/.cvsignore,
morse/.cvsignore, number/.cvsignore, phantasia/.cvsignore,
pig/.cvsignore, pom/.cvsignore, ppt/.cvsignore, primes/.cvsignore,
quiz/.cvsignore, quiz/datfiles/.cvsignore, rain/.cvsignore,
random/.cvsignore, robots/.cvsignore, rogue/.cvsignore,
sail/.cvsignore, snake/snake/.cvsignore, snake/snscore/.cvsignore,
tetris/.cvsignore, trek/.cvsignore, worm/.cvsignore,
worms/.cvsignore, wtf/.cvsignore, wump/.cvsignore: Remove as no
longer needed after move to Subversion.
2005-01-30 Joseph S. Myers <jsm@polyomino.org.uk>
* fortune/datfiles/fortunes2: Update from NetBSD CVS.
2005-01-30 Joseph S. Myers <jsm@polyomino.org.uk>
* wtf/acronyms, wtf/acronyms.comp: Update from NetBSD CVS.
* COPYING: Update copyright dates.
2004-12-23 Joseph S. Myers <jsm@polyomino.org.uk>
* monop/malloc.c, phantasia/main.c, phantasia/setup.c: Update from
NetBSD CVS.
2004-12-07 Joseph S. Myers <jsm@polyomino.org.uk>
* arithmetic/arithmetic.c, battlestar/getcom.c,
boggle/boggle/bog.c, boggle/boggle/mach.c,
canfield/canfield/canfield.c, cribbage/io.c, dm/dm.c,
fortune/fortune/fortune.c, gomoku/stoc.c, hack/hack.u_init.c,
hangman/getword.c, hunt/hunt/hunt.c, hunt/hunt/otto.c,
hunt/huntd/answer.c, mille/move.c, monop/getinp.c, monop/misc.c,
number/number.c, pig/pig.c, robots/main.c, sail/dr_1.c,
sail/misc.c, sail/pl_4.c, sail/pl_5.c, worms/Makefile.bsd,
wtf/acronyms, wtf/acronyms.comp: Update from NetBSD CVS.
2004-10-31 Joseph S. Myers <jsm@polyomino.org.uk>
* lib/fgetln.c: Handle case of line just fitting in buffer
correctly.
2004-10-23 Joseph S. Myers <jsm@polyomino.org.uk>
* dm/utmpentry.c: Update from NetBSD CVS.
2004-09-15 Joseph S. Myers <jsm@polyomino.org.uk>
* fortune/fortune/fortune.6.in, fortune/strfile/strfile.8,
worms/worms.c: Update from NetBSD CVS.
2004-09-08 Joseph S. Myers <jsm@polyomino.org.uk>
* atc/log.c, sail/dr_1.c, sail/sync.c: Update from NetBSD CVS.
2004-09-04 Joseph S. Myers <jsm@polyomino.org.uk>
* wtf/acronyms: Update from NetBSD CVS.
2004-09-02 Joseph S. Myers <jsm@polyomino.org.uk>
* robots/auto.c, robots/move.c: Update from NetBSD CVS.
2004-08-23 Joseph S. Myers <jsm@polyomino.org.uk>
* fortune/datfiles/fortunes: Update from NetBSD CVS.
2004-07-16 Joseph S. Myers <jsm@polyomino.org.uk>
* wtf/acronyms.comp: Update from NetBSD CVS.
2004-07-05 Joseph S. Myers <jsm@polyomino.org.uk>
* wtf/acronyms: Update from NetBSD CVS.
2004-06-07 Joseph S. Myers <jsm@polyomino.org.uk>
* wtf/acronyms.comp: Update from NetBSD CVS.
2004-06-02 Joseph S. Myers <jsm@polyomino.org.uk>
* hack/hack.6.in: Update from NetBSD CVS.
2004-05-24 Joseph S. Myers <jsm@polyomino.org.uk>
* fortune/datfiles/fortunes: Update from NetBSD CVS.
2004-05-20 Joseph S. Myers <jsm@polyomino.org.uk>
* wtf/acronyms.comp: Update from NetBSD CVS.
2004-05-02 Joseph S. Myers <jsm@polyomino.org.uk>
* rain/rain.c: Update from NetBSD CVS.
* exec.objs: Update.
2004-04-30 Joseph S. Myers <jsm@polyomino.org.uk>
* wtf/acronyms.comp: Update from NetBSD CVS.
2004-04-24 Joseph S. Myers <jsm@polyomino.org.uk>
* backgammon/common_source/fancy.c, fortune/datfiles/farber:
Update from NetBSD CVS.
2004-04-12 Joseph S. Myers <jsm@polyomino.org.uk>
* phantasia/fight.c, phantasia/gamesupport.c,
phantasia/interplayer.c, phantasia/io.c, phantasia/main.c,
phantasia/misc.c: Update from NetBSD CVS.
2004-04-08 Joseph S. Myers <jsm@polyomino.org.uk>
* mille/move.c, phantasia/fight.c, phantasia/gamesupport.c,
phantasia/include.h, phantasia/interplayer.c, phantasia/io.c,
phantasia/main.c, phantasia/misc.c, phantasia/phantstruct.h,
phantasia/setup.c, worms/worms.c, wtf/acronyms, wtf/acronyms.comp:
Update from NetBSD CVS.
2004-03-29 Joseph S. Myers <jsm@polyomino.org.uk>
* fortune/datfiles/fortunes2, fortune/datfiles/fortunes2-o.real,
hack/data, hack/rumors: Update from NetBSD CVS.
2004-03-27 Joseph S. Myers <jsm@polyomino.org.uk>
* wtf/acronyms, wtf/acronyms.comp: Update from NetBSD CVS.
2004-03-12 Joseph S. Myers <jsm@polyomino.org.uk>
* wtf/acronyms, wtf/acronyms.comp: Update from NetBSD CVS.
2004-03-05 Joseph S. Myers <jsm@polyomino.org.uk>
* wtf/acronyms: Update from NetBSD CVS.
2004-03-04 Joseph S. Myers <jsm@polyomino.org.uk>
* wtf/acronyms.comp: Update from NetBSD CVS.
2004-02-28 Joseph S. Myers <jsm@polyomino.org.uk>
* fortune/datfiles/fortunes2: Update from NetBSD CVS.
2004-02-18 Joseph S. Myers <jsm@polyomino.org.uk>
* wtf/acronyms: Update from NetBSD CVS.
2004-02-14 Joseph S. Myers <jsm@polyomino.org.uk>
* fortune/datfiles/fortunes, fortune/datfiles/fortunes.sp.ok,
rogue/USD.doc/rogue.me: Update from NetBSD CVS.
* NEWS: Fix typo.
* ChangeLog: Mark properly for 2.16 release.
2004-02-13 Joseph S. Myers <jsm@polyomino.org.uk>
* Version 2.16.
* NEWS, bsd-games.lsm, bsd-games-non-free.lsm: Update.
* morse/morse.c: Update from NetBSD CVS.
* morse/morse.c: Encode and decode more characters. Don't put
commas after every character. Don't encode whitespace as "...".
Don't fail decoding across a 1024-byte boundary. Mark end of
message appropriately. From OpenBSD but with punctuation taken
from ITU-T Recommendation F.1 (03/98).
* tests/morse.testsent, tests/morse.testsentd: New tests.
* tests/morse.SOS, tests/morse.foo, tests/morse.sos: Update.
* tests/morse.test: Update.
2004-02-11 Joseph S. Myers <jsm@polyomino.org.uk>
* tests/pom.2003fm1, tests/pom.2003fm2, tests/pom.2003fq1,
tests/pom.2003fq2, tests/pom.2003lq1, tests/pom.2003lq2,
tests/pom.2003nm1, tests/pom.2003nm2, tests/pom.2003ph1,
tests/pom.2003ph2, tests/pom.2003ph3, tests/pom.2003ph4,
tests/pom.2003ph5, tests/pom.2003ph6, tests/pom.2003ph7,
tests/pom.2003ph8: New tests.
* tests/pom.test: Update.
2004-02-10 Joseph S. Myers <jsm@polyomino.org.uk>
* primes/primes.6: Update from NetBSD CVS.
2004-02-09 Joseph S. Myers <jsm@polyomino.org.uk>
* configure: Ask for a documentation directory if building trek or
rogue.
* Makeconfig.in (DOCDIR): Define.
* substfiles2: Add trek/trek.6.
* trek/trek.6: Rename to trek/trek.6.in.
* trek/trek.6.in: Mark documentation directory for substitution.
* rogue/Makefrag, trek/Makefrag: Install USD documents.
* INSTALL, PACKAGING, README: Update.
2004-02-08 Joseph S. Myers <jsm@polyomino.org.uk>
* backgammon/backgammon/main.c, backgammon/teachgammon/teach.c,
cribbage/cribbage.h, dm/dm.c, fortune/unstr/unstr.c,
hunt/hunt/hunt.c, hunt/hunt/otto.c, hunt/huntd/faketalk.c,
hunt/huntd/hunt.h, phantasia/Makefile.bsd, rain/rain.c,
worms/worms.c: Update from NetBSD CVS.
* rain/rain.c, worms/worms.c: Hide the cursor with curs_set(0).
From OpenBSD.
* tests/factor.8675309, tests/factor.6172538568: New tests (from
NetBSD src/regress).
* tests/factor.test: Update.
* boggle/README.linux, dm/README.linux, fortune/README.linux,
hunt/README.linux, trek/README.linux: Remove.
* README: Move information from those files to here.
* INSTALL: Update.
* COPYING: Update.
* factor/Makefile.bsd, factor/factor.6, factor/factor.c,
primes/Makefile.bsd, primes/primes.6: Update from NetBSD CVS.
* TODO: Update.
* substscr: Explicitly set execute permissions from those of
source file.
* primes/primes.6: Separate manpage from that of factor.
* primes/Makefrag: Update.
* factor/factor.6: Change to be a manpage for factor only.
* factor/factor.c: Only use Pollard p-1 if remaining factor isn't
prime. Correct comment. Increase base if p-1 algorithm reaches
1.
* tests/factor.2147483647111311, tests/factor.99999999999991: New
tests.
* tests/factor.test: Update.
Bugs reported by David A Bagley <bagleyd@tux.org>.
* countmail/countmail.6, phantasia/fight.c, phantasia/io.c,
sail/extern.h, sail/misc.c, snake/snake/snake.c: Update from
NetBSD CVS.
2004-01-27 Joseph S. Myers <jsm@polyomino.org.uk>
* dab/.cvsignore: New file.
* Makeconfig.in: Add STRLCPY_DEFS and GETPROGNAME_DEFS.
* arithmetic/Makefrag, fortune/fortune/Makefrag, rogue/Makefrag:
Use them.
* dm/utmpentry.c, dm/utmpentry.h: New from NetBSD CVS of
usr.bin/who.
* COPYING: Update.
* dm/dm.c: Follow NetBSD in use of this utmp handling.
* dm/Makefrag: Update.
* exec.objs: Update.
* lib/getprogname.c: New file.
* include/stdlib.h: Update.
* configure: Check for getprogname.
* arithmetic/arithmetic.c, fortune/fortune/fortune.c: Follow
NetBSD in use of getprogname().
* exec.objs: Update.
* adventure/extern.h, adventure/main.c, arithmetic/arithmetic.c,
atc/extern.h, atc/input.c, backgammon/backgammon/backlocal.h,
backgammon/backgammon/move.c, backgammon/common_source/back.h,
backgammon/teachgammon/tutor.h, banner/banner.c,
battlestar/battlestar.c, battlestar/extern.h, battlestar/fly.c,
battlestar/init.c, battlestar/parse.c, bcd/bcd.c,
boggle/boggle/bog.c, boggle/boggle/extern.h, boggle/boggle/mach.c,
boggle/boggle/prtable.c, boggle/boggle/timer.c, caesar/caesar.c,
canfield/canfield/canfield.c, canfield/cfscores/cfscores.c,
cribbage/crib.c, cribbage/cribbage.h, dm/dm.c, fish/fish.c,
fortune/fortune/fortune.c, fortune/unstr/unstr.c, gomoku/gomoku.h,
gomoku/main.c, gomoku/pickmove.c, hack/def.func_tab.h,
hack/extern.h, hack/hack.apply.c, hack/hack.do.c, hack/hack.h,
hack/hack.invent.c, hack/hack.main.c, hack/hack.shk.c,
hack/hack.vault.c, hack/hack.zap.c, hangman/hangman.h,
hunt/hunt/hunt.c, hunt/hunt/otto.c, hunt/hunt/playit.c,
hunt/huntd/driver.c, hunt/huntd/execute.c, hunt/huntd/expl.c,
hunt/huntd/faketalk.c, hunt/huntd/hunt.h, hunt/huntd/makemaze.c,
hunt/huntd/shots.c, hunt/huntd/talk_ctl.h, mille/mille.h,
mille/table.c, mille/varpush.c, monop/cards.c, monop/execute.c,
monop/getinp.c, monop/houses.c, monop/malloc.c, monop/monop.c,
monop/monop.def, monop/monop.ext, monop/monop.h, monop/morg.c,
monop/print.c, monop/prop.c, monop/trade.c, morse/morse.c,
number/number.c, pig/pig.c, pom/pom.c, ppt/ppt.c, primes/primes.c,
quiz/quiz.c, quiz/quiz.h, quiz/rxp.c, rain/rain.c,
random/random.c, robots/auto.c, robots/main.c, robots/robots.h,
robots/score.c, rogue/main.c, rogue/rogue.h, sail/extern.h,
sail/pl_1.c, sail/sync.c, snake/snake/snake.c,
snake/snscore/snscore.c, tetris/input.h, tetris/scores.c,
tetris/scores.h, tetris/screen.c, tetris/screen.h,
tetris/tetris.c, tetris/tetris.h, trek/compkl.c, trek/computer.c,
trek/dumpgame.c, trek/getpar.c, trek/getpar.h, trek/main.c,
trek/torped.c, trek/trek.h, worm/worm.c, worms/worms.c,
wump/wump.c: Update from NetBSD CVS.
* adventure/extern.h, adventure/main.c, arithmetic/arithmetic.c,
atc/extern.h, atc/input.c, backgammon/backgammon/backlocal.h,
backgammon/backgammon/move.c, backgammon/common_source/back.h,
backgammon/teachgammon/tutor.h, banner/banner.c,
battlestar/battlestar.c, battlestar/extern.h, battlestar/fly.c,
battlestar/init.c, battlestar/parse.c, bcd/bcd.c,
boggle/boggle/bog.c, boggle/boggle/extern.h, boggle/boggle/mach.c,
boggle/boggle/prtable.c, boggle/boggle/timer.c, caesar/caesar.c,
canfield/canfield/canfield.c, canfield/cfscores/cfscores.c,
cribbage/crib.c, cribbage/cribbage.h, dm/dm.c, fish/fish.c,
fortune/fortune/fortune.c, fortune/unstr/unstr.c, gomoku/gomoku.h,
gomoku/main.c, hack/def.func_tab.h, hack/extern.h,
hack/hack.apply.c, hack/hack.do.c, hack/hack.h,
hack/hack.invent.c, hack/hack.main.c, hack/hack.shk.c,
hack/hack.vault.c, hack/hack.zap.c, hangman/hangman.h,
hunt/hunt/hunt.c, hunt/hunt/otto.c, hunt/hunt/playit.c,
hunt/huntd/driver.c, hunt/huntd/execute.c, hunt/huntd/expl.c,
hunt/huntd/faketalk.c, hunt/huntd/hunt.h, hunt/huntd/makemaze.c,
hunt/huntd/shots.c, hunt/huntd/talk_ctl.h, mille/mille.h,
mille/table.c, mille/varpush.c, monop/cards.c, monop/execute.c,
monop/getinp.c, monop/houses.c, monop/monop.c, monop/monop.def,
monop/monop.ext, monop/monop.h, monop/morg.c, monop/print.c,
monop/prop.c, monop/trade.c, monop/malloc.c, morse/morse.c,
number/number.c, pig/pig.c, pom/pom.c, ppt/ppt.c, primes/primes.c,
quiz/quiz.c, quiz/quiz.h, quiz/rxp.c, rain/rain.c,
random/random.c, robots/auto.c, robots/main.c, robots/robots.h,
robots/score.c, rogue/main.c, rogue/rogue.h, snake/snake/snake.c,
snake/snscore/snscore.c, tetris/input.h, tetris/scores.c,
tetris/scores.h, tetris/screen.c, tetris/screen.h,
tetris/tetris.c, tetris/tetris.h, trek/compkl.c, trek/computer.c,
trek/dumpgame.c, trek/getpar.c, trek/getpar.h, trek/main.c,
trek/torped.c, trek/trek.h, worm/worm.c, worms/worms.c,
wump/wump.c: Remove uses of __P.
* THANKS: Mention David A Bagley.
* sail/pl_1.c (child): Use int for wait status.
* gomoku/gomoku.h, robots/robots.h, sail/extern.h, sail/misc.c,
sail/sync.c: Adjust system header includes.
* fortune/fortune/fortune.6.in: Update substitution for path to
fortunes directory.
* cribbage/crib.c, cribbage/cribbage.h, cribbage/io.c,
dab/Makefile.bsd, monop/misc.c, monop/monop.def, monop/monop.ext:
Update from NetBSD CVS.
2004-01-26 Joseph S. Myers <jsm@polyomino.org.uk>
* sail/main.c: Reorder includes to match NetBSD.
* cribbage/cribbage.h, cribbage/crib.c, cribbage/io.c: Rename
receive_int to receive_intr.
* hack/hack.pri.c: Fix typo in merge from NetBSD.
* configure: Consistently use balanced parentheses in case
statements.
2004-01-25 Joseph S. Myers <jsm@polyomino.org.uk>
* monop/misc.c, monop/monop.def, monop/monop.ext: Rename yn to
yncoms.
* cribbage/cribbage.h, cribbage/crib.c, cribbage/io.c: Rename rint
to receive_int.
* fortune/fortune/fortune.c: Add test for __CYGWIN__.
* configure: Test for sig_t.
* include/signal.h: Use it.
Cygwin issues reported by David A Bagley <bagleyd@tux.org>.
2004-01-16 Joseph S. Myers <jsm@polyomino.org.uk>
* wtf/acronyms, wtf/acronyms.comp: Update from NetBSD CVS.
2004-01-14 Joseph S. Myers <jsm@polyomino.org.uk>
* wtf/acronyms, wtf/acronyms.comp: Update from NetBSD CVS.
2004-01-04 Joseph S. Myers <jsm@polyomino.org.uk>
* COPYING: Note that TODO no longer contains anything from the
original bsd-games 1.3.
* phantasia/phantasia.6, wtf/acronyms, wtf/acronyms.comp: Update
from NetBSD CVS.
2004-01-02 Joseph S. Myers <jsm@polyomino.org.uk>
* atc/atc.6.in, backgammon/backgammon/main.c,
backgammon/teachgammon/data.c, caesar/caesar.c,
fortune/datfiles/fortunes, fortune/datfiles/fortunes2,
fortune/fortune/fortune.c, hack/hack.options.c, phantasia/main.c,
phantasia/misc.c, rogue/Makefile.bsd, rogue/rogue.h,
wargames/wargames.6, worm/worm.6, wtf/acronyms: Update from NetBSD
CVS.
* dab: New directory from NetBSD CVS.
* COPYING, INSTALL, README, bsd-games.lsm, Makeconfig.in,
configure, exec.libs, exec.objs: Update.
* dab/Makefrag: New file.
2003-12-18 Joseph S. Myers <jsm@polyomino.org.uk>
* Version 2.15.
* NEWS, bsd-games.lsm, bsd-games-non-free.lsm: Update.
* README: Update.
2003-12-17 Joseph S. Myers <jsm@polyomino.org.uk>
* backgammon/backgammon/main.c (main): Only score as a Gammon or a
Backgammon if the opponent hasn't removed any pieces, not if the
opponent has removed pieces but has had a piece knocked back to
the bar afterwards. Fixes Debian bug 185101 from Konstantin
Seiler <list@kseiler.de>.
* fortune/fortune/fortune.c (fortlen): Return proper fortune
length for fortune files without STR_RANDOM or STR_ORDERED rather
than comparing it to SLEN. Bug reported by Simon Williams
<simon@no-dns-yet.org.uk>.
* fortune/fortune/fortune.c (init_prob): Show residual probability
rather than non-residual in "No place to put residual probability"
error message. Distribute residual probability correctly rather
than all to one file. Patch from Mike Castle
<dalgoda@ix.netcom.com>.
* configure, Makeconfig.in, fortune/fortune/pathnames.h.in,
fortune/datfiles/Makefrag: Make fortune directory configurable;
default to NetBSD default.
* rogue/Makefrag: Don't use -fwritable-strings.
* rogue/rogue.h (struct id): Add const.
* TODO: Update.
* backgammon/teachgammon/data.c: Make tutorial text match actual
moves. From FreeBSD via OpenBSD. Fixes Debian bug 212478 from
Jim W. Jaszewski <grok@sprint.ca>.
* adventure/glorkz: Fix capitalisation of compass directions.
* phantasia/main.c (cleanup): Only close files that have been
opened successfully.
* phantasic/misc.c (error): Give error text rather than errno
number.
Patch from Joey Hess <joey@kitenet.net> for Debian bug 187251 from
Mikael Hedin <micce@debian.org>.
* wtf/acronyms: Add two acronyms suggested by Pavel Machek
<pavel@ucw.cz>.
* wargames/wargames.6: Fix typo. Patch from Joey Hess
<joeyh@debian.org>.
* hack/hack.options.c (parseoptions): Refer to 'O' rather than 'o'
as command to set options. Bug reported by Christian Garbs
<debian@cgarbs.de> in Debian bug 191452.
* caesar/caesar.c (main): Make dot and winnerdot of type double.
Patch from Jan Vornberger <jan@uos.de> in Debian bug 197816.
* tests/caesar.197816in, tests/caesar.197816out: New tests.
* tests/caesar.test: Update.
* worm/worm.6: Score is in upper right corner, not upper left
corner. Patch from Robert Hunter <roh@cryptocracy.hn.org> in
Debian bug 209034.
* atc/atc.6.in: Document that pressing return allows you to "fast
forward" the game clock. Patch from Peter Maydell
<pmaydell@chiark.greenend.org.uk> in Debian bug 216980.
* PACKAGING: Remove some old version references.
* INSTALL: Simplify and remove some obsolete information.
* adventure/Makefile.bsd, adventure/adventure.6, adventure/crc.c,
adventure/done.c, adventure/hdr.h, adventure/init.c,
adventure/io.c, adventure/main.c, adventure/save.c,
adventure/setup.c, adventure/subr.c, adventure/vocab.c,
adventure/wizard.c, arithmetic/arithmetic.6,
arithmetic/arithmetic.c, atc/Makefile.bsd, atc/atc.6.in,
atc/def.h, atc/extern.c, atc/extern.h, atc/grammar.y,
atc/graphics.c, atc/include.h, atc/input.c, atc/lex.l, atc/list.c,
atc/log.c, atc/main.c, atc/pathnames.h.in, atc/struct.h,
atc/tunable.c, atc/tunable.h, atc/update.c,
backgammon/backgammon/backgammon.6.in,
backgammon/backgammon/extra.c, backgammon/backgammon/main.c,
backgammon/backgammon/move.c, backgammon/backgammon/text.c,
backgammon/backgammon/version.c, backgammon/common_source/allow.c,
backgammon/common_source/back.h, backgammon/common_source/board.c,
backgammon/common_source/check.c,
backgammon/common_source/fancy.c, backgammon/common_source/init.c,
backgammon/common_source/odds.c, backgammon/common_source/one.c,
backgammon/common_source/save.c, backgammon/common_source/subs.c,
backgammon/common_source/table.c, backgammon/teachgammon/data.c,
backgammon/teachgammon/teach.c, backgammon/teachgammon/ttext1.c,
backgammon/teachgammon/ttext2.c, backgammon/teachgammon/tutor.c,
backgammon/teachgammon/tutor.h, banner/banner.6, banner/banner.c,
battlestar/battlestar.6, battlestar/battlestar.c,
battlestar/command1.c, battlestar/command2.c,
battlestar/command3.c, battlestar/command4.c,
battlestar/command5.c, battlestar/command6.c,
battlestar/command7.c, battlestar/cypher.c, battlestar/dayfile.c,
battlestar/dayobjs.c, battlestar/extern.h, battlestar/fly.c,
battlestar/getcom.c, battlestar/globals.c, battlestar/init.c,
battlestar/misc.c, battlestar/nightfile.c, battlestar/nightobjs.c,
battlestar/parse.c, battlestar/pathnames.h.in, battlestar/room.c,
battlestar/save.c, battlestar/words.c, bcd/bcd.6, bcd/bcd.c,
boggle/Makefile.bsd, boggle/boggle/bog.c, boggle/boggle/bog.h.in,
boggle/boggle/boggle.6, boggle/boggle/extern.h,
boggle/boggle/help.c, boggle/boggle/mach.c,
boggle/boggle/prtable.c, boggle/boggle/timer.c,
boggle/boggle/word.c, boggle/mkdict/mkdict.c,
boggle/mkindex/mkindex.c, caesar/caesar.6, caesar/caesar.c,
canfield/canfield/canfield.6.in, canfield/canfield/canfield.c,
canfield/canfield/pathnames.h.in, canfield/cfscores/cfscores.c,
countmail/countmail.6, cribbage/cards.c, cribbage/crib.c,
cribbage/cribbage.6.in, cribbage/cribbage.h, cribbage/cribcur.h,
cribbage/deck.h, cribbage/extern.c, cribbage/instr.c,
cribbage/io.c, cribbage/pathnames.h.in, cribbage/score.c,
cribbage/support.c, dm/dm.8.in, dm/dm.c, dm/dm.conf.5.in,
dm/pathnames.h.in, factor/factor.6, factor/factor.c, fish/fish.6,
fish/fish.c, fish/pathnames.h.in, fortune/datfiles/Makefile.bsd,
fortune/datfiles/farber, fortune/datfiles/fortunes,
fortune/datfiles/fortunes-o.real, fortune/datfiles/fortunes2,
fortune/datfiles/fortunes2-o.real, fortune/datfiles/limerick,
fortune/datfiles/limerick-o.real, fortune/datfiles/netbsd,
fortune/datfiles/netbsd-o.real, fortune/datfiles/startrek,
fortune/datfiles/startrek.sp.ok, fortune/datfiles/zippy,
fortune/datfiles/zippy.sp.ok, fortune/fortune/fortune.6.in,
fortune/fortune/fortune.c, fortune/fortune/pathnames.h.in,
fortune/strfile/strfile.8, fortune/strfile/strfile.c,
fortune/strfile/strfile.h, fortune/unstr/unstr.c, gomoku/bdinit.c,
gomoku/bdisp.c, gomoku/gomoku.6, gomoku/gomoku.h, gomoku/main.c,
gomoku/makemove.c, gomoku/pickmove.c, gomoku/stoc.c,
hack/COPYRIGHT, hack/COPYRIGHT-JF, hack/Makefile.bsd,
hack/alloc.c, hack/config.h, hack/date.h, hack/def.edog.h,
hack/def.eshk.h, hack/def.flag.h, hack/def.func_tab.h,
hack/def.gen.h, hack/def.gold.h, hack/def.mkroom.h,
hack/def.monst.h, hack/def.obj.h, hack/def.objclass.h,
hack/def.objects.h, hack/def.permonst.h, hack/def.rm.h,
hack/def.trap.h, hack/def.wseg.h, hack/hack.6.in,
hack/hack.Decl.c, hack/hack.apply.c, hack/hack.bones.c,
hack/hack.c, hack/hack.cmd.c, hack/hack.do.c, hack/hack.do_name.c,
hack/hack.do_wear.c, hack/hack.dog.c, hack/hack.eat.c,
hack/hack.end.c, hack/hack.engrave.c, hack/hack.fight.c,
hack/hack.h, hack/hack.invent.c, hack/hack.ioctl.c,
hack/hack.lev.c, hack/hack.main.c, hack/hack.makemon.c,
hack/hack.mfndpos.h, hack/hack.mhitu.c, hack/hack.mklev.c,
hack/hack.mkmaze.c, hack/hack.mkobj.c, hack/hack.mkshop.c,
hack/hack.mon.c, hack/hack.monst.c, hack/hack.o_init.c,
hack/hack.objnam.c, hack/hack.options.c, hack/hack.pager.c,
hack/hack.potion.c, hack/hack.pri.c, hack/hack.read.c,
hack/hack.rip.c, hack/hack.rumors.c, hack/hack.save.c,
hack/hack.search.c, hack/hack.sh, hack/hack.shk.c,
hack/hack.shknam.c, hack/hack.steal.c, hack/hack.termcap.c,
hack/hack.timeout.c, hack/hack.topl.c, hack/hack.track.c,
hack/hack.trap.c, hack/hack.tty.c, hack/hack.u_init.c,
hack/hack.unix.c, hack/hack.vault.c, hack/hack.version.c,
hack/hack.wield.c, hack/hack.wizard.c, hack/hack.worm.c,
hack/hack.worn.c, hack/hack.zap.c, hack/makedefs.c,
hack/pathnames.h.in, hack/rnd.c, hangman/endgame.c,
hangman/extern.c, hangman/getguess.c, hangman/getword.c,
hangman/hangman.6.in, hangman/hangman.h, hangman/main.c,
hangman/pathnames.h.in, hangman/playgame.c, hangman/prdata.c,
hangman/prman.c, hangman/prword.c, hangman/setup.c,
hunt/Makefile.inc.bsd, hunt/hunt/connect.c, hunt/hunt/hunt.6.in,
hunt/hunt/hunt.c, hunt/hunt/otto.c, hunt/hunt/playit.c,
hunt/huntd/answer.c, hunt/huntd/bsd.h, hunt/huntd/ctl.c,
hunt/huntd/ctl_transact.c, hunt/huntd/draw.c, hunt/huntd/driver.c,
hunt/huntd/execute.c, hunt/huntd/expl.c, hunt/huntd/extern.c,
hunt/huntd/faketalk.c, hunt/huntd/get_names.c, hunt/huntd/hunt.h,
hunt/huntd/huntd.6.in, hunt/huntd/makemaze.c,
hunt/huntd/pathname.c, hunt/huntd/shots.c, hunt/huntd/talk_ctl.h,
hunt/huntd/terminal.c, mille/comp.c, mille/end.c, mille/extern.c,
mille/init.c, mille/mille.6, mille/mille.c, mille/mille.h,
mille/misc.c, mille/move.c, mille/print.c, mille/roll.c,
mille/save.c, mille/table.c, mille/types.c, mille/varpush.c,
monop/Makefile.bsd, monop/brd.dat, monop/cards.c, monop/deck.h,
monop/execute.c, monop/getinp.c, monop/houses.c, monop/initdeck.c,
monop/jail.c, monop/malloc.c, monop/misc.c, monop/mon.dat,
monop/monop.6.in, monop/monop.c, monop/monop.def, monop/monop.ext,
monop/monop.h, monop/morg.c, monop/pathnames.h.in, monop/print.c,
monop/prop.c, monop/prop.dat, monop/rent.c, monop/roll.c,
monop/spec.c, monop/trade.c, morse/morse.c, number/number.6,
number/number.c, phantasia/Makefile.bsd, phantasia/main.c,
phantasia/misc.c, phantasia/pathnames.h.in, phantasia/phantasia.6,
phantasia/phantglobs.h, phantasia/setup.c, pig/pig.6, pig/pig.c,
pom/pom.6, pom/pom.c, ppt/ppt.c, primes/pattern.c,
primes/pr_tbl.c, primes/primes.c, primes/primes.h,
quiz/pathnames.h.in, quiz/quiz.6.in, quiz/quiz.c, quiz/quiz.h,
quiz/rxp.c, rain/rain.6, rain/rain.c, random/random.6,
random/random.c, robots/extern.c, robots/flush_in.c,
robots/init_field.c, robots/main.c, robots/make_level.c,
robots/move.c, robots/move_robs.c, robots/pathnames.h.in,
robots/play_level.c, robots/query.c, robots/rnd_pos.c,
robots/robots.6.in, robots/robots.h, robots/score.c,
rogue/USD.doc/Makefile.bsd, rogue/USD.doc/rogue.me, rogue/hit.c,
rogue/init.c, rogue/inventory.c, rogue/level.c, rogue/machdep.c,
rogue/main.c, rogue/message.c, rogue/monster.c, rogue/move.c,
rogue/object.c, rogue/pack.c, rogue/pathnames.h.in, rogue/play.c,
rogue/random.c, rogue/ring.c, rogue/rogue.6.in, rogue/rogue.h,
rogue/room.c, rogue/save.c, rogue/score.c, rogue/spec_hit.c,
rogue/throw.c, rogue/trap.c, rogue/use.c, rogue/zap.c,
sail/assorted.c, sail/dr_1.c, sail/dr_2.c, sail/dr_3.c,
sail/dr_4.c, sail/dr_5.c, sail/dr_main.c, sail/driver.h,
sail/extern.h, sail/game.c, sail/globals.c, sail/lo_main.c,
sail/machdep.h, sail/main.c, sail/misc.c, sail/parties.c,
sail/pathnames.h.in, sail/pl_1.c, sail/pl_2.c, sail/pl_3.c,
sail/pl_4.c, sail/pl_5.c, sail/pl_6.c, sail/pl_7.c,
sail/pl_main.c, sail/player.h, sail/sail.6, sail/sync.c,
sail/version.c, snake/snake/pathnames.h.in,
snake/snake/snake.6.in, snake/snake/snake.c,
snake/snscore/snscore.c, tetris/input.c, tetris/input.h,
tetris/pathnames.h.in, tetris/scores.c, tetris/scores.h,
tetris/screen.c, tetris/screen.h, tetris/shapes.c,
tetris/tetris.6.in, tetris/tetris.c, tetris/tetris.h,
trek/USD.doc/Makefile.bsd, trek/USD.doc/trek.me, trek/abandon.c,
trek/attack.c, trek/autover.c, trek/capture.c, trek/cgetc.c,
trek/check_out.c, trek/checkcond.c, trek/compkl.c,
trek/computer.c, trek/damage.c, trek/damaged.c, trek/dcrept.c,
trek/destruct.c, trek/dock.c, trek/dumpgame.c, trek/dumpme.c,
trek/dumpssradio.c, trek/events.c, trek/externs.c, trek/getcodi.c,
trek/getpar.c, trek/getpar.h, trek/help.c, trek/impulse.c,
trek/initquad.c, trek/kill.c, trek/klmove.c, trek/lose.c,
trek/lrscan.c, trek/main.c, trek/move.c, trek/nova.c, trek/out.c,
trek/phaser.c, trek/play.c, trek/ram.c, trek/ranf.c, trek/rest.c,
trek/schedule.c, trek/score.c, trek/setup.c, trek/setwarp.c,
trek/shield.c, trek/snova.c, trek/srscan.c, trek/systemname.c,
trek/torped.c, trek/trek.6, trek/trek.h, trek/visual.c,
trek/warp.c, trek/win.c, worm/worm.6, worm/worm.c, worms/worms.6,
worms/worms.c, wtf/wtf.in, wtf/wtf.6.in, wump/pathnames.h.in,
wump/wump.6, wump/wump.c: Update from NetBSD CVS.
* wtf/acronyms: Update from NetBSD CVS.
* wtf/acronyms.comp: New file from NetBSD CVS.
* wtf/Makefrag: Update.
* COPYING: Update.
* INSTALL: Note that glibc 2.3 now required at least for hunt (for
<ifaddrs.h>).
2003-11-08 Joseph S. Myers <jsm@polyomino.org.uk>
* THANKS: Update Malcolm Parsons's email address.
2003-04-01 Joseph S. Myers <jsm@polyomino.org.uk>
* Version 2.14.
* configure: Fix bug in OpenSSL support.
* NEWS, bsd-games.lsm, bsd-games-non-free.lsm: Update.
* configure, Makeconfig.in, exec.libs: Support OpenSSL for factor.
* INSTALL: Update.
* tests/factor.987654321987654,
tests/factor.987654321987654321987: New files.
* tests/factor.test: Update.
2003-03-29 Joseph S. Myers <jsm@polyomino.org.uk>
* hack/COPYRIGHT, hack/COPYRIGHT-JF, hack/alloc.c, hack/config.h,
hack/date.h, hack/def.edog.h, hack/def.eshk.h, hack/def.flag.h,
hack/def.func_tab.h, hack/def.gen.h, hack/def.gold.h,
hack/def.mkroom.h, hack/def.monst.h, hack/def.obj.h,
hack/def.objclass.h, hack/def.objects.h, hack/def.permonst.h,
hack/def.rm.h, hack/def.trap.h, hack/def.wseg.h, hack/hack.6.in,
hack/hack.Decl.c, hack/hack.apply.c, hack/hack.bones.c,
hack/hack.c, hack/hack.cmd.c, hack/hack.do.c, hack/hack.do_name.c,
hack/hack.do_wear.c, hack/hack.dog.c, hack/hack.eat.c,
hack/hack.end.c, hack/hack.engrave.c, hack/hack.fight.c,
hack/hack.h, hack/hack.invent.c, hack/hack.ioctl.c,
hack/hack.lev.c, hack/hack.main.c, hack/hack.makemon.c,
hack/hack.mfndpos.h, hack/hack.mhitu.c, hack/hack.mklev.c,
hack/hack.mkmaze.c, hack/hack.mkobj.c, hack/hack.mkshop.c,
hack/hack.mon.c, hack/hack.monst.c, hack/hack.o_init.c,
hack/hack.objnam.c, hack/hack.options.c, hack/hack.pager.c,
hack/hack.potion.c, hack/hack.pri.c, hack/hack.read.c,
hack/hack.rip.c, hack/hack.rumors.c, hack/hack.save.c,
hack/hack.search.c, hack/hack.sh, hack/hack.shk.c,
hack/hack.shknam.c, hack/hack.steal.c, hack/hack.termcap.c,
hack/hack.timeout.c, hack/hack.topl.c, hack/hack.track.c,
hack/hack.trap.c, hack/hack.tty.c, hack/hack.u_init.c,
hack/hack.unix.c, hack/hack.vault.c, hack/hack.version.c,
hack/hack.wield.c, hack/hack.wizard.c, hack/hack.worm.c,
hack/hack.worn.c, hack/hack.zap.c, hack/makedefs.c, hack/rnd.c:
Hack is now BSD-licensed. Thanks to Andries Brouwer, Jay Fenlason
and CWI <http://www.cwi.nl/~aeb/games/hack/hack.html>. Via
OpenBSD.
* COPYING, README, README.non-free, bsd-games.lsm,
bsd-games-non-free.lsm: Update.
* quiz/datfiles/europe: Yugoslavia has changed its name to Serbia
and Montenegro.
* quiz/datfiles/europe: The Hague is not the capital of the
Netherlands. Reported by Hugo van Galen <hugo@Dot.net> (in the
Netherlands) and Florian Boehl <flo@namensraumverschmutzung.net>.
2003-03-28 Joseph S. Myers <jsm@polyomino.org.uk>
* Makefile.bsd, Makefile.inc.bsd, adventure/Makefile.bsd,
arithmetic/arithmetic.6, arithmetic/arithmetic.c, atc/atc.6.in,
backgammon/backgammon/backgammon.6.in,
backgammon/common_source/Makefile.bsd,
backgammon/teachgammon/Makefile.bsd, banner/banner.6,
battlestar/battlestar.6, bcd/bcd.6, boggle/Makefile.bsd,
boggle/boggle/boggle.6, boggle/boggle/timer.c,
boggle/mkdict/Makefile.bsd, boggle/mkindex/Makefile.bsd,
caesar/caesar.6, canfield/canfield/canfield.6.in,
canfield/cfscores/Makefile.bsd, countmail/countmail,
countmail/countmail.6, cribbage/cribbage.6.in,
cribbage/cribbage.h, cribbage/extern.c, cribbage/io.c,
cribbage/score.c, cribbage/support.c, dm/Makefile.bsd, dm/dm.8.in,
dm/dm.c, dm/dm.conf.5.in, factor/Makefile.bsd, factor/factor.6,
factor/factor.c, fortune/datfiles/Makefile.bsd,
fortune/datfiles/fortunes, fortune/datfiles/fortunes2,
fortune/datfiles/fortunes2-o.real, fortune/datfiles/limerick,
fortune/datfiles/netbsd, fortune/fortune/fortune.6.in,
fortune/fortune/fortune.c, fortune/strfile/strfile.8,
fortune/unstr/Makefile.bsd, gomoku/gomoku.6, hack/Makefile.bsd,
hack/extern.h, hack/hack.6.in, hack/hack.main.c,
hack/hack.mkshop.c, hack/hack.pri.c, hack/hack.topl.c,
hack/hack.tty.c, hack/help, hangman/hangman.6.in,
hunt/Makefile.inc.bsd, hunt/hunt/hunt.6.in, hunt/hunt/hunt.c,
hunt/hunt/playit.c, hunt/huntd/answer.c, hunt/huntd/bsd.h,
hunt/huntd/ctl_transact.c, hunt/huntd/driver.c,
hunt/huntd/extern.c, hunt/huntd/faketalk.c, hunt/huntd/hunt.h,
hunt/huntd/huntd.6.in, hunt/huntd/terminal.c, mille/mille.6,
mille/misc.c, monop/Makefile.bsd, monop/cards.c, monop/getinp.c,
monop/monop.6.in, monop/roll.c, morse/Makefile.bsd,
phantasia/Makefile.bsd, phantasia/misc.c, phantasia/phantasia.6,
pom/pom.6, ppt/Makefile.bsd, ppt/ppt.c, primes/Makefile.bsd,
quiz/datfiles/posneg, quiz/quiz.6.in, quiz/rxp.c, rain/rain.6,
random/random.6, robots/auto.c, robots/init_field.c,
robots/move.c, robots/robots.6.in, robots/robots.h,
rogue/Makefile.bsd, rogue/USD.doc/Makefile.bsd, rogue/hit.c,
rogue/inventory.c, rogue/level.c, rogue/message.c,
rogue/rogue.6.in, rogue/rogue.h, rogue/save.c, rogue/score.c,
sail/sail.6, snake/snake/snake.6.in, snake/snscore/Makefile.bsd,
tetris/input.c, tetris/scores.c, tetris/screen.c, tetris/shapes.c,
tetris/tetris.6.in, tetris/tetris.c, trek/USD.doc/Makefile.bsd,
trek/damage.c, trek/getpar.c, trek/trek.6.in, wargames/wargames.6,
worm/worm.6, worms/worms.6, wtf/acronyms, wtf/wtf.in,
wtf/wtf.6.in: Update from NetBSD CVS.
* include/sys/poll.h: New file.
* lib/strlcpy.c: New file.
* configure: Test for strlcpy.
* include/string.h: New file.
* exec.objs: Use it for rogue.
* trek/trek.6.in: Rename to trek.6.
* substfiles2: Update.
* COPYING: Update.
* INSTALL: No longer suggest not using groff's macros.
* PACKAGING: Update.
* SECURITY: Update.
2002-06-18 Joseph S. Myers <jsm@polyomino.org.uk>
* BUGS, ChangeLog, INSTALL, README, README.non-free, SECURITY,
TODO, bsd-games-non-free.lsm, bsd-games.lsm, dm/README.linux,
hunt/README.linux, trek/README.linux: Consistently use
jsm@polyomino.org.uk as email address.
2002-01-26 Joseph S. Myers <jsm@polyomino.org.uk>
* hangman/extern.c, hangman/getword.c, hangman/hangman.6.in,
hangman/hangman.h, hangman/main.c: Update from NetBSD CVS.
2002-01-20 Joseph S. Myers <jsm@polyomino.org.uk>
* README: Note this collection supports GNU Hurd as well as Linux.
* COPYING: Update.
2002-01-19 Joseph S. Myers <jsm@polyomino.org.uk>
* phantasia/fight.c (encounter): Make firsthit and flockcnt
volatile.
* backgammon/common_source/Makefile.bsd,
backgammon/teachgammon/Makefile.bsd, boggle/mkdict/Makefile.bsd,
boggle/mkindex/Makefile.bsd, canfield/cfscores/Makefile.bsd,
fortune/datfiles/netbsd, fortune/fortune/fortune.c,
fortune/unstr/Makefile.bsd, morse/Makefile.bsd, number/number.6,
phantasia/Makefile.bsd, ppt/Makefile.bsd, primes/Makefile.bsd,
snake/snscore/Makefile.bsd, wtf/acronyms: Update from NetBSD CVS.
* hangman/main.c: Include <err.h>.
* hangman/extern.c, hangman/getword.c, hangman/hangman.6.in,
hangman/hangman.h, hangman/main.c: Allow minimum word length to be
set on the command line. Patch from Joey Hess <joeyh@debian.org>.
* COPYING: Update.
2001-12-29 Joseph S. Myers <jsm@polyomino.org.uk>
* phantasia/Makefrag (phantasia_install): Use $(INSTALL_PREFIX)
when copying score files. Patch from Joey Hess
<joeyh@debian.org>.
* AUTHORS, THANKS: Update email address for Joey Hess. Patch from
Joey Hess <joeyh@debian.org>.
2001-12-08 Joseph S. Myers <jsm@polyomino.org.uk>
* battlestar/fly.c, cribbage/crib.c, fortune/datfiles/fortunes2,
fortune/datfiles/fortunes2-o.real, hangman/setup.c, mille/mille.c,
phantasia/Makefile.bsd, phantasia/main.c, robots/main.c,
rogue/init.c, sail/pl_7.c, worm/worm.c, wtf/acronyms: Update from
NetBSD CVS.
2001-11-18 Joseph S. Myers <jsm@polyomino.org.uk>
* wtf/acronyms: Update from NetBSD CVS.
* battlestar/com1.c: Rename to battlestar/command1.c.
* battlestar/com2.c: Rename to battlestar/command2.c.
* battlestar/com3.c: Rename to battlestar/command3.c.
* battlestar/com4.c: Rename to battlestar/command4.c.
* battlestar/com5.c: Rename to battlestar/command5.c.
* battlestar/com6.c: Rename to battlestar/command6.c.
* battlestar/com7.c: Rename to battlestar/command7.c.
From NetBSD CVS.
* exec.objs: Update.
* battlestar/Makefile.bsd, battlestar/command1.c,
battlestar/command2.c, battlestar/command3.c,
battlestar/command4.c, battlestar/command5.c,
battlestar/command6.c, battlestar/command7.c,
fortune/datfiles/Makefile.bsd, fortune/datfiles/limerick,
fortune/fortune/fortune.c, hack/hack.termcap.c, tetris/screen.c:
Update from NetBSD CVS.
* fortune/datfiles/farber: New file. From NetBSD CVS.
* fortune/datfiles/Makefrag: Update.
* tetris/screen.c (scr_set): Set VMIN and VTIME.
2001-10-06 Joseph S. Myers <jsm@polyomino.org.uk>
* backgammon/backgammon/main.c, hack/hack.fix, monop/monop.c,
phantasia/phantdefs.h, sail/pl_7.c, wargames/wargames: Update from
NetBSD CVS.
* hunt/hunt/hunt.6.in: Correct slime costs. Bug reported by
Britton Leo Kerin <fsblk@aurora.uaf.edu>.
2001-09-02 Joseph S. Myers <jsm@polyomino.org.uk>
* adventure/setup.c, atc/include.h, boggle/mkdict/mkdict.c,
fortune/datfiles/fortunes, fortune/datfiles/fortunes-o.real,
monop/execute.c, sail/main.c, snake/snake/snake.c, worm/worm.6,
worm/worm.c, wump/wump.c, wtf/acronyms: Update from NetBSD CVS.
2001-08-30 Joseph S. Myers <jsm@polyomino.org.uk>
* Version 2.13.
* COPYING, NEWS, TODO, bsd-games-non-free.lsm, bsd-games.lsm:
Update.
* phantasia/Makefrag: Update copyright dates.
* hunt/hunt/hunt.c, hunt/huntd/get_names.c: Define MAXHOSTNAMELEN
if not already defined. May fix Hurd compilation (original patch
from Igor Khavkine <i_khavki@alcor.concordia.ca>).
* snake/snake/snake.c (main): Control -d by #ifdef DEBUG; adjust
usage message accordingly. Bug reported by Malcolm Parsons
<malcolm@ivywell.screaming.net>.
* mille/save.c (save): Handle '\r' the same as '\n'. Bug reported
by Nicolas Lichtmaier <nick@technisys.com.ar>.
* snake/snake/snake.c (post): Always lseek back to the beginning
of the file. Patch from Malcolm Parsons
<malcolm@ivywell.screaming.net>.
* wump/wump.c (gcd): New function.
(cave_init): Ensure that gcd of (delta + 1) and room_num is 1.
Based on bug report and patch by <afghan@afghanhound.org.uk>.
* worm/worm.c: Keep track of visible worm length.
(newpos): If nowhere is available for the new prize, have the
player win rather than hanging. Bug reported by Malcolm Parsons
<malcolm@ivywell.screaming.net>.
* phantasia/Makefrag: Use a stamp file for generating score files.
* phantasia/.cvsignore: Update.
2001-08-29 Joseph S. Myers <jsm@polyomino.org.uk>
* worm/worm.c (main): Check for too small a screen size.
(newpos): Fix off-by-one error preventing the prize from being
placed on the top line.
(process): Position score appropriately for different width
screens.
* worm/worm.c: Whitespace tweak.
* worm/worm.c, worm/worm.6: Remove documented bug with long worm
lengths, and improve handling of non-standard screen sizes. From
OpenBSD.
* wargames/wargames: Allow - in game names. Bug reported by Guus
Sliepen <guus@sliepen.warande.net>.
* wtf/acronyms: Add AIUI. Suggestion from Adam Olsen
<adamolsen@technologist.com>.
* phantasia/Makefrag: Fix typo.
* arithmetic/arithmetic.6, atc/atc.6.in, atc/list.c,
backgammon/backgammon/backgammon.6,
backgammon/teachgammon/teach.c, battlestar/battlestar.6,
battlestar/com2.c, battlestar/parse.c, bcd/bcd.6,
boggle/boggle/boggle.6, canfield/canfield/canfield.6.in,
cribbage/cribbage.6.in, factor/factor.6, fish/fish.6,
fortune/datfiles/fortunes, fortune/datfiles/fortunes2,
fortune/datfiles/fortunes2-o.real, fortune/datfiles/netbsd,
fortune/datfiles/startrek, fortune/fortune/fortune.6.in,
fortune/fortune/fortune.c, fortune/strfile/strfile.c, hack/date.h,
hack/def.func_tab.h, hack/def.monst.h, hack/def.objclass.h,
hack/def.objects.h, hack/def.permonst.h, hack/extern.h,
hack/hack.6.in, hack/hack.Decl.c, hack/hack.apply.c,
hack/hack.bones.c, hack/hack.c, hack/hack.cmd.c, hack/hack.do.c,
hack/hack.do_name.c, hack/hack.dog.c, hack/hack.eat.c,
hack/hack.end.c, hack/hack.engrave.c, hack/hack.fight.c,
hack/hack.h, hack/hack.invent.c, hack/hack.lev.c,
hack/hack.main.c, hack/hack.makemon.c, hack/hack.mhitu.c,
hack/hack.mklev.c, hack/hack.mkmaze.c, hack/hack.mkobj.c,
hack/hack.mkshop.c, hack/hack.mon.c, hack/hack.monst.c,
hack/hack.o_init.c, hack/hack.objnam.c, hack/hack.pager.c,
hack/hack.potion.c, hack/hack.pri.c, hack/hack.read.c,
hack/hack.rip.c, hack/hack.save.c, hack/hack.shk.c,
hack/hack.shknam.c, hack/hack.timeout.c, hack/hack.topl.c,
hack/hack.trap.c, hack/hack.tty.c, hack/hack.u_init.c,
hack/hack.unix.c, hack/hack.vault.c, hack/hack.wield.c ,
hack/hack.wizard.c, hack/hack.zap.c, hack/makedefs.c,
hunt/hunt/hunt.6.in, hunt/huntd/ctl_transact.c,
hunt/huntd/huntd.6.in, mille/mille.c, monop/Makefile.bsd,
monop/initdeck.c, monop/monop.6.in, phantasia/Makefile.bsd,
phantasia/phantasia.6, phantasia/setup.c, pom/pom.6,
quiz/datfiles/collectives, quiz/datfiles/flowers, quiz/quiz.6.in,
rain/rain.6, robots/robots.6.in, rogue/USD.doc/rogue.me,
rogue/score.c, sail/sail.6, snake/snake/snake.6.in,
tetris/tetris.6.in, trek/DOC/read_me.nr, trek/DOC/trekmanual.nr,
trek/events.c, trek/main.c, trek/trek.6.in, trek/warp.c,
worms/worms.6, wtf/wtf.6.in: Update from NetBSD CVS.
* wtf/acronyms: Update from NetBSD CVS.
* phantasia/Makefrag: Update to build generated files in source
directory rather than on install.
* phantasia/.cvsignore: Update.
* atc/include.h, hunt/huntd/driver.c, monop/execute.c: Include
<time.h>.
* sail/misc.c: Include <stdlib.h>.
2001-08-02 Joseph S. Myers <jsm@polyomino.org.uk>