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
|
1998-03-29 Joseph Samuel Myers <jsm@octomino.demon.co.uk>
* Version 2.1.
* TODO: Update.
* README: Update.
* INSTALL: Update.
* Credits: Update.
1998-03-28 Joseph Samuel Myers <jsm@octomino.demon.co.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 Samuel Myers <jsm@octomino.demon.co.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 Samuel Myers <jsm@octomino.demon.co.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 Samuel Myers <jsm@octomino.demon.co.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 Samuel Myers <jsm@octomino.demon.co.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 Samuel Myers <jsm@octomino.demon.co.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 Samuel Myers <jsm@octomino.demon.co.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 Samuel Myers <jsm@octomino.demon.co.uk>
* mille/mille.h: prscore's argument is bool, not int (from Joey
Hess).
1997-12-25 Joseph Samuel Myers <jsm@octomino.demon.co.uk>
* Version 2.0.
* INSTALL: Add name and email address to bottom.
* Credits: Update.
Sun Dec 21 11:59:34 1997 Joseph Samuel Myers <jsm@octomino.demon.co.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 Samuel Myers <jsm@octomino.demon.co.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 Samuel Myers <jsm@octomino.demon.co.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 Samuel Myers <jsm@octomino.demon.co.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 Samuel Myers <jsm@octomino.demon.co.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 Samuel Myers <jsm@octomino.demon.co.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 Samuel Myers <jsm@octomino.demon.co.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 Samuel Myers <jsm@octomino.demon.co.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 Samuel Myers <jsm@octomino.demon.co.uk>
* configure: Fix spelling errors; some cleanup.
Tue Sep 2 17:28:22 1997 Joseph Samuel Myers <jsm@octomino.demon.co.uk>
* configure: Use empty man8dir if not building in dm or fortune.
Sun Aug 24 10:33:08 1997 Joseph Samuel Myers <jsm@octomino.demon.co.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 Samuel Myers <jsm@octomino.demon.co.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 Samuel Myers <jsm@octomino.demon.co.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 Samuel Myers <jsm@octomino.demon.co.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 Samuel Myers <jsm@octomino.demon.co.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 Samuel Myers <jsm@octomino.demon.co.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 Samuel Myers <jsm@octomino.demon.co.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 Samuel Myers <jsm@octomino.demon.co.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 Samuel Myers <jsm@octomino.demon.co.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 Samuel Myers <jsm@octomino.demon.co.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 Samuel Myers <jsm@octomino.demon.co.uk>
* configure: Set empty man5dir if not building in dm.
Thu Jul 17 16:41:29 1997 Joseph Samuel Myers <jsm@octomino.demon.co.uk>
* Version 1.5.
* bsd-games-non-free.lsm: Update.
* bsd-games.lsm: Update.
Wed Jul 16 12:50:00 1997 Joseph Samuel Myers <jsm@octomino.demon.co.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 Samuel Myers <jsm@octomino.demon.co.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 Samuel Myers <jsm@octomino.demon.co.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 Samuel Myers <jsm@octomino.demon.co.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 Samuel Myers <jsm@octomino.demon.co.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 <jsm28@cam.ac.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 <jsm28@cam.ac.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 <jsm28@cam.ac.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 <jsm28@cam.ac.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 <jsm28@cam.ac.uk>
* TODO: Update.
* README.non-free: Update.
* README: Update.
Wed May 21 00:08:36 1997 Joseph S. Myers <jsm28@cam.ac.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 <jsm28@cam.ac.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 <jsm28@cam.ac.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 <jsm28@cam.ac.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 <jsm28@cam.ac.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 <jsm28@cam.ac.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 <jsm28@cam.ac.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 <jsm28@cam.ac.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 <jsm28@cam.ac.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 <jsm28@cam.ac.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 <jsm28@cam.ac.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 <jsm28@cam.ac.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 <jsm28@cam.ac.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 <jsm28@cam.ac.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 <jsm28@cam.ac.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 <jsm28@cam.ac.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 <jsm28@cam.ac.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 <jsm28@cam.ac.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 <jsm28@cam.ac.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 <jsm28@cam.ac.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 <jsm28@cam.ac.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 <jsm28@cam.ac.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 <jsm28@cam.ac.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 <jsm28@cam.ac.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 Samuel Myers <jsm@octomino.demon.co.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 Samuel Myers <jsm@octomino.demon.co.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 Samuel Myers <jsm@octomino.demon.co.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 Samuel Myers <jsm@octomino.demon.co.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.
|