File: ChangeLog

package info (click to toggle)
bsdgames 2.17-19
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 10,568 kB
  • ctags: 6,792
  • sloc: ansic: 80,041; sh: 1,452; cpp: 1,154; yacc: 321; lex: 75; makefile: 55; sed: 13; csh: 5
file content (5957 lines) | stat: -rw-r--r-- 201,795 bytes parent folder | download | duplicates (17)
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
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
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>

	* README, PACKAGING: Warn about inclusion of cryptographic
	software.

2001-03-24  Joseph S. Myers  <jsm@polyomino.org.uk>

	* hack/hack.cmd.c: Whitespace adjustments for NetBSD alignment.

	* arithmetic/arithmetic.c, banner/banner.6,
	fortune/datfiles/fortunes, fortune/datfiles/fortunes2-o.real,
	fortune/fortune/fortune.c, wtf/acronyms: Update from NetBSD CVS
	(but don't apply __progname changes).

2001-03-19  Joseph S. Myers  <jsm@polyomino.org.uk>

	* bsd-games.lsm (Primary-site), bsd-games-non-free.lsm
	(Primary-site): Change metalab.unc.edu to ibiblio.org.

2001-03-03  Joseph S. Myers  <jsm@polyomino.org.uk>

	* install-man.in, install-score.in: Use POSIX "chown user:group"
	instead of GNU "chown user.group".

2001-02-08  Joseph S. Myers  <jsm@polyomino.org.uk>

	* rogue/USD.doc/rogue.me: Fix typo (s/scroll/potion/).  Reported
	by Lidovski Vladimir <yyterry@chat.ru>.

2001-02-07  Joseph S. Myers  <jsm@polyomino.org.uk>

	* adventure/hdr.h, adventure/init.c, arithmetic/arithmetic.c,
	atc/atc.6.in, atc/extern.h, atc/input.c, atc/log.c, atc/main.c,
	atc/update.c, backgammon/Makefile.bsd,
	backgammon/Makefile.inc.bsd, backgammon/teachgammon/teach.c,
	boggle/Makefile.bsd, boggle/boggle/help.c, boggle/boggle/mach.c,
	boggle/boggle/timer.c, boggle/boggle/word.c, cribbage/crib.c,
	dm/dm.c, fortune/Makefile.bsd, fortune/datfiles/Makefile.bsd,
	fortune/datfiles/fortunes, fortune/datfiles/fortunes-o.real,
	fortune/datfiles/fortunes-o.sp.ok, fortune/datfiles/fortunes2,
	fortune/datfiles/netbsd, fortune/fortune/fortune.c, patching file
	fortune/strfile/strfile.8, gomoku/bdisp.c, hack/config.h,
	hack/def.monst.h, hack/def.rm.h, hack/extern.h, hack/hack.6.in,
	hack/hack.cmd.c, hack/hack.h, hack/hack.options.c,
	hack/hack.read.c, hack/hack.tty.c, hack/hack.unix.c,
	hunt/hunt/hunt.c, hunt/hunt/otto.c, hunt/huntd/driver.c,
	hunt/huntd/faketalk.c, hunt/huntd/get_names.c, monop/misc.c,
	monop/monop.6.in, monop/prop.c, phantasia/phantglobs.h,
	primes/pr_tbl.c, primes/primes.c, quiz/datfiles/midearth,
	quiz/datfiles/pres, robots/main.c, robots/move_robs.c,
	robots/play_level.c, rogue/rogue.h, sail/assorted.c,
	sail/display.h, 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/main.c, sail/misc.c, sail/parties.c, 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/restart.h,
	sail/sync.c, trek/externs.c, trek/lose.c, trek/play.c, trek/win.c,
	wtf/wtf.in: Update from NetBSD CVS.
	* sail/main.c: Include <time.h>.
	* COPYING: Update.

	* wtf/acronyms: Update from NetBSD CVS.

2001-01-11  Joseph S. Myers  <jsm@polyomino.org.uk>

	* mkdep: Update to work with current CVS GCC.
	* COPYING: Update copyright dates.

2000-12-20  Joseph S. Myers  <jsm@polyomino.org.uk>

	* rain/rain.c (main): If delay is zero, do tcdrain(STDOUT_FILENO)
	at the end of each iteration to avoid buffered output preventing
	Ctrl-C from working within a reasonable time.

2000-10-17  Joseph S. Myers  <jsm@polyomino.org.uk>

	* cribbage/cribbage.h: Mark msg() and addmsg() with printf format
	attributes.
	* hack/extern.h: Make vpline() with printf format attribute.

	* monop/misc.c (next_play): Fix undefined order of side effects.
	* monop/prop.c (bid): Likewise.

2000-09-25  Joseph S. Myers  <jsm@polyomino.org.uk>

	* Version 2.12.

	* NEWS, bsd-games.lsm, bsd-games-non-free.lsm: Update.

	* battlestar/com2.c, battlestar/com4.c, battlestar/com5.c,
	battlestar/cypher.c, battlestar/extern.h, battlestar/globals.c,
	battlestar/words.c: Update from NetBSD CVS after merge.

	* battlestar/extern.h: Add AUXVERB.
	* battlestar/words.c (wlist): Use AUXVERB for "climb", "move" and
	"make".
	* battlestar/cypher.c (cypher): Object to words in the place for a
	verb that aren't a VERB or KNIFE.  Allow for AUXVERBs.
	* battlestar/com2.c (put), battlestar/com4.c (take): When creating
	new verbs from "put on", "put down" and "take off", make their
	type be VERB.
	Partly from Paul Janzen <pjanzen@foatdi.harvard.edu>.
	* tests/battlestar.out3: Update.
	* tests/battlestar.in42, tests/battlestar.out42,
	tests/battlestar.in43, tests/battlestar.out43: New tests.
	* tests/battlestar.test: Update.

	* battlestar/extern.h: Add flags OBJ_PERSON and OBJ_NONOBJ.
	* battlestar/globals.c (objflags): Use them.

	* battlestar/extern.h: Define new macros for handling "a" versus
	"an" and "is" versus "are" wording issues.
	* battlestar/globals.c (objflags): Add OBJ_AN flags; reformat.
	From OpenBSD.
	* battlestar/com2.c (wearit, murder), battlestar/com4.c (take,
	eat): Use these macros.
	* tests/battlestar.in41, tests/battlestar.out41: New test.
	* tests/battlestar.test: Update.

	* battlestar/cypher.c (cypher): Remove excess blank lines.  From
	OpenBSD.

	* battlestar/com5.c (love): Fix loving already loved goddess;
	avoid fallthrough after loving goddess; give error on "love
	amulet".  From OpenBSD.
	* tests/battlestar.in40, tests/battlestar.out40: New test.
	* tests/battlestar.test: Update.

	* atc/atc.6.in, hack/Makefile.bsd: Update from NetBSD CVS.
	* battlestar/battlestar.c, battlestar/com1.c, battlestar/com2.c,
	battlestar/com3.c, battlestar/com4.c, battlestar/com5.c,
	battlestar/com6.c, battlestar/com7.c, battlestar/cypher.c,
	battlestar/dayfile.c, battlestar/extern.h, battlestar/fly.c,
	battlestar/getcom.c, battlestar/globals.c, battlestar/nightfile.c,
	battlestar/parse.c, battlestar/room.c, battlestar/words.c: Update
	from NetBSD CVS after merge.

	* battlestar/com3.c (jump): Use defined constant FINAL instead of
	hardcoded number 275.  From OpenBSD.

	* battlestar/com2.c (murder): Fix logic of use of n and wordnumber
	when using laser.  From OpenBSD.
	* tests/battlestar.in39, tests/battlestar.out39: New test.
	* tests/battlestar.test: Update.

2000-09-24  Joseph S. Myers  <jsm@polyomino.org.uk>

	* NEWS, TODO: Update.

	* COPYING, INSTALL, NEWS, PACKAGING, README, SECURITY: Don't use
	ASCII backquotes and neutral apostrophes as matched quotes.

	* battlestar/getcom.c (getcom): If a line of standard input goes
	beyond our buffer, discard extra characters rather than reading
	them as our next command.  From OpenBSD.

	* battlestar/cypher.c (cypher): Improve messages when WEIGHT or
	CUMBER are zero.

	* battlestar/com2.c (ravage), battlestar/com3.c (bury),
	battlestar/com5.c (kiss, love, give), battlestar/com6.c (ride):
	Add explicit no-ops to empty loops following the NetBSD style
	guide.

	* battlestar/extern.h, battlestar/parse.c, battlestar/globals.c:
	Make hash table static in parse.c.

	* battlestar/cypher.c (cypher): For INVEN, give more sensible
	messages when WEIGHT or CUMBER are zero.

2000-09-23  Joseph S. Myers  <jsm@polyomino.org.uk>

	* battlestar/globals.c (objdes, objsht): Use NULL instead of 0;
	from OpenBSD.  Also add or adjust comments.

	* battlestar/com2.c (murder), battlestar/com3.c (shoot),
	battlestar/com4.c (take): Correct "dont" to "don't".  From
	OpenBSD.
	* tests/battlestar.out28: Update.

	* battlestar/parse.c: Make local functions static.
	* battlestar/extern.h: Remove declarations of functions now static
	in parse.c.

	* battlestar/com4.c (eat): Check first for having the object to be
	eaten, then for needing a knife, then for being stuffed.  Also
	give a better message for things it doesn't make sense to eat.
	From OpenBSD.
	* tests/battlestar.in38, tests/battlestar.out38: New test.
	* tests/battlestar.test: Update.

	* battlestar/fly.c: Remove abs() macro; make local variables and
	functions static.
	* battlestar/extern.h: Remove declarations of functions now static
	in fly.c

	* battlestar/com1.c (news): Don't let CUMBER go negative.
	* battlestar/cypher.c (cypher): For INVEN, show -1% if CUMBER is
	zero.

	* battlestar/com4.c (drop): Disambiguate BODY; handle "kick
	door".  From OpenBSD.
	* tests/battlestar.in32, tests/battlestar.out32,
	tests/battlestar.in33, tests/battlestar.out33,
	tests/battlestar.in34, tests/battlestar.out34,
	tests/battlestar.in35, tests/battlestar.out35,
	tests/battlestar.in36, tests/battlestar.out36,
	tests/battlestar.in37, tests/battlestar.out37: New tests.
	* tests/battlestar.test: Update.

2000-09-22  Joseph S. Myers  <jsm@polyomino.org.uk>

	* battlestar/com5.c (love): Allow for bathing goddess; better
	message when the lover is not present or for certain choices of
	lover.  From OpenBSD.

	* battlestar/com2.c (ravage): Allow for the bathing goddess.  From
	OpenBSD.

	* battlestar/extern.h: Add OBJ_PLURAL, objflags and
	is_plural_object.
	* battlestar/globals.c: Add objflags.
	* battlestar/com2.c (wearit), battlestar/com3.c (shoot),
	battlestar/com4.c (take, eat): Use is_plural_object rather than
	looking for a final 's'.
	* tests/battlestar.in31, tests/battlestar.out31: New test.
	* tests/battlestar.test: Update.

	* battlestar/com4.c (drop): When kicking, check for objects being
	worn or not present.  From OpenBSD.
	* tests/battlestar.in29, tests/battlestar.out29,
	tests/battlestar.in30, tests/battlestar.out30: New tests.
	* tests/battlestar.test: Update.

	* battlestar/com4.c (take): Check for the object not being present
	before checking for it being too heavy or bulky.
	* tests/battlestar.in28, tests/battlestar.out28: New test.
	* tests/battlestar.test: Update.

2000-09-21  Joseph S. Myers  <jsm@polyomino.org.uk>

	* battlestar/cypher.c (cypher): Give appropriate messages for
	verbs applied to "all" where nothing relevant is present.  From
	OpenBSD.
	* tests/battlestar.in27, tests/battlestar.out27: New test.
	* tests/battlestar.test: Update.

	* battlestar/com2.c (wearit, use, murder), battlestar/com3.c
	(shoot), battlestar/com4.c (take, throw, drop, eat),
	battlestar/com6.c (dooropen), battlestar/cypher.c (cypher),
	battlestar/parse.c (parse): Move all discarding of adjectives to
	parse().  From Paul Janzen <pjanzen@foatdi.harvard.edu>.  Fixes
	crash on "carry old all", shown up by fuzz testing.
	* tests/battlestar.in26, tests/battlestar.out26: New test.
	* tests/battlestar.test: Update.

	* battlestar/com2.c (murder): Give error rather than crashing on
	"kill all".  From OpenBSD.
	* tests/battlestar.in25, tests/battlestar.out25: New test.
	* tests/battlestar.test: Update.

	* battlestar/extern.h: Define and use WORDLEN.  From OpenBSD.
	* battlestar/globals.c: Also use WORDLEN.  From OpenBSD.
	* battlestar/battlestar.c (main): Use NWORD rather than 20 (from
	OpenBSD).  Avoid off-by-one error by using NWORD - 1.
	* battlestar/cypher.c (cypher): Increment wordnumber after INVEN.
	* battlestar/getcom.c (getword): Avoid overflowing elements of the
	words array.  From OpenBSD.
	* battlestar/words.c (wlist): Parse "," as AND.  From OpenBSD.
	* battlestar/parse.c (parse): Trim AND AND.  When an OBJECT AND
	EVERYTHING or NOUNS AND EVERYTHING sequence occurs, move the
	EVERYTHING to the beginning.  Trim EVERYTHING AND EVERYTHING.
	From OpenBSD.  Also disable parsing of "," as AND if followed by a
	verb.
	* tests/battlestar.in21, tests/battlestar.out21,
	tests/battlestar.in22, tests/battlestar.out22,
	tests/battlestar.in23, tests/battlestar.out23,
	tests/battlestar.in24, tests/battlestar.out24: New tests.
	* tests/battlestar.test: Update.

	* battlestar/com2.c (wearit): Don't attempt to wear anything with
	no short description.
	* tests/battlestar.in20, tests/battlestar.out20: New tests.
	* tests/battlestar.test: Update.

	* battlestar/com2.c (wearit): Partly from OpenBSD: don't try to
	wear anything that isn't OBJECT or NOUNS, and don't try to wear
	DOOR.  Fixes with a different patch a bug report from Peter
	Maydell <pmaydell@chiark.greenend.org.uk>.
	* tests/battlestar.in16, tests/battlestar.out16,
	tests/battlestar.in17, tests/battlestar.out17,
	tests/battlestar.in18, tests/battlestar.out18,
	tests/battlestar.in19, tests/battlestar.out19: New tests.
	* tests/battlestar.test: Update.

	* battlestar/com2.c (murder): From OpenBSD: shoot with laser if no
	hand-to-hand weapon available.

2000-09-20  Joseph S. Myers  <jsm@polyomino.org.uk>

	* battlestar/getcom.c (getcom): die() on EOF; based on OpenBSD.
	* tests/battlestar.out15: New test.
	* tests/battlestar.test: Update.

	* battlestar/com6.c (open_score_file): If BATTLESTAR_QUIET is set
	in the environment, don't give a warning.
	* tests/battlestar.test: Set BATTLESTAR_QUIET so tests can be done
	as a user without write access to the log file.

	* battlestar/com5.c (kiss): From OpenBSD, "take" the bathing
	goddess if required; give a better message when trying to kiss a
	person who is not present.
	* tests/battlestar.in14, tests/battlestar.out14: New tests.
	* tests/battlestar.test: Update.

2000-09-17  Joseph S. Myers  <jsm@polyomino.org.uk>

	* battlestar/dayfile.c (dayfile), battlestar/nightfile.c
	(nightfile): Add missing initialisers and comments giving room
	numbers.

	* wtf/acronyms: Update from NetBSD CVS.

	* battlestar/com1.c, battlestar/com2.c, battlestar/com4.c,
	battlestar/com5.c, battlestar/com6.c, battlestar/com7.c,
	battlestar/getcom.c: Clean up formatting; partly from OpenBSD.

	* tests/battlestar.in9, tests/battlestar.out9,
	tests/battlestar.in10, tests/battlestar.out10,
	tests/battlestar.in11, tests/battlestar.out11,
	tests/battlestar.in12, tests/battlestar.out12,
	tests/battlestar.in13, tests/battlestar.out13: New tests.
	* tests/battlestar.test: Update.

	* battlestar/com6.c (dooropen): New function, from OpenBSD.
	* battlestar/cypher.c (cypher): Support new verbs OPEN, VERBOSE
	and BRIEF, from OpenBSD.
	* battlestar/extern.h: Add new verbs OPEN, VERBOSE and BRIEF, new
	variable verbose, and new function dooropen(), from OpenBSD.
	* battlestar/globals.c (verbose): New variable, from OpenBSD.
	* battlestar/room.c (writedes): If verbose, always give long
	description; from OpenBSD.
	* battlestar/words.c (wlist): Add synonyms "papaya" and "coconut"
	and verbs "open", "unlock", "verbose" and "brief", from OpenBSD.

2000-09-10  Joseph S. Myers  <jsm@polyomino.org.uk>

	* battlestar/com2.c, battlestar/com3.c, battlestar/com4.c,
	battlestar/com5.c, battlestar/com6.c, battlestar/com7.c,
	battlestar/cypher.c, battlestar/dayfile.c, battlestar/nightfile.c,
	battlestar/room.c, battlestar/words.c: Update from NetBSD CVS
	after merge.

2000-09-09  Joseph S. Myers  <jsm@polyomino.org.uk>

	* battlestar/room.c (writedes): Process '=' in descriptions as
	meaning a literal '-'; from OpenBSD.
	* battlestar/dayfile.c (dayfile), battlestar/nightfile.c
	(nightfile): Spelling, punctuation and line length adjustments
	from OpenBSD.
	* tests/battlestar.out4, tests/battlestar.out5,
	tests/battlestar.out8: Update for changes in line length.

	* battlestar/com2.c (murder): Give an appropriate message for
	trying to kill non-OBJECT things (from OpenBSD); fixes "kill door"
	segfault.
	* battlestar/com3.c (shoot), battlestar/com4.c (take),
	battlestar/com5.c (kiss), battlestar/com6.c (ride),
	battlestar/com7.c (fight), battlestar/cypher.c (save): Wording,
	spelling, punctuation and line length adjustments from OpenBSD.
	* tests/battlestar.out5, tests/battlestar.out6: Update for changed
	wording.
	* tests/battlestar.in8, tests/battlestar.out8: New tests.
	* tests/battlestar.test: Update.

	* battlestar/words.c: Make spacing nicer and add missing
	initialisers.

	* NEWS, TODO: Update.

	* battlestar/battlestar.6, battlestar/battlestar.c,
	battlestar/com1.c, battlestar/com5.c, battlestar/cypher.c,
	battlestar/dayfile.c, battlestar/extern.h, battlestar/globals.c,
	battlestar/init.c, battlestar/nightfile.c, battlestar/room.c:
	Update from NetBSD CVS after merge.

2000-09-08  Joseph S. Myers  <jsm@polyomino.org.uk>

	* battlestar/battlestar.6: Don't refer to ~.  Suggested by Hubert
	Feyrer.

	* battlestar/extern.h, battlestar/globals.c, battlestar/init.c:
	Don't restrict length of username, use a string from strdup
	instead.  Make functions and arrays only used in init.c static.

2000-09-07  Joseph S. Myers  <jsm@polyomino.org.uk>

	* battlestar/extern.h: Put prototypes in alphabetical order.

	* fortune/datfiles/Makefile.bsd: Really update from NetBSD CVS.

	* battlestar/battlestar.6: Improvements from OpenBSD.
	* battlestar/extern.h: Define ROOMDESC.
	* battlestar/room.c (writedes): Use it.
	* battlestar/battlestar.c: From OpenBSD, make clearer and don't
	increase beenthere[position] beyond ROOMDESC.
	* battlestar/com1.c (news), battlestar/com5.c (kiss),
	battlestar/cypher.c (cypher), battlestar/dayfile.c (dayfile),
	battlestar/globals.c (objdes, objsht), nightfile.c (nightfile):
	Spelling and punctuation corrections or adjustments from OpenBSD.

	* tests/battlestar.test: Test for wizard or anti-wizard users.

2000-09-06  Joseph S. Myers  <jsm@polyomino.org.uk>

	* tests/battlestar.in5, tests/battlestar.out5,
	tests/battlestar.in6, tests/battlestar.out6,
	tests/battlestar.err6: New files.
	* tests/battlestar.test: Update.

	* tests/battlestar.test, tests/battlestar.in1,
	tests/battlestar.out1, tests/battlestar.in2,
	tests/battlestar.out2, tests/battlestar.in3,
	tests/battlestar.out3, tests/battlestar.in4,
	tests/battlestar.out4: New files.

	* lib/.cvsignore: New file.
	* morse/.cvsignore: Add morse.

2000-08-22  Joseph S. Myers  <jsm@polyomino.org.uk>

	* hunt/hunt/.cvsignore, hunt/huntd/.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: New files.

2000-08-19  Joseph S. Myers  <jsm@polyomino.org.uk>

	* fortune/datfiles/.cvsignore, fortune/fortune/.cvsignore,
	fortune/strfile/.cvsignore, fortune/unstr/.cvsignore,
	gomoku/.cvsignore, hack/.cvsignore, hangman/.cvsignore: New files.

2000-08-18  Joseph S. Myers  <jsm@polyomino.org.uk>

	* caesar/.cvsignore, canfield/canfield/.cvsignore,
	canfield/cfscores/.cvsignore, cribbage/.cvsignore, dm/.cvsignore,
	factor/.cvsignore, fish/.cvsignore: New files.

	* fortune/datfiles/Makefile.bsd, fortune/datfiles/fortunes,
	fortune/datfiles/netbsd, fortune/datfiles/netbsd-o.fake,
	fortune/datfiles/netbsd-o.real, wtf/acronyms: Update from NetBSD
	CVS.

2000-08-05  Joseph S. Myers  <jsm@polyomino.org.uk>

	* .cvsignore, include/.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: New files.

	* wtf/acronyms: Update from NetBSD CVS.

2000-08-04  Joseph S. Myers  <jsm@polyomino.org.uk>

	* include/signal.h, include/stdio.h, include/stdlib.h,
	include/termios.h, include/sys/cdefs.h, include/sys/ttydefaults.h:
	Use #pragma GCC system_header to allow #include_next with
	-pedantic.

2000-08-03  Joseph S. Myers  <jsm@polyomino.org.uk>

	* atc/input.c, atc/log.c, atc/update.c, hack/config.h,
	hack/def.monst.h, hack/def.rm.h, hack/hack.cmd.c, hack/hack.h,
	robots/move_robs.c, robots/play_level.c: Comment out text after
	#endif.
	* bcd/bcd.c: Use unsigned char and casts to avoid -pedantic
	warnings.
	* pom/pom.c: Likewise.
	* fortune/unstr/unstr.c, hack/makedefs.c: Include <stdlib.h>.
	* lib/fgetln.c: Include <string.h>.

	* adventure/setup.c, battlestar/com1.c, battlestar/com7.c,
	battlestar/cypher.c, battlestar/extern.h, boggle/mkdict/mkdict.c,
	boggle/mkindex/mkindex.c, fortune/datfiles/netbsd,
	fortune/strfile/strfile.c, hack/makedefs.c, monop/initdeck.c:
	Update from NetBSD CVS.

2000-08-02  Joseph S. Myers  <jsm@polyomino.org.uk>

	* sail/extern.h (abs): Don't define; breaks with glibc 2.2.

2000-07-22  Joseph S. Myers  <jsm@polyomino.org.uk>

	* hack/hack.tty.c, monop/getinp.c, rogue/message.c, trek/phaser.c:
	Update from NetBSD CVS.

2000-07-06  Joseph S. Myers  <jsm@polyomino.org.uk>

	* adventure/done.c, adventure/main.c, adventure/subr.c, bcd/bcd.c,
	canfield/cfscores/cfscores.c, countmail/countmail.6,
	fortune/datfiles/fortunes, fortune/datfiles/fortunes2,
	fortune/datfiles/netbsd, gomoku/stoc.c, hack/hack.h,
	hunt/huntd/get_names.c, morse/morse.c, phantasia/Makefile.bsd,
	ppt/ppt.c, rogue/init.c, sail/Makefile.bsd, sail/lo_main.c,
	sail/pl_1.c, sail/pl_7.c, trek/computer.c, trek/destruct.c,
	trek/getpar.c, trek/setup.c, trek/torped.c: Update from NetBSD
	CVS.

2000-05-28  Joseph S. Myers  <jsm@polyomino.org.uk>

	* adventure/Makefile.bsd, adventure/main.c,
	arithmetic/arithmetic.c, atc/main.c, backgammon/backgammon/main.c,
	backgammon/teachgammon/teach.c, battlestar/battlestar.c,
	bcd/bcd.c, boggle/boggle/bog.c, caesar/caesar.c, caesar/rot13.in,
	canfield/canfield/canfield.c, canfield/cfscores/cfscores.c,
	cribbage/crib.c, fish/fish.c, fortune/datfiles/netbsd,
	gomoku/main.c, hack/hack.termcap.c, hangman/main.c, mille/mille.c,
	mille/misc.c, mille/print.c, monop/cards.inp, monop/monop.c,
	morse/morse.c, phantasia/Makefile.bsd, phantasia/fight.c,
	phantasia/misc.c, ppt/ppt.c, quiz/quiz.c, robots/main.c,
	robots/score.c, snake/snake/snake.c, snake/snscore/snscore.c,
	tetris/screen.c, tetris/screen.h, trek/main.c, worm/worm.c,
	wump/wump.c: Update from NetBSD CVS.

2000-05-27  Joseph S. Myers  <jsm@polyomino.org.uk>

	* wtf/acronyms: Update from NetBSD CVS.

2000-05-06  Joseph S. Myers  <jsm@polyomino.org.uk>

	* bsd-games now under CVS version control.  At present there is no
	anoncvs access, so this isn't particularly relevant to anyone else
	yet.  The CVS tree up to now has been generated with scripts based
	on RCS to include all past releases and betas from 1.3 onwards,
	and those snapshots of the bsd-games source tree from in between
	releases that I have, with checkin dates set to the dates of the
	ChangeLogs in the respective releases and snapshots.  Tags used
	are BSD_GAMES_DATE_yyyy_mm_dd for dated snapshots; BSD_GAMES_v_v
	for versioned bsd-games releases; BSD_GAMES_NON_FREE_v_v for
	bsd-games-non-free releases; and BSD_GAMES_VERSION_v_v for the
	union of corresponding bsd-games and bsd-games-non-free releases,
	and for bsd-games releases before the split, but this tag was not
	applied where no bsd-games-non-free release corresponded to a
	particular bsd-games release.

2000-04-26  Joseph S. Myers  <jsm@polyomino.org.uk>

	* bsd-games.lsm, bsd-games-non-free.lsm: Update to LSM format
	version 4.

2000-04-19  Joseph S. Myers  <jsm@polyomino.org.uk>

	* Version 2.11.

	* NEWS: Update.
	* bsd-games.lsm: Update.
	* bsd-games-non-free.lsm: Update.

	* hack/date.h, hack/def.monst.h, hack/def.objclass.h,
	hack/def.objects.h, hack/def.permonst.h, hack/extern.h,
	hack/hack.Decl.c, hack/hack.cmd.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.pri.c, hack/hack.read.c,
	hack/hack.rip.c, hack/hack.save.c, hack/hack.shk.c,
	hack/hack.termcap.c, hack/hack.timeout.c, hack/hack.topl.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: Use const and fix compiler warnings.

2000-04-18  Joseph S. Myers  <jsm@polyomino.org.uk>

	* hack/*: New, from NetBSD CVS.
	* hack/Makefile: Rename to Makefile.bsd.
	* AUTHORS, COPYING, INSTALL, README, README.non-free, SECURITY,
	TODO: Update.
	* NEWS: Update.
	* bsd-games-non-free.lsm: Update.
	* hack/pathnames.h: Rename to pathnames.h.in for substitutions.
	* hack/hack.6: Rename to hack.6.in for substitutions.
	* configure, substfiles, substfiles2, Makeconfig.in: Update.
	* exec.libs, exec.objs: Update.
	* hack/Makefrag: New file.
	* hack/hack.main.c: Check for fds 0, 1, 2 being closed; use
	setregid() for gid revokes.
	* hack/hack.bones.c, hack/hack.do.c, hacl/hack.main.c,
	hack/hack.pager.c, hack/hack.save.c, hack/hack.unix.c,
	hack/makedefs.c: Use symbolic constants.
	* hack/makedefs.c: Check for write errors on output; use const and
	fix compiler warnings.
	* hack/def.func_tab.h, hack/def.objclass.h, hack/def.permonst.h,
	hack/extern.h, hack/hack.Decl.c, hack/hack.apply.c, hack/hack.c,
	hack/hack.cmd.c, hack/hack.do_name.c, hack/hack.end.c,
	hack/hack.invent.c, hack/hack.h, hack/hack.main.c,
	hack/hack.mon.c, hack/hack.objnam.c, hack.pager.c, hack.potion.c,
	hack/hack.shknam.c, hack.trap.c, hack.zap.c: Use const and fix
	compiler warnings.

2000-04-15  Joseph S. Myers  <jsm@polyomino.org.uk>

	* arithmetic/arithmetic.c, boggle/mkdict/Makefile.bsd,
	boggle/mkindex/Makefile.bsd, fortune/datfiles/fortunes,
	fortune/datfiles/fortunes2, fortune/fortune/fortune.c,
	fortune/strfile/Makefile.bsd, hunt/Makefile.inc.bsd,
	hunt/hunt/hunt.c, hunt/huntd/driver.c, phantasia/fight.c,
	robots/score.c: Update from NetBSD CVS.

2000-04-14  Joseph S. Myers  <jsm@polyomino.org.uk>

	* COPYING: Fix spelling error.

2000-04-09  Joseph S. Myers  <jsm@polyomino.org.uk>

	* quiz/datfiles/asia: Corrections from Robert Vollmert
	<rvollmert@gmx.net>.

2000-04-05  Joseph S. Myers  <jsm@polyomino.org.uk>

	* countmail/countmail.6: Fix grammar (bug reported by Thomas
	Bushnell BSG <tb@MIT.EDU>).

2000-03-29  Joseph S. Myers  <jsm@polyomino.org.uk>

	* boggle/boggle/prtable.c, fish/fish.c, fortune/datfiles/fortunes,
	fortune/datfiles/fortunes2, fortune/datfiles/fortunes2-o.real,
	fortune/datfiles/netbsd, gomoku/makemove.c, hunt/hunt/hunt.c,
	rogue/CHANGES, trek/trek.6.in: Update from NetBSD CVS.

2000-02-28  Joseph S. Myers  <jsm@polyomino.org.uk>

	* wtf/acronyms: Update from NetBSD CVS.

2000-02-12  Joseph S. Myers  <jsm@polyomino.org.uk>

	* Version 2.10.

	* fortune/fortune/fortune.c: Include <sys/endian.h>.
	* fortune/unstr/unstr.c: Likewise.
	* fortune/strfile/strfile.c: Include <netinet/in.h>.
	* monop/initdeck.c: Likewise.  Remove unnecessary casts.

	* NEWS: Update.
	* bsd-games.lsm: Update.

	* fortune/datfiles/netbsd, sail/Makefile.bsd: Update from NetBSD
	CVS.

	* COPYING: Add 2000 to copyright years.

	* wtf/acronyms: Update from NetBSD CVS.

2000-02-09  Joseph S. Myers  <jsm@polyomino.org.uk>

	* wtf/acronyms: Update from NetBSD CVS.

	* THANKS: Update.
	* INSTALL: Update.

	* Essentially all relevant changes now merged back into NetBSD
	(except for hunt).
	* TODO: Update.
	* NEWS: Update.

	* sail/Makefile.bsd, sail/dr_main.c, sail/extern.h,
	sail/globals.c, sail/main.c, sail/misc.c, sail/pathnames.h.in,
	sail/pl_7.c, sail/pl_main.c, sail/sync.c: Update from NetBSD CVS
	after further merge.

	* fortune/datfiles/Makefile.bsd, wargames/Makefile.bsd: Update
	from NetBSD CVS.
	* fortune/datfiles/netbsd: New, from NetBSD.

2000-02-01  Joseph S. Myers  <jsm@polyomino.org.uk>

	* wtf/acronyms: Update from NetBSD CVS.

2000-01-24  Joseph S. Myers  <jsm@polyomino.org.uk>

	* snake/snscore/snscore.c, tetris/scores.c, tetris/tetris.c,
	wargames/Makefile.bsd, wargames/wargames.6: Update from NetBSD CVS
	after further merge.

	* boggle/Makefile.bsd, fortune/Makefile.bsd,
	fortune/datfiles/Makefile.bsd, hunt/hunt/hunt.c,
	hunt/huntd/hunt.h, phantasia/Makefile.bsd: Update from NetBSD CVS.

2000-01-20  Joseph S. Myers  <jsm@polyomino.org.uk>

	* robots/main.c, robots/score.c: Update from NetBSD CVS after
	further merge.

2000-01-19  Joseph S. Myers  <jsm@polyomino.org.uk>

	* fortune/strfile/strfile.c, random/random.c: Update from NetBSD
	CVS after further merge.

2000-01-17  Joseph S. Myers  <jsm@polyomino.org.uk>

	* random/random.c: Define MAXRANDOM rather than using RAND_MAX.

2000-01-13  Joseph S. Myers  <jsm@polyomino.org.uk>

	* adventure/io.c, adventure/vocab.c, battlestar/save.c,
	caesar/caesar.c, monop/monop.c, worm/worm.c: Update from NetBSD
	CVS after further merge.

2000-01-08  Joseph S. Myers  <jsm@polyomino.org.uk>

	* wtf/acronyms: Update from NetBSD CVS.

2000-01-02  Joseph S. Myers  <jsm@polyomino.org.uk>

	* tetris/screen.h, tetris/tetris.c, tetris/tetris.h: Update from
	NetBSD CVS after further merge.

1999-12-31  Joseph S. Myers  <jsm@polyomino.org.uk>

	* fortune/strfile/strfile.c, fortune/strfile/strfile.h,
	monop/cards.c, monop/initdeck.c: Update from NetBSD CVS.

1999-12-28  Joseph S. Myers  <jsm@polyomino.org.uk>

	* sail/extern.h, sail/globals.c, sail/pl_7.c, sail/player.h:
	Update from NetBSD CVS after further merge.

1999-12-16  Joseph S. Myers  <jsm@polyomino.org.uk>

	* ppt/ppt.c, quiz/quiz.c: Update from NetBSD CVS (more changes
	merged into NetBSD).

	* quiz/quiz.c (show_index): Refer error message to the pager
	actually used.

	* fortune/strfile/strfile.c: Use err(1, NULL) for out-of-memory
	error.

	* boggle/mkindex/mkindex.c, fortune/datfiles/fortunes,
	fortune/strfile/strfile.c, wargames/wargames, wtf/wtf.in: Update
	from NetBSD CVS.

1999-12-07  Joseph S. Myers  <jsm@polyomino.org.uk>

	* adventure/io.c, adventure/vocab.c, battlestar/save.c,
	caesar/caesar.c, monop/cards.c, monop/initdeck.c, monop/monop.c,
	monop/prop.c, snake/snscore/snscore.c, worm/worm.c: Use err(1,
	NULL) or warn(NULL) for `out of memory' messages.

	* fortune/strfile/strfile.c: Remove obsolete NO_VOID conditional,
	and casts in ALLOC macro.

1999-12-06  Joseph S. Myers  <jsm@polyomino.org.uk>

	* wtf/acronyms: Update from NetBSD CVS.

1999-11-29  Joseph S. Myers  <jsm@polyomino.org.uk>

	* ChangeLog: Use consistent form of my name and email address.

1999-11-15  Joseph S. Myers  <jsm@polyomino.org.uk>

	* countmail/countmail: Don't describe messages as new when they
	may not be (bug report and suggested fix from Malcolm Parsons
	<malcolm@bits.bris.ac.uk>).

	* configure: Ask for permissions on variable data that should not
	be world readable (bug report from <cesarb@web4u.com.br>).
	* install-score.in: Use this.
	* phantasia/Makefrag: Use this.
	* SECURITY: Update.

	* tetris/tetris.c: Include <err.h>; use errx() for error messages;
	change usage message to refer to tetris-bsd (bug report from
	Malcolm Parson <malcolm@bits.bris.ac.uk>).

	* tetris/scores.c (printem): Fix formatting of high score tables
	with multiple columns (bug report and suggested fix from Malcolm
	Parsons <malcolm@bits.bris.ac.uk>).

	* robots/main.c (main): Fix spelling error in unknown option
	message (bug report and suggested fix by Malcolm Parsons
	<malcolm@bits.bris.ac.uk>).

1999-11-12  Joseph S. Myers  <jsm@polyomino.org.uk>

	* Version 2.9.

	* bsd-games.lsm: Update.

	* NEWS: Update.

1999-11-11  Joseph S. Myers  <jsm@polyomino.org.uk>

	* boggle/mkindex/mkindex.c (main): Add index entries for letters
	not found in the dictionary (problem reported by Mike Castle
	<dalgoda@ix.netcom.com>).

	* robots/main.c (main): Reinitialise Num_games to 1 after looping
	through Num_games games, so if you ask for another game then you
	still get this prompt next time.  Bug report and suggested fix
	from Malcolm Parsons <malcolm@bits.bris.ac.uk>.

	* robots/score.c (score): Fix reporting of auto-bot scores, bug
	report and suggested fix from Malcolm Parsons
	<malcolm@bits.bris.ac.uk>.

	* cribbage/instr.c, fortune/fortune/fortune.c,
	snake/snake/snake.6.in, snake/snake/snake.c, worm/worm.6,
	worm/worm.c: Update from NetBSD CVS.

1999-11-05  Joseph S. Myers  <jsm@polyomino.org.uk>

	* wtf/acronyms: Update from NetBSD CVS.

1999-10-28  Joseph S. Myers  <jsm@polyomino.org.uk>

	* wtf/acronyms: Update from NetBSD CVS.

	* random/random.c: Use RAND_MAX rather than LONG_MAX (patch from
	William Brioschi).

	* tests/rot13.*: Removed; test not meaningful since it uses the
	installed caesar (which may not be present) rather than the
	just-built one.  Bug reported by Roman Hodek
	<Roman.Hodek@informatik.uni-erlangen.de>.

1999-10-21  Joseph S. Myers  <jsm@polyomino.org.uk>

	* backgammon/common_source/back.h,
	backgammon/common_source/subs.c, robots/main.c, tetris/screen.c,
	tetris/screen.h: Update from NetBSD CVS.

1999-10-11  Joseph S. Myers  <jsm@polyomino.org.uk>

	* wtf/acronyms: Update from NetBSD CVS.

1999-10-01  Joseph S. Myers  <jsm@polyomino.org.uk>

	* cribbage/cribbage.6.in, mille/move.c: Update from NetBSD CVS
	after further merge.

1999-09-30  Joseph S. Myers  <jsm@polyomino.org.uk>

	* atc/def.h, cribbage/cards.c, cribbage/cribbage.h, cribbage/io.c,
	mille/comp.c, mille/init.c, mille/mille.h, mille/move.c,
	mille/types.h, monop/misc.c, monop/monop.h, monop/trade.c,
	phantasia/phantdefs.h, robots/robots.h, sail/dr_1.c, sail/dr_2.c,
	sail/dr_3.c, sail/extern.h: Update from NetBSD CVS after further
	merge.

	* cribbage/cribbage.6.in (FILES): Tweak.

1999-09-27  Joseph S. Myers  <jsm@polyomino.org.uk>

	* quiz/datfiles/europe (Monaco): Change capital to Monaco, bug
	reported by <capo@writeme.com>.

1999-09-26  Joseph S. Myers  <jsm@polyomino.org.uk>

	* Version 2.8.

	* include/tzfile.h: Remove (no longer used).

	* fortune/datfiles/Makefrag: Use $(SHAREDIR) not $(LIBDIR).

	* NEWS: Update.

	* bsd-games.lsm, bsd-games-non-free.lsm: Update.

	* */Makefrag, */*/Makefrag: Add copyright notices and licence
	terms.
	* hangman/Makefrag: Remove reference to $(hangman_WORDS).
	* COPYING: Tweak.
	* NEWS: Add release dates.

1999-09-23  Joseph S. Myers  <jsm@polyomino.org.uk>

	* dm/dm.c, fish/fish.c, fortune/fortune/fortune.c: Update from
	NetBSD CVS after further merge.

	* fortune/datfiles/Makefile.bsd: Update from NetBSD CVS.

1999-09-19  Joseph S. Myers  <jsm@polyomino.org.uk>

	* boggle/boggle/bog.c, boggle/mkdict/mkdict.c, cribbage/extern.c,
	dm/dm.c, phantasia/setup.c: Update from NetBSD CVS after further
	merge.

1999-09-18  Joseph S. Myers  <jsm@polyomino.org.uk>

	* boggle/mkdict/mkdict.c, boggle/mkindex/mkindex.c: Update from
	NetBSD CVS after further merge.

	* battlestar/com1.c, battlestar/com4.c: Tweak for NetBSD
	alignment.

	* battlestar/com1.c, battlestar/com4.c, boggle/boggle/bog.c,
	cribbage/io.c, fortune/fortune/fortune.c,
	fortune/strfile/strfile.c, fortune/unstr/unstr.c,
	gomoku/pickmove.c, mille/comp.c, phantasia/interplayer.c,
	pig/pig.c, robots/extern.c, robots/robots.h, robots/score.c,
	rogue/save.c, tetris/scores.c, trek/main.c: Update from NetBSD CVS
	after further merge.

	* battlestar/battlestar.c, battlestar/cypher.c,
	battlestar/dayobjs.c, battlestar/init.c, battlestar/nightobjs.c:
	Update from NetBSD CVS after further merge.

	* backgammon/backgammon/main.c, boggle/boggle/bog.c,
	hangman/extern.c, hangman/hangman.6.in, hangman/hangman.h,
	hangman/main.c, hangman/setup.c, quiz/quiz.c, sail/game.c,
	tetris/scores.c, trek/externs.c, trek/trek.h: Update from NetBSD
	CVS after further merge.

1999-09-17  Joseph S. Myers  <jsm@polyomino.org.uk>

	* wtf/acronyms: Update from NetBSD CVS.

	* NEWS: Update.

	* hangman/extern.c, hangman/hangman.h, hangman/main.c,
	hangman/setup.c: Make dictionary path selectable at run time.
	* hangman/hangman.6.in: Document this.
	* NEWS, TODO, INSTALL, PACKAGING: Update.

1999-09-16  Joseph S. Myers  <jsm@polyomino.org.uk>

	* hangman/words: Remove.  The copyright status was not clear;
	assertions in the LSM entry that it is free from copyright seem to
	be contradicted by inspection of the READMEs.  (See
	ftp://ftp.cs.unc.edu/pub/users/faith/linux/utils/ .)
	* hangman/Makefrag: No longer install words file.
	* configure: Update accordingly.
	* boggle/mkdict/Makefrag: Update accordingly.
	* Makeconfig.in: Update accordingly.
	* NEWS: Update.
	* INSTALL: Update.
	* PACKAGING: Update.

	* configure: Fix bugs in earlier changes.

	* sail/game.c (maxturns): Tweak following comments from Hubert
	Feyrer.

	* boggle/boggle/bog.c (checkdict): Tweak following comments from
	Hubert Feyrer.

	* trek/trek.h: Modify form of structure/variable declarations
	(following comments from Hubert Feyrer).

	* battlestar/battlestar.c (main): Give a sensible error message in
	the default (should't happen) case.

1999-09-15  Joseph S. Myers  <jsm@polyomino.org.uk>

	* COPYING: Update.

	* substfiles: Move manpages and some other non-headers into
	substfiles2 (new file).
	* quiz/datfiles/Makefrag (quiz_datfiles_all): Depend on
	quiz/datfiles/index.
	* configure: Only generate rules for files in substfiles2, don't
	actually build them at configure time.
	* TODO: Update.

	* configure: Allow for comments in exec.objs, exec.libs and
	substfiles.
	* exec.objs, exec.libs, substfiles: Add explanatory comments,
	copyright notices and licence terms.

	* substscr: New file to handle substitution logic.  Also generate
	subst.rules makefile for redoing the substitutions if required.
	* configure: Use it to do substitutions.  Handle subst.rules.

	* fortune/unstr/unstr.c: Don't include <machine/endian.h> at all.
	* gomoku/pickmove.c: Likewise, unconditionally include <limits.h>
	rather than <machine/limits.h>.

	* fortune/fortune/fortune.c: Use macro NAMLEN rather than
	strlen(dirent->d_name).

1999-09-14  Joseph S. Myers  <jsm@polyomino.org.uk>

	* gomoku/main.c: Tweak for NetBSD alignment.

	* battlestar/com6.c, battlestar/extern.h, battlestar/globals.c,
	pom/pom.6, pom/pom.c, snake/snake/Makefile.bsd,
	snake/snake/snake.6.in, snake/snake/snake.c: Update from NetBSD
	CVS after further merge.

	* fortune/fortune/fortune.c: Adjust (unsigned long) casts to use
	(u_int32_t) and (u_int64_t) as appropriate.

	* TODO: Update.

	* phantasia/setup.c: Add checks for write errors.

	* fortune/fortune/fortune.6.in, fortune/fortune/pathnames.h.in:
	Fix references to @usrlibdir@.

	* quiz/datfiles/pres: Update to OpenBSD version (minor
	corrections, and includes vice-presidents).
	* quiz/datfiles/index.in: Update.

1999-09-13  Joseph S. Myers  <jsm@polyomino.org.uk>

	* battlestar/com6.c, battlestar/extern.h, battlestar/init.c,
	cribbage/instr.c, gomoku/gomoku.h, gomoku/main.c,
	phantasia/main.c, rogue/Makefile.bsd, rogue/machdep.c,
	rogue/rogue.h, rogue/save.c: Update from NetBSD CVS after further
	merge.

	* fortune/datfiles/Makefile.bsd, fortune/datfiles/limerick,
	fortune/datfiles/limerick-o.fake,
	fortune/datfiles/limerick-o.real, fortune/datfiles/limerick.fake,
	fortune/datfiles/limerick.real,
	fortune/datfiles/unamerican-o.fake,
	fortune/datfiles/unamerican-o.real,
	fortune/datfiles/unamerican.fake,
	fortune/datfiles/unamerican.real: Update from NetBSD CVS
	(offensive fortunes renamed to ...-o).
	* fortune/datfiles/Makefrag: Update.

	* tests/*: Add testsuite.
	* configure: Update.
	* bcd/Makefrag, caesar/Makefrag, factor/Makefrag, morse/Makefrag,
	number/Makefrag, pig/Makefrag, pom/Makefrag, ppt/Makefrag,
	primes/Makefrag, wargames/Makefrag: Remove old test fragments.
	* COPYING: Update.
	* INSTALL: Update.
	* NEWS: Update.

	* lib/fgetln.c, lib/getloadavg.c: Add copyright notice and licence
	terms.
	* include/signal.h, include/stdio.h, include/stdlib.h,
	include/termios.h, include/tzfile.h, include/sys/cdefs.h,
	include/sys/endian.h, include/sys/ttydefaults.h: Likewise.
	* hide-game.in, install-man.in, install-score.in, mkdep: Likewise.
	* configure, Makeconfig.in: Likewise.
	* COPYING: Update.

1999-09-12  Joseph S. Myers  <jsm@polyomino.org.uk>

	* wargames/wargames.6: Add copyright notice and licence terms;
	convert to use tmac.doc.
	* COPYING: Update.

	* snake/snake/snake.6.in: Fix substitution.

	* snake/snake/snake.c: #ifdef keypad functionality so snake can be
	built/tested on systems without it.

	* AUTHORS: Fix entries for rogue and worm.

	* canfield/canfield/canfield.c, canfield/cfscores/cfscores.c,
	cribbage/crib.c, fish/fish.c, gomoku/main.c, hangman/main.c,
	mille/mille.c, monop/monop.c, morse/morse.c, ppt/ppt.c,
	quiz/quiz.c, robots/main.c, robots/robots.h, robots/score.c,
	rogue/init.c, rogue/machdep.c, rogue/rogue.h, rogue/score.c,
	snake/snake/snake.c, snake/snscore/snscore.c, tetris/scores.c,
	tetris/tetris.c, tetris/tetris.h, trek/main.c, worm/worm.c,
	wump/wump.c: Update from NetBSD CVS after merge of most security
	changes.

1999-09-11  Joseph S. Myers  <jsm@polyomino.org.uk>

	* wtf/acronyms: Updatef from NetBSD-current.

	* COPYING: New file.
	* NEWS: Update.
	* README: Update.

1999-09-10  Joseph S. Myers  <jsm@polyomino.org.uk>

	* wump/wump.c: Update from NetBSD CVS.

	* rogue/curses.c: Remove.
	* rogue/machdep.c, rogue/rogue.h: Remove traces of CURSES.

	* THANKS: Update.
	* NEWS: Update.

	* gomoku/main.c (main): Comment tweak.

	* rogue/init.c: Add blank line.

	* robots/main.c (main): Restore errno before printing error
	message.

	* robots/query.c: NetBSD alignment tweak.

	* atc/graphics.c, boggle/mkdict/mkdict.c,
	boggle/mkindex/mkindex.c, cribbage/cribbage.h,
	fortune/strfile/strfile.c, monop/initdeck.c: Update from NetBSD
	CVS after further merge.

1999-09-09  Joseph S. Myers  <jsm@polyomino.org.uk>

	* monop/initdeck.c (main): Whitespace tweaks.

	* backgammon/backgammon/main.c, boggle/boggle/extern.h,
	canfield/canfield/canfield.c, fortune/fortune/fortune.c,
	fortune/strfile/strfile.c, gomoku/pickmove.c, hangman/setup.c,
	mille/save.c, monop/cards.c, monop/initdeck.c, monop/monop.c,
	monop/monop.h, monop/prop.c, rogue/init.c, sail/sync.c,
	snake/snscore/snscore.c, worm/worm.c, wump/wump.c: Update from
	NetBSD CVS after merge of malloc checks and <time.h> includes.

	* fortune/strfile/strfile.8: Update from NetBSD CVS.

	* mille/save.c: Move <time.h> include up.

	* backgammon/backgammon/main.c: Move <time.h> include up.  Use
	NULL as argument of time() instead of 0.

	* backgammon/common_source/subs.c, battlestar/com6.c,
	battlestar/fly.c, boggle/boggle/bog.c, boggle/boggle/extern.h,
	boggle/boggle/mach.c, boggle/boggle/prtable.c,
	boggle/boggle/word.c, caesar/caesar.c,
	canfield/canfield/canfield.c, canfield/cfscores/cfscores.c,
	cribbage/cards.c, cribbage/crib.c, cribbage/cribbage.h,
	cribbage/io.c, cribbage/score.c, cribbage/support.c,
	factor/factor.c, fish/fish.c, fortune/fortune/fortune.c,
	fortune/strfile/strfile.c, fortune/unstr/unstr.c, gomoku/bdisp.c,
	gomoku/gomoku.h, gomoku/main.c, gomoku/makemove.c,
	gomoku/pickmove.c, gomoku/stoc.c, hangman/extern.c,
	hangman/getword.c, hangman/hangman.h, hangman/main.c,
	hangman/setup.c, mille/comp.c, mille/extern.c, mille/mille.c,
	mille/mille.h, mille/move.c, mille/print.c, mille/save.c,
	monop/cards.c, monop/execute.c, monop/getinp.c, monop/houses.c,
	monop/initdeck.c, monop/misc.c, monop/monop.c, monop/monop.def,
	monop/monop.ext, monop/monop.h, monop/morg.c, monop/print.c,
	monop/spec.c, monop/trade.c, morse/morse.c, number/number.c,
	phantasia/fight.c, phantasia/gamesupport.c,
	phantasia/interplayer.c, phantasia/io.c, phantasia/main.c,
	phantasia/misc.c, phantasia/phantglobs.c, phantasia/phantglobs.h,
	phantasia/phantstruct.h, phantasia/setup.c, primes/pattern.c,
	primes/pr_tbl.c, primes/primes.c, quiz/quiz.c, quiz/quiz.h,
	quiz/rxp.c, random/random.c, robots/auto.c, robots/extern.c,
	robots/init_field.c, robots/main.c, robots/move.c, robots/query.c,
	robots/robots.h, robots/score.c, rogue/init.c, rogue/rogue.h,
	sail/assorted.c, sail/dr_1.c, sail/dr_2.c, sail/driver.h,
	sail/extern.h, sail/globals.c, sail/lo_main.c, sail/pl_1.c,
	sail/pl_3.c, sail/pl_4.c, sail/pl_7.c, sail/sync.c,
	snake/snake/snake.c, snake/snscore/snscore.c, tetris/scores.c,
	tetris/screen.c, tetris/shapes.c, tetris/tetris.c,
	tetris/tetris.h, trek/abandon.c, trek/capture.c, trek/cgetc.c,
	trek/computer.c, trek/dcrept.c, trek/destruct.c, trek/dock.c,
	trek/dumpgame.c, trek/getpar.h, trek/help.c, trek/impulse.c,
	trek/lrscan.c, trek/phaser.c, trek/play.c, trek/rest.c,
	trek/setwarp.c, trek/torped.c, trek/trek.h, trek/visual.c,
	worm/worm.c: Update from NetBSD CVS after initial merge of const,
	attribute and symbolic constant changes.

1999-09-08  Joseph S. Myers  <jsm@polyomino.org.uk>

	* README: Update.

	* NEWS: Update.

1999-08-29  Joseph S. Myers  <jsm@polyomino.org.uk>

	* INSTALL: Update.

1999-08-22  Joseph S. Myers  <jsm@polyomino.org.uk>

	* README: Update.
	* NEWS: Update.
	* TODO: Update.

	* include/sys/endian.h: Add the 16-bit functions in case they get
	used in the games later.  Still does not include the little-endian
	functions until some game starts using data in little-endian
	format.

	* AUTHORS: Update.
	* BUGS: Update.

1999-08-21  Joseph S. Myers  <jsm@polyomino.org.uk>

	* include/sys/endian.h: New file (compatibility with changes in
	NetBSD).
	* fortune/fortune/fortune.c, fortune/strfile/strfile.8,
	fortune/strfile/strfile.c, fortune/strfile/strfile.h,
	fortune/fortune/unstr.c: Update from NetBSD anoncvs.
	* fortune/datfiles/Makefrag: fortune data is now arch-independent.
	* phantasia/Makefile.bsd, phantasia/main.c: Update from NetBSD
	anoncvs.
	* monop/cards.c, monop/deck.h, monop/execute.c, monop/getinp.c,
	monop/houses.c, monop/initdeck.c, monop/jail.c, monop/misc.c,
	monop/monop.c, monop/monop.def, monop/monop.h, monop/morg.c,
	monop/print.c, monop/prop.c, monop/rent.c, monop/roll.c,
	monop/spec.c, monop/trade.c: Update from NetBSD anoncvs.
	* configure, Makeconfig.in: monop data is now arch-independent.
	* NEWS: Update.

	* NEWS: Update.

1999-08-18  Joseph S. Myers  <jsm@polyomino.org.uk>

	* fish/fish.6: Update from NetBSD anoncvs.

1999-08-17  Joseph S. Myers  <jsm@polyomino.org.uk>

	* NEWS: Update.

	* snake/snake/snake.c: Move to use curses.  Other minor fixes.
	* snake/snake/move.c, snake/snake/snake.h: Remove (incorporated in
	snake.c).
	* snake/snake/snake.6.in: Update.
	* exec.objs: Update.
	* TODO: Update.

	* snake/snake/snake.c, snake/snake/move.c: Minor fixes from
	OpenBSD.

1999-08-16  Joseph S. Myers  <jsm@polyomino.org.uk>

	* backgammon/backgammon/main.c, backgammon/teachgammon/teach.c,
	fortune/datfiles/fortunes2, snake/snake/move.c,
	snake/snake/snake.h, tetris/screen.c: Update from NetBSD anoncvs.

1999-08-14  Joseph S. Myers  <jsm@polyomino.org.uk>

	* AUTHORS: Update.
	* NEWS: Update.

	* wtf/wtf.in: Update from NetBSD anoncvs.

	* wtf/acronyms: Update from NetBSD-current.

1999-08-11  Joseph S. Myers  <jsm@polyomino.org.uk>

	* worm/worm.c: Update from NetBSD anoncvs.

1999-08-09  Joseph S. Myers  <jsm@polyomino.org.uk>

	* sail/sync.c: Tweak for NetBSD alignment.

	* monop/monop.def: Tweak for NetBSD alignment.

	* rain/rain.c, worm/worm.c: Update from NetBSD anoncvs.

1999-08-06  Joseph S. Myers  <jsm@polyomino.org.uk>

	* fortunes/datfiles/Makefile.bsd,
	fortune/datfiles/unamerican.fake,
	fortune/datfiles/unamerican.real, rain/Makefile.bsd, rain/rain.6,
	rain/rain.c, worms/worms.6, worms/worms.c: Update from NetBSD
	anoncvs.
	* fortune/datfiles/Makefrag: Update.

1999-07-29  Joseph S. Myers  <jsm@polyomino.org.uk>

	* adventure/hdr.h, adventure/init.c, atc/graphics.c,
	backgammon/backgammon/main.c, backgammon/common_source/save.c,
	battlestar/battlestar.6, battlestar/battlestar.c,
	battlestar/cypher.c, battlestar/extern.h, battlestar/init.c,
	battlestar/save.c, bcd/bcd.6, bcd/bcd.c, worm/worm.c, wtf/wtf.in:
	Update from NetBSD anoncvs.

1999-07-28  Joseph S. Myers  <jsm@polyomino.org.uk>

	* atc/grammar.y, backgammon/common_source/back.h,
	backgammon/common_source/fancy.c, backgammon/common_source/subs.c:
	Update from NetBSD anoncvs of yesterday.

1999-07-27  Joseph S. Myers  <jsm@polyomino.org.uk>

	* TODO, SECURITY, PACKAGING: Add note on security hardening.

	* phantasia/phantglobs.h: Mark `catchalarm' as noreturn.
	* sail/extern.h: Mark `play' as noreturn.
	* snake/snake/snake.h: Mark `mainloop' as noreturn.
	* tetris/screen.c: Mark `stopset' as noreturn.
	* trek/trek.h: Mark `lose', `myreset', `play' and `win' as
	noreturn.

	* bcd/bcd.6: Fix mdoc usage in references.

	* adventure/hdr.h, adventure/init.c: Fix use of linker commons.
	* battlestar/extern.h, battlestar/globals.c: Likewise.
	* backgammon/common_source/fancy.c: Likewise.
	* sail/extern.h, sail/globals.c, sail/player.h, sail/pl_7.c:
	Likewise.
	* snake/snake/snake.h, snake/snake/snake.c: Likewise.
	* tetris/screen.h, tetris/screen.c, tetris/tetris.h,
	tetris/tetris.c: Likewise.
	* trek/trek.h, trek/externs.c: Likewise.
	* TODO: Update.

	* backgammon/common_source/save.c (save): Fix other case of
	executable save files.

	* atc/graphics.c (getAChar): Be yet more paranoid about EINTR.

	* atc/input.c (delayb, benum): Revert old unsigned char change
	(NetBSD now casts the subscripts to int).

	* configure: Check for fgetln and getloadavg in case they are
	added to glibc in future.
	* include/stdio.h: Update.
	* include/stdlib.h: Update.
	* lib/fgetln.c: Update.
	* lib/getloadavg.c: Update.
	* Makeconfig.in: Add GETLOADAVG_DEFS and FGETLN_DEFS.
	* battlestar/Makefrag, dm/Makefrag, quiz/Makefrag: Use them.

1999-07-26  Joseph S. Myers  <jsm@polyomino.org.uk>

	* battlestar/battlestar.6: Fix mdoc usage (use .Op Ar saved-file
	instead of .Op saved-file).

	* wtf/wtf.in, wtf/wtf.6.in: Update from NetBSD anoncvs.

1999-07-25  Joseph S. Myers  <jsm@polyomino.org.uk>

	* atc/grammer.y, atc/graphics.c, atc/input.c, atc/log.c,
	atc/main.c, atc/update.c, backgammon/teachgammon/ttext1.c: Update
	from NetBSD anoncvs.

1999-07-24  Joseph S. Myers  <jsm@polyomino.org.uk>

	* atc/main.c: Change to use getopt.

	* substfiles: Fix error.
	* backgammon/common_source/init.c: Whitespace alignment with
	NetBSD.

1999-07-23  Joseph S. Myers  <jsm@polyomino.org.uk>

	* Makefile.bsd, atc/grammar.y, backgammon/backgammon/main.c,
	backgammon/teachgammon/teach.c, banner/banner.c,
	battlestar/battlestar.c, battlestar/com6.c, battlestar/extern.h,
	bcd/bcd.c, boggle/boggle/bog.c, caesar/caesar.c, trek/computer.c,
	trek/externs.c, trek/getpar.c, trek/getpar.h, trek/help.c,
	trek/kill.c, trek/lose.c, trek/out.c, trek/phaser.c, trek/play.c,
	trek/setup.c, trek/shield.c, trek/srscan.c, trek/systemname.c,
	trek/trek.h, trek/win.c: Update from NetBSD-current of 1999-07-23.
	* wtf/wtf.6.in, wtf/wtf.in: New game.
	* wtf/Makefrag: New file.
	* configure, substfiles, Makeconfig.in: Update.
	* wtf/acronyms: Acronym collection from NetBSD.
	* README, bsd-games.lsm, NEWS: Update.

1999-07-18  Joseph S. Myers  <jsm@polyomino.org.uk>

	* atc/grammar.y (wdef): Check sp->width instead of sp->height.

	* INSTALL, TODO: Update for egcs/gcc terminology change.

	* adventure/save.c, arithmetic/arithmetic.c, atc/Makefile.bsd,
	atc/atc.6.in, atc/extern.h, atc/input.c, atc/log.c, atc/main.c,
	atc/struct.h: Update from NetBSD-current of 1999-07-18.

	* battlestar/save.c, battlestar/extern.h, battlestar/init.c,
	battlestar/cypher.c: Change saving interface again; new function
	save_file_name() determines the name under which to save.

	* battlestar/com6.c, battlestar/extern.h: Don't include <time.h>
	in com6.c, include it instead of <sys/time.h> in extern.h.

1999-07-16  Joseph S. Myers  <jsm@polyomino.org.uk>

	* adventure/hdr.h, adventure/main.c, adventure/save.c,
	adventure/setup.c, adventure/wizard.c,
	backgammon/backgammon/main.c, battlestar/com1.c,
	battlestar/com2.c, battlestar/com5.c, battlestar/dayfile.c,
	battlestar/globals.c, battlestar/nightfile.c, boggle/boggle/bog.c,
	dm/dm.c, fish/fish.c, wump/wump.c: Update from NetBSD-current of
	1999-07-16 (more of my changes merged back in).

1999-07-15  Joseph S. Myers  <jsm@polyomino.org.uk>

	* adventure/save.c (restore): Check for errors writing the save
	file.

1999-07-14  Joseph S. Myers  <jsm@polyomino.org.uk>

	* boggle/boggle/bog.c (checkdict): Use SEEK_SET with dictseek().

	* atc/atc.6.in: New atc.6 from NetBSD-current of 1999-06-28,
	parametrised.
	* substfiles: Include atc/atc.6.

1999-06-30  Joseph S. Myers  <jsm@polyomino.org.uk>

	* battlestar/fly.c, fish/fish.c, hunt/hunt/otto.c,
	robots/Makefile.bsd, robots/auto.c, robots/extern.c,
	robots/main.c, robots/make_level.c, robots/move.c,
	robots/move_robs.c, robots/robots.6, robots/robots.h,
	robots/score.c, rogue/Makefile.bsd, sail/player.h, trek/trek.6.in:
	Update from NetBSD-current of 1999-05-18.
	* exec.objs: Update.
	* INSTALL, NEWS: Note score file format change.
	* robots/auto.c, robots/robots.h, robots/extern.c, robots/score.c:
	Fix new warnings.
	* backgammon/common_source/back.h: Mark `norec' and `errexit' as
	`noreturn'.
	* hangman/hangman.h: Mark `die' as `noreturn'.
	* hunt/huntd/hunt.h: Mark `bad_con', `bad_ver', `sigterm' and
	`sigemt' as `noreturn'.
	* phantasia/setup.c: Mark `Error' as `noreturn'.
	* pom/pom.c: Mark `badformat' as `noreturn'.
	* random/random.c: Mark `usage' as `noreturn'.
	* rogue/rogue.h: Mark `killed_by' and `win' as `noreturn'.

1999-04-10  Joseph S. Myers  <jsm@polyomino.org.uk>

	* BUGS: Update.

1999-04-04  Joseph S. Myers  <jsm@polyomino.org.uk>

	* Version 2.7.

	* bsd-games.lsm, bsd-games-non-free.lsm: Update.

	* mille/mille.c, mille/misc.c, mille/move.c, mille/save.c: Update
	from NetBSD-current of 1999-04-02.

1999-03-28  Joseph S. Myers  <jsm@polyomino.org.uk>

	* INSTALL: Update.

	* NEWS: Update.

	* mille/print.c (prscore): Mark parameter `for_real' possibly
	unused.

	* atc/input.c: Mark unused parameters (detected by current egcs
	snapshots but not by egcs 1.1) as such.

	* tetris/scores.c: Use <err.h> error reporting functions.

	* hunt/huntd/driver.c (init): Fork and exit to ensure that
	setsid() will work.

1999-03-27  Joseph S. Myers  <jsm@polyomino.org.uk>

	* backgammon/backgammon/main.c (main): Fix scoring if you bear off
	all your men and your opponent has borne off at least one man but
	has a man in your inner board or on the bar (thanks to Stuart
	Lamble <sjl@debian.lib.monash.edu.au>).
	* THANKS: Update.

	* arithmetic/arithmetic.6, backgammon/common_source/Makefile.bsd,
	battlestar/cypher.c, canfield/canfield/canfield.6.in,
	countmail/countmail.6, dm/dm.conf.5.in, fortune/strfile/strfile.8,
	gomoku/gomoku.6, random/random.6, tetris/tetris.c, worms/worms.6:
	Update from NetBSD-current of 1999-03-26.

1999-02-20  Joseph S. Myers  <jsm@polyomino.org.uk>

	* adventure/crc.c, adventure/hdr.h, adventure/init.c,
	adventure/io.c, adventure/main.c, adventure/setup.c,
	adventure/wizard.c, atc/Makefile.bsd,
	backgammon/backgammon/main.c, backgammon/backgammon/text.c,
	backgammon/backgammon/version.c,
	backgammon/common_source/Makefile.bsd,
	backgammon/common_source/back.h, backgammon/common_source/board.c,
	backgammon/common_source/fancy.c, backgammon/common_source/init.c,
	backgammon/common_source/save.c, backgammon/common_source/subs.c,
	backgammon/common_source/table.c,
	backgammon/teachgammon/Makefile.bsd,
	backgammon/teachgammon/data.c, backgammon/teachgammon/teach.c,
	backgammon/teachgammon/ttext1.c, backgammon/teachgammon/ttext2.c,
	backgammon/teachgammon/tutor.c, backgammon/teachgammon/tutor.h,
	battlestar/com1.c, battlestar/com4.c, battlestar/com6.c,
	battlestar/dayobjs.c, battlestar/extern.h, battlestar/getcom.c,
	battlestar/globals.c, battlestar/init.c, battlestar/misc.c,
	battlestar/nightobjs.c, battlestar/parse.c, battlestar/room.c,
	boggle/Makefile.bsd, boggle/boggle/Makefile.bsd,
	boggle/mkdict/Makefile.bsd, boggle/mkindex/Makefile.bsd,
	canfield/cfscores/Makefile.bsd, countmail/Makefile.bsd,
	cribbage/Makefile.bsd, fish/Makefile.bsd,
	fortune/datfiles/Makefile.bsd, fortune/unstr/Makefile.bsd,
	monop/Makefile.bsd, morse/Makefile.bsd, ppt/Makefile.bsd,
	primes/Makefile.bsd, quiz/Makefile.bsd, sail/assorted.c,
	sail/dr_1.c, sail/dr_2.c, sail/dr_3.c, sail/dr_4.c, sail/dr_5.c,
	sail/extern.h, sail/parties.c, sail/pl_1.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/sync.c, snake/snscore/Makefile.bsd,
	tetris/tetris.c, wargames/Makefile.bsd, wump/Makefile.bsd,
	wump/wump.c: Update from NetBSD-current of 1999-02-19.
	* backgammon/teachgammon/ttext1.c: Add more use of const.

1999-01-21  Joseph S. Myers  <jsm@polyomino.org.uk>

	* fortune/fortune/fortune.c: Use strlen(d_name) rather than
	incorrect #define d_namlen d_reclen.  Should be conditionalised in
	some way.

1999-01-12  Joseph S. Myers  <jsm@polyomino.org.uk>

	* bcd/bcd.6: Include references to the relevant standards.

1999-01-10  Joseph S. Myers  <jsm@polyomino.org.uk>

	* worms/worms.c (main): Use leaveok().

	* rain/rain.c (main): Use leaveok().

1999-01-09  Joseph S. Myers  <jsm@polyomino.org.uk>

	* adventure/hdr.h: Add comment saying where to find original
	source.

	* adventure/hdr.h, adventure/main.c, adventure/save.c,
	adventure/wizard.c: Change saved to saveday where appropriate.
	This shouldn't actually change the behaviour of the program,
	except perhaps when saving a game fails, but makes things a lot
	clearer.

	* pom/pom.c: Update from the 3rd edition of the reference book.
	Make date calculation work before the epoch.  Fix bug in
	waxing/waning display near full moon.  Use a sensible input date
	format.  (Based on Paul Janzen's work in OpenBSD.)
	* pom/pom.6: Update.

1999-01-08  Joseph S. Myers  <jsm@polyomino.org.uk>

	* battlestar/cypher.c (cypher): Add FALLTHROUGH comment as per
	NetBSD policy.

	* backgammon/backgammon/main.c: Remove unused junk to limit number
	of users (performed by dm); use \a instead of \007.

	* adventure/init.c, arithmetic/arithmetic.c, atc/grammar.y,
	atc/graphics.c, atc/log.c, atc/main.c, atc/update.c,
	backgammon/backgammon/main.c, backgammon/common_source/subs.c,
	teachgammon/teach.c, battlestar/com6.c, battlestar/fly.c,
	boggle/boggle/mach.c, canfield/canfield/canfield.c, cribbage/io.c,
	cribbage/score.c, dm/dm.c, fortune/fortune/fortune.c,
	fortune/unstr/unstr.c, gomoku/main.c, gomoku/pickmove.c,
	hangman/main.c, hunt/hunt/hunt.c, hunt/hunt/otto.c,
	hunt/huntd/faketalk.c, mille/mille.c, monop/monop.c,
	phantasia/io.c, robots/main.c, rogue/init.c, sail/main.c,
	sail/pl_1.c, sail/pl_7.c, snake/snake/snake.c, tetris/tetris.c,
	trek/abandon.c, trek/capture.c, trek/cgetc.c, trek/computer.c,
	trek/dcrept.c, trek/destruct.c, trek/dock.c, trek/dumpgame.c,
	trek/help.c, trek/impulse.c, trek/lrscan.c, trek/phaser.c,
	trek/play.c, trek/rest.c, trek/setwarp.c, trek/torped.c,
	trek/visual.c, worm/worm.c: Change `unused' parameters to
	`__unused__'.

	* bcd/bcd.6: Update from NetBSD-current of 1999-01-07.
	* phantasia/oldplayer.h: Remove (removed in NetBSD-current on
	response to my PR bin/6700, and unused since phantasia/convert.c
	was removed some time ago).
	* tetris/input.c, tetris/input.h, tetris/screen.c,
	tetris/tetris.6.in, tetris/tetris.c, tetris/tetris.h: Update from
	NetBSD-current of 1999-01-07 (adds piece preview option).

1999-01-07  Joseph S. Myers  <jsm@polyomino.org.uk>

	* fortune/strfile/strfile.c (main): Flush output file and check
	for write errors before closing it and exiting the program.

	* include/sys/cdefs.h: Use __unused__ in attribute, for cleanness
	and NetBSD alignment.

1999-01-01  Joseph S. Myers  <jsm@polyomino.org.uk>

	* fortune/strfile/strfile.c: Remove unused ALWAYS macro.

	* adventure/setup.c, boggle/mkdict/mkdict.c,
	boggle/mkindex/mkindex.c, monop/initdeck.c: Flush stdout or output
	file and check for errors on writing before terminating.

1998-12-28  Joseph S. Myers  <jsm@polyomino.org.uk>

	* pig/pig.6: Include utility name with .Nm where needed.

	* TODO: Update.

	* atc/extern.h: Whitespace adjustment for NetBSD alignment.

	* battlestar/com1.c, battlestar/com2.c, battlestar/com5.c,
	battlestar/dayfile.c, battlestar/globals.c,
	battlestar/nightfile.c: Spelling and punctuation corrections from
	OpenBSD.

1998-12-23  Joseph S. Myers  <jsm@polyomino.org.uk>

	* worms/worms.c, worms/worms.6: Convert to use curses; add delay
	option from OpenBSD; change to use <err.h> functions; fix signal
	handling.
	* TODO: Update.

	* rain/rain.c, rain/rain.6: Convert to use curses; add delay
	option from OpenBSD; fix signal handling.
	* TODO: Update.

1998-12-20  Joseph S. Myers  <jsm@polyomino.org.uk>

	* install-man.in: Use `ln -sf' rather than `ln -s'.  How come this
	never got noticed before?

	* Version 2.6.

	* configure: Really fix quiz/datfiles/index generation.

	* NEWS: Update.
	* bsd-games.lsm: Update.
	* bsd-games-non-free.lsm: Update.

1998-12-18  Joseph S. Myers  <jsm@polyomino.org.uk>

	* ppt/ppt.c: Print a space between command line arguments (bugfix
	from OpenBSD).

1998-12-14  Joseph S. Myers  <jsm@polyomino.org.uk>

	* configure (warning_flags): Add -Wwrite-strings to defaults.
	* TODO: Update.
	* NEWS: Update.

	* sail/assorted.c, sail/dr_1.c, sail/dr_2.c, sail/driver.h,
	sail/extern.h, sail/globals.c, sail/lo_main.c, sail/pl_3.c,
	sail/pl_4.c, sail/pl_7.c: Use const where appropriate.

	* tetris/scores.c, tetris/screen.c, tetris/shapes.c,
	tetris/tetris.c, tetris/tetris.h: Use const where appropriate.

	* snake/snake/move.c, snake/snake/snake.c, snake/snake/snake.h,
	snake/snscore/snscore.c: Use const where appropriate.

1998-12-12  Joseph S. Myers  <jsm@polyomino.org.uk>

	* sail/assorted.c, sail/dr_1.c, sail/dr_2.c, sail/dr_3.c,
	sail/dr_4.c, sail/dr_5.c, sail/extern.h, sail/parties.c,
	sail/pl_1.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/sync.c: Split Write() into two
	separate functions for string and numeric arguments.

	* robots/extern.c, robots/init_field.c, robots/main.c,
	robots/move.c, robots/query.c, robots/robots.h, robots/score.c:
	Use const where appropriate.

	* quiz/quiz.c, quiz/quiz.h, quiz/rxp.c: Use const where
	appropriate.

	* phantasia/gamesupport.c, phantasia/interplayer.c,
	phantasia/io.c, phantasia/main.c, phantasia/misc.c,
	phantasia/phantglobs.c, phantasia/phantglobs.h,
	phantasia/phantstruct.h, phantasia/setup.c: Use const where
	appropriate.

1998-12-11  Joseph S. Myers  <jsm@polyomino.org.uk>

	* NEWS: Update.

	* monop/cards.c, monop/execute.c, monop/getinp.c,
	monop/initdeck.c, monop/misc.c, monop/monop.def, monop/monop.ext,
	monop/monop.h, monop/morg.c, monop/print.c, monop/spec.c,
	monop/trade.c: Use const where appropriate.

	* trek/computer.c, trek/externs.c, trek/getpar.h, trek/getpar.c,
	trek/help.c, trek/kill.c, trek/lose.c, trek/out.c, trek/phaser.c,
	trek/play.c, trek/setup.c, trek/shield.c, trek/srscan.c,
	trek/systemname.c, trek/trek.h, trek/win.c: Use const where
	appropriate.

	* TODO: Update.

	* fortune/fortune/fortune.c: Use const where appropriate.

	* rain/rain.c: Use const where appropriate.

	* number/number.c: Use const where appropriate.

1998-12-10  Joseph S. Myers  <jsm@polyomino.org.uk>

	* morse/morse.c: Use const where appropriate.

	* worm/worm.c: Use const where appropriate.

	* worms/worms.c: Include <termcap.h> instead of providiing
	prototypes for termcap functions; use const where appropriate;
	tputs fixes.

	* wump/wump.c (instructions): Use const where appropriate.

	* phantasia/fight.c, phantasia/gamesupport.c,
	phantasia/interplayer.c, phantasia/main.c, phantasia/misc.c: Use
	symbolic argument with fseek.

	* sail/sync.c: Use symbolic argument with fseek.

	* monop/initdeck.c: Use symbolic argument with fseek.

	* monop/cards.c (get_card): Use symbolic argument with fseek.

	* hangman/getword.c (getword): Use symbolic argument with fseek.

	* fortune/fortune/fortune.c, fortune/strfile/strfile.c,
	fortune/unstr/unstr.c: Use symbolic argument with fseek.

	* boggle/boggle/bog.c: Use symbolic argument with dictseek (which
	gets passed to fseek).

	* BUGS: Update.

	* rogue/save.c (save_into_file): Check for allocation failure.

	* rogue/init.c: Check for allocation failure.

	* snake/snscore/snscore.c (main): Check for allocation failure.

	* worm/worm.c: Check for allocation failure.

	* monop/prop.c (add_list): Check for allocation failure.

	* monop/monop.c (getplayers): Check for allocation failure.

	* monop/initdeck.c (main): Check for allocation failure; use
	symbolic argument for fseek; exit with error status if opening
	output file fails.

	* monop/cards.c (set_up): Check for allocation failure.
	* monop/monop.h: Include <err.h>.

1998-12-08  Joseph S. Myers  <jsm@polyomino.org.uk>

	* adventure/wizard.c (ciao): Avoid buffer overrun when reading
	save file name.

	* morse/morse.c, phantasia/Makefile.bsd, quiz/Makefile.bsd,
	rogue/hit.c, rogue/init.c, rogue/inventory.c, rogue/level.c,
	rogue/machdep.c, rogue/message.c, rogue/monster.c, rogue/move.c,
	rogue/object.c, rogue/pack.c, rogue/play.c, rogue/ring.c,
	rogue/rogue.h, rogue/room.c, rogue/save.c, rogue/score.c,
	rogue/throw.c, rogue/trap.c, rogue/use.c, rogue/zap.c,
	wump/Makefile.bsd: Update from NetBSD-current of 1998-12-07.

1998-12-07  Joseph S. Myers  <jsm@polyomino.org.uk>

	* atc/Makefile.bsd, atc/extern.c, atc/extern.h, atc/graphics.c,
	atc/input.c, atc/log.c, atc/main.c, atc/update.c,
	backgammon/backgammon/main.c, backgammon/common_source/subs.c,
	backgammon/teachgammon/teach.c, bcd/bcd.6, boggle/Makefile.bsd,
	boggle/boggle/Makefile.bsd, cribbage/Makefile.bsd,
	fish/Makefile.bsd, fortune/datfiles/Makefile.bsd,
	fortune/datfiles/fortunes, fortune/datfiles/fortunes.sp.ok,
	monop/Makefile.bsd: Update from NetBSD-current of 1998-12-07.

	* exec.objs: Remove references to lib/select.o.
	* lib/select.c: Remove.

	* hunt/huntd/driver.c (main): Initialise linger when required to
	avoid need for select() wrapper.

	* hunt/huntd/ctl_transact.c (ctl_transact): Reinitialise wait to
	avoid need for select() wrapper.

	* hunt/hunt/hunt.c (list_drivers): Reinitialise wait in each
	cycle, so as not to need select() wrapper.

	* README: Update.

	* TODO: Update.

	* tetris/tetris.c (main): Die if fds 0, 1, 2 aren't already open.

	* snake/snake/snake.c (main): Die if score file gets fd < 3.

	* sail/main.c (main): Die if fds 0, 1, 2 aren't already open.

	* sail/sync.c: Size sync_lock and sync_file according to the
	length required for the name formatted.

	* rogue/init.c (init): Die if fds 0, 1, 2 aren't already open.

	* robots/main.c (main): Die if the score file gets fd < 3.

	* phantasia/main.c (initialstate): Die if the first file opened
	gets fd < 3.

	* cribbage/crib.c (main): Die if the score file gets fd < 3.

	* canfield/canfield/canfield.c (initall): Die if the score file
	gets fd < 3.

	* battlestar/com6.c (open_score_file): Die if the score file gets
	fd < 3.

	* atc/log.c (open_score_file): Die if the score file gets fd < 3.

1998-12-06  Joseph S. Myers  <jsm@polyomino.org.uk>

	* TODO: Update.

	* sail/pl_main.c (initialize): Use snprintf, not sprintf.  This
	fixes a possible buffer overrun; it comes from RedHat and the
	LSAP, though neither ever bothered to send it to me.

	* configure: Don't put `#!/bin/sh' and an `autogenerated' comment
	in quiz/datfiles/index.

1998-09-24  Joseph S. Myers  <jsm@polyomino.org.uk>

	* Version 2.5.

	* bsd-games.lsm, bsd-games-non-free.lsm: Update.

	* Paul Janzen has checked with the original author, and it turns
	out the the BSD licence applies to boggle and obsoletes the old
	one, so boggle can go in the main bsd-games package.
	* boggle/README: Update accordingly.
	* boggle/README.linux, boggle/Makefrag: Update accordingly.  No
	longer need to include uuencoded patch.
	* boggle/boggle/helpfile: Update accordingly.
	* INSTALL: Update accordingly.
	* NEWS: Update accordingly.
	* PACKAGING: Update accordingly.
	* README, README.non-free: Update accordingly.
	* bsd-games.lsm, bsd-games-non-free.lsm: Update accordingly.

	* TODO: Update accordingly.
	* THANKS: Update accordingly.

1998-09-23  Joseph S. Myers  <jsm@polyomino.org.uk>

	* NEWS: Update.

	* trek/main.c: Make Mother uid_t.

	* hunt/hunt/hunt.c: Don't declare errno.

	* hunt/huntd/hunt.h: Don't declare errno - include <errno.h>
	instead.

	* factor/Makefrag: Define _GNU_SOURCE, for isblank().
	* number/Makefrag, primes/Makefrag: Likewise.

	* With glibc 2.1, various headers can be included with an
	__need_foo preprocessor define to make them only define some
	particular symbols; this interacts badly with multiple inclusion
	protection on the header wrappers in bsd-games.  Therefore, we
	must not protect wrapper headers against multiple inclusion, but
	instead make sure they are safe to be included multiple times and
	only protect local bits that need it.
	* include/signal.h: Don't protect against multiple inclusion -
	only protect the sig_t definition that needs it.
	* include/stdlib.h: Don't protect against multiple inclusion.
	* include/stdio.h: Don't protect against multiple inclusion.
	* include/termios.h: Don't protect against multiple inclusion.
	* include/sys/cdefs.h: Don't protect against multiple inclusion.
	* include/sys/ttydefaults.h: Don't protect against multiple
	inclusion.

	* dm/dm.c: Don't include <nlist.h> - it isn't needed, and doesn't
	exist with some glibc versions.

	* INSTALL: Minor changes.

1998-09-15  Joseph S. Myers  <jsm@polyomino.org.uk>

	* atc/Makefile.bsd, atc/extern.h, atc/input.c, atc/main.c,
	backgammon/backgammon/backgammon.6.in,
	backgammon/common_source/back.h, backgammon/common_source/fancy.c,
	backgammon/common_source/save.c, backgammon/common_source/subs.c,
	backgammon/teachgammon/tutor.h, banner/banner.c,
	battlestar/extern.h, battlestar/save.c, boggle/boggle/extern.h,
	caesar/caesar.c, canfield/canfield/canfield.c,
	cribbage/cribbage.h, dm/dm.c, factor/factor.c, fish/fish.c,
	fortune/datfiles/fortunes, fortune/fortune/fortune.c,
	fortune/strfile/strfile.c, gomoku/gomoku.h, hunt/hunt/hunt.c,
	hunt/huntd/hunt.h, mille/mille.h, number/number.c, pig/pig.c,
	primes/primes.c, quiz/quiz.c, robots/robots.h, rogue/rogue.h,
	sail/extern.h, snake/snake/snake.h, tetris/tetris.c,
	tetris/tetris.h, worm/worm.c, worms/worms.c, wump/wump.c: Update
	from NetBSD-current of 1998-09-14.

	* atc/games/ATC_Scores, sail/:file, sail/:scene, sail/:ship,
	sail/:specs, trek/board.x: Removed (unused, and removed in
	NetBSD-current of 1998-09-14 in response to PR bin/6083).

1998-09-14  Joseph S. Myers  <jsm@polyomino.org.uk>

	* adventure/done.c, adventure/extern.h, adventure/io.c,
	adventure/main.c, adventure/setup.c, adventure/subr.c,
	adventure/vocab.c, arithmetic/arithmetic.c: Update from
	NetBSD-current of 1998-09-14.

	* mille/move.c: Remove unused Movenames[] array.

	* mille/comp.c, mille/mille.h, mille/extern.c, mille/move.c,
	mille/save.c, mille/print.c: Use const where appropriate.

	* robots/robots.h: #undef S_BONUS before defining.

	* mille/mille.h: #undef S_* constants before defining.

	* atc/def.h: #undef S_* constants before defining.

	* hunt/hunt/connect.c, hunt/huntd/hunt.h, hunt/hunt/main.c,
	hunt/hunt/playit.c, hunt/huntd/answer.c, hunt/huntd/draw.c,
	hunt/huntd/faketalk.c, hunt/huntd/get_names.c,
	hunt/huntd/pathname.c, hunt/huntd/terminal.c, hunt/huntd/driver.c:
	Use const where appropriate.

	* hangman/extern.c, hangman/hangman.h, hangman/setup.c: Use const
	where appropriate.

1998-09-13  Joseph S. Myers  <jsm@polyomino.org.uk>

	* gomoku/bdisp.c, gomoku/gomoku.h, gomoku/main.c,
	gomoku/makemove.c, gomoku/pickmove.c, gomoku/stoc.c: Use const
	where appropriate.

	* configure: Generate GNUmakefile, not Makefile - the makefile and
	makefile fragments are thoroughly dependent on GNU Make.

	* backgammon/common_source/back.h: No longer any need to define
	OXTABS.
	* snake/snake/move.c: No longer any need to define CTRL or OXTABS.
	* tetris/screen.c: No longer any need to define OXTABS.
	* mille/misc.c: No longer any need to define CTRL.
	* snake/snake/snake.c: No longer any need to define CTRL.

	* include/sys/ttydefaults.h: Define OXTABS if not already defined.
	* include/termios.h: New file, also include <sys/ttydefaults.h>.

	* THANKS: Update.

	* adventure/crc.c: Mark crctab[] const.

	* adventure/vocab.c (vocab): Use errx() for error messages.

	* adventure/main.c (main): Use bug(22) rather than printing "Error
	22".

	* adventure/io.c (rdesc): Use errx() for error messages.

	* monop/Makefile.bsd: Update from NetBSD-current of 1998-09-13.

	* adventure/crc.c, adventure/extern.h, adventure/io.c,
	adventure/save.c, adventure/vocab.c: Update from NetBSD-current of
	1998-09-13 (const changes merged into NetBSD).

1998-09-12  Joseph S. Myers  <jsm@polyomino.org.uk>

	* All games now updated from NetBSD-current of 1998-09-12.

	* adventure/extern.h, adventure/main.c, atc/def.h, atc/update.c,
	backgammon/common_source/subs.c, battlestar/battlestar.6,
	bcd/bcd.6, boggle/mkindex/mkindex.c, canfield/canfield/canfield.c,
	hangman/hangman.h, hangman/main.c, hunt/huntd/hunt.h,
	monop/execute.c, monop/monop.c, pom/pom.c, rogue/monster.c,
	rogue/object.c, rogue/pack.c, rogue/room.c, sail/dr_2.c,
	sail/sync.c, snake/snscore/snscore.c, trek/dumpgame.c,
	trek/warp.c: Update from NetBSD-current of 1998-09-12.

1998-09-11  Joseph S. Myers  <jsm@polyomino.org.uk>

	* BUGS: Update.

	* SECURITY: Update.

	* INSTALL: Update.

	* NEWS: Update.

	* TODO: Update.

1998-09-10  Joseph S. Myers  <jsm@polyomino.org.uk>

	* adventure/io.c (pspeak): Give "Out of memory!" error on
	allocation failure rather than bug(108).

1998-09-07  Joseph S. Myers  <jsm@polyomino.org.uk>

	* boggle/README.linux, boggle/Makefrag: Update.

1998-09-06  Joseph S. Myers  <jsm@polyomino.org.uk>

	* */Makefrag: Further changes for the new build system.

1998-09-05  Joseph S. Myers  <jsm@polyomino.org.uk>

	* New configuration/build system, based on a single makefile that
	includes makefile fragments that together describe all the
	dependencies (using GNU make's automatic dependency generation).
	See `Recursive Make Considered Harmful' by Peter Miller
	<http://www.canb.auug.org.au/~millerp/rmch/recu-make-cons-harm.html>
	for a discussion of the advantages of this over recursive make.
	* configure, install-score.in, Makeconfig.in: Changes for the new
	system.
	* Makefile: Removed.
	* mkdep, exec.libs, exec.objs: New files.
	* */Makefile, */*/Makefile: Renamed to Makefrag and changed for
	the new system.
	* hunt/Makeconfig: Adapted to the new system.
	* backgammon/README.linux: Removed.
	* TODO: Update.
	* PACKAGING: Update.
	* INSTALL: Update.
	* fortune/fortune/pathnames.in: Remove TEST support.
	* fortune/README.linux: Update.

	* Version 2.4.

	* bsd-games-non-free.lsm: Update.

	* bsd-games.lsm: Update.

	* TODO: Update.

	* INSTALL: Update.

	* BUGS: Update.

1998-09-04  Joseph S. Myers  <jsm@polyomino.org.uk>

	* backgammon/teachgammon/Makefile (COBJS): No need to include
	odds.o.

	* TODO: Update.

	* NEWS: Update.

	* THANKS: Update.

	* dm/dm.c: Allow time-based games play to be turned off from 11pm
	to midnight; remove spurious terminal full stop from err() string
	(patch from Paul Janzen <pjanzen@foatdi.harvard.edu>).

1998-09-02  Joseph S. Myers  <jsm@polyomino.org.uk>

	* NEWS: Update.

	* lib/fgetln.c (fgetln): Check for allocation failure.

	* hunt/huntd/shots.c (chkslime): Check for allocation failure.

	* hunt/huntd/expl.c (showexpl): Check for allocation failure.

	* hunt/hunt/hunt.c: Check for allocation failure.

	* gomoku/pickmove.c: Check for allocation failure.
	* BUGS: Update about gomoku defect.

	* INSTALL: Update egcs 1.1 references.

	* battlestar/dayobjs.c (dayobjs): Add missing initialiser at end.
	* battlestar/nightbojs.c (nightobjs): Likewise.

1998-09-01  Joseph S. Myers  <jsm@polyomino.org.uk>

	* backgammon/common_source/fancy.c (getcaps): Check for allocation
	failure.

	* atc/graphics.c (loser): Check for p being NULL, which it could
	be if we tun out of memory.

	* atc/update.c: Allow for newplane() to return NULL if out of
	memory.

	* adventure/vocab.c (vocab): Check for memory allocation failure.

	* adventure/io.c (rtrav): Check for memory allocation failure.

	* NEWS: Update.

	* rogue/save.c (save_into_file): Avoid buffer overrun.

	* rogue/Makefile (object.o): Build object.o with
	-fwritable-strings - the other files don't need it.  Also don't
	build curses.c.

	* TODO: Update.

	* rogue/rogue.h: Undefine CURSES after including <curses.h>.

	* rogue/rogue.h, rogue/hit.c, rogue/message.c, rogue/init.c,
	rogue/machdep.c, rogue/save.c, rogue/inventory.c, rogue/object.c,
	rogue/level.c, rogue/monster.c, rogue/pack.c, rogue/play.c,
	rogue/ring.c, rogue/room.c, rogue/score.c, rogue/throw.c,
	rogue/trap.c, rogue/use.c, rogue/zap.c, rogue/move.c: Use const
	where appropriate.

	* fish/fish.c: Use const where appropriate.

	* phantasia/io.c (getanswer): Mark loop, oldx, oldy volatile.

1998-08-31  Joseph S. Myers  <jsm@polyomino.org.uk>

	* adventure/setup.c (main): String passed to err() shouldn't have
	full stop at its end.

	* factor/factor.c, primes/pr_tbl.c, primes/primes.c,
	primes/pattern.c: Use const where appropriate.

	* dm/dm.c: Use const where appropriate.

	* cribbage/cribbage.h, cribbage/cards.c, cribbage/instr.c,
	cribbage/io.c, cribbage/score.c, cribbage/support.c: Use const
	where appropriate.

1998-08-30  Joseph S. Myers  <jsm@polyomino.org.uk>

	* NEWS: Update.

	* All games now updated from NetBSD-current of 1998-08-30.

	* adventure/extern.h, adventure/hdr.h, adventure/init.c,
	adventure/io.c, backgammon/backgammon/main.c,
	backgammon/common_source/save.c, backgammon/teachgammon/teach.c,
	battlestar/com5.c, boggle/boggle/bog.c,
	canfield/canfield/canfield.c, canfield/cfscores/cfscores.c,
	cribbage/crib.c, cribbage/score.c, fortune/fortune/fortune.c,
	hunt/hunt/hunt.c, monop/cards.c, monop/morg.c, phantasia/fight.c,
	phantasia/main.c, phantasia/misc.c, sail/dr_1.c, sail/pl_3.c,
	sail/pl_7.c, sail/sync.c, trek/kill.c, trek/move.c, trek/nova.c,
	trek/shield.c, wump/wump.c: Update from NetBSD-current of
	1998-08-30.

	* dm/dm.c (main): Do unsetenv("TZ") to prevent people cheating on
	the times they can play.

	* atc/main.c (main): Remove comment on ICRNL change.
	* atc/input.c: Remove CRTOKEN stuff (conditional on SYSV) - no
	need for it with ICRNL.

1998-08-29  Joseph S. Myers  <jsm@polyomino.org.uk>

	* battlestar/com5.c (give): Add explanatory comment.

1998-08-28  Joseph S. Myers  <jsm@polyomino.org.uk>

	* battlestar/com5.c (give): Proper fix this time: reset wordnumber
	before doing an error return.

	* atc/graphics.c (getAChar): Check against EOF, not -1;
	clearerr(stdin) while the error occurs since the error indicator
	may have been set; initialise errno to avoid problems with a real
	EOF and errno left as EINTR.

	* boggle/boggle/bog.c (compar): Use const more.

	* INSTALL: Update.

	* boggle/boggle/bog.c (main): Change linux/PURE variants to
	NEW_STYLE define.
	* boggle/boggle/Makefile: NEW_STYLE is default.
	* boggle/Makefile (linux-patch): Change construction of Linux
	patch.
	* boggle/README.linux: Adjust accordingly.
	* INSTALL: Likewise.

	* sail/extern.h, sail/dr_1.c, sail/dr_2.c, sail/dr_3.c: Rename
	strend() to str_end(), isolated() to is_isolated(), toughmelee()
	to is_toughmelee().

	* phantasia/phantdefs.h: #undef S_* constants before definition.

	* monop/monop.h, monop/misc.c, monop/trade.c: Rename isnot_monop()
	to is_not_monop().

	* mille/mille.h, mille/comp.c, mille/init.c, mille/move.c,
	mille/types.c: Rename issafety to is_safety, isrepair to
	is_repair.

1998-08-27  Joseph S. Myers  <jsm@polyomino.org.uk>

	* hunt/huntd/hunt.h, hunt/huntd/draw.c, hunt/huntd/shots.c: Rename
	isplayer to is_player.

	* gomoku/gomoku.h, gomoku/main.c: Rename log() to glog().

	* cribbage/cards.c, cribbage/cribbage.h, cribbage/io.c: Rename
	isone() to is_one().

	* backgammon/common_source/fancy.c,
	backgammon/common_source/back.h: Remove tos().

	* boggle/boggle/help.c (help): Make change to use redrawwin()
	conditional on NCURSES_VERSION.

	* configure: Suggest mode 2770 for sail directory, better than
	0770.

	* NEWS: Update.

	* PACKAGING: Add new Warnings section.

	* battlestar/extern.h, battlestar/com6.c, battlestar/init.c:
	Change uname[] to username[].

	* backgammon/teachgammon/tutor.h: Mark leave() and tutor()
	noreturn.

	* TODO: Update.

	* BUGS: Update.

1998-08-26  Joseph S. Myers  <jsm@polyomino.org.uk>

	* adventure/vocab.c (vocab): Exit with status 1 on error.

	* adventure/main.c (main): Exit with status 1 on error.

	* adventure/io.c (rdesc): Exit with status 1 on error.

	* adventure/hdr.h (FLUSHLINE): Handle EOF.

	* adventure/io.c: Handle EOF.

	* adventure/wizard.c (ciao): Handle EOF.

	* adventure/setup.c: Don't put \n in error strings (err and errx
	add it).

	* backgammon/backgammon/main.c: Change condition on ospeed being
	declared to #ifndef NCURSES_VERSION.
	* backgammon/teachgammon/teach.c: Likewise.
	* snake/snake/move.c: Likewise.
	* snake/snake/snake.h: Likewise.
	* tetris/screen.c: Likewise.

	* backgammon/backgammon/text.c (text): Switch order of char and
	const.

	* battlestar/cypher.c (cypher): In take all, handle BATHGOD and
	NORMGOD properly.

	* rogue/machdep.c (md_slurp): Use POSIX version unconditionally.

	* hunt/huntd/driver.c (init): Use setsid() to become session
	leader.

	* canfield/canfield/canfield.c: Use const where appropriate.

	* canfield/cfscores/cfscores.c: Use const where appropriate.

	* caesar/caesar.c: Use const where appropriate.

	* rogue/rogue.h: Condition some prototypes on #ifdef CURSES.

1998-08-25  Joseph S. Myers  <jsm@polyomino.org.uk>

	* atc/graphics.c (getAChar): Just use SYSV version always rather
	than conditioning on SYSV || __linux__; the efficiency loss on
	systems where getchar() retries is insignificant.

	* adventure/extern.h, adventure/init.c, adventure/main.c,
	adventure/subr.c, adventure/vocab.c, adventure/wizard.c: Update
	from NetBSD-current of 1998-08-25.

	* boggle/README.linux: Rebuild.

	* configure: Suggest sail directory should not be world
	accessible.

	* sail/sync.c: Use egid when checking for file existence, so that
	the sail directory can be mode 770.

	* boggle/boggle/extern.h, boggle/boggle/word.c,
	boggle/boggle/prtable.c, boggle/boggle/mach.c,
	boggle/boggle/bog.c: Use const where appropriate.

1998-08-24  Joseph S. Myers  <jsm@polyomino.org.uk>

	* arithmetic/arithmetic.c: Use const where appropriate.

	* include/sys/cdefs.h: Use const in __RCSID and __COPYRIGHT.

	* bcd/bcd.c: Use const where appropriate.

	* mille/save.c (rest_f): Use O_RDONLY in open().

	* adventure/subr.c, adventure/extern.h: Make checkhints(),
	closing() and caveclose() return void.

	* adventure/subr.c, adventure/extern.h: Make bug() return void.

	* adventure/subr.c, adventure/extern.h: badmove()'s return value
	is never used, so make it void.

	* adventure/extern.h: twrite() returns void, and is conditioned on
	#ifdef DEBUG.

	* adventure/io.c, adventure/extern.h: Remove unused function
	confirm().

	* adventure/done.c, adventure/extern.h, adventure/main.c: die()
	can only return 2000, so make it void.

	* battlestar/com2.c, battlestar/com3.c, battlestar/cypher.c:
	Update from NetBSD-current of 1998-08-24.

	* battlestar/init.c (getutmp): Use strncpy().

	* battlestar/extern.h, battlestar/globals.c, battlestar/words.c,
	battlestar/dayobjs.c, battlestar/nightobjs.c, battlestar/misc.c,
	battlestar/init.c, battlestar/com4.c, battlestar/parse.c,
	battlestar/save.c, battlestar/getcom.c, battlestar/com1.c,
	battlestar/com6.c, battlestar/room.c: Use const where appropriate.

	* banner/banner.c: Use const where appropriate.

	* adventure/io.c: Make tape, iotape const.

	* backgammon/teachgammon/Makefile: Add dependency on tutor.h.

	* backgammon/backgammon/main.c, backgammon/backgammon/text.c,
	backgammon/backgammon/version.c: Use const where appropriate.

	* backgammon/common_source/save.c: Use <errno.h>, not extern int
	errno.

	* backgammon/teachgammon/tutor.c, backgammon/teachgammon/tutor.h,
	backgammon/teachgammon/data.c, backgammon/teachgammon/teach.c,
	backgammon/teachgammon/ttext1.c, backgammon/teachgammon/ttext2.c:
	Use const where appropriate.

	* backgammon/backgammon/backgammon.6.in,
	backgammon/common_source/save.c: Remove nonsense about executing
	save files; open them without execute permission.

	* backgammon/common_source/save.c: Use symbolic constants in
	open() and for errno.

	* backgammon/common_source/fancy.c,
	backgammon/common_source/back.h, backgammon/common_source/save.c,
	backgammon/common_source/subs.c, backgammon/common_source/init.c,
	backgammon/common_source/table.c,
	backgammon/common_source/board.c: Use const where appropriate.

	* backgammon/common_source/subs.c,
	backgammon/common_source/back.h: Remove strset() (not used).

1998-08-23  Joseph S. Myers  <jsm@polyomino.org.uk>

	* TODO: Update.

	* atc/input.c, atc/extern.h, atc/graphics.c, atc/update.c,
	atc/main.c, atc/extern.c, atc/log.c: Use const where appropriate.

	* adventure/hdr.h, adventure/init.c: Make delhit volatile
	sig_atomic_t; only assign to it.

	* adventure/crc.c, adventure/extern.h, adventure/io.c,
	adventure/save.c, adventure/vocab.c: Use const where appropriate.

	* adventure/vocab.c, adventure/extern.h: Make copystr(), weq() and
	length() into macros that use standard C library functions.

	* adventure/wizard.c, adventure/extern.h, adventure/main.c: Remove
	unused arg of ciao().

	* adventure/wizard.c, adventure/extern.h, adventure/init.c,
	adventure/main.c: Remove unused arg of Start().

	* adventure/subr.c, adventure/extern.h, adventure/main.c: Remove
	unused arg of dark().

	* adventure/subr.c, adventure/extern.h, adventure/main.c: Remove
	unused arg of liq().

	* adventure/init.c, adventure/extern.h, adventure/main.c: Remove
	unused arg of init().

1998-08-21  Joseph S. Myers  <jsm@polyomino.org.uk>

	* sail/extern.h, sail/main.c, sail/dr_main.c: Remove handling of
	being setuid - nowadays games only run setgid.

	* rogue/machdep.c (md_shell): Remove unnecessary setuid().

	* fish/fish.c (instructions): Remove setuid() and setgid() in
	child, no longer necessary.

	* INSTALL: Add note about the desirability of using tmac.doc from
	NetBSD.

	* worm/worm.6: Revert unnecessary changes.

	* hangman/hangman.6.in: Revert unnecessary changes.

	* dm/dm.8.in: Revert unnecessary changes.

	* bcd/bcd.6: Revert unnecessary changes.

	* backgammon/backgammon/backgammon.6.in: Revert some unnecessary
	changes.

1998-08-20  Joseph S. Myers  <jsm@polyomino.org.uk>

	* hunt/hunt/hunt.c: Include <sys/param.h> for MAXHOSTNAMELEN.

	* snake/snake/move.c, snake/snake/snake.h, snake/snake/snake.c:
	Rename raw() to my_raw() (from Joey Hess <joey@kitenet.net>).

	* robots/robots.h: Include <errno.h> (from Joey Hess
	<joey@kitenet.net>).

1998-08-19  Joseph S. Myers  <jsm@polyomino.org.uk>

	* number/number.c (convert): Decrement len when there's a minus
	sign.

	* Version 2.3.

	* sail/Makefile (install): Use install prefix.

	* NEWS: Update.

	* All games now updated from NetBSD-current of 1998-08-19.

	* tetris/tetris.c: Update from NetBSD-current of 1998-08-19.

	* tetris/screen.c: Update from NetBSD-current of 1998-08-19.

	* TODO: Update.

	* NEWS: Update.

	* bsd-games.lsm: Update.

	* AUTHORS (countmail): Restore.

	* README: Update.

	* countmail/*: Restore, updated from NetBSD-current of 1998-08-19
	(which has a licence for it).

	* atc/input.c: Update from NetBSD-current of 1998-08-19.

	* adventure/Makefile.bsd: Update from NetBSD-current of
	1998-08-19.

	* SECURITY: Update.

	* bsd-games-non-free.lsm: Update.

	* bsd-games.lsm: Update.

	* boggle/README.linux: Regenerate.

	* NEWS: Update.

	* sail/sync.c: Restore privileges when appropriate.

	* sail/misc.c (logger): Restore privileges for file open.

	* sail/main.c (main): Initialise gid and egid; drop egid leaving
	saved gid.

	* sail/extern.h: Add gid and egid.

	* sail/Makefile (install): Install sail directory.

	* sail/sync.c: Use defines from pathnames.h.

	* sail/pathnames.h.in: Put definitions here.

	* Makeconfig.in: Add appropriate macros.

	* configure: Configure a directory for sail temporary files.

	* sail/*: Revert previous changes.  Sail needs to keep privileges
	for sync file handling.

	* atc/log.c (log_score): Fix truncate logic.

	* configure: Remove some of the less useful warning flags just
	added.

	* wump/wump.c (int_compare): Use const.

	* robots/score.c (cmp_sc): Use const.

	* fortune/strfile/strfile.c (cmp_str): Use const.

	* boggle/boggle/bog.c (compar): Use const.

	* atc/log.c (compar): Use const.

	* configure: Add more warning flags to the default.

1998-08-18  Joseph S. Myers  <jsm@polyomino.org.uk>

	* INSTALL: Minor changes.

	* wump/wump.c: Mark usage() noreturn.

	* worms/worms.c: Mark nomem() and onsig() noreturn.

	* worm/worm.c: Mark leave() and crash() noreturn.

	* tetris/tetris.c: Mark usage() and onintr() noreturn.

	* tetris/tetris.h: Mark stop() noreturn.

	* snake/snake/snake.h: Mark done() and stop() noreturn.

	* sail/extern.h: Mark leave() and choke() noreturn.

	* TODO: Update.

	* rogue/rogue.h: Mark clean_up(), error_save(), md_exit(),
	put_scores() and sf_error() noreturn.

	* robots/robots.h: Mark quit() noreturn.

	* gomoku/gomoku.h: Mark quit(), quitsig() and panic() noreturn.

	* quiz/quiz.c: Mark usage() noreturn.

	* primes/primes.c: Mark usage() noreturn.

	* pig/pig.c: Mark usage() noreturn.

	* number/number.c: Mark usage() noreturn; remove spurious toobig()
	prototype (no such function defined or used).

	* mille/mille.h: Mark die() noreturn.

1998-08-17  Joseph S. Myers  <jsm@polyomino.org.uk>

	* hunt/huntd/hunt.h: Mark cleanup() noreturn.

	* hunt/hunt/hunt.c: Mark leave() noreturn.

	* fortune/strfile/strfile.c: Mark usage() noreturn.

	* fortune/fortune/fortune.c: Mark usage() noreturn.

	* fish/fish.c: Mark usage() noreturn; actually use it.

	* cribbage/cribbage.h: Mark rint() noreturn.

	* factor/factor.c: Mark usage() noreturn.

	* dm/dm.c: Mark play() noreturn.

	* canfield/canfield/canfield.c: Mark cleanup() noreturn.

	* caesar/caesar.c: Mark printit() noreturn.

	* boggle/boggle/extern.h: Mark usage() noreturn.
	* boggle/README.linux: Rebuild.

	* battlestar/extern.h: Mark die(), diesig() and live() noreturn.

	* backgammon/common_source/back.h: Mark getout() noreturn.

	* atc/extern.h: Make loser() and log_score_quit() noreturn.

	* arithmetic/arithmetic.c: Mark intr() and usage() noreturn.

	* adventure/extern.h: Mark done() noreturn.

	* adventure/subr.c (bug): Use exit status 1 for a fatal error.

	* snake/snake/snake.c (post): Use SEEK_SET rather than 0 in
	lseek().

	* robots/score.c (score): Use SEEK_SET rather than 0 in lseek().

	* fortune/fortune/fortune.c (get_fort): Use SEEK_SET rather than 0
	in lseek().

	* canfield/cfscores/cfscores.c (printuser): Use SEEK_SET rather
	than 0 in lseek().

	* canfield/canfield/canfield.c (suspend): Use SEEK_SET rather than
	0 in lseek().
	(cleanup): Same.

	* SECURITY: Clarify.

1998-08-15  Joseph S. Myers  <jsm@polyomino.org.uk>

	* Version 2.2.

	* robots/score.c (score): Check for score file not having been
	successfully opened.

	* README: Update.

	* INSTALL: Update.

	* configure: Fix typo.

	* atc/log.c (log_score): Use it, avoiding possible buffer overrun.

	* atc/struct.h (SCORE_SCANF_FMT): Define to be format for scnaf
	from score file, with appropriate max field widths.

	* configure: Update.

	* bsd-games.lsm: Update.

	* TODO: Update.

	* AUTHORS (countmail): Remove.

	* NEWS: Update.

	* README: Update.

	* countmail/*: Remove.

	* bsd-games-non-free.lsm: Update.

	* bsd-games.lsm: Update.

	* PACKAGING: Update.

	* BUGS: Update.

	* NEWS: Update.

	* TODO: Update.

	* SECURITY: New file, describing security issues, taken from
	INSTALL.
	* INSTALL: Update.

	* wump/wump.c (main): Revoke setgid privileges.

	* worms/worms.c (main): Revoke setgid privileges.

	* worm/worm.c (main): Revoke setgid privileges.

	* trek/main.c (main): Revoke setgid privileges.

	* tetris/tetris.c, tetris/score.c: Only have privileged egid when
	needed.

	* tetris/tetris.h: New variables gid, egid.

	* snake/snscore/snscore.c (main): Revoke setgid privileges.

	* snake/snake/snake.c: Open score files as early as possible, then
	drop setgid privileges.

	* sail/misc.c (open_log): New function: opens log file.
	* sail/extern.h: Declare this.
	* sail/misc.c (logger): Use already open log file.
	* sail/main.c: Open log file, then drop privileges.

	* rogue/init.c, rogue/machdep.c, rogue/score.c: Only have
	privileged egid when needed.

	* rogue/init.c: New variables gid, egid; initialise them.
	* rogue/rogue.h: Declare them; include <sys/types.h> and
	<unistd.h>.

	* robots/main.c (main), robots/extern.h, robots/score.c (score):
	Open score file at start, then drop privileges (from OpenBSD).

	* cribbage/crib.c (main): Set close-on-exec flag on log file.

	* random/random.c (main): Revoke setgid privileges.

	* rain/rain.c (main): Revoke setgid privileges.

	* quiz/quiz.c (main): Revoke setgid privileges.

	* primes/primes.c (main): Revoke setgid privileges.

	* ppt/ppt.c (main): Revoke setgid privileges.

	* pom/pom.c (main): Revoke setgid privileges.

	* pig/pig.c (main): Revoke setgid privileges.

	* number/number.c (main): Revoke setgid privileges.

	* morse/morse.c (main): Revoke setgid privileges.

	* monop/monop.c (main): Revoke setgid privileges.

	* mille/mille.c (main): Revoke setgid privileges.

	* hunt/hunt/hunt.c (main): Revoke setgid privileges.

	* hangman/main.c (main): Revoke setgid privileges.

	* gomoku/main.c (main): Revoke setgid privileges.

	* fortune/fortune/fortune.c (main): Revoke setgid privileges.

	* fish/fish.c (main): Revoke setgid privileges.

	* factor/factor.c (main): Revoke setgid privileges.

	* cribbage/crib.c (main): Open log file then drop privileges as
	soon as possible.

	* canfield/canfield/canfield.c (initall): Use SEEK_SET instead of
	0 as argument of lseek().

	* canfield/cfscores/cfscores.c (main): Revoke setgid privileges.

	* canfield/canfield/canfield.c (initall): Revoke setgid privileges
	after opening the score file.

1998-08-13  Joseph S. Myers  <jsm@polyomino.org.uk>

	* boggle/README.linux: Rebuild.

	* caesar/caesar.c (main): Revoke setgid privileges.

	* boggle/boggle/bog.c (main): Revoke setgid privileges.

	* bcd/bcd.c (main): Revoke setgid privileges.

	* battlestar/com6.c (open_score_file), battlestar/extern.h: New
	function.
	* battlestar/com6.c (post): Use already opened score file.
	* battlestar/battlestar.c (main): Open score file then revoke
	setgid privileges.

	* atc/input.c (gettoken): Remove unnecessary setuid() call.

1998-08-11  Joseph S. Myers  <jsm@polyomino.org.uk>

	* AUTHORS (paranoia): Removed entry.

	* bsd-games-non-free.lsm: Update.

	* INSTALL: Update.

	* atc/log.c (open_score_file): Set close-on-exec flag.

	* TODO: Update.

	* PACKAGING: Update.

	* Credits: Split into AUTHORS and THANKS; update.

	* BUGS: Update.

1998-08-09  Joseph S. Myers  <jsm@polyomino.org.uk>

	* battlestar/extern.h, battlestar/save.c, battlestar/init.c,
	battlestar/cypher.c, battlestar/battlestar.c: New interface for
	saving, passes length and does dynamic allocation rather than
	using fixed length buffers.
	* battlerstar/Makefile: Include fgetln.

	* banner/banner.c (main): Revoke setgid privileges.

	* backgammon/backgammon/main.c (main): Revoke setgid privileges.

	* atc/log.c: Cast getuid() return value to int for %d format.

	* atc/log.c (open_score_file), atc/extern.h: New function.
	* atc/log.c (log_score): Use already opened score file.  Truncate
	the score file to the length written.
	* atc/main.c (main): Open the score file and then revoke setgid
	privileges.

	* arithmetic/arithmetic.c (main): Revoke setgid privileges.

	* adventure/main.c (main): Revoke setgid privileges.

	* snake/snscore/snscore.c (main): Take no arguments.

	* hangman/extern.h, hangman/main.c (main): Take no arguments.

	* canfield/canfield/canfield.c (main): Take no arguments.

1998-08-07  Joseph S. Myers  <jsm@polyomino.org.uk>

	* README.non-free: Update.

	* README: Update.

	* paranoia/*: Remove.

	* NEWS: Update.

	* INSTALL: Update.

1998-08-06  Joseph S. Myers  <jsm@polyomino.org.uk>

	* configure: Add facility to specify a list of games not to build.

	* TODO: Update.

	* README: Update.

	* PACKAGING: Update.

	* Credits: Update.

1998-07-29  Joseph S. Myers  <jsm@polyomino.org.uk>

	* NEWS: Update.

	* INSTALL: Update.

	* PACKAGING: New file - information for those packaging bsd-games
	for a Linux distribution.

1998-07-28  Joseph S. Myers  <jsm@polyomino.org.uk>

	* TODO: Update.

	* substfiles: Include hide-game (no need to special case it).
	* configure, Makefile: Don't special case hide-game.

	* hide-game.in: No longer needs #!/bin/sh, since added by
	configure.
	* install-score.in: Likewise.
	* install-man.in: Likewise.
	* caesar/rot13.in: Likewise.

	* configure (substitute): Put comments at the top of generated
	files saying they are automatically generated.

1998-07-27  Joseph S. Myers  <jsm@polyomino.org.uk>

	* All games (expect paranoia) now updated from NetBSD-current of
	1998-07-27 (some of the Linux changes merged back to NetBSD).

	* snake/snscore/snscore.c: Update from NetBSD-current of
	1998-07-27.

	* sail/dr_2.c, sail/extern.h: Update from NetBSD-current of
	1998-07-27.

	* rogue/init.c, rogue/machdep.c, rogue/monster.c, rogue/rogue.h:
	Update from NetBSD-current of 1998-07-27.

	* robots/move.c: Update from NetBSD-current of 1998-07-27.

	* pom/pom.c: Update from NetBSD-current of 1998-07-27.

	* phantasia/phantglobs.c, phantasia/phantglobs.h: Update from
	NetBSD-current of 1998-07-27.

	* mille/mille.h, mille/misc.c: Update from NetBSD-current of
	1998-07-27.

	* battlestar/dayfile.c, battlestar/nightfile.c: Update from
	NetBSD-current of 1998-07-27 (changes merged - this changes rcsids
	only).

	* atc/atc.6, atc/log.c: Update from NetBSD-current of 1998-07-27.

	* adventure/wizard.c: Update from NetBSD-current of 1998-07-27.

	* configure: Allow defaults to be taken from a config.params file,
	which can specify non-interactive operation.

1998-07-25  Joseph S. Myers  <jsm@polyomino.org.uk>

	* configure: Make a /bin/sh script; use printf instead of echo -n
	so that a POSIX.2 shell suffices.

	* INSTALL: Update.

	* TODO: Update.

1998-07-22  Joseph S. Myers  <jsm@polyomino.org.uk>

	* NEWS: Update.

	* rogue/machdep.c (md_gseed): Use time, not pid, as seed, so you
	don't get the same game each time if you boot the system up to
	play rogue (patch from Bill Lash <lash@tellabs.com>).
	* rogue/monster.c (mv_mons): If a dragon kills a monster on
	level_monsters, mv_mons can move things in the free_list, so don't
	move monsters not on level_monsters (patch from Bill Lash
	<lash@tellabs.com>).

	* All games (except paranoia) now updated from NetBSD-current of
	1998-07-11.

	* worms/worms.6: Update from NetBSD-current of 1998-07-11.

	* sail/*: Update from NetBSD-current of 1998-07-11.

	* pom/*: Update from NetBSD-current of 1998-07-11.

	* hunt/*/*: Update from NetBSD-current of 1998-07-11.

	* dm/*: Update from NetBSD-current of 1998-07-11.

1998-07-21  Joseph S. Myers  <jsm@polyomino.org.uk>

	* countmail/countmail.6: Update from NetBSD-current of 1998-07-11.

	* boggle/*/Makefile.bsd: Update from NetBSD-current of 1998-07-11.

	* battlestar/extern.h: Update from NetBSD-current of 1998-07-11.

	* backgammon/backgammon/main.c: Update from NetBSD-current of
	1998-07-11.

	* atc/*: Update from NetBSD-current of 1998-07-11.
	* atc/Makefile: Use grammar.h instead of y.tab.h.

	* arithmetic/arithmetic.6: Update from NetBSD-current of
	1998-07-11.

	* quiz/datfiles/europe: Fix typo (patch from G. Branden Robinson
	<branden@purdue.edu>).

	* TODO: Update.

	* BUGS: Update.

	* README.non-free: Update.

	* YEAR2000: Minor changes.

	* README: Update.

	* INSTALL: Update.

	* Credits: Minor changes.

1998-07-20  Joseph S. Myers  <jsm@polyomino.org.uk>

	* YEAR2000: New file, year 2000 statement for bsd-games.

	* adventure/wizard.c (datime): Handle leap years correctly
	according to the Gregorian calendar (could be perceived as fixing
	a year 2000 problem, but it was broken wrt leap years anyway).

	* pom/pom.c (main): Add 1900 to year as argument of isleap()
	(fixes year 2000 problem).

1998-07-03  Joseph S. Myers  <jsm@polyomino.org.uk>

	* Credits: Add introductory paragraph.

1998-04-11  Joseph S. Myers  <jsm@polyomino.org.uk>

	* Makefile: Add some standard GNU makefile targets.

1998-04-07  Joseph S. Myers  <jsm@polyomino.org.uk>

	* configure: Update message before selecting pager.

	* wump/wump.c (instructions): Use POSIX.2 pager behaviour.

	* quiz/quiz.c (show_index): Use POSIX.2 pager behaviour.

	* fish/fish.c (instructions): Use POSIX.2 pager behaviour.

1998-04-06  Joseph S. Myers  <jsm@polyomino.org.uk>

	* cribbage/instr.c (instructions): Use POSIX.2 pager behaviour.

1998-04-04  Joseph S. Myers  <jsm@polyomino.org.uk>

	* BUGS: Update.

	* INSTALL: Update for changed paths.

	* configure: Change default paths to FHS ones; change some
	comments and messages.

	* bsd-games.lsm (Primary-site): Make sunsite, since tsx-11 is
	somewhat unreliable and laggardly about installing new releases.

1998-03-29  Joseph S. Myers  <jsm@polyomino.org.uk>

	* Version 2.1.

	* TODO: Update.

	* README: Update.

	* INSTALL: Update.

	* Credits: Update.

1998-03-28  Joseph S. Myers  <jsm@polyomino.org.uk>

	* boggle/README.linux: Rebuild.

	* bsd-games.lsm, bsd-games-non-free.lsm, NEWS: Update.

	* configure: Don't ask about libc version or BSD signal defines.

	* Makeconfig.in (BSD_SIGNAL_DEFS): Removed.

	* */Makefile, */*/Makefile, hunt/Makeconfig: Don't use
	$(BSD_SIGNAL_DEFS).

	* include/signal.h: Define __USE_BSD_SIGNAL if libc5, so that the
	Makefiles don't need to.

	* lib/fgetln.c: New file, implementation of fgetln() (from
	quiz/quiz.c).
	* include/stdio.h: New file, wrap <stdio.h> and declare fgetln().
	* quiz/quiz.c: Don't include implementation of fgetln().

1998-03-27  Joseph S. Myers  <jsm@polyomino.org.uk>

	* dm/dm.c (load): Use getloadavg().
	* dm/Makefile: Use getloadavg() from lib/getloadavg.c.

	* lib/getloadavg.c: New file, implementation of getloadavg().
	* include/stdlib.h: New file, wrap <stdlib.h> and declare
	getloadavg().

	* wump/wump.c (move_to, shoot): Add explicit braces to avoid
	ambiguous else.

	* trek/shield.c (shield): Add explicit braces to avoid ambiguous
	else.

	* trek/nova.c (nova): Add explicit braces to avoid ambiguous else.

	* trek/move.c (move): Add explicit braces to avoid ambiguous else.

	* trek/kill.c (killb): Add explicit braces to avoid ambiguous
	else.

	* sail/sync.c (sync_update): Add explicit braces to avoid
	ambiguous else.

	* sail/sync.c (Sync): Don't declare errno.

	* sail/dr_1.c (compcombat, next): Add explicit braces to avoid
	ambiguous else.

	* sail/pl_7.c (newturn): Add explicit braces to avoid ambiguous
	else.

	* sail/pl_3.c (acceptcombat): Add explicit braces to avoid
	ambiguous else.

	* phantasia/misc.c (tradingpost): Add explicit braces to avoid
	ambiguous else.

	* phantasia/fight.c (playerhits, awardtreasure): Add explicit
	braces to avoid ambiguous else.

	* phantasia/main.c (main): Add explicit braces to avoid ambiguous
	else.

	* fortune/fortune/fortune.6: Rename to fortune.6.in.
	* fortune/fortune/fortune.6.in: Parametrise.
	* substfiles: Include fortune/fortune/fortune.6.

	* monop/morg.c (set_mlist): Add explicit braces to avoid ambiguous
	else.

	* monop/cards.c (get_card): Add explicit braces to avoid ambiguous
	else.

	* hunt/hunt/hunt.c (list_drivers): Add explicit int in declaration
	of `initial'.
	(env_init): Add explicit braces to avoid ambiguous else.

	* fortune/fortune/fortune.c (display, form_file_list): Add
	explicit braces to avoid ambiguous else.
	(init_prob): Add braces to make if/else binding agree with the
	indentation.

	* cribbage/score.c (scorehand): Add explicit braces to avoid
	ambiguous else.

	* cribbage/crib.c (peg): Add explicit braces to avoid ambiguous
	else.

	* boggle/boggle/bog.c (main): Add explicit braces to avoid
	ambiguous else.

	* battlestar/com5.c (love): Add explicit braces to avoid ambiguous
	else.

	* atc/input.c (delayb, benum): Change char to unsigned char for
	subscript.

	* Credits: Update.

	* paranoia/paranoia.6: New manpage, from Joey Hess.
	* paranoia/Makefile: Install it.

	* wargames/wargames.6: New manpage, from Joey Hess
	<joeyh@kitenet.net>.
	* wargames/Makefile: Install it.

	* hunt/Makefile.inc.bsd, hunt/hunt/Makefile.bsd, hunt/huntd/bsd.h,
	hunt/huntd/hunt.h, hunt/huntd/huntd.6.in, hunt/huntd/talk_ctl.h:
	Update from NetBSD-current of 1998-03-21.

	* fortune/*: Update from NetBSD-current of 1998-03-21.
	* fortune/fortune/Makefile: Use -DHAVE_REGCOMP.

	* Makefile.inc.bsd, adventure/init.c, atc/Makefile.bsd,
	backgammon/Makefile.inc.bsd, battlestar/Makefile.bsd,
	battlestar/extern.h, boggle/*/Makefile.bsd, caesar/caesar.6,
	canfield/*/Makefile.bsd, cribbage/Makefile.bsd, dm/Makefile.bsd,
	dm/dm.c, factor/Makefile.bsd, fish/fish.c, rain/Makefile.bsd,
	robots/Makefile.bsd, rogue/Makefile.bsd, sail/Makefile.bsd,
	snake/*/Makefile.bsd, tetris/Makefile.bsd, worm/Makefile.bsd,
	worms/Makefile.bsd, gomoku/Makefile.bsd, gomoku/main.c,
	hangman/Makefile.bsd, mille/Makefile.bsd, phantasia/Makefile.bsd,
	phantasia/setup.c, quiz/datfiles/pres: Update from NetBSD-current
	of 1998-03-21.

1998-03-26  Joseph S. Myers  <jsm@polyomino.org.uk>

	* monop/monop.c (main): Use SIGINT instead of 2 in signal.

	* backgammon/teachgammon/teach.c (main): Use SIGINT instead of 2
	in signal.

	* backgammon/backgammon/main.c (main): Use SIGINT instead of 2 in
	signal, and 14 instead of SIGALRM.

	* BUGS: New file, lists known bugs.
	* INSTALL, README, TODO: Update.

	* trek/dumpgame.c (restartgame): Use O_RDONLY instead of 0 in
	open.

	* monop/execute.c (rest_f): Use O_RDONLY instead of 0 in open.

	* fortune/fortune/fortune.c (add_file, all_forts, open_dat,
	get_pos, get_tbl): Use O_RDONLY instead of 0 in open.

	* canfield/cfscores/cfscores.c (main): Use O_RDONLY instead of 0
	in open.

	* canfield/canfield/canfield.c (initall): Use O_RDWR instead of 2
	in open.

	* quiz/datfiles/europe: Added more new countries.

1998-03-25  Joseph S. Myers  <jsm@polyomino.org.uk>

	* quiz/datfiles/europe: Update for political changes of the 1990s
	(needs more work).

	* Credits: Update.
	* INSTALL, README: Update (need libc 5.4.5 or later if using
	libc5).

1998-01-02  Joseph S. Myers  <jsm@polyomino.org.uk>

	* battlestar/battlestar.c, battlestar/init.c, battlestar/save.c,
	battlestar/extern.h, battlestar/cypher.c,
	battlestar/battlerstar.6: Let save file name vary.

1997-12-30  Joseph S. Myers  <jsm@polyomino.org.uk>

	* battlestar/com5.c (give): The value 0 used in NetBSD is as good
	as any for initialising last1 and last2, so use it; check for it
	in last1 at the appropriate place and give an error if so.

	* battlestar/com3.c (shoot): Correct initialiser for firstnumber
	is always wordnumber.

1997-12-29  Joseph S. Myers  <jsm@polyomino.org.uk>

	* mille/mille.h, mille/varpush.c: Make previous change conditional
	on defined(__linux__) && !defined(__GLIBC__), since the X/Open
	spec says you should use int but libc5 (only) uses size_t.

	* boggle/boggle/help.c (help): Use redrawwin(stdscr) at the end,
	to get proper redrawing with ncurses.
	* boggle/README.linux: Rebuild.

	* Makeconfig.in (DEFS_TO_PASS, DEFS_TO_PASS_STRIP): New variables,
	definitions of installation variables to pass to sub-makes.
	* Makefile (install, install-strip): Use these.
	* configure (strip_install): Remove configuration option.
	* INSTALL: Update.
	* backgammon/Makefile, boggle/Makefile, canfield/Makefile,
	fortune/Makefile, hunt/Makefile, snake/Makefile: Pass DEFS_TO_PASS
	in install.

1997-12-26  Joseph S. Myers  <jsm@polyomino.org.uk>

	* mille/mille.h: prscore's argument is bool, not int (from Joey
	Hess).

1997-12-25  Joseph S. Myers  <jsm@polyomino.org.uk>

	* Version 2.0.

	* INSTALL: Add name and email address to bottom.

	* Credits: Update.

Sun Dec 21 11:59:34 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* configure: Don't ask for file for backgammon rules.

	* TODO: Update.

	* Makefile (install): Don't create $(SOCKETDIR), which is no
	longer defined.

	* bsd-games-non-free.lsm: Update.

	* bsd-games.lsm: Update.

	* README: Update.

	* configure: Don't configure bsd_lib or bsd_includes.
	* Makeconfig.in: Delete BSD_LIB, BSD_INCS, BSD_DEFS.

	* configure (warning_flags): Default to -Wall -W
	-Wstrict-prototypes -Wmissing-prototypes.

Sat Dec 20 11:25:48 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* All games (except paranoia) now updated to NetBSD-current of
	1997-12-12.

	* wump/wump.c: Include <time.h>.

	* wump/*: Update from NetBSD-current of 1997-12-12.
	* wump/Makefile: Use -I../include; don't define path; don't use
	libbsd or ncurses.
	* substfiles: Include wump/pathnames.h.

	* worms/worms.c (onsig): Mark unused parameter.

	* worms/*: Update from NetBSD-current of 1997-12-12.
	* worms/Makefile: Use -I../include; use BSD signal defines only.

	* worm/worm.c: Mark unused parameters.

	* worm/worm.6: Fix.

	* worm/*: Update from NetBSD-current of 1997-12-12.
	* worm/Makefile: Use -I../include; use BSD signal defines only.

	* trek/warp.c (dowarp): Mark parameter as int.

	* trek/abandon.c, trek/capture.c, trek/computer.c, trek/dcrept.c,
	trek/destruct.c, trek/dock.c, trek/dumpgame.c, trek/help.c,
	trek/impulse.c, trek/lrscan.c, trek/phaser.c, trek/play.c,
	trek/rest.c, trek/setwarp.c, trek/torped.c, trek/visual.c,
	trek/cgetc.c: Mark unused parameters.

	* trek/*: Update from NetBSD-current of 1997-12-12.
	* trek/Makefile: Use -I../include; don't use libbsd.

	* tetris/tetris.c: Mark unused parameter.

	* tetris/scores.c: Fix warnings.

	* tetris/screen.c, tetris/screen.h: Make put return int.

	* tetris/screen.c: Don't declare ospeed.

	* tetris/*: Update from NetBSD-current of 1997-12-12.
	* tetris/Makefile: Use -I../include; don't define paths; use BSD
	signal defines only.
	* substfiles: Include tetris/pathnames.h.

	* snake/snake/snake.c, snake/snscore/snscore.c: Mark unused
	parameters.

	* snake/snake/snake.h, snake/snake/move.c: Make outch return int.

	* snake/snake/snake.h, snake/snake/move.c: Don't declare ospeed.

	* snake/*: Update from NetBSD-current of 1997-12-12.
	* snake/snake/Makefile, snake/snscore/Makefile: Use
	-I../../include; don't define paths; use BSD signal defines only.
	* substfiles: Include snake/snake/pathnames.h.

	* sail/pl_main.c, sail/pl_7.c, sail/player.h: Move screen
	initialisation into initscreen(); no longer do echo() in
	SCREENTEST().

	* sail/sync.c: Include <sys/file.h> and <time.h>; mark int
	parameter.

	* sail/misc.c: Include <sys/file.h>, for flock().

	* sail/game.c: Fix pointer/integer comparison warning.

	* sail/dr_2.c: Mark int parameters as such.

	* sail/player.h (SCREENTEST): Compare initscr() against NULL, not
	ERR.

	* sail/main.c, sail/pl_1.c, sail/pl_7.c: Mark unused parameters.

	* sail/dr_2.c, sail/extern.h: Rename move to sail_move.

	* sail/*: Update from NetBSD-current of 1997-12-12.
	* sail/Makefile: Use -I../include; don't define paths; use BSD
	signal defines only.
	* substfiles: Include sail/pathnames.h

	* rogue/save.c: Fix signed/unsigned warnings.

	* rogue/monster.c, rogue/object.c, rogue/pack.c, rogue/room.c:
	Mark int parameters as such.

	* rogue/init.c: Mark unused parameters.

	* rogue/*: Update from NetBSD-current of 1997-12-12.
	* rogue/Makefile: Use -I../include; don't define path; use BSD
	signal defines only.
	* substfiles: Include rogue/pathnames.h.

	* robots/move.c (get_move): Always initialise lastmove, to shut up
	gcc.

	* robots/main.c: Remove unused function __cputchar; mark unused
	parameter.

	* robots/move.c (get_move): Restore declaration of lastmove.

	* robots/*: Update from NetBSD-current of 1997-12-12.
	* robots/Makefile: Use -I../include; don't define path; use BSD
	signal defines only.
	* substfiles: Include robots/pathnames.h.

	* Credits: List original authors.

	* bsd-games.lsm: Update.

	* NEWS: Update.

	* INSTALL: Update.

	* README.non-free: Update.

	* README: Update.

	* countmail/*: New game, from NetBSD-current of 1997-12-12.

	* configure (install_script): New variable, avoid warnings about
	stripping scripts.
	* Makeconfig.in (INSTALL_SCRIPT): Define.
	* caesar/Makefile, wargames/Makefile: Use $(INSTALL_SCRIPT).

Fri Dec 19 14:37:56 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* TODO: Update.

	* hunt/*: New port, replacing the old one, based on NetBSD-current
	of 1997-12-12.
	* substfiles: Update accordingly.
	* configure, Makeconfig.in: No longer need to configure directory
	for sockets.

	* random/*: Update from NetBSD-current of 1997-12-12.
	* random/Makefile: Use -I../include.

	* rain/rain.c: Make fputchar return int, since this is what tputs
	expects.  Also mark unused parameters.

	* rain/*: Update from NetBSD-current of 1997-12-12.
	* rain/Makefile: Use -I../include; don't use libbsd.
	* substfiles: Don't include rain/rain.6.

	* quiz/quiz.c (appdstr): Change NULL to '\0' to fix warning.

	* quiz/*: Update from NetBSD-current of 1997-12-12.
	* quiz/Makefile: Use -I../include; don't define paths.
	* substfiles: Include quiz/pathnames.h.in.

	* primes/*: Update from NetBSD-current of 1997-12-12.
	* primes/Makefile: Use -I../include.

	* include/sys/ttydefaults.h: New file, wrap <sys/ttydefaults.h> so
	that individual games need not know that it is in glibc but not
	libc5.
	* hangman/getguess.c: Restore to NetBSD version since these
	conditionals are no longer needed.

	* lib/select.c: New file, emulate BSD select for games that need
	it (I think only hunt), so that libbsd will not be needed at all
	and games will work fine with libc6.

Thu Dec 18 13:24:54 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* ppt/*: Update from NetBSD-current of 1997-12-12.
	* ppt/Makefile: Use -I../include.

	* pom/pom.c: Mark unused parameters.

	* pom/*: Update from NetBSD-current of 1997-12-12.
	* pom/Makefile: Use -I../include; don't use libbsd.
	* include/tzfile.h: New file.

	* pig/pig.c (main): Fix signed/unsigned warning.

	* pig/*: Update from NetBSD-current of 1997-12-12.
	* pig/Makefile: Use -I../include.

	* phantasia/setup.c: Include <fcntl.h>; fix warnings; add
	prototypes and function return types.

	* phantasia/interplayer.c (dotampered): Avoid signed/unsigned
	warning.

	* phantasia/io.c (catchalarm): Mark unused parameter.

	* phantasia/*: Update from NetBSD-current of 1997-12-12.
	* phantasia/Makefile: Don't define paths; use BSD signal defines
	only.
	* substfiles: Include phantasia/pathnames.h.

	* paranoia/paranoia.c: Include headers, add prototypes and
	function return types; changes to avoid warnings.

	* number/*: Update from NetBSD-current of 1997-12-12.
	* number/Makefile: Use -I../include.

	* morse/*: Update from NetBSD-current of 1997-12-12.
	* morse/Makefile: Use -I../include.

	* monop/cards.c: Avoid signed/unsigned warning.

	* monop/monop.c (do_quit): Mark unused parameter.

	* monop/*: Update from NetBSD-current of 1997-12-12.
	* monop/Makefile: Use -I../include; don't define path; use BSD
	signal defines only.
	* substfiles: Include monop/pathnames.h.

	* NEWS: Update; fix typo.

	* mille/save.c: Include <time.h>.

	* mille/mille.h, varpush.c: Use size_t for last argument of last
	argument of varpush.

	* mille/comp.c (calcmove): Avoid signed/unsigned warning.

	* mille/mille.c (rub): Mark unused parameter.

	* mille/*: Update from NetBSD-current of 1997-12-12.
	* mille/Makefile: Use -I../include; don't use libbsd.
	* substfiles: Don't include mille/mille.6, it's no longer needed.

	* hangman/setup.c: Include <time.h>.

	* hangman/main.c: Mark unused parameters.

	* hangman/*: Update from NetBSD-current of 1997-12-12.
	* hangman/Makefile: Use -I../include; don't define path; don't use
	libbsd.
	* substfiles: Include hangman/pathnames.h.

Wed Dec 17 16:14:21 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* gomoku/pickmove.c: Fix signed/unsigned warnings; mark unused
	parameter.

	* gomoku/main.c: Include <time.h>; mark unused parameter.

	* gomoku/*: Update from NetBSD-current of 1997-12-12.
	* gomoku/Makefile: Use -I../include; use BSD signal defines only.

	* fortune/strfile/strfile.c, fortune/fortune/fortune.c,
	fortune/unstr/unstr.c: Changes to avoid warnings.

	* fortune/*: Update from NetBSD-current of 1997-12-12.
	* fortune/fortune/Makefile, fortune/strfile/Makefile,
	fortune/unstr/Makefile: Use -I../../include; don't use libbsd;
	don't define paths.
	* substfiles: Include fortune/fortune/pathnames.h.

	* fish/*: Update from NetBSD-current of 1997-12-12.
	* fish/Makefile: Use -I../include.
	* substfiles: Include fish/pathnames.h.

	* primes/pr_tbl.c: Use __RCSID.

	* factor/*: Update from NetBSD_current of 1997-12-12.
	* factor/Makefile: Use -I../include.

	* Makeconfig.in: Remove dm variables.

	* dm/dm.c: Mark unused parameter.

	* dm/pathnames.h.in: Undefine _PATH_LOG before defining it.

	* dm/dm.8.in: Fix.

	* dm/*: Update from NetBSD-current of 1997-12-12.
	* dm/Makefile: Use -I../include; don't define paths.
	* substfiles: Include dm/pathnames.h.

Tue Dec 16 10:35:32 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* cribbage/io.c, cribbage/score.c: Avoid signed/unsigned warning;
	mark unused parameters.

	* cribbage/*: Update from NetBSD-current of 1997-12-12.
	* cribbage/Makefile: Use -I../include; don't use libbsd or define
	paths.
	* substfiles: Include cribbage/pathnames.h.

	* canfield/canfield/canfield.c: Include <time.h>; mark unused
	parameters.

	* canfield/*: Update from NetBSD-current of 1997-12-12.
	* canfield/canfield/Makefile, canfield/cfscores/Makefile: Use
	-I../../include.
	* substfiles: Include canfield/canfield/pathnames.h.
	* canfield/canfield/Makefile, canfield/cfscores/Makefile: Don't
	define _PATH_SCORE; don't use libbsd.

	* caesar/*: Update from NetBSD-current of 1997-12-12.
	* caesar/Makefile: Use -I../include.
	* caesar/rot13.in: Use "$@" instead of $*.

	* boggle/boggle/mach.c: Mark unused parameters.

	* boggle/boggle/bog.c: Changes to avoid warnings.

	* boggle/mkindex/mkindex.c (main): Make it take no arguments,
	since they are unused.

	* boggle/mkdict/mkdict.c: Include <err.h>; other changes to avoid
	warnings.

	* boggle/*: Update from NetBSD-current of 1997-12-12.
	* boggle/boggle/Makefile, boggle/mkdict/Makefile,
	boggle/mkindex/Makefile: Use -I../../include.
	* substfiles: Include boggle/boggle/bog.h.
	* boggle/boggle/Makefile: Don't define paths.
	* boggle/Makefile, boggle/README.linux: Update for change to bog.h.in.

	* bcd/bcd.6: Fix.

	* bcd/*: Update from NetBSD-current of 1997-12-12.
	* bcd/Makefile: Use -I../include.

	* battlestar/battlestar.6: Fix typo.

	* battlestar/com6.c, battlestar/fly.c: Mark unused parameters.

	* battlestar/*: Update from NetBSD-current of 1997-12-12.
	* battlestar/Makefile: Use -I../include, and BSD signal defines
	only.
	* substfiles: Include battlestar/pathnames.h.
	* battlestar/Makefile: Don't define _PATH_SCORE.

Mon Dec 15 10:07:10 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* banner/Makefile: Use -I../include.

	* banner/*: Update from NetBSD-current of 1997-12-12.

	* TODO: Update.

	* backgammon/common_source/subs.c (getarg): Check that an argument
	is given to -s.

	* backgammon/common_source/subs.c, backgammon/backgammon/main.c,
	backgammon/teachgammon/teach.c: Mark unused parameters.

	* backgammon/common_source/subs.c (addbuf): Make addbuf return an
	int, since this is what tputs expects.
	* backgammon/common_source/back.h: Likewise.

	* backgammon/teachgammon/teach.c: Don't declare ospeed.

	* backgammon/backgammon/main.c: Don't declare ospeed; include
	<time.h>.

	* backgammon/backgammon/Makefile,
	backgammon/common_source/Makefile,
	backgammon/teachgammon/Makefile: Use -I../../include.

	* Makeconfig.in (BACKGAMMON_RULES): Remove.

	* backgammon/*: Update from NetBSD-current of 1997-12-12; make
	changes for no longer having simple game.

	* atc/pathnames.h: Remove.
	* atc/pathnames.h.in: New file, from NetBSD-current and
	parametrised.
	* substfiles: Substitute in this file.
	* atc/Makefile: Don't define _PATH_GAMES and _PATH_SCORE any more.

	* substfiles: New file - list of files created by substitution.
	* configure, Makefile: Use this list.

	* atc/log.c (log_score): Use nodename, not sysname.

	* atc/grammar.y, atc/graphics.c, atc/log.c, atc/main.c,
	atc/update.c: Mark unused parameters and add parameter types.

	* atc/Makefile: Use -I../include and -DYY_NO_UNPUT.

	* atc/*: Update from NetBSD-current of 1997-12-12.

	* adventure/setup.c: Use __RCSID and __COPYRIGHT.

	* include/sys/cdefs.h: Mark rcsid and copyright unused, so -Dlint
	is not needed when using warnings.

	* arithmetic/arithmetic.c (intr): Mark `dummy' unused.

	* arithmetic/Makefile: Use -I../include.

	* arithmetic/*: Update from NetBSD-current of 1997-12-12.

	* adventure/init.c, adventure/subr.c, adventure/wizard.c: Add
	argument types and mark unused arguments as
	__attribute__((unused)).

	* adventure/crc.c: Make step unsigned int.

	* adventure/setup.c: Add prototype; include <err.h>.
	* adventure/extern.h: Remove prototypes for setup.c.

	* adventure/Makefile: Use -I../include.

	* adventure/*: Update from NetBSD-current of 1997-12-12.

	* include/signal.h: New file, wrapper to typedef sig_t without
	needing <bsd/signal.h> for libc5.

	* include/sys/cdefs.h: New file, wrapper to define __RCSID and
	__COPYRIGHT.

	* Makefile.bsd, Makefile.inc.bsd: Update from NetBSD-current of
	1997-12-12.

Wed Sep 24 13:44:06 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* caesar/caesar.c: Include <string.h> and <stdlib.h>; add
	prototypes and function return types; remove old declarations.

	* boggle/boggle/mach.c (winch_catcher): Don't ioctl(TIOCGWINSZ).

	* boggle/boggle/bog.c: Add prototypes.

	* boggle/mkdict/mkdict.c: Add prototypes.
	* boggle/mkindex/mkindex.c: Add prototypes; include <stdlib.h>.

	* boggle/README.linux: Update.

	* INSTALL: Update.
	* README: Update.
	* README.non-free: Update.
	* TODO: Update.
	* bsd-games-non-free.lsm: Update.
	* Makeconfig.in: Update.

	* configure: Use boggle instead of bog; don't substitute in
	bog.6.in.
	* Makefile: Don't remove bog/bog.6.

	* boggle/boggle/extern.h: Include <time.h> (for time_t).

	* boggle/boggle/Makefile: Use BSD signal defines only.

	* boggle/*: From NetBSD-current; merge in Linux changes from bog.

	* atc/log.c, atc/update.c: Consistently use strchr and strrchr.
	* atc/include.h [SYSV]: Remove #defines of index and rindex.

	* bcd/bcd.c (printcard): Remove declaration of index(); use
	strchr(); make p unsigned char.

	* bcd/bcd.c: Include <stdlib.h>.

	* bcd/bcd.c: Add prototypes and function return types.

Sat Sep 13 21:08:53 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* configure: Fix spelling errors; some cleanup.

Tue Sep  2 17:28:22 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* configure: Use empty man8dir if not building in dm or fortune.

Sun Aug 24 10:33:08 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* adventure/*: Update from NetBSD-current of 1997-08-24.
	* adventure/Makefile: Add dependency on extern.h.
	* adventure/Makefile: Add definitions of __RCSID and __COPYRIGHT.

	* fortune/*: Update from NetBSD-current of 1997-08-24.

	* battlestar/fly.c: Include <unistd.h>.

	* battlestar/fly.c (visual): Remove declaration of moveenemy().

	* battlestar/save.c (restore): Remove declaration of getenv().
	(save): Likewise.

	* battlestar/getcom.c: Include "extern.h" for prototypes.

	* battlestar/init.c: Include <unistd.h>.

	* battlestar/init.c (initialize): Remove declaration of die().

	* battlestar/com6.c (post): Remove declaration of ctime().

	* battlestar/com1.c: Include <unistd.h> (for sleep).
	* battlestar/com1.c (convert): Make i and j unsigned to avoid
	warnings for comparison with unsigned.
	* battlestar/com4.c (throw): Make n unsigned for the save reason.

	* battlestar/extern.h, battlestar/parse.c, battlestar/room.c,
	battlestar/save.c: Add prototypes and function return types.

Sat Aug 23 21:17:20 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* battlestar/battlestar.c, battlestar/com1.c, battlestar/com2.c,
	battlestar/com3.c, battlestar/com4.c, battlestar/com5.c,
	battlestar/com6.c, battlestar/com7.c, battlestar/cypher.c,
	battlestar/extern.h, battlestar/fly.c, battlestar/getcom.c,
	battlestar/init.c, battlestar/misc.c: Add prototypes and function
	return types.

	* battlestar/extern.h: Don't conditionalise inclusion of
	<stdlib.h>.

Mon Aug 18 09:14:17 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* banner/banner.c: Add prototype for main().

	* backgammon/common_source/Makefile,
	backgammon/backgammon/Makefile, backgammon/teachgammon/Makefile:
	Use BSD signal defines only.

	* atc/include.h: Include <sys/stat.h> (for umask).

	* atc/Makefile: Use BSD signal defines only.

	* adventure/Makefile: Don't use BSD includes, defines or library
	(works with SYSV signal semantics as well).

	* configure: Ask for libc version; configure defines for BSD
	signal semantics (-D__USE_BSD_SIGNAL, etc.).
	* Makeconfig.in (BSD_SIGNAL_DEFS): New variable.

	* backgammon/common_source/Makefile (clean): Remove sbackgammon.

	* backgammon/common_source/fancy.c: Include <unistd.h>.

	* backgammon/common_source/subs.c: Include <unistd.h>.

	* backgammon/common_source/save.c: Include <unistd.h>.

	* backgammon/common_source/fancy.c: Include <termcap.h>.

	* 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/odds.c,
	backgammon/common_source/one.c, backgammon/common_source/save.c,
	backgammon/common_source/subs.c, backgammon/common_source/table.c:
	Add prototypes and function return types.

Sun Aug 10 10:06:10 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* atc/main.c (main): Include program name in `Unknown option'
	error message.

	* atc/include.h: Include <sys/wait.h>.

	* atc/extern.h, atc/graphics.c, atc/input.c, atc/list.c,
	atc/log.c, atc/main.c, atc/update.c: Add prototypes and function
	return types.

Sat Aug  9 16:36:17 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* atc/extern.h, atc/grammar.y, atc/graphics.c, atc/input/c,
	atc/update.c: Add prototypes and function return types.

Thu Aug  7 12:01:56 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* atc/include.h: Make inclusion of <unistd.h> unconditional;
	remove unused defines of bcopy and bzero under SYSV.

	* configure: Escape ` and ' when asking for .so or symlinks.

	* configure, Makeconfig.in, atc/Makefile: Configure yacc and lex
	programs using configure script.

	* configure: Add note about placing of sockets.

	* dm/README.linux: New file, mentions -DLOG.

	* configure, Makeconfig.in, dm/Makefile: Configure log file for dm.

Sun Jul 27 12:45:18 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* arithmetic/arithmetic.c: Include <stdlib.h> and <unistd.h>; add
	function return types and prototypes; remove previous function
	declarations.

Sat Jul 26 20:17:49 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* adventure/crc.c: Add prototypes.

	* adventure/setup.c (main): Add casts so as not to print a long
	with an int format.

	* adventure/io.c, adventure/setup.c: Add prototypes and function
	return types.

Fri Jul 25 12:48:04 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* adventure/wizard.c: Include <time.h>; remove declaration of
	localtime().

	* adventure/setup.c: Include <stdlib.h>.

	* adventure/subr.c, adventure/wizard.c: Add some prototypes.

	* adventure/save.c: Include <stdlib.h>.

	* adventure/crc.c, adventure/io.c, adventure/save.c,
	adventure/vocab.c, adventure/wizard.c: Add function return types.

	* adventure/hdr.h: More prototypes.

	* adventure/wizard.c (ran): Remove declaration of rand().

	* adventure/hdr.h, adventure/init.c, adventure/wizard.c: Change
	macro DECR and all uses so as not to need -traditional-cpp
	* adventure/Makefile: Don't use -traditional-cpp.

Thu Jul 24 19:30:35 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* adventure/init.c: Include <time.h> and <stdlib.h>; remove
	declaration of time().

	* adventure/init.c: Add argument to trapdel(); add prototype for
	linkdata().

	* adventure/main.c (main): Remove declaration of trapdel().

	* adventure/main.c: Add prototype for main().

	* adventure/hdr.h, adventure/main.c, adventure/save.c,
	adventure/vocab.c: Change link to adv_link.

	* adventure/main.c: Include <unistd.h>.

	* adventure/io.c: Include <stdlib.h>.

	* adventure/wizard.c: Include <stdio.h> and <stdlib.h>.

	* adventure/vocab.c: Include <stdio.h> and <stdlib.h>.

	* adventure/subr.c: Include <stdio.h> and <stdlib.h>.

	* adventure/done.c: Include <stdio.h> and <stdlib.h>.

	* adventure/done.c, adventure/init.c, adventure/io.c,
	adventure/save.c, adventure/subr.c, adventure/vocab.c,
	adventure/wizard.c: Add function return types.

	* adventure/hdr.h: Add prototypes; remove declaration of malloc().

Sat Jul 19 20:51:49 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* configure: Set empty man5dir if not building in dm.

Thu Jul 17 16:41:29 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* Version 1.5.

	* bsd-games-non-free.lsm: Update.

	* bsd-games.lsm: Update.

Wed Jul 16 12:50:00 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* bsd-games.lsm: Update.

	* NEWS: Update.

	* Makefile (install): Create MAN5DIR.

	* NEWS: Update.

	* bsd-games-non-free.lsm: Update.

	* bsd-games.lsm: Update.

Tue Jul 15 15:57:06 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* bsd-games-non-free.lsm: Update.

	* bsd-games.lsm: Update.

	* TODO: Update.

	* README.non-free: Update.

	* README: Update.

	* INSTALL: Update.

	* rogue/machdep.c (md_slurp): Use tcflush() under Linux.

	* rogue/Makefile (DEFS): Add UNIX_SYSV to get <time.h> included in
	machdep.c.

	* rogue/*: Added from NetBSD-current.
	* rogue/Makefile: Renamed to Makefile.bsd.
	* rogue/USD.doc/Makefile: Renamed to Makefile.bsd.
	* rogue/Makefile: New file.
	* rogue/rogue.6: Rename to rogue.6.in.
	* rogue/rogue.6.in: Parametrise.
	* configure: Ask for rogue scorefile; substitute in this file.
	* Makefile: Remove rogue.6 in distclean.
	* Makeconfig.in: Include ROGUE_SCOREFILE.
	* rogue/pathnames.h: The path for the score file is in the
	Makefile.

Mon Jul 14 11:46:56 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* quiz/Makefile (clean): Add target.

	* random/*: Added from NetBSD-current.
	* random/Makefile: Renamed to Makefile.bsd.
	* random/Makefile: New file.

	* quiz/quiz.c (fgetln): Add implementation since Linux libc lacks
	fgetln.

	* quiz/*: Added from NetBSD-current.
	* quiz/Makefile: Renamed to Makefile.bsd.
	* quiz/Makefile: New file.
	* quiz/datfiles/index: Rename to index.in.
	* quiz/datfiles/index.in: Parametrise.
	* quiz/quiz.6: Rename to quiz.6.in.
	* quiz/quiz.6.in: Parametrise.
	* configure: Ask for quiz directory; substitute in these files.
	* Makeconfig.in (QUIZ_DIR): Add for quiz directory.
	* Makefile: Remove index and quiz.6 in distclean.
	* quiz/pathnames.h: Paths are defined in the Makefile.

	* pig/*: Added from NetBSD-current.
	* pig/Makefile: Renamed to Makefile.bsd.
	* pig/Makefile: New file.

	* phantasia/main.c (playinit): Add ICRNL to terminal modes if
	using ncurses.

	* phantasia/Makefile (install): Bug-fix.

	* configure: Configure directory for phantasia.
	* Makeconfig.in: Include PHANTASIA_DIR.
	* phantasia/pathnames.h: Paths are defined in Makefile.
	* phantasia/Makefile: Supply motd to setup.

Sun Jul 13 18:28:52 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* phantasia/*: Added from NetBSD-current.
	* phantasia/Makefile: Renamed to Makefile.bsd.
	* phantasia/Makefile: New file.

	* dm/dm.c (load): Add Linux-specific way of getting load average.

	* dm/dm.8: Rename to dm.8.in.
	* dm/dm.conf.5: Rename to dm.conf.5.in.
	* dm/dm.8.in, dm/dm.conf.5.in: Parametrise.
	* configure: Substitute in these files.
	* Makefile: Remove dm.8 and dm.conf.5 in distclean.

	* configure: Do additional configuration for dm.
	* Makeconfig.in: Include these variables.
	* install-man.in: Allow manual section 5.

	* dm/*: Added from NetBSD-current.
	* dm/Makefile: Renamed to Makefile.bsd.
	* dm/Makefile: New file.

	* TODO: Update.

	* All games, except bog, hunt, and paranoia, now updated from
	NetBSD-current of 1997-07-12.

	* cribbage/*: Update from NetBSD-current of 1997-07-12.

Fri Jul 11 19:09:24 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* bog/README.linux: Comply with licence conditions by including
	patch from original bog.
	* bog/Makefile (linux-patch): Create or update this patch.

	* banner/*: Added from NetBSD-current.
	* banner/Makefile: Renamed to Makefile.bsd.
	* banner/Makefile: New file.

	* atc/graphics.c (getAChar): Use SYSV method instead of BSD one
	under Linux; change conditional on inclusion of <errno.h> to allow
	for this.

Thu Jun 12 20:32:57 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* adventure/*: Added from NetBSD-current.
	* adventure/Makefile: Renamed to Makefile.bsd.
	* adventure/Makefile: New file.

Wed Jun 11 12:09:38 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* Now builds with glibc without needing stray <bsd/*> headers.

	* snake/snake/snake.c: Define MIN instead of including
	<bsd/bsd.h>.

	* pom/pom.c: With glibc, define isleap instead of including
	<tzfile.h>.

	* mille/Makefile: Remove dependency on unctrl.h.

	* configure: Choose default for BSD-compat includes based on
	whether /usr/include/bsd exists.

Tue Jun 10 17:40:44 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* All games, with same exceptions as below, now updated from
	NetBSD-current of 1997-06-07.

	* cribbage/*, hangman/*, mille/*, robots/*, tetris/*: Update from
	NetBSD-current of 1997-06-07.

Fri Jun  6 22:19:38 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* README: Update.

	* *.orig, */*.orig, */*/*.orig: Rename to *.bsd instead to avoid
	conflicts with patch backups.

Thu May 22 00:03:59 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* TODO: Update.

	* README.non-free: Update.

	* README: Update.

Wed May 21 00:08:36 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* TODO: Update.

	* README: Update.

	* INSTALL: Update.

	* Now builds with glibc.

	* bog/mach.c (flushin): Use the flushinp() version.

	* cribbage/extern.c: Change `bool' to `BOOLEAN'.

	* atc/Makefile: Use -lfl instead of -ll.

Tue May 20 00:26:52 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* All games, with same exceptions as below, now updated from
	NetBSD-current of 1997-05-17.

	* backgammon/backgammon/Makefile.orig,
	backgammon/teachgammon/Makefile.orig, factor/Makefile.orig,
	fortune/Makefile.orig, fortune/datfiles/Makefile.orig,
	fortune/strfile/Makefile.orig, wargames/Makefile.orig: Update from
	NetBSD-current of 1997-05-17.

Mon May 19 00:50:37 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* All games, except bog, hunt and paranoia, now updated from
	NetBSD-current of 1997-04-26.

	* wump/*: Update from NetBSD-current of 1997-04-26.

	* worms/Makefile (DEFS): Remove -DUSG which is no longer needed.

	* worms/*: Update from NetBSD-current of 1997-04-26.

	* worm/worm.c (process): Move the move to highlight head of worm
	here from main().

	* worm/*: Update from NetBSD-current of 1997-04-26.

	* wargames/*: Update from NetBSD-current of 1997-04-26.

Sun May 18 01:29:05 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* trek/README.linux: New file, mentions trek manual.

	* trek/*: Update from NetBSD-current of 1997-04-26.

	* tetris/screen.c (OXTABS): Define to XTABS.

	* tetris/*: Update from NetBSD-current of 1997-04-26.

Sat May 17 12:24:07 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* snake/snake/snake.c: Define CTRL.

	* snake/snake/move.c: Include <unistd.h>; condition use of VDSUSP
	on its being defined; define CTRL; define OXTABS.

	* snake/*: Update from NetBSD-current of 1997-04-26.

	* sail/pl_7.c: Don't include <sys/ttydefaults.h>.

	* sail/Makefile: Change dependency on externs.h to extern.h.

	* sail/*: Update from NetBSD-current of 1997-04-26.

Thu May 15 15:09:59 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* robots/move.c: Don't include <sys/ttydefualts.h>; define CTRL.

	* robots/*: Update from NetBSD-current of 1997-04-26.

	* hangman/getguess.c: Fix sense of glibc test for
	<sys/ttydefaults.h>.

	* rain/rain.6: Rename to rain.6.in.
	* rain/rain.6.in: Parametrise.
	* configure: Substitute in this file.
	* Makefile: Remove rain/rain.6 in distclean.

	* rain/Makefile (DEFS): Remove -DUSG, as it's no longer needed.

	* rain/*: Update from NetBSD-current of 1997-04-26.

Wed May 14 23:27:32 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* primes/*: Update from NetBSD-current of 1997-04-26.

	* ppt/*: Update from NetBSD-current of 1997-04-26.

	* pom/*: Update from NetBSD-current of 1997-04-26.

	* number/*: Update from NetBSD-current of 1997-04-26.

	* morse/*: Update from NetBSD-current of 1997-04-26.

	* monop/*: Update from NetBSD-current of 1997-04-26.

Mon May 12 02:08:53 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* mille/misc.c (CTRL): Define.

	* mille/*: Update from NetBSD-current of 1997-04-26.

Wed May  7 00:15:09 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* Version 1.4.

	* Makefile, caesar/Makefile: Disable test in caesar (as it depends
	on rot13ed fortunes).

	* NEWS: Update.

	* bsd-games-non-free.lsm: Update.

	* bsd-games.lsm: Update.

	* hangman/getguess.c (readch): Change curx to _curx, cury to _cury
	if using ncurses.

	* hangman/getguess.c: Don't include <sys/ttydefaults.h>; define
	CTRL.

	* hangman/*: Update from NetBSD-current of 1997-04-26.

	* fortune/README.linux: Update.

	* fortune/datfiles/Makefile: Update for more fortune collections.

	* configure: Ask whether to install offensive fortunes.
	* Makeconfig.in: Provide FORTUNE_TYPE.

	* fortune/*: Update from NetBSD-current of 1997-04-26.

Tue May  6 00:53:04 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* fish/*: Update from NetBSD-current of 1997-04-26.

	* Version 1.3.4beta.

	* NEWS: Update.

	* bsd-games-non-free.lsm: Update.

	* bsd-games.lsm: Update.

	* README: Update.

	* configure, tetris/Makefile: Consistently use tetris-bsd for
	files associated with tetris.

	* INSTALL: Update.

	* factor/*: Update from NetBSD-current of 1997-04-26.

	* cribbage/*: Update from NetBSD-current of 1997-04-26.

Mon May  5 02:23:05 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* canfield/*: Update from NetBSD-current of 1997-04-26.

	* caesar/caesar.6: Mention rot13.

	* caesar/Makefile: Install rot13 and manpage link.

	* caesar/rot13.sh: Rename to rot13.in.
	* caesar/rot13.in: Parametrise to use full path of caesar.
	* configure: Substitute in this file.
	* Makefile: Remove rot13 in distclean.

	* caesar/*: Update from NetBSD-current of 1997-04-26.

	* bcd/*: Update from NetBSD-current of 1997-04-26.

	* battlestar/com6.c (post): Change to use time() in line with
	comments.

	* battlestar/Makefile: Change dependency on externs.h to extern.h.

	* battlestar/*: Update from NetBSD-current of 1997-04-26.

	* backgammon/common_source/Makefile: Quote value of RULES; only
	define when building sbackgammon.

	* backgammon/backgammon/Makefile, backgammon/teachgammon/Makefile:
	Don't include RULES in DEFS.

	* backgammon/Makefile: Don't include ../Makeconfig.

	* backgammon/common_source/back.h (OXTABS): Define to XTABS if not
	defined (from glibc headers).

	* backgammon/*: Update from NetBSD-current of 1997-04-26.

Sun May  4 01:55:22 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* backgammon/common_source/subs.c: Initialise `buffnum' to -1, to
	prevent a spurious NUL.
	* backgammon/common_source/fancy.c: Mark `buffnum' as `extern'.

Sat May  3 00:27:49 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* Version 1.3.3beta.

	* NEWS: Update.
	* bsd-games.lsm: Update.
	* bsd-games-non-free.lsm: Update.

	* sail/player.h (SCREENTEST): Do echo(), since ncurses turns off
	echo in initscr but we want it on for initial questions.

	* backgammon/teachgammon/ttext1.c: Remove \032 from `hello'.

	* backgammon/teachgammon/ttext2.c: Make list `char *list[]'.

	* configure: Default list of directories should only include those
	with a Makefile.

	* README.non-free: Update.

	* README: Update.

	* INSTALL: Update.

	* Version 1.3.2beta.

	* NEWS: Update.

	* TODO: Update.

	* Makefile.orig, Makefile.inc.orig: Update from NetBSD-current of
	1997-04-26.

	* Makefile (distclean): Remove install-score.

Fri May  2 13:23:28 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* atc/*: Update from NetBSD-current of 1997-04-26.

	* arithmetic/*: Update from NetBSD-current of 1997-04-26.

	* worm/worm.c (main): Place cursor on head of worm.

	* snake/snake/snake.c (mainloop): Place cursor on you, not one
	cell to the left and above.

	* backgammon/common_source/init.c,
	backgammon/common_source/back.h: Initialise args to start with
	'-'.

	* bsd-games-non-free.lsm: New file - LSM entry for
	bsd-games-non-free.

	* bsd-games.lsm: Update.

	* INSTALL: Update.

	* README.linux: Rename to README.
	* README: Update.

	* README.non-free: New file - README for non-free distribution.

	* fortune/README.linux: Update.

	* bog/README.linux: Update.

Thu May  1 00:45:58 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* atc/Makefile, battlestar/Makefile, canfield/canfield/Makefile,
	cribbage/Makefile, robots/Makefile, sail/Makefile,
	snake/snake/Makefile, tetris/Makefile: Use INSTALL_SCORE_FILE.

	* tetris/Makefile (install): Use INSTALL_SCORE_GAME.

	* configure, Makeconfig.in: Update for this.

	* install-score.in: New file - install a score file.

	* TODO: Update.

	* INSTALL: Update.

	* README.linux: Update.

	* arithmetic/README.linux, atc/README.linux,
	battlestar/README.linux, bcd/README.linux, caesar/README.linux,
	canfield/README.linux, cribbage/README.linux, factor/README.linux,
	fish/README.linux, hangman/README.linux, mille/README.linux,
	monop/README.linux, morse/README.linux, number/README.linux,
	paranoia/README.linux, pom/README.linux, ppt/README.linux,
	primes/README.linux, rain/README.linux, robots/README.linux,
	sail/README.linux, snake/README.linux, trek/README.linux,
	wargames/README.linux, worm/README.linux, worms/README.linux,
	wump/README.linux: Remove.

	* fortune/fortune/Makefile: Remove unused definition.

	* configure, Makeconfig.in, atc/Makefile, backgammon/Makefile,
	backgammon/backgammon/Makefile, backgammon/common_source/Makefile,
	backgammon/teachgammon/Makefile, battlestar/Makefile,
	bog/Makefile, bog/bog.6.in, canfield/Makefile,
	canfield/canfield/Makefile, canfield/cfscores/Makefile,
	canfield/canfield/canfield.6.in, cribbage/Makefile,
	cribbage/cribbage.6.in, fish/Makefile, hangman/Makefile,
	hangman/hangman.6.in, monop/Makefile, monop/monop.6.in,
	robots/Makefile, robots/robots.6.in, sail/Makefile,
	snake/Makefile, snake/snake/Makefile, snake/snake/snake.6.in,
	snake/snscore/Makefile, tetris/Makefile, tetris/tetris.6.in,
	wump/Makefile: Configure paths for data files for individual games
	with configure script.

	* configure: Find default list of games to build from what
	directories are present.

	* Version 1.3.1beta privately distributed for comments.

	* NEWS: New file - summary of changes.

	* TODO: Update.

	* README.linux: Update.

	* INSTALL: Update.

	* tetris/Makefile: Install manual page as tetris-bsd.6.

	* bsd-games.lsm: Update.

Wed Apr 30 00:45:55 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* INSTALL: Update.

	* TODO: Update.

	* bsd-games.lsm: Update.

	* wump/Makefile (install): Use INSTALL_PREFIX.

	* canfield/canfield/Makefile (install): Use INSTALL_PREFIX.

	* Makefile (install): Fix typo.

	* rain/Makefile: Add target `all'; fix dependencies.

	* ppt/Makefile: Add target `all'.

	* pom/Makefile: Add target `all'.

	* paranoia/Makefile: Add target `all'.

	* number/Makefile: Add target `all'.

	* morse/Makefile: Add target `all'.

	* fish/Makefile: Add target `all'.

	* factor/Makefile: Add target `all'.

	* caesar/Makefile: Add target `all'.

	* bcd/Makefile: Add target `all'.

	* arithmetic/Makefile: Add target `all'.

	* snake/snake/snake.h: Use <sgtty.h> instead of <bsd/sgtty.h>.

Tue Apr 29 10:37:00 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* Makefile (distclean): Delete all substituted-in manpages.

	* fortune/fortune/Makefile, fortune/datfiles/Makefile: Fortunes go
	under $(LIBDIR), not $(SHAREDIR).

	* TODO: Update.

	* Credits: Update.

	* Debian patch (1.3-7), and David Frey's ports, now integrated
	into the source, at least where I thought the fixes were correct
	and needed.

	* gomoku/pickmove.c: Include <limits.h> instead of
	<machine/limits.h> (from David Frey's port).

	* gomoku/gomoku.h: Include <endian.h> (from David Frey's port).

	* gomoku/Makefile: Rename to Makefile.orig
	* gomoku/Makefile: New from port by David Frey; rewrite to use
	config information; fix dependencies.

	* configure: Add gomoku to list of directories to build in.

	* gomoku/*: Added from NetBSD-current, for adding port from David
	Frey.

	* tetris/tetris.6: Rename to tetris.6.in.
	* tetris/tetris.6.in: Parametrise.
	* configure: Substitute in this file.

	* tetris/pathnames.h: Path to score file is defined in the
	Makefile.

	* tetris/Makefile: Rename to Makefile.orig.
	* tetris/Makefile: New from port by David Frey; rewrite to use
	config information; fix dependencies.

	* configure: Add tetris to list of directories to build in.

	* tetris/*: Added from FreeBSD-current (as a basis to include port
	from David Frey <david@eos.lugs.ch>).

Mon Apr 28 12:22:57 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* wump/README.linux: Update.

	* wump/Makefile: Rewrite to use config information; fix
	dependencies.

	* worms/worms.c (main): Include <sys/ioctl.h> (from Debian).

	* worms/worms.6: Change -length to -l, -number to -n (from
	Debian).

	* worms/README.linux: Update.

	* worms/Makefile: Rewrite to use config information; fix
	dependencies.

	* worm/worm.c: Include <termios.h> (from Debian); don't define
	baudrate().

	* worm/README.linux: Update.

	* worm/Makefile: Rewrite to use config information; fix
	dependencies.

	* wargames/README.linux: Update.

	* wargames/Makefile: Rewrite to use config information.

	* wargames/wargames.sh: Remove.
	* wargames/wargames: Change `tput cl' to `tput clear'.

	* trek/trek.6: Rename to trek.6.in.
	* trek/trek.6.in: Parametrise.
	* configure: Substitute in this file.

	* trek/README.linux: Update.

	* trek/Makefile: Rewrite to use config information; fix
	dependencies.

	* snake/snscore/snscore.c (main): Initialise noplayers; check for
	empty scorefile (from Debian).

	* snake/snscore/snscore.c (MAXPLAYERS): Increase to 65534 (from
	Debian).

	* snake/snake/snake.6: Rename to snake.6.in.
	* snake/snake/snake.6.in: Parametrise.
	* configure: Substitute in this file.

	* snake/snscore/Makefile: Rewrite to use config information; fix
	dependencies.

	* snake/snake/Makefile: Rewrite to use config information; fix
	dependencies.

	* snake/README.linux: Update.

	* snake/Makefile: Rewrite to use config information; use `set -e'
	in compound commands.

Sun Apr 27 00:02:40 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* sail/pl_7.c (susp): Don't call tstp (from Debian).

	* sail/player.h: Mark `version' as `extern'.

	* sail/externs.h: Mark variables as `extern'.

	* sail/driver.h: Mark `dtab' as `extern'.

	* sail/player.h: Change <ncurses.h> to <curses.h>.

	* sail/externs.h: Don't include <bsd/signal.h>.

	* sail/Makefile: Rewrite to use config information; fix
	dependencies.

	* robots/init_field.c (init_field), robots/move.c (get_move):
	Don't call flushok.

	* robots/main.c (quit): Condition out bit using CE (from Debian).

	* robots/robots.h, robots/move.c: Use character constants as
	argument to CTRL macro.

	* robots/robots.6: Rename to robots.6.in.
	* robots/robots.6.in: Parametrise.
	* configure: Substitute in this file.

	* robots/Makefile: Rewrite to use config information; fix
	dependencies.

	* rain/Makefile: Rewrite to use config information; fix
	dependencies.

	* rain/rain.c: Include <sys/ioctl.h> (from Debian).

	* factor/Makefile: Build pr_tbl.o in current directory, not in
	primes directort.

	* primes/README.linux: Update.

	* primes/Makefile: Rewrite to use config information; fix
	dependencies.

	* ppt/README.linux: Update.

	* ppt/Makefile: Rewrite to use config information; fix
	dependencies.

	* battlestar/Makefile (install): Add use of $(HIDE_GAME).

	* pom/pom.c (main): Return 0.

	* pom/README.linux: Update.

	* pom/pom.c: Define isleap only if not defined; condition
	definition of PI on PI rather than linux not being defined;
	improve value of PI.

	* pom/Makefile: Rewrite to use config information; fix
	dependencies.

	* paranoia/paranoia.c (page40): Remove backslash from invalid "\`"
	escape sequence.

	* paranoia/README.linux: Update.

	* paranoia/Makefile: Rewrite to use config information; fix
	dependencies.

	* hide-game.in: Use installation prefix.

	* number/README.linux: Update.

	* number/Makefile: Rewrite to use config information; fix
	dependencies.

	* morse/README.linux: Update.

	* morse/Makefile: Rewrite to use config information; fix
	dependencies.

	* monop/README.linux: Update.

	* monop/Makefile: Rewrite to use config information; fix
	dependencies.

	* hangman/Makefile, hunt/Makefile, mille/Makefile: Add use of
	$(HIDE_GAME).

	* monop/monop.6: Rename to monop.6.in.
	* monop/monop.6.in: Parametrise.
	* configure: Substitute in this file.

Sat Apr 26 19:10:52 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* mille/README.linux: Update.

	* mille/init.c (newscore): Add force_counter hack from Debian to
	fix problem with ncurses's addch not returning ERR at EOL.

	* mille/unctrl.h: Do nothing if NCURSES_VERSION is defined.

	* mille/Makefile: Rewrite to use config information; fix
	dependencies.

	* mille/mille.6: Rename to mille.6.in.
	* mille/mille.6.in: Parametrise
	* configure: Substitute in this file.

	* hunt/README.linux: Update.

	* hunt/Makefile: Rewrite to use config information.

	* hunt/otto.c (SCREEN): Define appropriately for ncurses,
	conditional on NCURSES_VERSION (from Debian).

	* hunt/pathname.c: Change socket directory to _PATH_SOCKETS (to be
	defined in the Makefile).

	* hunt/driver.c (init): Conditionally use /var/tmp instead of
	/usr/tmp.

	* hunt/faketalk.c (faketalk): Fix typo (`stmp' for `smtp').

	* hunt/hunt.6: Rename to hunt.6.in.
	* hunt/huntd.6: Rename to huntd.6.in.
	* hunt/hunt.6.in: Parametrise.
	* hunt/huntd.6.in: Parametrise.
	* configure: Substitute in these files.

	* hangman/README.linux: Update.

	* hangman/hangman.6: Rename to hangman.6.in.
	* hangman/hangman.6.in: Parametrise.
	* configure: Substitute in this file.

	* hangman/clean.pl, hangman/util, hangman/util.cc: Remove.

	* hangman/Makefile: Rewrite to use config information; fix
	dependencies.

Thu Apr 24 00:02:10 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* fortune/fortune/Makefile: Don't keep rebuilding fortune.test.

	* fortune/Makefile: Remove fortunes symlink in clean.

	* fortune/unstr/unstr.c: Don't typedef off_t.

	* fortune/fortune/fortune.c: Conditionally define d_namlen to
	d_reclen.

	* fortune/strfile/strfile.c: Don't typedef off_t, or undefine
	MAXPATHLEN.

	* fortune/unstr/Makefile: Rewrite to use config information.

	* fortune/strfile/Makefile: Rewrite to use config information.

	* fortune/fortune/Makefile: Rewrite to use config information; fix
	dependencies.

	* fortune/datfiles/Makefile: Rewrite to use config information.

	* fortune/Makefile: Rewrite.

	* fish/README.linux: Update.

	* fish/fish.c (nrandom): Condition out declaration of random()
	(from Debian).

	* fish/Makefile: Rewrite to use config information; fix
	dependencies.

	* factor/README.linux: Update.

	* factor/Makefile: Rewrite to use config information; fix
	dependencies.

Wed Apr 23 00:03:24 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* cribbage/cribbage.6: Rename to cribbage.6.in.
	* cribbage/cribbage.6.in: Parametrise; add mention of score file
	and instructions file.
	* configure: Substitute in this file.

	* cribbage/README.linux: Update.

	* cribbage/crib.c, cribbage/extern.c, cribbage/io.c,
	cribbage/support.c: Change conditional inclusion of ncurses.h or
	curses.h to unconditional inclusion of curses.h (ncurses provides
	curses.h in the appropriate directory, used with -I if needed, but
	ncurses.h is non-standard).

	* cribbage/instr.c (instructions): Change `pstat' to an int; use
	WEXITSTATUS macro (from Debian).

	* cribbage/extern.c: Change `bool' to `BOOLEAN' (from Debian).

	* cribbage/Makefile: Rewrite to use config information; fix
	dependencies.

	* canfield/cfscores/Makefile: Don't use unnecessary libraries.

	* canfield/Makefile, canfield/canfield/Makefile,
	canfield/cfscores/Makefile: Fix quoting of SCOREFILE.

	* canfield/README.linux: Update.

	* canfield/canfield/canfield.6: Rename to canfield.6.in.
	* canfield/canfield/canfield.6.in: Parametrise.
	* configure: Substitute in canfield/canfield/canfield.6.in.

	* canfield/cfscores/Makefile: Rewrite to use config information.

	* canfield/canfield/Makefile: Rewrite to use config information.

	* canfield/Makefile: Rewrite to use config information; use `set
	-e' in compound commands.

Tue Apr 22 00:08:42 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* caesar/README.linux: Update.

	* caesar/Makefile: Rewrite to use config information; fix
	dependencies.

	* bog/README.linux: Update.

	* bog/Makefile: Rewrite to use config information; fix
	dependencies.

	* bog/bog.man: Rename to bog.6.in.
	* bog/bog.6.in: Include parametrised file locations.
	* configure: Substitute in this file.

	* arithmetic/Makefile, atc/Makefile,
	backgammon/backgammon/Makefile, backgammon/teachgammon/Makefile,
	bcd/Makefile: Use $(HIDE_GAME).

	* hide-game.in: Use `set -e'.

	* configure: Ask for permissions on dm (not included yet, but
	supported for when it is ported).
	* Makeconfig.in (INSTALL_DM): Provide macro for this.

	* arithmetic/Makefile, atc/Makefile,
	backgammon/backgammon/Makefile, backgammon/common_source/Makefile,
	backgammon/teachgammon/Makefile, battlestar/Makefile,
	bcd/Makefile: Use LDFLAGS in link.

	* bcd/README.linux: Update.

	* bcd/Makefile: Rewrite to use config information; fix
	dependencies.

	* install-man.in: Set owner/group/permissions on .so pages.

	* battlestar/fly.c (visual): Check return of initscr() against
	NULL rather than ERR to eliminate warning (although initscr()
	should exit in event of error).  Also comment out call to
	savetty().
	* battlestar/fly.c (endfly): Add call to setvbuf() to restore line
	buffering on stdout, since ncurses changes buffering but doesn't
	restore it.

	* battlestar/save.c: Do exit(1) on failed restore; close file at
	the end of restore() and save().

	* battlestar/externs.h: Conditionally include <stdlib.h> and
	<string.h>.

	* battlestar/dayfile.c (dayfile): Spelling corrections.
	* battlestar/nightfile.c (nightfile): Spelling corrections.

	* battlestar/cypher.c (cypher): Fix many tests on *objsht[n] that
	should be on objsht[n]; initialise `wordtype' correctly in TAKE
	when doing a `take all'.

	* battlestar/com5.c (give): Initialise `last1' and `last2' to
	avoid a segfault if you start the game with `give'.

	* battlestar/com3.c (shoot): Initialise `firstnumber' to avoid
	segfault from `shoot all' without a laser.

	* battlestar/com2.c (use): Set notes[CANTSEE] to 0 when moving
	into the light.

	* battlestar/battlestar.c: Change exit() to exit(1) in default
	case that shouldn't occur.

	* battlestar/externs.h: Mark as `extern' variables initialised
	somewhere.

	* battlestar/fly.c: Change <bsd/signal.h> to <signal.h>.

	* battlestar/README.linux: Update.

	* battlestar/Makefile: Rewrite to use config information; fix
	dependencies.

Mon Apr 21 22:19:28 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* configure: New variable `chown_vardata' to set owner/group on
	variable data only if appropriate.
	* Makeconfig.in: Use this variable.

Sat Apr 19 20:06:08 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* backgammon/Makefile: Add missing semi-colon, and `cd ..'s.

	* backgammon/common_source/subs.c (getarg): Check s[0] for being
	NULL (from Debian).

	* backgammon/backgammon/main.c, backgammon/backgammon/move.c,
	backgammon/backgammon/text.c, backgammon/commmon_source/back.h,
	backgammon/common_source/board.c, backgammon/teachgammon/teach.c,
	backgammon/teachgammon/ttext1.c, backgammon/teachgammon/ttext2.c:
	Change `raw' to `bg_raw', and `remove' to `removetxt' (from
	Debian).

	* backgammon/teachgammon/teach.c: Mark variables as `extern'.

	* backgammon/teachgammon/teach.c: Change `ospeed' to `short'.

	* backgammon/backgammon/main.c: Mark `instr' and `message' as
	`extern'.  Also change `ospeed' from `char' to `short' (from
	Debian).

	* backgammon/common_source/back.h: Mark as `extern' variables
	initialised in init.c.

	* backgammon/common_source/back.h,
	backgammon/common_source/init.c: Don't condition on linux for
	including <bsd/sgtty.h> or <sgtty.h>, since redundant with
	-I/usr/include/bsd.

	* backgammon/README.linux: Update.

	* atc/Makefile, backgammon/backgammon/Makefile,
	backgammon/teachgammon/Makefile: Consistently use $(INCS) in
	compilation rules.

	* backgammon/common_source/Makefile: Rewrite to use config
	information; fix dependencies.

	* backgammon/backgammon/backgammon.6.in: Include teachgammon in
	manpage (from Debian).
	* backgammon/teachgammon/Makefile: Install .so link or symlink to
	backgammon manpage.

Fri Apr 18 11:02:30 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* install-man.in: New file to handle all the manpage installation
	complexities.
	* configure, Makeconfig.in, arithmetic/Makefile, atc/Makefile,
	backgammon/backgammon/Makefile: Use this new script.

	* backgammon/backgammon/Makefile, backgammon/teachgammon/Makefile:
	Rewrite to use config information; fix dependencies.

	* backgammon/backgammon/backgammon.6: Rename to backgammon.6.in.
	* backgammon/backgammon/backgammon.6.in: Parametrise reference to
	teachgammon.
	* configure: Substitute in backgammon/backgammon/backgammon.6.in.

	* backgammon/Makefile: Rewrite to use config information.

	* atc/README.linux: Update.

	* atc/main.c (main): Add CRMOD to terminal flags, since ncurses
	1.9.9g (3.4) and 4.0 disable CR-NL translation.

Thu Apr 17 12:31:00 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* atc/Makefile: Rewrite to use config information; fix
	dependencies; fix libraries and installation of games (from
	Debian).

	* atc/include.h: Remove conditional inclusion of <bsd/signal.h>,
	as it's redundant with -I/usr/include/bsd.

	* atc/def.h: Change #ifndef linux to #ifndef PI for definition of
	PI (from Debian).  Also improve accuracy of value.

	* arithmetic/arithmetic.c: include <time.h>; remove declaration of
	time().

	* Makeconfig.in (CC): Add new macro.

	* arithmetic/Makefile: Rewrite to use config information; fix
	dependencies.
	* arithmetic/README.linux: Update.

	* Makeconfig.in (BUILDDIRS): Add new macro.
	* configure: Always substitute for sbindir, socketdir and
	usrbindir, even if not building relevant programs (so that we can
	always create them).
	* Makefile: Essentially complete rewrite to use configuration
	information; allow installation prefix and use install -d instead
	of mkdir -p as per Debian patch.  Also use set -e in all compound
	commands.

	* Makeconfig.in (INSTALL_SCORE_FILE2, INSTALL_SCORE_FILE3): Fix
	commands for installing score files.

	* configure, Makeconfig.in: Add configuration of socketdir, for
	hunt to place its Unix domain sockets in.

Wed Apr 16 21:31:18 1997  Joseph S. Myers  <jsm@polyomino.org.uk>

	* BSD-games.src.lsm: Remove.
	* bsd-games.lsm: New file - new-style LSM entry.

	* configure, Makeconfig.in, hide-game.in: New files - beginnings
	of a configuration system.

	* CHANGELOG: Rename to ChangeLog.0.
	* ChangeLog: New file.

	* BSD-games.bin.lsm: Remove.

	* New maintainer.

See ChangeLog.0 for earlier changes.