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
|
commit 1ad8758
Merge: da13303 187d622
Author: David Ranch <linpac@trinnet.net>
Date: 2021-02-01
Merge branch 'develop'
Conflicts:
ChangeLog
commit 187d622
Author: David Ranch <linpac@trinnet.net>
Date: 2021-02-01
updated the date and changelog
contrib/packaging/rpm/linpac.spec
commit 75faf6c
Author: David Ranch <linpac@trinnet.net>
Date: 2021-02-01
updated the date
linpac.lsm
commit 6ad3ebb
Author: David Ranch <linpac@trinnet.net>
Date: 2021-02-01
Updated the Changelog based upon recent Git commit comments
ChangeLog
commit f8c998f
Author: David Ranch <linpac@trinnet.net>
Date: 2021-02-01
Updating the year
README
commit cab8c96
Author: David Ranch <linpac@trinnet.net>
Date: 2021-02-01
Adding native debian debuild support
debian/changelog
debian/compat
debian/control
debian/copyright
debian/linpac.1
debian/postrm
commit 12add05
Author: David Ranch <linpac@trinnet.net>
Date: 2021-01-13
add check for the presence of screen; removed the use of sudo; use a variable for log destination
contrib/start-linpac.sh
commit c69e81b
Author: David Ranch <linpac@trinnet.net>
Date: 2020-12-30
Updated to reflect todays date and updated destination email address
linpac.lsm
commit cca39e9
Author: David Ranch <linpac@trinnet.net>
Date: 2020-12-30
Updated to reflect 0.28
linpac.lsm
commit 8bb8dea
Author: David Ranch <linpac@trinnet.net>
Date: 2020-12-22
Updating the version of the README file
README
commit 14b05a9
Author: David Ranch <linpac@trinnet.net>
Date: 2020-08-25
updated the TXT version from the manual.html file
doc/manual.txt
commit 50ffc38
Author: David Ranch <linpac@trinnet.net>
Date: 2020-08-25
Added an example when setting the undest with digipeater paths
doc/manual.html
commit 5fdb023
Merge: 5f15472 211345e
Author: David Ranch <linpac@trinnet.net>
Date: 2020-04-19
Merge commit '211345eac270d78d375810ba2e3958dcf4d45488' into develop
commit 5f15472
Author: David Ranch <linpac@trinnet.net>
Date: 2020-04-10
limit the number of stations to 20
src/applications/mheard
commit cd00d7d
Author: David Ranch <linpac@trinnet.net>
Date: 2020-03-30
More updates to the FAQ
doc/manual.html
commit 2fb9c92
Author: David Ranch <linpac@trinnet.net>
Date: 2020-03-30
More updates to the FAQ
doc/manual.html
doc/manual.txt
commit addcd03
Author: David Ranch <linpac@trinnet.net>
Date: 2020-03-30
Added FAQ, Q&A, Getting additional help section
doc/manual.html
doc/manual.txt
commit c560549
Author: David Ranch <linpac@trinnet.net>
Date: 2020-03-30
ensure docs are up to date
doc/applguide.html
doc/applguide.txt
commit 2601c2e
Author: David Ranch <linpac@trinnet.net>
Date: 2020-03-30
updated the manual to include the new mail system; improved formatting
doc/manual.html
doc/manual.txt
commit 507b94c
Author: David Ranch <linpac@trinnet.net>
Date: 2020-03-29
WIP: adding details for the new PBBS message relay support
doc/manual.html
doc/manual.txt
commit 211345e
Author: Martin Cooper <mfncooper@gmail.com>
Date: 2020-03-28
Integrate the lptelnet package
The lptelnet package has been an add-on up to now. Integrate it into
the main Linpac tree, so that the 'ipcontrol', 'telnet' and 'finger'
commands become regular built-in Linpac commands.
.gitignore
configure.ac
src/applications/Makefile.am
src/applications/commands
src/applications/telnet/Makefile.am
src/applications/telnet/finger
src/applications/telnet/ipcontrol.cc
src/applications/telnet/lpcalls.cc
src/applications/telnet/lpcalls.h
src/applications/telnet/telnet
commit 250abe6
Author: David Ranch <linpac@trinnet.net>
Date: 2020-03-28
more bugs
linpac-todo.txt
commit daf0f7c
Author: David Ranch <linpac@trinnet.net>
Date: 2020-03-27
better clarification, more bugs added
linpac-todo.txt
commit f2f960a
Author: David Ranch <linpac@trinnet.net>
Date: 2020-03-27
added feature enhancement ideas from kj6nkr
linpac-todo.txt
commit 417856f
Author: David Ranch <linpac@trinnet.net>
Date: 2020-03-27
new version of linpac
contrib/packaging/rpm/linpac.spec
commit cd8439c
Author: David Ranch <linpac@trinnet.net>
Date: 2020-03-27
moved resolved bugs, added a few new bugs/enhancements
linpac-todo.txt
commit 2ed1805
Author: David Ranch <linpac@trinnet.net>
Date: 2020-03-27
updated the version
configure.ac
commit 0cb29b7
Author: Martin Cooper <mfncooper@gmail.com>
Date: 2020-02-17
Add minimal styling for readability
Add some CSS styling to improve readability of code, both as inline
values and within code blocks. Adjust page style for readability.
Use invisible hr elements to preserve dashed lines in the generated
text version of the document.
doc/applguide.html
doc/applguide.txt
commit 16a86b7
Author: Martin Cooper <mfncooper@gmail.com>
Date: 2020-02-16
Fix a few misplaced tags
doc/applguide.html
commit 962578c
Author: Martin Cooper <mfncooper@gmail.com>
Date: 2020-02-16
Regenerated text from substantially revised HTML
New text version of application guide generated from revised and
updated HTML version.
doc/applguide.txt
commit 2924497
Author: Martin Cooper <mfncooper@gmail.com>
Date: 2020-02-16
Documentation for the shell API
The shell API was undocumented save for the usage info provided when
lpapi is invoked without arguments. Add documentation on usage of the
API for writing shell scripts, the commands available, and how to add
a new shell command to LinPac.
doc/applguide.html
commit 2a0b22e
Author: Martin Cooper <mfncooper@gmail.com>
Date: 2020-02-16
Significant revision and cleanup
Significant revisions and cleanup throughout the document:
- Corrections to API functions and usage.
- Fixes for language, typos, and the like.
- Fixes to sanitize some HTML rendering.
- Use dl tag for API listings.
doc/applguide.html
commit d446aff
Author: Martin Cooper <mfncooper@gmail.com>
Date: 2020-02-15
Replace obsolete tt tag with code tag.
The tt tag was liberally used, but is obsolete. Replace with the code
tag, and clean up source code examples to use pre/code blocks instead
of per-line tags.
doc/applguide.html
commit 8ea6ac9
Author: Martin Cooper <mfncooper@gmail.com>
Date: 2020-02-11
Fix initial scroll position in index view
The initial scroll position was causing the index to show only the
"last read" message at the top of the index, so that the user needs
to scroll up to see other messages in the list. Fix this to place
the last read message as close as possible to the center of the
screen, adjusting as necessary for messages near the top or bottom
of the message list.
src/applications/mailer/mail_list.cc
src/applications/mailer/mail_list.h
commit 2526c22
Author: Martin Cooper <mfncooper@gmail.com>
Date: 2020-02-11
Fix buffer overflow
The HELP_VIEW string was extended in a recent commit, but the buffer
to contain it was not. Warning issued by compiler. Buffer now expanded
to compensate.
src/applications/mailer/mail_comp.h
src/applications/mailer/mail_edit.cc
src/applications/mailer/mail_edit.h
commit d49c03b
Author: Martin Cooper <mfncooper@gmail.com>
Date: 2020-02-10
Gracefully handle missing messages
A missing message would result in getmsg effectively hanging, since it
would no longer attempt to process message lines. Fix this to detect
the missing message notice from the BBS and continue to retrieve any
subsequent messages.
src/applications/mailmsg/bbs.h
src/applications/mailmsg/bbs_fbb.cc
src/applications/mailmsg/bbs_pbbs.cc
src/applications/mailmsg/getmsg.cc
commit f4ebb0a
Author: Martin Cooper <mfncooper@gmail.com>
Date: 2020-02-10
Sign off before disconnecting
Once messages have been retrieved, issue the Bye command to a PBBS
rather than just dropping the connection. The equivalent for FBB is
not known at this time, so is not yet implemented.
src/applications/mailmsg/bbs.cc
src/applications/mailmsg/bbs.h
src/applications/mailmsg/bbs_pbbs.cc
src/applications/mailmsg/bbs_pbbs.h
src/applications/mailmsg/getmsg.cc
commit 1d01aea
Author: Martin Cooper <mfncooper@gmail.com>
Date: 2020-02-08
Fix incorrect usage of vector::erase
When erasing elements from a vector during iteration, the iterator is
affected. This needs to be compensated for in the loop control.
src/applications/libaxmail/axmail.cc
src/data.cc
src/windows.cc
commit f3fac9b
Author: Martin Cooper <mfncooper@gmail.com>
Date: 2020-02-08
Fix confusing comment
Comment for 'D' command said it meant Delete, instead of Download.
src/applications/mailer/mail_list.cc
commit 0c1e0a0
Author: Martin Cooper <mfncooper@gmail.com>
Date: 2020-02-08
Add new command for integrated BBS mail retrieval
Add a new external command that retrieves a message index from a BBS
and then retrieves any messages that do not exist locally. The command
is implemented as a shell script that uses axgetlist to retrieve the
message index and invokes the Linpac getmsg command to retrieve any
missing messages. The shell API is used to retrieve the BBS callsign
and to invoke getmsg.
src/applications/commands
src/applications/mailmsg/Makefile.am
src/applications/mailmsg/getmail
commit 7c5d97d
Author: Martin Cooper <mfncooper@gmail.com>
Date: 2020-02-08
Add a few minor debug niceties
Add a few minor debugging and cleanup aids:
- Give the base event gate an identifiable name.
- Check that an event gate's socket is valid before closing.
- Emit an error message if an external command cannot be killed.
src/sources.cc
commit 792b933
Author: Martin Cooper <mfncooper@gmail.com>
Date: 2020-02-08
Fix bug in modifying EventGate children
When an event gate is finished, it's removed from the list of children
maintained by the base gate, and the new max socket number is updated.
The vector::erase function was being used incorrectly to do this, such
that a gate was missed, and the new max socket could then be incorrect.
Fixed the usage of ::erase within an iterator to address this.
src/sources.cc
commit 861a3c3
Author: Martin Cooper <mfncooper@gmail.com>
Date: 2020-01-27
Clean up mismatched allocations and frees
There were many cases in which a string was being allocated using
strdup() but then freed using delete[] instead of free(). In some
cases, allocation of a given string used either strdup() or new[]
based on a condition, but was always freed using delete[]. All
allocations and frees are now matched, such that strings created
with strdup() or malloc() are destroyed with free().
src/applications/libaxmail/axmail.cc
commit 806cffa
Author: Martin Cooper <mfncooper@gmail.com>
Date: 2020-01-27
Fix message number lookup
The binary search for looking up a message index based on the message
number was broken. Since the message list is very unlikely to be of
any significant length, replace it with a simple linear lookup.
src/applications/libaxmail/axmail.cc
commit 28209ff
Author: Martin Cooper <mfncooper@gmail.com>
Date: 2020-01-18
Fix line ends
Somehow this file had been previously checked in with DOS line ends.
Corrected these to Linux line ends.
src/applications/doorbl.h
commit 45c1051
Author: Martin Cooper <mfncooper@gmail.com>
Date: 2020-01-18
Fix stack corruption from blank lines in macros
No check was being made for blank lines, causing stack corruption as
values were written to negative string indexes. Added a special case
for blank lines, to preserve them and maintain line numbering.
src/commands.cc
commit 4c36e25
Author: Martin Cooper <mfncooper@gmail.com>
Date: 2020-01-18
Fix line ends
Somehow this file had been previously checked in with DOS line ends.
Corrected these to Linux line ends.
src/commands.cc
commit f38b5d6
Merge: bf86b2a e10fcb2
Author: Martin Cooper <mfncooper@gmail.com>
Date: 2020-01-16
Merge remote-tracking branch 'upstream/develop' into develop
Include David's recent commits.
commit bf86b2a
Author: Martin Cooper <mfncooper@gmail.com>
Date: 2020-01-16
Add support for PBBS message retrieval
Restructured getmsg so that it can support multiple BBS types, based
upon the BBS type as set in the HOME_TYPE entry in init.mac. The
default is FBB, for backwards compatibility. Newly supported is the
PBBS type. All of the BBS-specific functionality has been broken
out into a base BBS class and a subclass per BBS type. The original
functional breakdown is largely the same as before, thus requiring
minimal change to the existing FBB code.
src/applications/mailmsg/Makefile.am
src/applications/mailmsg/bbs.cc
src/applications/mailmsg/bbs.h
src/applications/mailmsg/bbs_fbb.cc
src/applications/mailmsg/bbs_fbb.h
src/applications/mailmsg/bbs_pbbs.cc
src/applications/mailmsg/bbs_pbbs.h
src/applications/mailmsg/getmsg.cc
commit b321bb9
Author: Martin Cooper <mfncooper@gmail.com>
Date: 2020-01-16
Adjust build for moved mail utilities
configure.ac
src/applications/Makefile.am
src/applications/mailmsg/Makefile.am
commit 5020f0b
Author: Martin Cooper <mfncooper@gmail.com>
Date: 2020-01-16
Adjust ignores after moving files
.gitignore
commit 912d883
Author: Martin Cooper <mfncooper@gmail.com>
Date: 2020-01-16
Move mail tools into their own directory
src/applications/delmsg
src/applications/forward.cc
src/applications/getmsg.cc
src/applications/lzhuf.cc
src/applications/lzhuf.h
src/applications/mailmsg/delmsg
src/applications/mailmsg/forward.cc
src/applications/mailmsg/getmsg.cc
src/applications/mailmsg/lzhuf.cc
src/applications/mailmsg/lzhuf.h
commit e10fcb2
Author: David Ranch <linpac@trinnet.net>
Date: 2020-01-16
Add perl as a running dependency since mail functions use it
README
commit d3fbe95
Author: David Ranch <linpac@trinnet.net>
Date: 2020-01-16
Add perl as a running dependency since mail functions use it
contrib/packaging/rpm/linpac.spec
commit 01a10eb
Author: David Ranch <linpac@trinnet.net>
Date: 2019-12-29
resolved one P2-Mail enhancement item
linpac-todo.txt
commit 5822793
Author: David Ranch <linpac@trinnet.net>
Date: 2019-12-29
Reenable the developer detail but now hide it by default
configure.ac
commit 9abb4e9
Author: David Ranch <linpac@trinnet.net>
Date: 2019-12-29
Disable the developer detail by default
configure.ac
commit 6c4b997
Author: David Ranch <linpac@trinnet.net>
Date: 2019-12-29
Added KD6YAM as a primary contributor to Linpac. Thanks Martin
README
commit 271c7a6
Author: David Ranch <linpac@trinnet.net>
Date: 2019-12-29
Add the (Leave) command to the mail interface
src/applications/mailer/mail_help.cc
commit 7da5fb7
Author: David Ranch <linpac@trinnet.net>
Date: 2019-12-29
Add the (Leave) command to the mail interface
src/applications/mailer/mail_screen.h
commit 1d98690
Author: David Ranch <linpac@trinnet.net>
Date: 2019-12-28
comment and disable debug statement
src/applications/mailer/mail_list.cc
commit 10bfbca
Author: David Ranch <linpac@trinnet.net>
Date: 2019-12-28
Updated the Changelog based upon recent Git commit comments
ChangeLog
commit 395a21b
Author: David Ranch <linpac@trinnet.net>
Date: 2019-12-28
updated the spec to reflect the new version and fixes
contrib/packaging/rpm/linpac.spec
commit e39703f
Author: David Ranch <linpac@trinnet.net>
Date: 2019-12-28
updated version, copyright date, known issues with Ncurses 6.1
README
commit aac05f3
Author: David Ranch <linpac@trinnet.net>
Date: 2019-12-28
new development version
configure.ac
commit 24e7faf
Author: Martin Cooper <mfncooper@gmail.com>
Date: 2019-12-26
Fix buffer overflow when reading long lines
A fixed length buffer was being used to read message lines, and any
line longer than this was causing a freeze or segfault. Allocate a
buffer instead, but only when necessary (e.g. expanding tabs). Also
eliminate use of strdup when memory is being freed with delete[].
src/applications/mailer/mail_list.cc
src/applications/mailer/mail_list.h
commit 796fc5e
Author: Martin Cooper <mfncooper@gmail.com>
Date: 2019-12-24
Fix possible buffer overflow in system info
A compiler warning identified a possible overflow when retrieving
and subsequently formatting uname info. Increase buffer size to
allow for the maximum size of all strings.
src/tools.cc
commit bb70684
Author: Martin Cooper <mfncooper@gmail.com>
Date: 2019-04-02
Regenerated text manual from updated HTML.
doc/manual.txt
commit 8bc009d
Author: Martin Cooper <mfncooper@gmail.com>
Date: 2019-04-02
Minor changes to improve generated text.
doc/manual.html
commit 110326f
Author: Martin Cooper <mfncooper@gmail.com>
Date: 2019-04-01
Minor updates and corrections.
doc/manual.html
commit 88d2c64
Author: Martin Cooper <mfncooper@gmail.com>
Date: 2019-04-01
Fixes for language, typos, and the like.
doc/manual.html
commit 955c8c5
Author: Martin Cooper <mfncooper@gmail.com>
Date: 2019-04-01
Fix and sanitize some HTML rendering.
doc/manual.html
commit d8a1d2a
Author: Martin Cooper <mfncooper@gmail.com>
Date: 2019-04-01
Replace obsolete tt tag with code tag.
doc/manual.html
commit 4afa32c
Author: Martin Cooper <mfncooper@gmail.com>
Date: 2019-03-25
Add a note about multi-byte encodings.
The LinPac codebase assumes single byte character encodings, and as
such does not support Unicode in any form, including UTF-8.
doc/manual.html
doc/manual.txt
commit fc06750
Author: Martin Cooper <mfncooper@gmail.com>
Date: 2019-03-25
Fix incorrect character conversion indexing.
During character conversion (code page lookup), character codes with
the top bit set would be treated as negative values, causing incorrect
table size comparison and invalid table lookup. Changed the index to
an unsigned value to accommodate this.
src/applications/mailer/mail_edit.cc
src/editor.cc
src/windows.cc
commit 67014a9
Author: David Ranch <linpac@trinnet.net>
Date: 2019-02-10
updated README copyright date
README
commit 62b5fd8
Author: David Ranch <linpac@trinnet.net>
Date: 2019-02-10
new development version
configure.ac
commit 2c78bb5
Author: David Ranch <linpac@trinnet.net>
Date: 2019-02-10
renamed alloc_pair function to avoid conflict with new ncurses 6.0 function
src/windows.cc
commit f1acaac
Author: David Ranch <linpac@trinnet.net>
Date: 2019-02-02
new development version
configure.ac
commit e3a7d3a
Author: David Ranch <linpac@trinnet.net>
Date: 2019-02-02
Updated the message start header to include how to abort the message
src/applications/compose.cc
commit 39ab7e3
Merge: 636e645 7ea1597
Author: David Ranch <linpac@trinnet.net>
Date: 2018-11-10
Merge branch 'develop' of ssh://git.code.sf.net/p/linpac/linpac into develop
commit 636e645
Author: David Ranch <linpac@trinnet.net>
Date: 2018-11-10
noted a fix for 'LinPac is not running' errors
linpac-todo.txt
commit 33e7acd
Author: David Ranch <linpac@trinnet.net>
Date: 2018-11-10
Updated the development date
configure.ac
commit cf5002a
Merge: 8b0e8b0 512162b
Author: David Ranch <linpac@trinnet.net>
Date: 2018-11-10
Merge commit '512162b9cc1aa4f6515dbd3bcb703f0e66612cb3' into develop
commit 7ea1597
Merge: 8b0e8b0 512162b
Author: David Ranch <allura@localhost>
Date: 2018-11-11
Merge /u/mfncooper/linpac/ branch develop into develop
https://sourceforge.net/p/linpac/linpac/merge-requests/9/
commit 8b0e8b0
Author: David Ranch <linpac@trinnet.net>
Date: 2018-09-18
Reminder for doc fix for Operation not Permitted
linpac-todo.txt
commit 45dd5fb
Author: David Ranch <linpac@trinnet.net>
Date: 2018-09-17
added reminder about monitor port in manual.html
linpac-todo.txt
commit 512162b
Author: Martin Cooper <mfncooper@users.sourceforge.net>
Date: 2018-09-10
Fix bug in event gate when new process is created
On some systems, when a forked child runs execlp() to run an external
program, the external program does not have the same pid as the forked
child. This caused a new event gate to be created that failed to
communicate properly with the parent.
src/sources.cc
commit 8620027
Author: David Ranch <linpac@trinnet.net>
Date: 2018-01-01
Updated the first paragraph a bit and the copyright date.. HNY
README
commit 1d7a83e
Author: David Ranch <linpac@trinnet.net>
Date: 2017-12-30
new startup failure if the axport isn't up before starting
linpac-todo.txt
commit 8f97f0b
Author: David Ranch <linpac@trinnet.net>
Date: 2017-12-13
new issues in make with spaces in the path
linpac-todo.txt
commit 81453ef
Author: David Ranch <linpac@trinnet.net>
Date: 2017-12-11
Added P2 issue of Mail app has a lot of duplicate linpac code
linpac-todo.txt
commit 02e0887
Author: David Ranch <linpac@trinnet.net>
Date: 2017-12-11
Added installer directory bug
linpac-todo.txt
commit 720d65e
Author: David Ranch <linpac@trinnet.net>
Date: 2017-12-10
Updated the Changelog to start 0.26
ChangeLog
commit 1c898b2
Author: David Ranch <linpac@trinnet.net>
Date: 2017-12-10
Updated to 0.26 version for next release
README
configure.ac
contrib/packaging/rpm/linpac.spec
linpac.lsm
commit da13303
Author: David Ranch <linpac@trinnet.net>
Date: 2017-12-10
Updated the Changelog based upon recent Git commit comments
ChangeLog
commit e55cf6f
Merge: de8d158 33a4c0c
Author: David Ranch <linpac@trinnet.net>
Date: 2017-12-10
Merge branch 'develop'
Conflicts:
ChangeLog
commit 33a4c0c
Author: David Ranch <linpac@trinnet.net>
Date: 2017-12-10
Added KD6YAM
AUTHORS
commit 8c1676b
Author: David Ranch <linpac@trinnet.net>
Date: 2017-12-10
major clean-up, moved items around, added new items
linpac-todo.txt
commit 039ab39
Author: David Ranch <linpac@trinnet.net>
Date: 2017-12-10
align both versions
macro/en/help.mac
commit ae6d8a6
Author: David Ranch <linpac@trinnet.net>
Date: 2017-12-10
Added Martin Cooper (KD6YAM) for his helpful contributions
README
commit dd27b77
Author: David Ranch <linpac@trinnet.net>
Date: 2017-12-10
new development version
configure.ac
commit 6a52f1d
Merge: f117b59 78daf75
Author: Martin Cooper <mfncooper@users.sourceforge.net>
Date: 2017-12-09
Merge branch 'cleanup' into develop
Cleanup of compiler warnings and bug fixes.
commit f117b59
Author: David Ranch <linpac@trinnet.net>
Date: 2017-12-08
updated develop version
configure.ac
commit d438590
Merge: 20d3042 0b52ba9
Author: David Ranch <linpac@trinnet.net>
Date: 2017-12-08
Merge branch 'loadreduce-try2' into develop
commit 20d3042
Author: David Ranch <linpac@trinnet.net>
Date: 2017-12-08
date fix
doc/applguide.html
commit 78daf75
Author: Martin Cooper <mfncooper@users.sourceforge.net>
Date: 2017-12-08
Fix a bug in file name input handling.
The UI would hang after the user entered a file name in order to insert,
export, or attach a file. This was caused by fall-through from the case
that had finished handling of file name input.
src/applications/mailer/mail_edit.cc
commit bba9d99
Author: Martin Cooper <mfncooper@users.sourceforge.net>
Date: 2017-12-07
Fix bugs related to mail header field lengths.
Header length checking and formatting was using multiple inconsistent
lengths for the same field, as well as checking the length for one field
against the state of another. Added new constants and macros, factored
out formatting, and corrected all length checks to address this.
src/applications/mailer/mail_edit.cc
commit 118a2d5
Author: Martin Cooper <mfncooper@users.sourceforge.net>
Date: 2017-12-07
Fix warning about ignoring system() result.
src/applications/save7pl.cc
commit fd481b1
Author: Martin Cooper <mfncooper@users.sourceforge.net>
Date: 2017-12-07
Fix warnings about ambiguous 'else'; add braces.
src/applications/autobin.cc
src/applications/mailer/mail_filt.cc
src/editor.cc
src/sources.cc
src/windows.cc
commit be7b814
Author: Martin Cooper <mfncooper@users.sourceforge.net>
Date: 2017-12-07
Fix warning about tmpnam; use mkstemp instead.
src/applications/logbook.cc
commit 3f67908
Author: Martin Cooper <mfncooper@users.sourceforge.net>
Date: 2017-12-07
Fix warnings about signed array subscripts.
src/applications/mailer/mail_edit.cc
src/applications/mailer/mail_list.cc
src/editor.cc
src/windows.cc
commit fe5f35c
Author: Martin Cooper <mfncooper@users.sourceforge.net>
Date: 2017-12-07
Fix warnings about unused variables and results.
src/applications/bell.cc
src/applications/getmsg.cc
src/applications/join.c
src/applications/save7pl.cc
src/applications/yapp.cc
src/data.cc
commit 0b52ba9
Author: Martin Cooper <mfncooper@users.sourceforge.net>
Date: 2017-12-02
Correct loop control variable type.
src/applications/mailer/mail_edit.cc
src/applications/mailer/mail_input.cc
src/editor.cc
commit f483086
Author: Martin Cooper <mfncooper@users.sourceforge.net>
Date: 2017-11-22
Add support for new EV_KEY_PRESS_MULTI event.
This event is supported wherever the user might think to paste into the mail
application. For example, when composing a new message, the To and Subject
lines and the message body might be pasted into; when creating a new filter,
the name might be pasted into.
src/applications/mailer/mail.cc
src/applications/mailer/mail_edit.cc
src/applications/mailer/mail_filt.cc
src/applications/mailer/mail_input.cc
src/applications/mailer/mail_input.h
src/applications/mailer/tevent.h
commit d94cb01
Author: Martin Cooper <mfncooper@users.sourceforge.net>
Date: 2017-11-22
Document the new EV_KEY_PRESS_MULTI event.
doc/events.txt
doc/objects.txt
commit dc95b8f
Author: Martin Cooper <mfncooper@users.sourceforge.net>
Date: 2017-11-22
Add support for new EV_KEY_PRESS_MULTI event.
Accumulate immediately-available key presses and generate a single event,
instead of an individual event for each key press. Previously, each key
press required a full cycle around the application's idle loop.
Only printable characters are accumulated, so that this does not interfere
with immediate actions, or changes of state, triggered by control characters.
src/editor.cc
src/keyboard.cc
src/tevent.h
commit f161491
Author: Martin Cooper <mfncooper@users.sourceforge.net>
Date: 2017-11-22
Fix a typo that appears in the mail UI.
src/applications/mailer/mail_list.cc
commit ba0c81e
Author: Martin Cooper <mfncooper@users.sourceforge.net>
Date: 2017-11-22
Use the correct type (WINDOW) for ncurses windows.
Incorrect include ordering had caused a problem with using the WINDOW type
in some type definitions. Correcting the order of includes resolves the
the problem, allowing the correct type to be used, and allowing the removal
of numerous reinterpret_cast invocations, and temporary variables, that
were previously required.
src/applications/mailer/mail.cc
src/applications/mailer/mail_comp.cc
src/applications/mailer/mail_comp.h
src/applications/mailer/mail_edit.cc
src/applications/mailer/mail_filt.cc
src/applications/mailer/mail_filt.h
src/applications/mailer/mail_help.cc
src/applications/mailer/mail_help.h
src/applications/mailer/mail_input.cc
src/applications/mailer/mail_input.h
src/applications/mailer/mail_list.cc
src/applications/mailer/mail_list.h
src/applications/mailer/mail_screen.cc
src/applications/mailer/mail_screen.h
commit edcdecf
Author: Martin Cooper <mfncooper@users.sourceforge.net>
Date: 2017-11-19
Fix inconsistent args in wgetch() calls.
If the first call returns an Alt, a second call is made to determine the key
to be modified. The code was erroneously using a different WINDOW arg for
the second call.
src/keyboard.cc
commit 6b40825
Author: Martin Cooper <mfncooper@users.sourceforge.net>
Date: 2017-11-19
Use the correct type (WINDOW) for the key window.
Incorrect include ordering had caused a problem with using the WINDOW type
in the Keyscan type definition. Correcting the order of includes resolves
the problem, allowing the correct type to be used, and allowing the removal
of numerous reinterpret_cast invocations that were previously required.
src/keyboard.cc
src/keyboard.h
commit 708601b
Author: David Ranch <linpac@trinnet.net>
Date: 2017-11-12
update dev version
configure.ac
commit f94537a
Author: David Ranch <linpac@trinnet.net>
Date: 2017-11-12
KD6YAM: load reduction patches with mail app fixes
src/applications/liblinpac/lpapp.c
src/linpac.cc
commit 068fece
Author: David Ranch <linpac@trinnet.net>
Date: 2017-11-06
noted message issue when no destination callsign is given
linpac-todo.txt
commit d2b4aaa
Author: David Ranch <linpac@trinnet.net>
Date: 2017-11-05
Added that the doc/manual.txt file isn't getting updated from the html doc
linpac-todo.txt
commit b9618ba
Author: David Ranch <linpac@trinnet.net>
Date: 2017-11-05
Added mention of known issue with long predictable network interface names
README
doc/manual.html
commit c37eca1
Author: David Ranch <linpac@trinnet.net>
Date: 2017-11-04
new development version
configure.ac
commit 44ece4f
Author: David Ranch <linpac@trinnet.net>
Date: 2017-11-04
KD6YAM: Fix incorrect condition leading to EPIPE / broken pipe errors
src/sources.cc
commit f5dd868
Author: David Ranch <linpac@trinnet.net>
Date: 2017-11-01
new development version
configure.ac
commit 1ccfb93
Author: David Ranch <linpac@trinnet.net>
Date: 2017-11-01
added omitted comp, SP, and SB commands
macro/init.mac
commit 7436dff
Author: David Ranch <linpac@trinnet.net>
Date: 2017-11-01
added omitted send message commands in help
macro/help.mac
commit 7baf8c3
Author: David Ranch <linpac@trinnet.net>
Date: 2017-11-01
added omitted send message commands
macro/commands
commit 46641a2
Author: David Ranch <linpac@trinnet.net>
Date: 2017-10-21
Updated the copyright date
README
commit a6cd4e1
Author: David Ranch <linpac@trinnet.net>
Date: 2017-10-21
Updated the alternative AX.25 stack URL from the old Google one to the VE7FET repo
README
commit 8c748d6
Author: David Ranch <linpac@trinnet.net>
Date: 2017-10-21
Updated development snapshot date
configure.ac
commit 5639ab2
Author: David Ranch <linpac@trinnet.net>
Date: 2017-10-21
segfault fixes exposed in newer GCCs. Thanks to Martin Cooper KD6YAM
src/data.cc
src/windows.cc
commit bce365b
Author: David Ranch <linpac@trinnet.net>
Date: 2017-10-02
Added new segmentation fault issue for Alt-X with incorrect OSX Alt keymapping
linpac-todo.txt
commit 9ada5f6
Author: David Ranch <linpac@trinnet.net>
Date: 2017-09-30
Added new segmentation fault issue on misconfigured ax25 stacks
linpac-todo.txt
commit b9b35c7
Author: David Ranch <linpac@trinnet.net>
Date: 2017-09-02
Added a check for stale lock files and some comments
contrib/start-linpac.sh
commit 757d3c4
Author: David Ranch <linpac@trinnet.net>
Date: 2017-03-16
Added autoreconf help in certain errors
README
commit 9cf2377
Merge: 017e50a e9ebaae
Author: David Ranch <linpac@trinnet.net>
Date: 2016-09-10
Merge commit 'e9ebaae017cfb02f96c56c8f2609e391fd277031' into develop
commit 017e50a
Author: David Ranch <linpac@trinnet.net>
Date: 2016-09-09
improve version display output
src/commands.cc
commit cb5c5d2
Author: David Ranch <linpac@trinnet.net>
Date: 2016-09-09
new development version
configure.ac
commit 0a2e66b
Author: David Ranch <linpac@trinnet.net>
Date: 2016-09-02
Updating displayed callsign and comments from OK2JBG to KI6ZHD
src/applications/join.c
src/applications/mailer/mail_screen.cc
src/applications/testapp.c
src/linpac.cc
commit e89af88
Author: Steven R. Loomis <k6spi@fahmu.net>
Date: 2016-02-04
Show Connected/Disconnected properly.
fix connected/disconnected text.
https://sourceforge.net/p/linpac/bugs/21/
src/windows.cc
commit e9ebaae
Author: Steven R. Loomis <k6spi@fahmu.net>
Date: 2016-02-04
Fix error message on console.
Fixes: https://sourceforge.net/p/linpac/bugs/23/
Change 1 -> 0 so "permission denied" error doesn't show up randomly on screen!
In console: "Alt-X to exit. : Operation not permitted"
(actually was in Spanish on my system)
Signed-off-by: Steven R. Loomis <k6spi@fahmu.net>
src/linpac.cc
commit 091e821
Author: David Ranch <linpac@trinnet.net>
Date: 2016-01-30
Add specific tinfo checks for distros that are missing pkgconfig files for Ncurses - PClinux (mandriva)
configure.ac
commit 5ab8a10
Author: David Ranch <linpac@trinnet.net>
Date: 2016-01-29
Updated the author, version, and added an example of the startup prompting
doc/manual.html
commit 80a39f5
Author: David Ranch <linpac@trinnet.net>
Date: 2015-11-29
start linpac detached and then attach if possible
contrib/start-linpac.sh
commit 178ede8
Author: David Ranch <linpac@trinnet.net>
Date: 2015-11-29
better grepping, disabled logging for Ncurses UI
contrib/start-linpac.sh
commit 17c5f04
Author: David Ranch <linpac@trinnet.net>
Date: 2015-11-19
Updated the Changelog to start 0.25
ChangeLog
commit 1c67d7c
Author: David Ranch <linpac@trinnet.net>
Date: 2015-11-19
Updated to 0.25 version for next release
README
configure.ac
contrib/packaging/rpm/linpac.spec
linpac.lsm
commit de8d158
Author: David Ranch <linpac@trinnet.net>
Date: 2015-11-19
Updated the Changelog based upon recent Git commit comments
ChangeLog
commit afb13a7
Merge: df15d7a 3a1c4af
Author: David Ranch <linpac@trinnet.net>
Date: 2015-11-19
Merge branch 'develop'
commit 3a1c4af
Author: David Ranch <linpac@trinnet.net>
Date: 2015-11-14
moved libraries into /usr/include/linpac by default
src/applications/libaxmail/Makefile.am
src/applications/liblinpac/Makefile.am
commit e384d6e
Author: David Ranch <linpac@trinnet.net>
Date: 2015-09-21
Add missing packaging and contrib scripts to published tarball
Makefile.am
configure.ac
contrib/Makefile.am
commit 0d8b4a2
Author: David Ranch <linpac@trinnet.net>
Date: 2015-09-20
Added the unport command and description
doc/manual.html
doc/manual.txt
commit e4d820d
Author: David Ranch <linpac@trinnet.net>
Date: 2015-09-20
Added undest unproto port example
macro/init.mac
commit 308726b
Author: David Ranch <linpac@trinnet.net>
Date: 2015-09-18
Updated the Changelog based upon recent Git commit comments
ChangeLog
commit 6b674ca
Author: David Ranch <linpac@trinnet.net>
Date: 2015-09-18
Updated version for next release
README
configure.ac
contrib/packaging/rpm/linpac.spec
linpac.lsm
commit df15d7a
Merge: 1cc0e7b 2cde3cb
Author: David Ranch <linpac@trinnet.net>
Date: 2015-09-18
Merge branch 'develop'
commit 2cde3cb
Author: David Ranch <linpac@trinnet.net>
Date: 2015-09-18
made to be a script placeholder
plugins/pkgs
commit 6c4038c
Author: David Ranch <linpac@trinnet.net>
Date: 2015-09-18
removed an unwanted space on first line
plugins/update-0.16
commit 1c6ca7b
Author: David Ranch <linpac@trinnet.net>
Date: 2015-09-18
removed an unwanted space on first line
plugins/update-0.14
commit f40378b
Author: David Ranch <linpac@trinnet.net>
Date: 2015-09-18
missed adding the exclaimation mark
src/applications/shell
commit 022c2af
Author: David Ranch <linpac@trinnet.net>
Date: 2015-09-17
prefixed with bash startup line
src/applications/mheard
src/applications/shell
commit 6a7321e
Author: David Ranch <linpac@trinnet.net>
Date: 2015-09-17
added an ANSI character issue when running the disabled SHell command
linpac-todo.txt
commit d8970f9
Author: David Ranch <linpac@trinnet.net>
Date: 2015-09-16
added mheard listing bug, fixed ax25tool .spec dependency
linpac-todo.txt
commit a90c1d2
Author: David Ranch <linpac@trinnet.net>
Date: 2015-09-16
ax25tools is required for mheard support
contrib/packaging/rpm/linpac.spec
commit cadf84b
Author: David Ranch <linpac@trinnet.net>
Date: 2015-09-16
made files non-executable
plugins/pkgs
plugins/update-0.14
plugins/update-0.16
commit 46929c2
Author: David Ranch <linpac@trinnet.net>
Date: 2015-09-16
fixed minor spelling error
src/applications/forward.cc
commit ac6eb0a
Author: David Ranch <linpac@trinnet.net>
Date: 2015-08-20
updated script for improved paths and debugging
contrib/linpac-check-msgs.sh
commit 622f3e1
Author: David Ranch <linpac@trinnet.net>
Date: 2015-08-19
Updated version for next release
README
configure.ac
contrib/packaging/rpm/linpac.spec
linpac.lsm
commit 1cc0e7b
Merge: 7ce475f 2df221e
Author: David Ranch <linpac@trinnet.net>
Date: 2015-08-19
Merge branch 'develop'
commit 2df221e
Author: David Ranch <linpac@trinnet.net>
Date: 2015-08-19
Updated changelog
ChangeLog
commit bf273ff
Author: David Ranch <linpac@trinnet.net>
Date: 2015-08-19
Disabled the overwrite check for now
generate-ChangeLog.sh
commit 903ce17
Author: David Ranch <linpac@trinnet.net>
Date: 2015-08-19
Added some debugging
generate-ChangeLog.sh
commit 663f62f
Author: David Ranch <linpac@trinnet.net>
Date: 2015-08-19
changed permissions
generate-ChangeLog.sh
commit aafffdf
Author: David Ranch <linpac@trinnet.net>
Date: 2015-07-28
fixed spelling issues
doc/manual.html
doc/manual.txt
commit 6ebb907
Author: David Ranch <linpac@trinnet.net>
Date: 2015-07-19
added bad message example
linpac-todo.txt
commit 2f20464
Author: David Ranch <linpac@trinnet.net>
Date: 2015-07-11
removed ax25mail-utils as it's not really a requirement
contrib/packaging/rpm/linpac.spec
commit e73c300
Author: David Ranch <linpac@trinnet.net>
Date: 2015-07-11
updated the version
linpac.lsm
commit 527b067
Author: David Ranch <linpac@trinnet.net>
Date: 2015-07-11
additional updates
NEWS
commit 3192065
Author: David Ranch <linpac@trinnet.net>
Date: 2015-06-20
making ax25mail-utils required
contrib/packaging/rpm/linpac.spec
commit 352e04a
Author: David Ranch <linpac@trinnet.net>
Date: 2015-06-20
minor cleanups
README
commit a2ace48
Author: David Ranch <linpac@trinnet.net>
Date: 2015-06-19
added ldconfig after install
README
commit ca1b6ea
Author: David Ranch <linpac@trinnet.net>
Date: 2015-06-19
added error message about missing ax25mail-utils package
linpac-todo.txt
commit df9ba3b
Author: David Ranch <linpac@trinnet.net>
Date: 2015-06-15
cleaned up the installation section a bit to include tools needed to run autoreconf; added the mention of building with rpmbuild, and other minor cleanups
README
commit c347717
Author: David Ranch <linpac@trinnet.net>
Date: 2015-06-13
made running autoreconf more obvious
README
commit 39c7fbf
Author: David Ranch <linpac@trinnet.net>
Date: 2015-05-30
Added a messaging bug report where the same ID gets written twice
linpac-todo.txt
commit d583951
Author: David Ranch <linpac@trinnet.net>
Date: 2015-05-25
Updated the version here that talks about the changed paths
inst/linpac.in
commit 7ce475f
Author: David Ranch <linpac@trinnet.net>
Date: 2015-05-24
fixed the version
README
commit 6a4bc97
Author: David Ranch <linpac@trinnet.net>
Date: 2015-05-24
Updated the README
README
commit b9f1379
Author: David Ranch <linpac@trinnet.net>
Date: 2015-05-24
Updated RPM spec file for new version
configure.ac
commit 9639ae3
Author: David Ranch <linpac@trinnet.net>
Date: 2015-05-24
Updated the README
README
commit f29c021
Author: David Ranch <linpac@trinnet.net>
Date: 2015-05-24
Deleted files manually
configure.ac
contrib/packaging/rpm/linpac-0.20.spec
generate-ChangeLog.sh
commit abd7e1c
Author: David Ranch <linpac@trinnet.net>
Date: 2015-05-24
Updated RPM spec file for new version
contrib/packaging/rpm/linpac.spec
commit 4e1d8d9
Author: David Ranch <linpac@trinnet.net>
Date: 2015-05-24
Updated the blank Changelog based upon Git commit comments
ChangeLog
commit 91b1537
Author: Steven R. Loomis <k6spi@fahmu.net>
Date: 2015-04-30
don't allocate unless we really need to
src/data.cc
commit 3766f13
Author: Steven R. Loomis <k6spi@fahmu.net>
Date: 2015-04-30
Update to .gitignore
.gitignore
commit 57b7f7c
Author: David Ranch <linpac@trinnet.net>
Date: 2015-04-20
Added autoreconf for git repo builds
contrib/packaging/rpm/linpac.spec
commit 79502d9
Author: David Ranch <linpac@trinnet.net>
Date: 2015-04-20
Fixed Debian based ncurses package dependency
README
commit 28764ae
Author: David Ranch <linpac@trinnet.net>
Date: 2015-04-19
Added learning sources for how to configure AX.25
README
commit eca783f
Author: David Ranch <linpac@trinnet.net>
Date: 2015-04-19
Added K6SPI, Updated build dependencies, recommend to use VE7FET's ax.25 stack
README
commit 6b34d31
Author: David Ranch <linpac@trinnet.net>
Date: 2015-03-15
Renamed and updated the linpac spec file
contrib/packaging/rpm/linpac.spec
commit 24fd9bf
Author: David Ranch <linpac@trinnet.net>
Date: 2015-03-15
Added Steven Loomis
AUTHORS
commit a432d23
Author: David Ranch <linpac@trinnet.net>
Date: 2015-03-15
Send email and SMS notifications when you get a new Linpac message
contrib/linpac-check-msgs.sh
commit d435b02
Author: David Ranch <linpac@trinnet.net>
Date: 2015-03-15
Start linpac via screen for being able to detact
contrib/start-linpac.sh
commit 6f40804
Author: David Ranch <linpac@trinnet.net>
Date: 2015-03-15
move the file to the existing contrib directory (lower case)
Contrib/start-linpac.sh
commit 6c80b19
Author: David Ranch <linpac@trinnet.net>
Date: 2015-03-15
script to start Linpac with screen
Contrib/start-linpac.sh
commit e2ab386
Merge: 8aa51cc 7854e99
Author: David Ranch <linpac@trinnet.net>
Date: 2015-03-15
Merge commit '7854e99288af8711105acd0ce3f6506ac4200cbe' into develop
commit 8aa51cc
Author: David Ranch <linpac@trinnet.net>
Date: 2015-03-15
Updated some specific items
linpac-todo.txt
commit 7854e99
Author: Steven R. Loomis <k6spi@fahmu.net>
Date: 2015-03-06
Several changes to the .20 history:
* fix state_str to be a const string.
* fix a problem where spurious "x"'s showed up instead of vertical lines
* ignore .libs
.gitignore
src/applications/mailer/mail_list.cc
src/applications/mailer/mail_screen.h
src/data.cc
src/event.h
src/tools.cc
src/tools.h
src/windows.cc
commit 3d4edbb
Author: David Ranch <linpac@trinnet.net>
Date: 2014-09-07
Added some timestamping issues to the todo file
linpac-todo.txt
commit 9023120
Author: David Ranch <linpac@trinnet.net>
Date: 2014-08-08
updated the version to 0.21 and a new dev snapshot date
configure.ac
commit c27e071
Author: David Ranch <linpac@trinnet.net>
Date: 2014-08-06
Updated autoconf to support Ubuntu 14.04 and Centos 6.5
configure.ac
commit ca99a1d
Author: David Ranch <linpac@trinnet.net>
Date: 2014-08-03
Adding packaging files for those who use them
contrib/packaging/rpm/linpac-0.20.spec
commit 4525b0a
Author: David Ranch <linpac@trinnet.net>
Date: 2014-08-03
Alt-X doesnt exit like the docs says it should
linpac-todo.txt
commit 48e786b
Author: David Ranch <linpac@trinnet.net>
Date: 2014-08-03
added that make install still is missing steps that are covered in KI6ZHD's Hampacket doc
linpac-todo.txt
commit 62a26bb
Author: David Ranch <linpac@trinnet.net>
Date: 2014-08-03
Remove old debugging comment for long digi paths
src/commands.cc
commit 0856ad5
Author: David Ranch <linpac@trinnet.net>
Date: 2014-08-03
New file tracking all bugs, feature requests, etc. until they are integrated into SF.net's UI
linpac-todo.txt
commit 1fcebaf
Author: David Ranch <linpac@trinnet.net>
Date: 2014-08-03
Moved order of authors to show new primary authors
AUTHORS
commit c634996
Author: David Ranch <linpac@trinnet.net>
Date: 2014-08-03
Added reference to linpac-todo.txt
NEWS
commit bd09aef
Author: David Ranch <linpac@trinnet.net>
Date: 2014-08-03
Cleanup and proper credits for posting new version to sf
README
commit 0421ac8
Author: Jerry Dunmire <jerry@local.dunmire.org>
Date: 2014-07-16
Add AM_PROG_AR macro
Required by new version of automake when '-Werror' is used.
modified: configure.ac
configure.ac
commit 0841f21
Author: David Ranch <dranch@trinnet.net>
Date: 2014-07-11
updated version and data in the LSM file
linpac.lsm
commit f94cd78
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-04-08
Lowercase package name rather than camel-case
Using LinPac for the tarball name caused the package name, and
therefore installation paths, to also user LinPac. That causes a lot of
location changes (from a user's viewpoint) because in previous versions
the paths were all lower case.
The tarball, package name (as a variable), and paths now user lowercase
'linpac'.
configure.ac was modified.
configure.ac
commit 8853994
Author: David Ranch <dranch@trinnet.net>
Date: 2014-04-04
Updated to build on Centos6
configure.ac
commit 48032de
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-23
Updated AUTHORS and README
Added instructions on building from a clean checkout.
AUTHORS
README
commit 14538e5
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-20
Eliminated warning messages
Now compiles without warning messages, but code review is needed.
Most fixes were to test return values or change from
'char *' to 'char const *'
src/applications/autobin.cc
src/applications/compose.cc
src/applications/forward.cc
src/applications/libaxmail/axmail.cc
src/applications/liblinpac/lpapp.c
src/applications/logbook.cc
src/applications/lpbck.cc
src/applications/mailer/mail_edit.cc
src/applications/mailer/mail_edit.h
src/applications/mailer/mail_filt.cc
src/applications/mailer/mail_input.cc
src/applications/mailer/mail_input.h
src/applications/mailer/mail_route.cc
src/applications/mailer/mail_screen.cc
src/applications/mailer/mail_screen.h
src/applications/name.cc
src/applications/save7pl.cc
src/applications/yapp.cc
src/commands.cc
src/commands.h
src/data.cc
src/linpac.cc
src/names.cc
src/names.h
src/sources.cc
src/sources.h
src/status.cc
src/tools.cc
src/tools.h
src/watch.cc
src/watch.h
src/windows.cc
src/windows.h
commit 226c0b6
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-18
Added email addr for bugs, fixed charset
configure.ac
doc/charsets/Makefile.am
commit c39cd6c
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-18
Fix tarball name
Add tarball name, URL, and dummy bug-email address to AC_INT() macro
in the configure.ac file.
configure.ac
commit a4b13fc
Merge: 44c5498 469646b
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-11
Merge branch 'feature/axlisten' into develop
commit 469646b
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-11
Add startup message on how to exit
src/linpac.cc
commit 2a9bd98
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-11
Determine AX.25 listen program name
- listen/axlisten detected by configure
- LISTEN macro set in config.h and included by src/version.h
- removed definitionn from src/constants.h which includes src/version.h
configure.ac
src/constants.h
commit f7a8b5d
Author: Jerry Dunmire <jdunmire@pioneer-pad.com>
Date: 2014-03-11
Work-in-progress to detect axlisten
configure.ac
src/constants.h
commit 44c5498
Author: Jerry Dunmire <jdunmire@pioneer-pad.com>
Date: 2014-03-11
Fix for Unknown translation table
The encodings file was not copied from $(pkgdatadir) to $HOMEDIR by the
startup script, linpac.in
inst/linpac.in
commit c1223b1
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-10
More path fixes
- Scripts in src/applications are now installed in $(pkglibexecdir) with
applications from the same directory.
- Fixed startup script to copy the file 'commands' from $(pkgdatadir) to
the ~/LinPac/bin/ directory when the applications are symlinked
- lpapi is now in the $(pkgdatadir) with the other programs, it was
located in a 'tools' directory by itself int the 17pre3 and earlier
revisions.
inst/linpac.in
src/applications/Makefile.am
commit 497ed29
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-10
Fixes to the startup script
Except for the symlink issue, these problems are all side effects of
changing the locations and the use of new shell variables in the script:
- Fixed paths when linking executables in to local directory
- @VERSION@ was not expanded
- symlink check failed to created new valid links when the old ones were
bad.
inst/Makefile.am
inst/linpac.in
commit 625b3b8
Merge: f7d80ad 317eea2
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-09
Merge branch 'feature/fix-build' into develop
commit 317eea2
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-09
Summarize changes on the feature/fix-build branch
NEWS
commit 775ebb5
Merge: 98ec40e f7d80ad
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-09
Merge branch 'develop' into feature/fix-build
commit 98ec40e
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-09
Generate ChangeLog from git log
ChangeLog
Makefile.am
generate-ChangeLog.sh
inst/Makefile.am
commit 00036d6
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-09
Create linpac script at build time
Filter inst/linpac.in as a build target in the Makefile rather than
processing with autoconf. This assures that installation paths are fully
resolved.
configure.ac
inst/Makefile.am
inst/linpac.in
commit a16b5a6
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-09
AUTOMAKE_OPTIONS to match configure.ac setting
Makefile.am
commit 57ce724
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-09
Fix symlinking for applications
- Moved from Makefile.am to src/applications/Makefile.am
- Use appropriate variables so that the apps and symlinks are in the
same directory
Makefile.am
src/applications/Makefile.am
commit 9781994
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-08
Fix install locations
- eliminated a lot of custom destination directory definitions
- where possible used matching standard directories
- relocated a few items to better comply with GNU Standards
- only Makefile.am files modified, no source code changes.
Executable and scripts may still need to be adjusted.
doc/Makefile.am
doc/charsets/Makefile.am
doc/czech/Makefile.am
mail/Makefile.am
src/Makefile.am
src/applications/Makefile.am
src/applications/libaxmail/Makefile.am
src/applications/liblinpac/Makefile.am
src/applications/lpapi/Makefile.am
src/applications/mailer/Makefile.am
commit e710fee
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-07
Clean up dist
- Removed EXTRA_DIST where possible, often replaced with dist_
- Dropped -Wportablity option for automake because it is redundant to
-Wall (in configure.am)
- make dist, and make distcheck now function. Project can be
configured and built from a distribution tarball
- installation locations are still not optimal
Makefile.am
configure.ac
ctt/Makefile.am
data/Makefile.am
doc/Makefile.am
doc/charsets/Makefile.am
doc/czech/Makefile.am
inst/Makefile.am
macro/Makefile.am
macro/cz/Makefile.am
macro/de/Makefile.am
macro/en/Makefile.am
macro/fr/Makefile.am
macro/pl/Makefile.am
macro/sk/Makefile.am
mail/Makefile.am
plugins/Makefile.am
src/applications/Makefile.am
src/applications/lpapi/Makefile.am
commit 2cbfe94
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-06
Work-in-progress: dist and install targets
- targets work, but:
- docs are presently installed in the wrong place (/usr/docs)
- EXTRA_DIST is used extensively, but I think it can be removed
Makefile.am
ctt/Makefile.am
data/Makefile.am
inst/Makefile.am
macro/Makefile.am
macro/cz/Makefile.am
macro/de/Makefile.am
macro/en/Makefile.am
macro/fr/Makefile.am
macro/pl/Makefile.am
macro/sk/Makefile.am
plugins/Makefile.am
src/applications/lpapi/Makefile.am
src/applications/mailer/Makefile.am
commit 9b5b1e2
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-06
Expanded *.h wildcards
This makes it so that make dist will work.
Note that for the most part these headers should not be installed, so
another pass is needed to move them from _DATA variables to the
noinst_HEADER variable.
src/Makefile.am
src/applications/Makefile.am
src/applications/lpapi/Makefile.am
src/applications/mailer/Makefile.am
commit f7d80ad
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-06
Fixed date
NEWS
commit 95c29de
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-06
Expand wildcards and list files explicitly
ctt/Makefile.am
doc/czech/Makefile.am
macro/Makefile.am
macro/cz/Makefile.am
macro/de/Makefile.am
macro/en/Makefile.am
macro/fr/Makefile.am
macro/pl/Makefile.am
macro/sk/Makefile.am
commit 2f7faa6
Merge: c0c275a d7fa127
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-06
Merge branch 'feature/fix-configure' into develop
commit d7fa127
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-06
Updating NEWS prior to merging this branch
NEWS
commit 9278e66
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-06
Re-enabled LINKSTATIC configure option
modified: configure.ac
modified: src/applications/Makefile.am
modified: src/applications/lpapi/Makefile.am
modified: src/applications/mailer/Makefile.am
Using -all-static argument to libtools. Specified by setting
AM_LDFLAGS.
However, static link fails.
configure.ac
src/applications/Makefile.am
src/applications/lpapi/Makefile.am
src/applications/mailer/Makefile.am
commit 30e5572
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-06
Added version and portablity check for automake
Makefile.am
configure.ac
commit 5927916
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-05
configure.ac cleanup - first pass
- Updated macros
- Reorganized layout to be similar to the example this tutorial:
https://www.lrde.epita.fr/~adl/autotools.html
- Eliminated a warning from autoreconf with respect to the m4/
directory. This triggered a 'bug' (see
https://bugzilla.redhat.com/show_bug.cgi?id=901333) which has been
worked-around in a prior commit.
Makefile.am
cleanall.sh
configure.ac
commit ffa5c54
Merge: e5e0a31 c0c275a
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-05
Merge branch 'develop' into feature/fix-configure
Conflicts:
configure.ac
commit c0c275a
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-05
Adjust for removed acconfig.h
Added AH_TEMPLATE macros to configure.ac so that autoreconf will run now
that acconfig.h has been removed.
The acconfig.h is depricated and was removed in an earlier commit.
configure.ac
commit e5e0a31
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-05
Add m4/ directory
This is a workaround for a bug in the autotools.
See https://bugzilla.redhat.com/show_bug.cgi?id=901333
m4/.gitignore
commit 6ec24fd
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-05
Change project style foreign -> gnu
Additional documentation files are required.
The old make install target is not compatible with the new autotools GNU
standard. It has been commented out in Makefile.am. It needs to be
reworked anyway.
Makefile.am
configure.ac
commit c5da5a9
Merge: a506c1c 4cd07a3
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-05
Merge branch 'develop' into feature/fix-configure
commit 4cd07a3
Merge: 77c092b a12f6e4
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-05
Merge branch 'feature/remove-generated-files' into develop
commit a506c1c
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-05
Placeholder for files required by GNU standards
AUTHORS
ChangeLog
commit d465b3c
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-05
Boilerplate install
INSTALL
commit 8cb28dc
Merge: b7c1a8b a12f6e4
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-04
Merge branch 'feature/remove-generated-files' into feature/fix-configure
commit a12f6e4
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-04
Ignore generated files depcomp and missing
.gitignore
commit b7c1a8b
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-04
Minimal fix to make autoreconf work
The acconfig.h file has been replaced with AH_TEMPLATE() macros for the
newer versions of autotools.
configure.ac
commit c4fbb8a
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-04
Added more files that are generated by autotools
.gitignore
commit 5578843
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-04
Recover input files
These files are not autogenerated and were removed by accident.
inst/linpac.in
mail/delmsg.pl.in
mail/pack.pl.in
inst/linpac.in
mail/delmsg.pl.in
mail/pack.pl.in
commit 600cd13
Merge: 1bbd0fe 77c092b
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-04
Merge branch 'develop' into feature/remove-generated-files
commit 77c092b
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-04
Backed out patch linpac0-kpc3-msg.diff
src/applications/getmsg.cc
commit 1bbd0fe
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-04
Ignore autotools generated files and vim swp files
.gitignore
commit afc76f0
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-03
Removing more autoconf files
INSTALL
acconfig.h
aclocal.m4
config.guess
config.sub
configure
depcomp
install-sh
ltmain.sh
missing
mkinstalldirs
commit 6a3ccc7
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-03
Remove .in files
These are generated by autoconf/automake and so should not be committed.
Working towards the principal that only files that are to be editted
manually are committed.
Makefile.in
config.h.in
ctt/Makefile.in
data/Makefile.in
doc/Makefile.in
doc/charsets/Makefile.in
doc/czech/Makefile.in
inst/Makefile.in
inst/linpac.in
macro/Makefile.in
macro/cz/Makefile.in
macro/de/Makefile.in
macro/en/Makefile.in
macro/fr/Makefile.in
macro/pl/Makefile.in
macro/sk/Makefile.in
mail/Makefile.in
mail/delmsg.pl.in
mail/pack.pl.in
plugins/Makefile.in
src/Makefile.in
src/applications/Makefile.in
src/applications/libaxmail/Makefile.in
src/applications/liblinpac/Makefile.in
src/applications/lpapi/Makefile.in
src/applications/mailer/Makefile.in
stamp-h.in
commit e57cd8b
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-02
autoconfig changes
Ran aclocal, autoheader, autoconf, and automake --add-missing --copy
There were no changes until the automake command and then the
Makefile.in files were modified. The --foreign flag was changed to
--gnu, reversing the changes in the last commit. I haven't figured out
why the flag gets changed.
ctt/Makefile.in
data/Makefile.in
doc/Makefile.in
doc/charsets/Makefile.in
doc/czech/Makefile.in
inst/Makefile.in
macro/Makefile.in
macro/cz/Makefile.in
macro/de/Makefile.in
macro/en/Makefile.in
macro/fr/Makefile.in
macro/pl/Makefile.in
macro/sk/Makefile.in
mail/Makefile.in
plugins/Makefile.in
src/Makefile.in
src/applications/Makefile.in
src/applications/libaxmail/Makefile.in
src/applications/liblinpac/Makefile.in
src/applications/lpapi/Makefile.in
src/applications/mailer/Makefile.in
commit e020ef6
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-02
Changes resulting from autoconfig
Autoconfig was run because doc/Makefile.am was changed by one of the
patches.
ctt/Makefile.in
data/Makefile.in
doc/Makefile.in
doc/charsets/Makefile.in
doc/czech/Makefile.in
inst/Makefile.in
macro/Makefile.in
macro/cz/Makefile.in
macro/de/Makefile.in
macro/en/Makefile.in
macro/fr/Makefile.in
macro/pl/Makefile.in
macro/sk/Makefile.in
mail/Makefile.in
plugins/Makefile.in
src/Makefile.in
src/applications/Makefile.in
src/applications/libaxmail/Makefile.in
src/applications/liblinpac/Makefile.in
src/applications/lpapi/Makefile.in
src/applications/mailer/Makefile.in
commit a70a9d5
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-02
Functional patches from David
linpac0-digi-length.diff
linpac0-kpc3-msg.diff
linpac0-pcskprsnd.diff
linpac0-docfix.diff
doc/Makefile.am
src/applications/bell.cc
src/applications/getmsg.cc
src/commands.cc
commit b5b3868
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-02
Updated to LSM v4, changed maintainer and version
linpac.lsm
commit 3995916
Merge: a98371c 1ef66e3
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-01
Merge branch 'feature/autoconf-fixes' into develop
commit 1ef66e3
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-01
Added another autoconf product, depcomp
depcomp
commit 23f7d6c
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-01
inst/Makefile.in with revised linpac location
This is the result of running the autoconf commands.
inst/Makefile.in
commit da7809f
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-01
changes to linpac location
inst/Makefile.am
commit a416210
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-01
Replace configure.in with configure.ac
configure.ac is the preferred name, but otherwise they are used the
same.
configure.in
commit f0aec94
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-01
Changes resulting from autoconfig commands
Makefile.in
aclocal.m4
config.guess
config.h.in
config.sub
configure
ctt/Makefile.in
data/Makefile.in
doc/Makefile.in
doc/charsets/Makefile.in
doc/czech/Makefile.in
inst/Makefile.in
install-sh
ltmain.sh
macro/Makefile.in
macro/cz/Makefile.in
macro/de/Makefile.in
macro/en/Makefile.in
macro/fr/Makefile.in
macro/pl/Makefile.in
macro/sk/Makefile.in
mail/Makefile.in
plugins/Makefile.in
src/Makefile.in
src/applications/Makefile.in
src/applications/libaxmail/Makefile.in
src/applications/liblinpac/Makefile.in
src/applications/lpapi/Makefile.in
src/applications/mailer/Makefile.in
commit 9510326
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-01
Use bindir rather than datadir for SCRIPTS
bindir is set to the same value as datadir so that the files end up in
same location as they did with earlier versions.
mail/Makefile.am
plugins/Makefile.am
src/applications/Makefile.am
src/applications/mailer/Makefile.am
commit b3e3c36
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-01
autoconf changes from David
Extracted from linpac-release-effort-021614-1.tgz
configure.ac
inst/Makefile.am
src/Makefile.am
src/applications/Makefile.am
src/applications/lpapi/Makefile.am
src/applications/mailer/Makefile.am
commit a98371c
Merge: 327b122 a206c75
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-01
Merge branch 'feature/compile-fixes' into develop
commit a206c75
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-01
Removed build products
inst/linpac
mail/delmesg.pl
mail/pack.pl
All three are created by the then configure operation from .in files.
inst/linpac
mail/delmsg.pl
mail/pack.pl
commit df4c6a3
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-03-01
Applied build patches
Patch files:
linpac0-compile-files.diff
linpac0-compile-files2.diff
linpac0-compile-files3.diff
src/applications/forward.cc
src/applications/libaxmail/axmail.cc
src/applications/libaxmail/axmail.h
src/applications/mailer/axmail.h
src/applications/mailer/mail_call.cc
src/applications/mailer/mail_edit.cc
src/applications/mailer/mail_filt.cc
src/applications/mailer/mail_filt.h
src/applications/mailer/mail_list.cc
src/applications/mailer/mail_list.h
src/applications/mailer/mail_route.cc
src/commands.cc
src/commands.h
src/data.cc
src/data.h
src/editor.cc
src/event.cc
src/event.h
src/infoline.cc
src/infoline.h
src/keyboard.cc
src/screen.cc
src/screen.h
src/sources.cc
src/sources.h
src/watch.cc
src/watch.h
src/windows.cc
src/windows.h
commit 327b122
Author: Jerry Dunmire <jerry_dunmire@fake.fake>
Date: 2014-02-28
LinPac 0.17pre3
The
http://downloads.sourceforge.net/project/linpac/LinPac-unstable/0.17pre3/LinPac-0.17pre3.tar.gz
tarball has been unpacked as the starting point.
COPYING
INSTALL
Makefile.am
Makefile.in
NEWS
README
acconfig.h
aclocal.m4
config.guess
config.h.in
config.sub
configure
configure.in
ctt/Makefile.am
ctt/Makefile.in
ctt/cp1250.ctt
ctt/cp437.ctt
ctt/cp850.ctt
ctt/cp852.ctt
ctt/cp895.ctt
ctt/encodings
ctt/void.ctt
data/Makefile.am
data/Makefile.in
data/station.data
doc/Makefile.am
doc/Makefile.in
doc/applguide.html
doc/applguide.txt
doc/charsets/Makefile.am
doc/charsets/Makefile.in
doc/charsets/ctt_files.txt
doc/charsets/table.tab
doc/czech/Makefile.am
doc/czech/Makefile.in
doc/czech/cti.me
doc/czech/klavesnice.txt
doc/czech/makra.txt
doc/czech/prikazy.txt
doc/czech/stanice.txt
doc/events.txt
doc/ioctl.txt
doc/manual.html
doc/manual.txt
doc/objects.txt
inst/Makefile.am
inst/Makefile.in
inst/linpac
inst/linpac.in
install-sh
linpac.lsm
ltmain.sh
macro/Makefile.am
macro/Makefile.in
macro/activity.mac
macro/cexit.mac
macro/cinit.mac
macro/color_blue.mac
macro/color_default.mac
macro/color_tnt.mac
macro/commands
macro/comp.mac
macro/connect.mac
macro/conv.mac
macro/ctext.mac
macro/cz/Makefile.am
macro/cz/Makefile.in
macro/cz/activity.mac
macro/cz/commands
macro/cz/conv.mac
macro/cz/ctext.mac
macro/cz/help.mac
macro/cz/quit.mac
macro/cz/users.mac
macro/de/Makefile.am
macro/de/Makefile.in
macro/de/activity.mac
macro/de/commands
macro/de/conv.mac
macro/de/ctext.mac
macro/de/help.mac
macro/de/quit.mac
macro/de/users.mac
macro/en/Makefile.am
macro/en/Makefile.in
macro/en/activity.mac
macro/en/commands
macro/en/conv.mac
macro/en/ctext.mac
macro/en/help.mac
macro/en/quit.mac
macro/en/users.mac
macro/fr/Makefile.am
macro/fr/Makefile.in
macro/fr/activity.mac
macro/fr/commands
macro/fr/conv.mac
macro/fr/ctext.mac
macro/fr/help.mac
macro/fr/quit.mac
macro/fr/users.mac
macro/help.mac
macro/home.mac
macro/info.mac
macro/init.mac
macro/pas.mac
macro/pl/Makefile.am
macro/pl/Makefile.in
macro/pl/activity.mac
macro/pl/commands
macro/pl/conv.mac
macro/pl/ctext.mac
macro/pl/help.mac
macro/pl/quit.mac
macro/pl/users.mac
macro/pw.mac
macro/quit.mac
macro/sb.mac
macro/sk/Makefile.am
macro/sk/Makefile.in
macro/sk/activity.mac
macro/sk/commands
macro/sk/conv.mac
macro/sk/ctext.mac
macro/sk/help.mac
macro/sk/quit.mac
macro/sk/users.mac
macro/sp.mac
macro/users.mac
mail/Makefile.am
mail/Makefile.in
mail/archive_mail
mail/delmsg.pl
mail/delmsg.pl.in
mail/mail.head
mail/mail.tail
mail/messages.local
mail/pack.pl
mail/pack.pl.in
missing
mkinstalldirs
plugins/Makefile.am
plugins/Makefile.in
plugins/pkgs
plugins/update-0.14
plugins/update-0.16
src/Makefile.am
src/Makefile.in
src/applications/Makefile.am
src/applications/Makefile.in
src/applications/autobin.cc
src/applications/bell.cc
src/applications/catch.cc
src/applications/commands
src/applications/compose.cc
src/applications/crc.cc
src/applications/crc.h
src/applications/delmsg
src/applications/doorbl.h
src/applications/dostime.h
src/applications/flexpwd.cc
src/applications/forward.cc
src/applications/getmsg.cc
src/applications/hash.h
src/applications/join.c
src/applications/kill_chn
src/applications/libaxmail/Makefile.am
src/applications/libaxmail/Makefile.in
src/applications/libaxmail/axmail.cc
src/applications/libaxmail/axmail.h
src/applications/libaxmail/calls.cc
src/applications/libaxmail/calls.h
src/applications/libaxmail/parser.cc
src/applications/libaxmail/parser.h
src/applications/liblinpac/Makefile.am
src/applications/liblinpac/Makefile.in
src/applications/liblinpac/hash.c
src/applications/liblinpac/hash.h
src/applications/liblinpac/lpapp.c
src/applications/liblinpac/lpapp.h
src/applications/liblinpac/tevent.h
src/applications/logbook.cc
src/applications/lpapi/Makefile.am
src/applications/lpapi/Makefile.in
src/applications/lpapi/lpapi.cc
src/applications/lpapi/lpapp.h
src/applications/lpapi/tevent.h
src/applications/lpapp.h
src/applications/lpbck.cc
src/applications/lpcalls.h
src/applications/lpwin.h
src/applications/lzhuf.cc
src/applications/lzhuf.h
src/applications/mailer/Makefile.am
src/applications/mailer/Makefile.in
src/applications/mailer/axmail.h
src/applications/mailer/lpapp.h
src/applications/mailer/mail.cc
src/applications/mailer/mail_call.cc
src/applications/mailer/mail_call.h
src/applications/mailer/mail_comp.cc
src/applications/mailer/mail_comp.h
src/applications/mailer/mail_data.cc
src/applications/mailer/mail_data.h
src/applications/mailer/mail_edit.cc
src/applications/mailer/mail_edit.h
src/applications/mailer/mail_files.cc
src/applications/mailer/mail_files.h
src/applications/mailer/mail_filt.cc
src/applications/mailer/mail_filt.h
src/applications/mailer/mail_help.cc
src/applications/mailer/mail_help.h
src/applications/mailer/mail_input.cc
src/applications/mailer/mail_input.h
src/applications/mailer/mail_list.cc
src/applications/mailer/mail_list.h
src/applications/mailer/mail_route.cc
src/applications/mailer/mail_route.h
src/applications/mailer/mail_screen.cc
src/applications/mailer/mail_screen.h
src/applications/mailer/tevent.h
src/applications/mailer/version.h
src/applications/md2.cc
src/applications/md2.h
src/applications/md2pwd.cc
src/applications/md5.cc
src/applications/md5.h
src/applications/md5pwd.cc
src/applications/mheard
src/applications/name.cc
src/applications/pack
src/applications/rawio.cc
src/applications/rtt.cc
src/applications/save7pl.cc
src/applications/sendfile
src/applications/shell
src/applications/testapp.c
src/applications/tevent.h
src/applications/tnpwd.cc
src/applications/version.h
src/applications/w
src/applications/yapp.cc
src/calls.cc
src/calls.h
src/commands.cc
src/commands.h
src/comp.cc
src/comp.h
src/constants.h
src/data.cc
src/data.h
src/editor.cc
src/editor.h
src/evaluate.cc
src/evaluate.h
src/event.cc
src/event.h
src/evqueue.cc
src/evqueue.h
src/hash.c
src/hash.h
src/infoline.cc
src/infoline.h
src/keyboard.cc
src/keyboard.h
src/linpac.cc
src/names.cc
src/names.h
src/screen.cc
src/screen.h
src/sounds.cc
src/sounds.h
src/sources.cc
src/sources.h
src/status.cc
src/status.h
src/t_queue.h
src/t_stack.h
src/tevent.h
src/tools.cc
src/tools.h
src/version.h
src/watch.cc
src/watch.h
src/windows.cc
src/windows.h
stamp-h.in
|