1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784
|
#! /bin/sh
#
# If these # comments don't work, trim them. Don't worry about any other
# shell scripts, Configure will trim # comments from them for you.
#
# (If you are trying to port this package to a machine without sh, I would
# suggest you cut out the prototypical config.h from the end of Configure
# and edit it to reflect your system. Some packages may include samples
# of config.h for certain machines, so you might look for one of those.)
#
# $Header: Head.U,v 2.0 88/06/28 23:13:13 lwall Locked $
#
# Yes, you may rip this off to use in other distribution packages.
# (Note: this Configure script was generated automatically. Rather than
# working with this copy of Configure, you may wish to get metaconfig.)
# Except I dont have "metaconfig", so I'm tweaking all this by hand.
# Phil Brown, Jan 2000
# with thanks to Jim Brown (no relation :-)
: sanity checks
PATH=".:/bin:/usr/bin:/usr/local/bin:/usr/ucb:/usr/local:/usr/lbin:/etc:/usr/new:/usr/new/bin:/usr/nbin:$PATH"
export PATH || (echo "OOPS, this isn't sh. Desperation time. I will feed myself to sh."; sh $0; kill $$)
case "$1" in
-d) shift; fastread='yes';;
esac
if test -z "$fastread" ; then
if test ! -t 0; then
echo "Say 'sh Configure', not 'sh <Configure'"
exit 1
fi
fi
(alias) >/dev/null 2>&1 && \
echo "(I see you are using the Korn shell. Some ksh's blow up on Configure," && \
echo "especially on exotic machines. If yours does, try the Bourne shell instead.)"
if test ! -d ../UU; then
if test ! -d UU; then
mkdir UU
fi
cd UU
fi
bin=''
contains=''
cppstdin=''
cppminus=''
d_havetlib=''
termlib=''
d_memcpy=''
d_whoami=''
n=''
c=''
package=''
startsh=''
d_eunice=''
define=''
eunicefix=''
loclist=''
expr=''
sed=''
echo=''
cat=''
rm=''
mv=''
cp=''
tail=''
tr=''
mkdir=''
sort=''
uniq=''
grep=''
trylist=''
test=''
inews=''
ispell=''
egrep=''
more=''
pg=''
Mcc=''
vi=''
mailx=''
mail=''
cpp=''
perl=''
emacs=''
ls=''
rmail=''
sendmail=''
shar=''
smail=''
submit=''
tbl=''
troff=''
nroff=''
uname=''
uuname=''
line=''
chgrp=''
chmod=''
lint=''
sleep=''
pr=''
tar=''
ln=''
lpr=''
lp=''
touch=''
make=''
date=''
csh=''
pmake=''
mips=''
col=''
pack=''
compress=''
execmail=''
libswanted=''
d_broke_ctype=''
d_cuserid=''
d_flock=''
d_dotlock=''
d_fcntlock=''
lock_dir=''
has_flock=''
has_fcntl=''
d_gethname=''
d_douname=''
d_host_comp=''
ign_hname=''
d_index=''
d_internet=''
d_locale=''
d_nl_types=''
d_msgcat=''
d_usenls=''
d_mallocvoid=''
d_mmdf=''
d_noxheader=''
d_pidcheck=''
d_setgid=''
d_savegrpmboxid=''
mailermode=''
d_sigvec=''
d_sigvectr=''
d_sigset=''
d_sighold=''
d_sigprocmask=''
d_sigblock=''
d_sigaction=''
d_strings=''
d_pwdinsys=''
strings=''
includepath=''
d_useembed=''
d_utimbuf=''
hostname='debian'
phostname=''
mydomain=''
autohostname=''
i_memory=''
i_stdarg=''
i_stdlib=''
i_time=''
i_systime=''
d_systimekernel=''
i_unistd=''
i_utime=''
i_sysutime=''
lib=''
libc=''
maildir=''
mailhome=''
mailer=''
mailgrp=''
mansrc=''
catmansrc=''
manext=''
manext_choice=''
catmanext=''
catmanext_choice=''
packed=''
manroff=''
manroffopts=''
suffix=''
packer=''
models=''
split=''
small=''
medium=''
large=''
huge=''
optimize=''
ccflags=''
cppflags=''
ldflags=''
cc=''
libs=''
nametype=''
d_passnames=''
d_berknames=''
d_usgnames=''
d_rcpthdr=''
rcpthdr='none'
passcat=''
roff=''
roffopts=''
sigtype=''
spitshell=''
shsharp=''
sharpbang=''
tzname_handling=''
use_pmake=''
xencf=''
xenlf=''
d_xenix=''
d_bsd=''
CONFIG=''
: set package name
package=filter
# Revision 1.1.1.1 1995/04/13 19:38:54 wfp5p
# Elm 2
#
echo " "
echo "Beginning of configuration questions for $package kit."
: Eunice requires " " instead of "", can you believe it
echo " "
define='define'
undef='undef'
: change the next line if compiling for Xenix/286 on Xenix/386
xlibpth='/usr/lib/386 /lib/386 /lib'
libpth='/usr/lib /usr/ccs/lib /usr/local/lib /usr/lib/large /lib '$xlibpth' /lib/large /usr/lib/small /lib/small'
smallmach='pdp11 i8086 z8000 i80286 iAPX286'
rmlist='kit[1-9]isdone kit[1-9][0-9]isdone'
trap 'echo " "; rm -f $rmlist; exit 1' 1 2 3
: We must find out about Eunice early
eunicefix=':'
if test -f /etc/unixtovms; then
eunicefix=/etc/unixtovms
fi
if test -f /etc/unixtovms.exe; then
eunicefix=/etc/unixtovms.exe
fi
: Now test for existence of everything in MANIFEST
echo "First let's make sure your kit is complete. Checking..."
awk '$1 !~ /PACKINGLIST/ {print $1}' ../MANIFEST | split -100
rm -f missing
for filelist in x??; do
(cd ..; ls `cat UU/$filelist` >/dev/null 2>>UU/missing)
done
if test -s missing; then
cat missing
kill $$
fi
echo "Looks good..."
: Do one time items.....
for file in OneTime.PL* ; do
if test -f "$file" ; then
echo "Executing patch cleanup script $file . . ."
. ./$file
fi
done
d_newshome="/usr/NeWS"
defvoidused=7
attrlist="mc68000 sun gcos unix ibm gimpel interdata tss os mert pyr"
attrlist="$attrlist vax pdp11 i8086 z8000 u3b2 u3b5 u3b20 u3b200"
attrlist="$attrlist hpux hp9000s300 hp9000s500 hp9000s800"
attrlist="$attrlist ns32000 ns16000 iAPX286 mc300 mc500 mc700 sparc"
attrlist="$attrlist nsc32000 sinix xenix venix posix ansi M_XENIX"
attrlist="$attrlist $mc68k __STDC__ UTS M_I8086 M_I186 M_I286 M_I386"
attrlist="$attrlist i186 __m88k__ m88k DGUX __DGUX__ NeXT _AIX ultrix"
pth="/bin /usr/bin /usr/ucb /sbin /usr/sbin /usr/local /usr/local/bin /usr/lbin"
pth="$pth /usr/5bin /vol/local/bin /etc /usr/bsd /usr/lib /usr/ccs/lib /usr/ccs/bin /lib"
pth="$pth /usr/local/lib /sys5.3/bin /sys5.3/usr/bin /bsd4.3/bin /bsd4.3/usr/bin /bsd4.3/usr/ucb"
pth="$pth /usr/convex /usr/mmdf/bin /usr/mmdf/lib /usr/lib/mail"
pth="$pth ${BSDBASE-/bsd}/usr/ucb ${BSDBASE-/bsd}/bin ${BSDBASE-/bsd}/usr/bin"
# Revision 1.1.1.1 1995/04/13 19:38:54 wfp5p
# Elm 2
#
: check for out bin directory
if test ! -d ../bin; then
echo "Making bin directory"
mkdir ../bin
else
echo "Found bin directory"
fi
libswanted="intl nls"
attrlist="$attrlist sgi"
: some greps do not return status, grrr.
echo "grimblepritz" >grimble
if grep blurfldyick grimble >/dev/null 2>&1 ; then
contains=contains
elif grep grimblepritz grimble >/dev/null 2>&1 ; then
contains=grep
else
contains=contains
fi
rm -f grimble
: the following should work in any shell
case "$contains" in
contains*)
echo " "
echo "AGH! Grep doesn't return a status. Attempting remedial action."
cat >contains <<'EOSS'
grep "$1" "$2" >.greptmp && cat .greptmp && test -s .greptmp
EOSS
chmod +x contains
esac
# Revision 1.1.1.1 1995/04/13 19:38:55 wfp5p
# Elm 2
#
: see if sh knows # comments
echo " "
echo "Checking your sh to see if it knows about # comments..."
if sh -c '#' >/dev/null 2>&1 ; then
echo "Your sh handles # comments correctly."
shsharp=true
spitshell=cat
echo " "
echo "Okay, let's see if #! works on this system..."
e=/bin/echo; test -f $e || e=/usr/bin/echo
echo "#!$e hi" > try
$eunicefix try
chmod +x try
./try > today
if $contains hi today >/dev/null 2>&1; then
echo "It does."
sharpbang='#!'
else
echo "#! $e hi" > try
$eunicefix try
chmod +x try
./try > today
if test -s today; then
echo "It does."
sharpbang='#! '
else
echo "It doesn't."
sharpbang=': use '
fi
fi
else
echo "Your sh doesn't grok # comments--I will strip them later on."
shsharp=false
echo "exec grep -v '^#'" >spitshell
chmod +x spitshell
$eunicefix spitshell
spitshell=`pwd`/spitshell
echo "I presume that if # doesn't work, #! won't work either!"
sharpbang=': use '
fi
: figure out how to guarantee sh startup
echo " "
echo "Checking out how to guarantee sh startup..."
startsh=$sharpbang'/bin/sh'
echo "Let's see if '$startsh' works..."
cat >try <<EOSS
$startsh
set abc
test "$?abc" != 1
EOSS
chmod +x try
$eunicefix try
if ./try; then
echo "Yup, it does."
else
echo "Nope. You may have to fix up the shell scripts to make sure sh runs them."
fi
rm -f try today
: first determine how to suppress newline on echo command
echo "Checking echo to see how to suppress newlines..."
(echo "hi there\c" ; echo " ") >.echotmp
if $contains c .echotmp >/dev/null 2>&1 ; then
echo "...using -n."
n='-n'
c=''
else
cat <<'EOM'
...using \c
EOM
n=''
c='\c'
fi
rm -f .echotmp
#We want things fully automated
#echo $n "Type carriage return to continue. Your cursor should be here-->$c"
#read ans
: now set up to do reads with possible shell escape and default assignment
cat <<EOSC >myread
case "\$fastread" in
yes) ans=''; echo " " ;;
*) ans='!';;
esac
while expr "X\$ans" : "X!" >/dev/null; do
read ans
case "\$ans" in
!)
sh
echo " "
echo $n "\$rp $c"
;;
!*)
set \`expr "X\$ans" : "X!\(.*\)\$"\`
sh -c "\$*"
echo " "
echo $n "\$rp $c"
;;
esac
done
rp='Your answer:'
case "\$ans" in
'') ans="\$dflt";;
esac
EOSC
# Revision 1.1.1.1 1995/04/13 19:38:53 wfp5p
# Elm 2
#
: general instructions
cat <<EOH
This installation shell script will examine your system and ask you questions
to determine how the $package package should be installed. If you get stuck
on a question, you may use a ! shell escape to start a subshell or execute
a command. Many of the questions will have default answers in square
brackets--typing carriage return will give you the default.
On some of the questions which ask for file or directory names you are
allowed to use the ~name construct to specify the login directory belonging
to "name", even if you don't have a shell which knows about that. Questions
where this is allowed will be marked "(~name ok)".
EOH
rp="[Type carriage return to continue]"
echo $n "$rp $c"
. myread
cat <<EOH
Much effort has been expended to ensure that this shell script will run
on any Unix system. If despite that it blows up on you, your best bet is
to edit Configure and run it again. Also, let the Elm Development Group
(elm@dsi.com) know how they blew it. If you can't run Configure for
some reason, you'll have to generate a config.sh file by hand.
This installation script affects things in two ways: 1) it may do direct
variable substitutions on some of the files included in this kit, and
2) it builds a config.h file for inclusion in C programs. You may edit
any of these files as the need arises after running this script.
If you make a mistake on a question, there is no easy way to back up to it
currently. The easiest thing to do is to edit config.sh and rerun all the
SH files. Configure will offer to let you do this before it runs the SH files.
EOH
rp="[Type carriage return to continue]"
echo $n "$rp $c"
. myread
: get old answers, if there is a config file out there
if test -f ../config.sh; then
echo " "
dflt=y
rp="I see a config.sh file. Did Configure make it on THIS system? [$dflt]"
echo $n "$rp $c"
. myread
case "$ans" in
n*) echo "OK, I'll ignore it.";;
*) echo "Fetching default answers from your old config.sh file..."
tmp="$n"
ans="$c"
. ../config.sh
n="$tmp"
c="$ans"
;;
esac
fi
# Revision 1.1.1.1 1995/04/13 19:38:54 wfp5p
# Elm 2
#
: find out where common programs are
echo " "
echo "Locating common programs..."
cat <<EOSC >loc
$startsh
case \$# in
0) exit 1;;
esac
thing=\$1
shift
dflt=\$1
shift
for dir in \$*; do
case "\$thing" in
.)
if test -d \$dir/\$thing; then
echo \$dir
exit 0
fi
;;
*)
if test -f \$dir/\$thing; then
echo \$dir/\$thing
exit 0
elif test -f \$dir/\$thing.exe; then
: on Eunice apparently
echo \$dir/\$thing
exit 0
fi
;;
esac
done
echo \$dflt
exit 1
EOSC
chmod +x loc
$eunicefix loc
loclist="
cat
chgrp
chmod
cp
echo
expr
grep
ln
ls
make
mv
rm
sed
touch
tr
"
trylist="
Mcc
compress
cpp
execmail
line
lint
mips
nroff
pack
pmake
rmail
sendmail
smail
submit
tbl
test
troff
uname
uuname
"
for file in $loclist; do
xxx=`loc $file $file $pth`
eval $file=$xxx
eval _$file=$xxx
case "$xxx" in
/*)
echo $file is in $xxx.
;;
*)
echo "I don't know where $file is. I hope it's in everyone's PATH."
;;
esac
done
echo " "
echo "Don't worry if any of the following aren't found..."
ans=offhand
for file in $trylist; do
xxx=`loc $file $file $pth`
eval $file=$xxx
eval _$file=$xxx
case "$xxx" in
/*)
echo $file is in $xxx.
;;
*)
echo "I don't see $file out there, $ans."
ans=either
;;
esac
done
case "$egrep" in
egrep)
echo "Substituting grep for egrep."
egrep=$grep
;;
esac
case "$test" in
test)
echo "Hopefully test is built into your sh."
;;
/bin/test)
if sh -c "PATH= test true" >/dev/null 2>&1; then
echo "Using the test built into your sh."
test=test
fi
;;
*)
test=test
;;
esac
case "$echo" in
echo)
echo "Hopefully echo is built into your sh."
;;
/bin/echo)
echo " "
echo "Checking compatibility between /bin/echo and builtin echo (if any)..."
$echo $n "hi there$c" >foo1
echo $n "hi there$c" >foo2
if cmp foo1 foo2 >/dev/null 2>&1; then
echo "They are compatible. In fact, they may be identical."
else
case "$n" in
'-n') n='' c='\c' ans='\c' ;;
*) n='-n' c='' ans='-n' ;;
esac
cat <<FOO
They are not compatible! You are probably running ksh on a non-USG system.
I'll have to use /bin/echo instead of the builtin, since Bourne shell doesn't
have echo built in and we may have to run some Bourne shell scripts. That
means I'll have to use $ans to suppress newlines now. Life is ridiculous.
FOO
rp="Your cursor should be here-->"
$echo $n "$rp$c"
. myread
fi
rm -f foo1 foo2
;;
*)
: cross your fingers
echo=echo
;;
esac
rmlist="$rmlist loc"
: set up shell script to do ~ expansion
cat >filexp <<EOSS
$startsh
: expand filename
case "\$1" in
~/*|~)
echo \$1 | $sed "s|~|\${HOME-\$LOGDIR}|"
;;
~*)
if $test -f /bin/csh; then
/bin/csh -f -c "glob \$1"
echo ""
else
name=\`$expr x\$1 : '..\([^/]*\)'\`
dir=\`$sed -n -e "/^\${name}:/{s/^[^:]*:[^:]*:[^:]*:[^:]*:[^:]*:\([^:]*\).*"'\$'"/\1/" -e p -e q -e '}' </etc/passwd\`
if $test ! -d "\$dir"; then
me=\`basename \$0\`
echo "\$me: can't locate home directory for: \$name" >&2
exit 1
fi
case "\$1" in
*/*)
echo \$dir/\`$expr x\$1 : '..[^/]*/\(.*\)'\`
;;
*)
echo \$dir
;;
esac
fi
;;
*)
echo \$1
;;
esac
EOSS
chmod +x filexp
$eunicefix filexp
: determine where public executables go
case "$bin" in
'')
dflt=`loc . /bin /usr/local/bin /usr/local /usr/lbin /usr/bin`
;;
*) dflt="$bin"
;;
esac
cont=true
while $test "$cont" ; do
echo " "
rp="Where do you want to put the public executables? [$dflt]"
$echo $n "$rp $c"
. myread
bin="$ans"
bin=`filexp $bin`
if test -d $bin; then
cont=''
else
case "$fastread" in
yes) dflt=y;;
*) dflt=n;;
esac
rp="Directory $bin doesn't exist. Use that name anyway? [$dflt]"
$echo $n "$rp $c"
. myread
dflt=''
case "$ans" in
y*) cont='';;
esac
fi
done
# Revision 1.1.1.1 1995/04/13 19:38:53 wfp5p
# Elm 2
#
: make some quick guesses about what we are up against
echo " "
$echo $n "Hmm... $c"
if $test -f "$uname"; then
uname_os=`$uname -s`
uname_rel=`$uname -r`
uname_rel=`expr "$uname_rel" : "\(...\).*"`
else
uname_os=unknown
uname_rel=unknown
fi
cat /usr/include/signal.h /usr/include/sys/signal.h >foo
if test `echo abc | tr a-z A-Z` = Abc ; then
echo "Looks kind of like a USG system, but we'll see..."
echo exit 1 >bsd
echo exit 0 >usg
echo exit 1 >v7
elif $contains SIGTSTP foo >/dev/null 2>&1 ; then
if $test "(" "$uname_os" = "SunOS" -a "$uname_rel" = "4.1" ")" ; then
echo "Looks like SunOs 4.1, a USG system, but we'll see..."
echo exit 1 >bsd
echo exit 0 >usg
echo exit 1 >v7
elif $test "$uname_os" = "OSF1" ; then
echo "Looks like an OSF/1 system, but we'll see.."
echo exit 1 >bsd
echo exit 1 >usg
echo exit 1 >v7
elif $test "$uname_os" = "HP-UX" ; then
echo "Looks like an HP-UX system, but we'll see.."
echo exit 1 >bsd
echo exit 0 >usg
echo exit 1 >v7
else
echo "Looks kind of like a BSD system, but we'll see..."
echo exit 0 >bsd
echo exit 1 >usg
echo exit 1 >v7
fi
else
echo "Looks kind of like a version 7 system, but we'll see..."
echo exit 1 >bsd
echo exit 1 >usg
echo exit 0 >v7
fi
case "$eunicefix" in
*unixtovms*)
cat <<'EOI'
There is, however, a strange, musty smell in the air that reminds me of
something...hmm...yes...I've got it...there's a VMS nearby, or I'm a Blit.
EOI
echo "exit 0" >eunice
d_eunice="$define"
;;
*)
echo " "
echo "Congratulations. You aren't running Eunice."
d_eunice="$undef"
echo "exit 1" >eunice
;;
esac
if test -f /xenix; then
echo "Actually, this looks more like a XENIX system..."
echo "exit 0" >xenix
else
echo " "
echo "It's not Xenix..."
echo "exit 1" >xenix
fi
chmod +x xenix
$eunicefix xenix
if test -f /venix; then
echo "Actually, this looks more like a VENIX system..."
echo "exit 0" >venix
else
echo " "
if xenix; then
: null
else
echo "Nor is it Venix..."
fi
echo "exit 1" >venix
fi
chmod +x bsd usg v7 eunice venix
$eunicefix bsd usg v7 eunice venix
$rm -rf foo
rmlist="$rmlist bsd usg v7 eunice venix xenix"
if $test "(" "$uname_os" = "SunOS" ")" ; then
if $test "(" ! "$uname_rel" = "4.1" ")" ; then
echo "I'm guessing this is Solaris"
is_solaris="y"
fi
fi
# Revision 1.1.1.1 1995/04/13 19:38:55 wfp5p
# Elm 2
#
# determine text processor to use, default to troff if found.
case "$roff" in
'')
if $test -n "$troff"; then
dflt="$troff"
else
dflt=$nroff
fi
;;
*) dflt="$roff";;
esac
$cat <<EOM
The Filter documentation is set up for troff. If you only have nroff, it can
be used, but the documentation will not be as readable. If you use an alternate
processor for troff/nroff documents it can be specified here. Filter expects
the text processor to write to standard out. You will be given a chance to
provide command line options to this command in the next question.
EOM
cont=true
while $test "$cont" ; do
echo " "
echo "Give the name of the program used to format the Filter documentation on"
$echo $n "your system: [$dflt] $c"
rp="Preferred Filter documentation formatter program: [$dflt]"
. myread
roff=$ans;
if $test -f "$ans"; then
cont=''
else
lookup=`loc "$ans" "" . $pth`
if $test -f "$lookup"; then
cont=''
roff=$lookup
else
if $test "$fastread" = yes; then
dflt=y
else
dflt=n
fi
echo "Text processor $ans doesn't exist."
rp="Use that name anyway? [$dflt]"
$echo $n "$rp $c"
. myread
dflt=''
case "$ans" in
y*) cont='';;
esac
fi
fi
done
# determine text processor flags to use.
$cat <<EOM
If this text processor requires any options for proper formatting, specify
them here. To specify no options, enter the word "none". Some versions
of troff require the -t option to write to standard out. This is the
proper place to specify that option.
EOM
dflt="$roffopts"
rp="What options should Filter use with $roff: [$dflt]"
$echo $n "$rp $c"
. myread
roffopts=$ans
case "$roffopts" in
'none') roffopts=''
;;
esac
# Revision 1.1.1.1 1995/04/13 19:38:54 wfp5p
# Elm 2
#
: determine where manual pages go
$cat <<EOM
$package has manual pages that can be installed in unformatted or formatted form.
Either or both (or neither) of these may be installed.
Please give the location in which to store each type of man page.
To specify that a particular type is not to be installed, answer "none"
to the question.
EOM
case "$mansrc" in
'')
dflt="/usr/local/man/mann /usr/local/man/man1"
dflt="$dflt /usr/man/mann /usr/man/manl /usr/man/man.L"
dflt="$dflt /usr/man/l_man/man1"
dflt="$dflt /usr/local/man/u_man/man1"
dflt="$dflt /usr/local/man/l_man/man1 /usr/man/man1 /usr/man/u_man/man1"
dflt="$dflt /usr/share/man/man1 /usr/share/man/manl"
dflt=`loc . none $dflt`
;;
*) dflt="$mansrc"
;;
esac
cont=true
while $test "$cont" ; do
echo " "
rp="Where do the unformatted manual pages go? [$dflt]"
$echo $n "$rp $c"
. myread
mansrc=`filexp "$ans"`
if $test "$mansrc" = none -o -d "$mansrc"; then
cont=''
else
if $test "$fastread" = yes; then
dflt=y
else
dflt=n
fi
rp="Directory $mansrc doesn't exist. Use that name anyway? [$dflt]"
$echo $n "$rp $c"
. myread
dflt=''
case "$ans" in
y*) cont='';;
esac
fi
done
# determine the extension for man pages
if $test "$mansrc" != none ; then
case "$manext" in
'')
if $test "$manext_choice" = none; then
dflt=none
else
case "$mansrc" in
*l) dflt=.l ;;
*n) dflt=.n ;;
*L) dflt=.L ;;
*) dflt=.1 ;;
esac
fi
;;
.*) dflt="$manext";;
*) dflt=".$manext";;
esac
$cat <<EOM
The installed unformatted manual pages can have various extensions to suit the
conventions of the host operating system, for example "page.1".
Note that the period '.' must be included as part of the extension.
To specify no extension, enter the word "none".
EOM
rp="What extension should be used on installed unformatted man pages: [$dflt]"
$echo $n "$rp $c"
. myread
manext=$ans
manext_choice=$ans
case "$manext" in
'none')
manext=''
;;
esac
fi
# Now the formatted man pages ala System V
case "$catmansrc" in
'')
dflt="/usr/man/catn /usr/man/catl /usr/catman/man.L /usr/catman/local/man1"
dflt="$dflt /usr/local/catman/u_man/man1 /usr/local/catman/l_man/man1"
dflt="$dflt /usr/catman/l_man/man1 /usr/man/cat1 /usr/catman/man1"
dflt="$dflt /usr/catman/u_man/man1 /usr/catman/URM/g1"
dflt="$dflt /usr/share/man/cat1 /usr/share/man/catl"
dflt=`loc . none $dflt`
;;
*) dflt="$catmansrc"
;;
esac
cont=true
while $test "$cont" ; do
echo " "
rp="Where do the formatted manual pages go? [$dflt]"
$echo $n "$rp $c"
. myread
catmansrc=`filexp "$ans"`
if $test "$catmansrc" = none -o -d "$catmansrc"; then
cont=''
else
if $test "$fastread" = yes; then
dflt=y
else
dflt=n
fi
rp="Directory $catmansrc doesn't exist. Use that name anyway? [$dflt]"
$echo $n "$rp $c"
. myread
dflt=''
case "$ans" in
y*) cont='';;
esac
fi
done
# if installing formatted manual pages, determine a number of other things.
if $test "$catmansrc" != none ; then
# determine text processor to use, default to nroff if found.
case "$manroff" in
'')
if $test -n "$nroff"; then
dflt="$nroff"
else
dflt=$troff
fi
;;
*) dflt="$manroff";;
esac
$cat <<EOM
Online manual pages are generally formatted with nroff. If you use an
alternate text processor for on-line manual pages it can be specified here.
Filter expects the text processor to write to standard out.
Note: This does not effect the formatter previously chosen for the Filter
documentation.
EOM
cont=true
while $test "$cont" ; do
echo " "
echo "Give the name of the program used to format on-line manual pages"
$echo $n "on your system: [$dflt] $c"
rp="Preferred manual page formatter: [$dflt]"
. myread
manroff=$ans;
if $test -f "$ans"; then
cont=''
else
lookup=`loc "$ans" "" . $pth`
if $test -f "$lookup"; then
cont=''
manroff=$lookup
else
if $test "$fastread" = yes; then
dflt=y
else
dflt=n
fi
echo "Text processor $ans doesn't exist."
rp="Use that name anyway? [$dflt]"
$echo $n "$rp $c"
. myread
dflt=''
case "$ans" in
y*) cont='';;
esac
fi
fi
done
# determine text processor flags to use.
$cat <<EOM
If this text processor requires any options for proper formatting, specify
then here. To specify no options, enter the word "none".
EOM
dflt="$manroffopts"
rp="What options should Filter use with $manroff: [$dflt]"
$echo $n "$rp $c"
. myread
manroffopts=$ans
case "$manroffopts" in
'none') manroffopts=''
;;
esac
# determine the extension for catman pages
case "$catmanext" in
'')
if $test "$catmanext_choice" = none; then
dflt=none
else
case "$manext" in
.*) dflt=$manext ;;
*)
if $test "$manext_choice" = none; then
dflt=none
else
case "$catmansrc" in
*l) dflt=.l ;;
*n) dflt=.n ;;
*L) dflt=.L ;;
*g1) dflt=none ;;
*) dflt=.1 ;;
esac
fi
esac
fi
;;
.*) dflt="$catmanext";;
*) dflt=".$catmanext";;
esac
$cat <<EOM
The installed formatted manual pages can have various extensions to suit the
conventions of the host operating system, for example "page.1".
Note that the period '.' must be included as part of the extension.
To specify no extension, enter the word "none".
EOM
rp="What extension should be used on installed formatted man pages: [$dflt]"
$echo $n "$rp $c"
. myread
catmanext=$ans
catmanext_choice=$ans
case "$catmanext" in
'none')
catmanext=''
;;
esac
if $test -f $pack -o -f $compress ; then
# See if the formatted manual pages are to be packed or compressed
if $test -f $pack; then
$cat <<EOM
The formatted manual pages may be packed (.z suffix) or compressed (.Z
suffix) or left unpacked on your system. The next two questions will deal
with how you want the formatted manual pages installed. Answering no to
both packed and compressed will leave them unpacked. Only one of packed
or compressed can be chosen.
EOM
case "$suffix" in
.Z) dflt=n;;
.z) dflt=y;;
*) if [ "$catmansrc/*.z" != "`$echo $catmansrc/*.z`" ]; then
dflt=y
else
dflt=n
fi ;;
esac
rp="Should the formatted manual pages be packed? [$dflt]"
$echo $n "$rp $c"
. myread
case "$ans" in
y*) packed=y
suffix=.z
packer="$pack -f" ;;
*) packed=n ;;
esac
fi
if $test -f $compress -a "$suffix" != ".z" ; then
case "$suffix" in
.z) dflt=n;;
.Z) dflt=y;;
*) if [ "$catmansrc/*.Z" != "`$echo $catmansrc/*.Z`" ]; then
dflt=y
else
dflt=n
fi ;;
esac
rp="Should the formatted manual pages be compressed? [$dflt]"
$echo $n "$rp $c"
. myread
case "$ans" in
y*) packed=y
suffix=.Z
packer="$compress" ;;
*) packed=n ;;
esac
fi
if $test "$packed" = 'n' ; then
suffix=''
packer=''
fi
else
packed=''
suffix=''
packer=''
fi
fi
# Revision 1.1.1.1 1995/04/13 19:38:56 wfp5p
# Elm 2
#
: default clear to no extra flags
xencf=
xenlf=
d_xenix="$undef"
d_bsd="$undef"
: see if we are xenix
if xenix; then
d_xenix="$define"
: now are we a 286
case "`$uname -p`" in
i80286)
xencf="-LARGE -Ml2et32"
xenlf="-Ml2t32 -F 5600 -SEG 512"
esac
fi
if bsd; then
d_bsd="$define"
fi
: see if we have to deal with yellow pages, if so, put sun
: library first, as the yp password routines must override
: the c library ones
if $test -d /usr/etc/yp || $test -d /etc/yp; then
if $test "$passcat" = "ypcat passwd"; then
dflt=y
elif $contains '^\+:' /etc/passwd; then
dflt=y
else
dflt=n
fi
rp="Are you getting the passwd file via yellow pages? [$dflt]"
$echo $n "$rp $c"
. myread
case "$ans" in
y*) passcat='ypcat passwd'
case "$libswanted" in
'') libswanted='sun c_s';;
*) libswanted=`$echo "$libswanted" | $sed -e 's/sun //g'`
libswanted="sun $libswanted";;
esac
;;
*) passcat='cat /etc/passwd';;
esac
else
passcat='cat /etc/passwd'
fi
# Revision 1.1.1.1 1995/04/13 19:38:54 wfp5p
# Elm 2
#
: see what memory models we can support
case "$models" in
'')
: We may not use Cppsym or we get a circular dependency through cc.
: But this should work regardless of which cc we eventually use.
cat >pdp11.c <<'EOP'
main() {
#ifdef pdp11
exit(0);
#else
exit(1);
#endif
}
EOP
cc -o pdp11 pdp11.c >/dev/null 2>&1
if pdp11 2>/dev/null; then
dflt='unsplit split'
else
ans=`loc . X /lib/small /lib/large /usr/lib/small /usr/lib/large /lib/medium /usr/lib/medium /lib/huge`
case "$ans" in
X) dflt='none';;
*) if $test -d /lib/small || $test -d /usr/lib/small; then
dflt='small'
else
dflt=''
fi
if $test -d /lib/medium || $test -d /usr/lib/medium; then
dflt="$dflt medium"
fi
if $test -d /lib/large || $test -d /usr/lib/large; then
dflt="$dflt large"
fi
if $test -d /lib/huge || $test -d /usr/lib/huge; then
dflt="$dflt huge"
fi
esac
fi
;;
*) dflt="$models" ;;
esac
if $test -z "$xencf" ; then
$cat <<EOM
Some systems have different model sizes. On most systems they are called
small, medium, large, and huge. On the PDP11 they are called unsplit and
split. If your system doesn't support different memory models, say "none".
If you wish to force everything to one memory model, say "none" here and
put the appropriate flags later when it asks you for other cc and ld flags.
Xenix and Venix systems may wish to put "none" and let the compiler figure
things out.
(In the following question multiple model names should be space separated.)
EOM
rp="Which models are supported? [$dflt]"
$echo $n "$rp $c"
. myread
models="$ans"
case "$models" in
none)
small=''
medium=''
large=''
huge=''
unsplit=''
split=''
;;
*split)
case "$split" in
'')
if $contains '\-i' $mansrc/man1/ld.1 >/dev/null 2>&1 || \
$contains '\-i' $mansrc/man1/cc.1 >/dev/null 2>&1; then
dflt='-i'
else
dflt='none'
fi
;;
*) dflt="$split";;
esac
rp="What flag indicates separate I and D space? [$dflt]"
$echo $n "$rp $c"
. myread
case "$ans" in
none) ans='';;
esac
split="$ans"
unsplit=''
;;
*large*|*small*|*medium*|*huge*)
case "$models" in
*large*)
case "$large" in
'') dflt='-Ml';;
*) dflt="$large";;
esac
rp="What flag indicates large model? [$dflt]"
$echo $n "$rp $c"
. myread
case "$ans" in
none) ans='';
esac
large="$ans"
;;
*) large='';;
esac
case "$models" in
*huge*)
case "$huge" in
'') dflt='-Mh';;
*) dflt="$huge";;
esac
rp="What flag indicates huge model? [$dflt]"
$echo $n "$rp $c"
. myread
case "$ans" in
none) ans='';
esac
huge="$ans"
;;
*) huge="$large";;
esac
case "$models" in
*medium*)
case "$medium" in
'') dflt='-Mm';;
*) dflt="$medium";;
esac
rp="What flag indicates medium model? [$dflt]"
$echo $n "$rp $c"
. myread
case "$ans" in
none) ans='';
esac
medium="$ans"
;;
*) medium="$large";;
esac
case "$models" in
*small*)
case "$small" in
'') dflt='none';;
*) dflt="$small";;
esac
rp="What flag indicates small model? [$dflt]"
$echo $n "$rp $c"
. myread
case "$ans" in
none) ans='';
esac
small="$ans"
;;
*) small='';;
esac
;;
*)
echo "Unrecognized memory models--you may have to edit Makefile.SH"
;;
esac
fi
: see if we need a special compiler
echo " "
if usg; then
case "$cc" in
'')
case "$Mcc" in
/*) dflt='Mcc'
;;
*)
case "$large" in
-M*)
dflt='cc'
;;
*)
if $contains '\-M' $mansrc/cc.1 >/dev/null 2>&1 ; then
dflt='cc -M'
else
dflt='cc'
fi
;;
esac
;;
esac
;;
*) dflt="$cc";;
esac
$cat <<'EOM'
On some systems the default C compiler will not resolve multiple global
references that happen to have the same name. On some such systems the
"Mcc" command may be used to force these to be resolved. On other systems
a "cc -M" command is required. (Note that the -M flag on other systems
indicates a memory model to use!) If you have the Gnu C compiler, you
might wish to use that instead. What command will force resolution on
EOM
$echo $n "this system? [$dflt] $c"
rp="Command to resolve multiple refs? [$dflt]"
. myread
cc="$ans"
else
case "$cc" in
'') dflt=cc;;
*) dflt="$cc";;
esac
rp="Use which C compiler? [$dflt]"
$echo $n "$rp $c"
. myread
cc="$ans"
fi
case "$cc" in
gcc*) cpp=`loc gcc-cpp $cpp $pth`;;
esac
: determine optimize, if desired, or use for debug flag also
case "$optimize" in
' ') dflt="none"
;;
'') dflt="-O";
;;
*) dflt="$optimize"
;;
esac
cat <<EOH
Some C compilers have problems with their optimizers, by default, $package
compiles with the -O flag to use the optimizer. Alternately, you might
want to use the symbolic debugger, which uses the -g flag (on traditional
UNIX systems). Either flag can be specified here. To use neither flag,
specify the word "none".
EOH
rp="What optimizer/debugger flag should be used? [$dflt]"
$echo $n "$rp $c"
. myread
optimize="$ans"
case "$optimize" in
'none') optimize=" "
;;
esac
case "$ccflags" in
'') case "$cc" in
*gcc*) dflt='-fpcc-struct-return';;
*) dflt='';;
esac
;;
*) dflt="$ccflags";;
esac
for thisincl in $inclwanted; do
if test -d $thisincl; then
case "$dflt" in
*$thisincl*);;
*) dflt="$dflt -I$thisincl";;
esac
fi
done
case "$optimize" in
-g*)
case "$dflt" in
*DEBUG*);;
*) dflt="$dflt -DDEBUG";;
esac
;;
esac
case "$dflt" in
'') dflt=none;;
esac
if $test -n "$xencf" ; then
$echo "Xenix 286 system, using compiler flags $xencf"
$echo "do not respecify these flags below."
$echo ""
fi
cat <<EOH
Your C compiler may want other flags. For this question you should
include -I/whatever and -DWHATEVER flags and any other flags used by
the C compiler, but you should NOT include libraries or ld flags like
-lwhatever. To use no flags, specify the word "none".
EOH
rp="Any additional cc flags? [$dflt]"
$echo $n "$rp $c"
. myread
case "$ans" in
none) ans='';
esac
ccflags="$ans"
: the following weeds options from ccflags that are of no interest to cpp
cppflags="$ccflags"
case "$cc" in
*gcc*) cppflags="$cppflags -D__GNUC__";;
esac
case "$cppflags" in
'');;
*) set X $cppflags
cppflags=''
for flag
do
case $flag in
-D*|-I*|-U*) cppflags="$cppflags $flag";;
esac
done
case "$cppflags" in
*-*) echo "(C preprocessor flags: $cppflags)";;
esac
;;
esac
if $test -n "$xenlf" ; then
$echo "Xenix 286 system, using linker flags $xenlf"
$echo "do not respecify these flags below"
$echo ""
fi
case "$ldflags" in
'') if venix; then
dflt='-i -z'
else
dflt='none'
fi
;;
*) dflt="$ldflags";;
esac
cat <<EOH
Your linker/loader may want other flags. For example, you might
want to enable support for the symbolic debugger (-g on traditional
UNIX systems). For this question you should specify those flags.
Do NOT specify libraries (-lwhatever) here. Most systems will not
need any special flags, in which case specify "none".
EOH
rp="Any additional ld flags (NOT including libraries)? [$dflt]"
$echo $n "$rp $c"
. myread
case "$ans" in
none) ans='';
esac
ldflags="$ans"
rmlist="$rmlist pdp11"
echo " "
echo "Checking for optional libraries..."
case "$libs" in
'') dflt='';;
*) dflt="$libs";;
esac
case "$libswanted" in
'') libswanted='c_s';;
esac
for thislib in $libswanted; do
case "$thislib" in
dbm) thatlib=ndbm;;
*_s) thatlib=NONE;;
*) thatlib="${thislib}_s";;
*) thatlib=NONE;;
esac
xxx=`loc lib$thislib.a X /usr/lib /usr/ccs/lib /usr/local/lib /lib`
if test -f $xxx; then
echo "Found -l$thislib."
case "$dflt" in
*-l$thislib*|*-l$thatlib*);;
*) dflt="$dflt -l$thislib";;
esac
else
xxx=`loc lib$thislib.a X $libpth`
if test -f $xxx; then
echo "Found $xxx."
case "$dflt" in
*$xxx*);;
*) dflt="$dflt $xxx";;
esac
else
xxx=`loc Slib$thislib.a X $xlibpth`
if test -f $xxx; then
echo "Found -l$thislib."
case "$dflt" in
*-l$thislib*|*-l$thatlib*);;
*) dflt="$dflt -l$thislib";;
esac
else
echo "No -l$thislib."
fi
fi
fi
done
set X $dflt
shift
dflt="$*"
case "$dflt" in
'') dflt='none';;
esac
$cat <<EOM
Some versions of UNIX support shared libraries, which make
executables smaller but make load time slightly longer.
On some systems, mostly newer UNIX System V's, the shared library
is included by putting the option "-lc_s" as the last thing on the
cc command line when linking. Other systems use shared libraries
by default. There may be other libraries needed to compile $package
on your machine as well. If your system needs the "-lc_s" option,
include it here. Include any other special libraries here as well.
Say "none" for none.
EOM
echo " "
rp="Any additional libraries? [$dflt]"
$echo $n "$rp $c"
. myread
case "$ans" in
none) ans='';
esac
libs="$ans"
: see how we invoke the C preprocessor
echo " "
echo "Now, how can we feed standard input to your C preprocessor..."
cat <<'EOT' >testcpp.c
#define ABC abc
#define XYZ xyz
ABC.XYZ
EOT
echo 'Maybe "'"$cc"' -E" will work...'
$cc -E <testcpp.c >testcpp.out 2>&1
: try to force gcc preprocessor if that is the compiler they are using
case $? in
0) cppstdin="$cc -E";;
*) case "$cc" in
*gcc*)
cd ..
echo 'Trying (cat >/tmp/$$.c; '"$cc"' -E /tmp/$$.c; rm /tmp/$$.c)'
echo 'cat >/tmp/$$.c; '"$cc"' -E /tmp/$$.c; rm /tmp/$$.c' >cppstdin
chmod 755 cppstdin
cppstdin=`pwd`/cppstdin
cppminus='';
cd UU
$cppstdin <testcpp.c >testcpp.out 2>&1
;;
esac
;;
esac
if $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
echo "Yup, it does."
cppstdin="$cc -E"
cppminus='';
else
echo 'Nope, maybe "'$cpp'" will work...'
$cpp <testcpp.c >testcpp.out 2>&1
if $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
echo "Yup, it does."
cppstdin="$cpp"
cppminus='';
else
echo 'No such luck...maybe "'$cpp' -" will work...'
$cpp - <testcpp.c >testcpp.out 2>&1
if $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
echo "It works!"
cppstdin="$cpp"
cppminus='-';
else
echo 'Nixed again...maybe "'"$cc"' -E -" will work...'
$cc -E - <testcpp.c >testcpp.out 2>&1
if $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
echo "Hooray, it works! I was beginning to wonder."
cppstdin="$cc -E"
cppminus='-';
else
echo 'Nope...maybe "'"$cc"' -P" will work...'
$cc -P <testcpp.c >testcpp.out 2>&1
if $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
echo "Yup, that does."
cppstdin="$cc -P"
cppminus='';
else
echo 'Nope...maybe "'"$cc"' -P -" will work...'
$cc -P - <testcpp.c >testcpp.out 2>&1
if $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
echo "Yup, that does."
cppstdin="$cc -P"
cppminus='-';
else
echo 'Hmm...perhaps you already told me...'
case "$cppstdin" in
'') ;;
*) $cppstdin $cppminus <testcpp.c >testcpp.out 2>&1;;
esac
if $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
echo "Hooray, you did! I was beginning to wonder."
else
echo 'Uh-uh. Time to get fancy...'
cd ..
echo 'Trying (cat >/tmp/$$.c; '"$cc"' -E /tmp/$$.c; rm /tmp/$$.c)'
echo 'cat >/tmp/$$.c; '"$cc"' -E /tmp/$$.c; rm /tmp/$$.c' >cppstdin
chmod 755 cppstdin
cppstdin=`pwd`/cppstdin
cppminus='';
cd UU
$cppstdin <testcpp.c >testcpp.out 2>&1
if $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
echo "Eureka!."
else
dflt=blurfl
$echo $n "No dice. I can't find a C preprocessor. Name one: $c"
rp='Name a C preprocessor:'
. myread
cppstdin="$ans"
$cppstdin <testcpp.c >testcpp.out 2>&1
if $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
echo "OK, that will do."
else
echo "Sorry, I can't get that to work. Go find one."
exit 1
fi
fi
fi
fi
fi
fi
fi
fi
fi
$rm -f testcpp.c testcpp.out
# Revision 1.1.1.1 1995/04/13 19:38:55 wfp5p
# Elm 2
#
: get list of predefined functions in a handy place
echo " "
case "$libc" in
'') if test -d /usr/apollo; then
libc=/lib/libc
else
libc=unknown
fi
;;
'/lib/libc /lib/clib')
libc=/lib/libc
;;
esac
case "$mips" in
'') mips=false;;
'mips') mips=false;;
esac
case "$nm_opts" in
'') if test -f /mach_boot; then
nm_opts=''
elif test -d /usr/ccs/lib; then
nm_opts='-p'
elif "$mips"; then
nm_opts='-B'
else
nm_opts=''
fi
;;
esac
: on mips, we DO NOT want /lib, and we want inclPath/usr/lib
case "$libpth" in
'') if "$mips"; then
libpth='$inclPath/usr/lib /usr/local/lib'
nm_opts='-B'
else
libpth='/usr/ccs/lib /lib /usr/lib /usr/ucblib /usr/local/lib'
fi
;;
esac
case "$libs" in
*-lc_s*) libc=`./loc libc_s.a $libc $libpth`
esac
libnames='';
case "$libs" in
'') ;;
*) for thislib in $libs; do
case "$thislib" in
-l*) thislib=`expr X$thislib : 'X-l\(.*\)'`
try=`./loc lib$thislib.a blurfl/dyick $libpth`
if test ! -f $try; then
try=`./loc lib$thislib blurfl/dyick $libpth`
if test ! -f $try; then
try=`./loc $thislib blurfl/dyick $libpth`
if test ! -f $try; then
try=`./loc Slib$thislib.a blurfl/dyick $xlibpth`
if test ! -f $try; then
try=''
fi
fi
fi
fi
libnames="$libnames $try"
;;
*) libnames="$libnames $thislib" ;;
esac
done
;;
esac
set /usr/ccs/lib/libc.so
test -f $1 || set /usr/lib/libc.so
# workaround for redhat linux/GNU libc.so being a text file not ELF obj.
file $1 | grep text >/dev/null && set /usr/lib/libc.a
test -f $1 || set /usr/lib/libc.so.[0-9]*
test -f $1 || set /lib/libsys_s.a
eval set \$$#
if test -f "$1"; then
echo "Your shared C library is in $1."
libc="$1"
elif test -f "$libc"; then
echo "Your C library is in $libc."
elif test -f /lib/libc.a; then
echo "Your C library is in /lib/libc.a. You're normal."
libc=/lib/libc.a
else
if ans=`./loc libc.a blurfl/dyick $libpth`; test -f "$ans"; then
:
elif ans=`./loc libc blurfl/dyick $libpth`; test -f "$ans"; then
libnames="$libnames "`./loc clib blurfl/dyick $libpth`
elif ans=`./loc clib blurfl/dyick $libpth`; test -f "$ans"; then
:
elif ans=`./loc Slibc.a blurfl/dyick $xlibpth`; test -f "$ans"; then
:
elif ans=`./loc Mlibc.a blurfl/dyick $xlibpth`; test -f "$ans"; then
:
elif ans=`./loc Llibc.a blurfl/dyick $xlibpth`; test -f "$ans"; then
:
fi
if test -f "$ans"; then
echo "Your C library is in $ans, of all places."
libc=$ans
else
cat <<EOM
I can't seem to find your C library. I've looked in the following places:
$libpth
None of these seems to contain your C library. What is the full name
EOM
dflt=None
$echo $n "of your C library? $c"
rp='C library full name?'
. myread
libc="$ans"
fi
fi
echo " "
if test $libc = "/lib/libc"; then
libc="$libc /lib/clib"
fi
set `echo $libc $libnames | tr ' ' '\012' | sort | uniq`
$echo $n "Extracting names from $* for later perusal...$c"
nm $nm_opts $* 2>/dev/null >libc.tmp
$sed -n -e 's/^.* [ATDS] *[_.]*//p' -e 's/^.* [ATDS] //p' <libc.tmp >libc.list
if $contains '^printf$' libc.list >/dev/null 2>&1; then
echo done
elif $sed -n -e 's/^__*//' -e 's/^\([a-zA-Z_0-9$]*\).*xtern.*/\1/p' \
<libc.tmp >libc.list; \
$contains '^printf$' libc.list >/dev/null 2>&1; then
echo done
elif $sed -n -e '/|UNDEF/d' -e '/FUNC..GL/s/^.*|__*//p' <libc.tmp >libc.list; \
$contains '^printf$' libc.list >/dev/null 2>&1; then
echo done
elif $sed -n -e 's/^.* D __*//p' -e 's/^.* D //p' <libc.tmp >libc.list; \
$contains '^printf$' libc.list >/dev/null 2>&1; then
echo done
elif $sed -n -e 's/^_//' -e 's/^\([a-zA-Z_0-9]*\).*xtern.*text.*/\1/p' \
<libc.tmp >libc.list; \
$contains '^printf$' libc.list >/dev/null 2>&1; then
echo done
elif $grep '|' <libc.tmp | $sed -n -e '/|COMMON/d' -e '/|DATA/d' \
-e 's/^\([^ ]*\).*/\1/p' >libc.list
$contains '^printf$' libc.list >/dev/null 2>&1; then
echo done
elif $sed -n -e 's/^.*|FUNC |GLOB .*|//p' -e 's/^.*|FUNC |WEAK .*|//p' \
<libc.tmp >libc.list; \
$contains '^printf$' libc.list >/dev/null 2>&1; then
echo done
else
nm -p $* 2>/dev/null >libc.tmp
$sed -n -e 's/^.* [AT] *_[_.]*//p' -e 's/^.* [AT] //p' <libc.tmp >libc.list
if $contains '^printf$' libc.list >/dev/null 2>&1; then
nm_opts='-p'
echo "done"
else
echo " "
echo "nm didn't seem to work right."
echo "Trying ar instead..."
if ar t $libc > libc.tmp; then
for thisname in $libnames; do
ar t $thisname >>libc.tmp
done
$sed -e 's/\.o$//' < libc.tmp > libc.list
echo "Ok."
else
echo "ar didn't seem to work right."
echo "Maybe this is a Cray...trying bld instead..."
if bld t $libc | $sed -e 's/.*\///' -e 's/\.o:.*$//' > libc.list; then
for thisname in $libnames; do
bld t $libnames | \
$sed -e 's/.*\///' -e 's/\.o:.*$//' >>libc.list
ar t $thisname >>libc.tmp
done
echo "Ok."
else
echo "That didn't work either. Giving up."
exit 1
fi
fi
fi
fi
: old version
inlibc='echo " ";
if $contains "^$1\$" libc.list >/dev/null 2>&1;
then echo "$1() found"; eval "$2=$define";
else echo "$1() not found"; eval "$2=$undef"; fi'
: : new version
:
: inlibc='echo " "; td=$define; tu=$undef;
: if $contains "^$1\$" libc.list >/dev/null 2>&1;
: then echo "$1() found";
: eval "case \"\$$2\" in undef) . whoa; esac"; eval "$2=\$td";
: else echo "$1() not found";
: eval "case \"\$$2\" in define) . whoa; esac"; eval "$2=\$tu"; fi'
:
: rmlist="$rmlist libc.tmp libc.list"
:
# Revision 1.1.1.1 1995/04/13 19:38:54 wfp5p
# Elm 2
#
: get C preprocessor symbols handy
echo " "
echo $attrlist | $tr ' ' '\012' >Cppsym.know
$cat <<EOSS >Cppsym
$startsh
case "\$1" in
-l) list=true
shift
;;
esac
unknown=''
case "\$list\$#" in
1|2)
for sym
do
if $contains "^\$1$" Cppsym.true >/dev/null 2>&1; then
exit 0
elif $contains "^\$1$" Cppsym.know >/dev/null 2>&1; then
:
else
unknown="\$unknown \$sym"
fi
done
set X \$unknown
shift
;;
esac
case \$# in
0) exit 1;;
esac
echo \$* | $tr ' ' '\012' | $sed -e 's/\(.*\)/\\
#ifdef \1\\
exit 0; _ _ _ _\1\\ \1\\
#endif\\
/' >/tmp/Cppsym\$\$
echo exit 1 >>/tmp/Cppsym\$\$
$cppstdin $cppminus </tmp/Cppsym\$\$ >/tmp/Cppsym2\$\$
case "\$list" in
true) awk 'NF > 5 {print substr(\$6,2,100)}' </tmp/Cppsym2\$\$ ;;
*)
sh /tmp/Cppsym2\$\$
status=\$?
;;
esac
$rm -f /tmp/Cppsym\$\$ /tmp/Cppsym2\$\$
exit \$status
EOSS
chmod +x Cppsym
$eunicefix Cppsym
echo "Your C preprocessor defines the following symbols:"
Cppsym -l $attrlist >Cppsym.true
cat Cppsym.true
rmlist="$rmlist Cppsym Cppsym.know Cppsym.true"
# Revision 1.1.1.1 1995/04/13 19:38:56 wfp5p
# Elm 2
#
: check for broken toupper/tolower
$echo ' '
case "$d_broke_ctype" in
"$define") ;;
"$undef") ;;
*)
$echo "Testing your \"ctype\" conversion routines..."
d_broke_ctype="$define"
$cat >try.c <<'EOF'
#include <stdio.h>
#include <ctype.h>
#define my_tolower(c) (isupper(c) ? (c) - 'A' + 'a' : (c))
#define my_toupper(c) (islower(c) ? (c) - 'a' + 'A' : (c))
main()
{
int i;
for (i = 1 ; i <= 0x7F ; ++i) {
if (my_tolower(i) != tolower(i) || my_toupper(i) != toupper(i))
exit(1);
}
exit(0);
}
EOF
$cc $ccflags -o try try.c >/dev/null 2>&1 \
&& ./try >/dev/null 2>&1 && d_broke_ctype="$undef"
rm -f try.c try.o try core
;;
esac
case "$d_broke_ctype" in
"$define") $echo "Using our own \"ctype\" conversions." ;;
"$undef") $echo "Using standard system \"ctype\" conversions." ;;
esac
# Revision 1.1.1.1 1995/04/13 19:38:54 wfp5p
# Elm 2
#
: check for cuserid function
set cuserid d_cuserid
eval $inlibc
echo " "
if $contains flock libc.list >/dev/null 2>&1; then
echo 'flock() found.'
if $contains EWOULDBLOCK /usr/include/errno.h > /dev/null 2>&1; then
has_flock="$define"
echo 'flock locking available.'
elif $contains EWOULDBLOCK /usr/include/sys/errno.h > /dev/null 2>&1; then
has_flock="$define"
echo 'flock locking available.'
elif $contains EWOULDBLOCK /usr/include/asm/errno.h > /dev/null 2>&1; then
has_flock="$define"
echo 'flock locking available.'
else
has_flock="$undef"
echo 'flock locking not available.'
d_flock="$undef"
fi
else
has_flock="$undef"
d_flock="$undef"
fi
if $contains F_SETLK /usr/include/sys/fcntl.h >/dev/null 2>&1; then
echo 'F_SETLK found, fcntl locking available'
has_fcntl="$define"
elif $contains F_SETLK /usr/include/sys/fcntlcom.h >/dev/null 2>&1; then
echo 'F_SETLK found, fcntl locking available'
has_fcntl="$define"
elif $contains F_SETLK /usr/include/sys/file.h >/dev/null 2>&1; then
echo 'F_SETLK found, fcntl locking available'
has_fcntl="$define"
elif $contains F_SETLK /usr/include/fcntl.h >/dev/null 2>&1; then
echo 'F_SETLK found, fcntl locking available'
has_fcntl="$define"
elif $contains F_SETLK /usr/include/asm/fcntl.h >/dev/null 2>&1; then
echo 'F_SETLK found, fcntl locking available'
has_fcntl="$define"
else
echo 'F_SETLK not found, fcntl locking not available'
has_fcntl="$undef"
d_fcntlock="$undef"
fi
if $test "$has_flock" = "$define" -o "$has_fcntl" = "$define"; then
$cat <<EOM
Mail Transport Agents (sendmail, etc.) and Mail User Agents (Elm) can
use a variety of file locking protocols. Based on your system type,
usage of a network, and MTA/MUAs in use, you may want to configure more
than one of the following Mail Locking Protocols. It is recommended
that you use as many as are possible on your system to avoid problems.
All systems can support the dot locking method (.lock files).
Available locking protocols:
dot locking (.lock)
EOM
if $test "$has_flock" = "$define"; then
echo ' flock style locking'
fi
if $test "$has_fcntl" = "$define"; then
echo ' fcntl style locking'
fi
if $test "$has_flock" = "$define" -a "$has_fcntl" = "$define"; then
$cat <<EOM
On some systems, flock style locking and fcntl style locking use the
same underlying calls so both are not only not necessary, but may
INTERFERE WITH EACH OTHER (so choose only one). On other systems they are
distinct and both should be used. You will have to consult the documentation
for your operating system to determine in which class your system resides.
EOM
fi
case "$d_dotlock" in
"$define") dflt=y;;
"$undef") dflt=n;;
*) dflt=y;;
esac
rp="Would you like to use dot lock style mail spool locking? [$dflt]"
$echo $n "$rp $c"
. myread
case "$ans" in
y*) d_dotlock="$define";;
*) d_dotlock="$undef";;
esac
if $test "$has_flock" = "$define"; then
case "$d_flock" in
"$define") dflt=y;;
"$undef") dflt=n;;
*)
if $test "$is_solaris" = "y" ; then
dflt=n
else
dflt=y
fi
;;
esac
rp="Would you like to use flock style mail spool locking? [$dflt]"
$echo $n "$rp $c"
. myread
case "$ans" in
y*) d_flock="$define";;
*) d_flock="$undef";;
esac
fi
if $test "$has_fcntl" = "$define"; then
case "$d_fcntlock" in
"$define") dflt=y;;
"$undef") dflt=n;;
*) dflt=y;;
esac
rp="Would you like to use fcntl style mail spool locking? [$dflt]"
$echo $n "$rp $c"
. myread
case "$ans" in
y*) d_fcntlock="$define";;
*) d_fcntlock="$undef";;
esac
fi
else
d_dotlock="$define"
echo 'Dot lock style locking will be used'
fi
if $test -d /usr/spool/locks ; then
lock_dir=/usr/spool/locks
elif $test -d /usr/spool/uucp ; then
lock_dir=/usr/spool/uucp
elif $test -d /var/spool/locks ; then
lock_dir=/var/spool/locks
elif $test -d /var/spool/uucp ; then
lock_dir=/var/spool/uucp
else
lock_dir=/tmp
fi
echo " "
echo "Non-mailbox locks will use the $lock_dir directory"
echo " "
# Revision 1.1.1.1 1995/04/13 19:38:54 wfp5p
# Elm 2
#
: now get the host name
if $test "$autohostname" != "$undef" -o "$hostname" = "" ; then
autohostname="$define"
echo " "
echo "Figuring out host name for forwarding purposes..."
echo 'Maybe "hostname" will work...'
if ans=`sh -c hostname 2>&1` ; then
hostname=$ans
phostname=hostname
else
if xenix; then
echo 'Oh, dear. Maybe "/etc/systemid" is the key...'
if ans=`cat /etc/systemid 2>&1` ; then
hostname=$ans
phostname='cat /etc/systemid'
echo "Whadyaknow. Xenix always was a bit strange..."
else
echo 'No, maybe "uuname -l" will work...'
if ans=`sh -c '$uuname -l' 2>&1` ; then
hostname=$ans
phostname='$uuname -l'
else
echo 'Strange. Maybe "uname -n" will work...'
if ans=`sh -c '$uname -n' 2>&1` ; then
hostname=$ans
phostname='$uname -n'
else
echo 'Oh well, maybe I can mine it out of whoami.h...'
if ans=`sh -c $contains' sysname /usr/include/whoami.h' 2>&1` ; then
hostname=`echo "$ans" | $sed 's/^.*"\(.*\)"/\1/'`
phostname="sed -n -e '"'/sysname/s/^.*\"\\(.*\\)\"/\1/{'"' -e p -e q -e '}' </usr/include/whoami.h"
else
case "$hostname" in
'') echo "Does this machine have an identity crisis or something?"
phostname=''
;;
*) echo "Well, you said $hostname before...";;
esac
fi
fi
fi
fi
else
if $test -r /etc/systemid ; then
echo "What is a non-Xenix system doing with /etc/systemid?"
fi
echo 'No, maybe "uuname -l" will work...'
if $test -n "$uuname" && ans=`sh -c "$uuname -l" 2>&1` ; then
hostname=$ans
phostname="$uuname -l"
else
echo 'Strange. Maybe "uname -n" will work...'
if $test -n "$uname" && ans=`sh -c "$uname -n" 2>&1` ; then
hostname=$ans
phostname="$uname -n"
else
if ans=`cat /etc/systemid 2>&1` ; then
hostname=$ans
phostname='cat /etc/systemid'
echo "Well, I'll use the systemid file anyway..."
else
echo 'Oh well, maybe I can mine it out of whoami.h...'
if ans=`sh -c $contains' sysname /usr/include/whoami.h' 2>&1` ; then
hostname=`echo "$ans" | $sed 's/^.*"\(.*\)"/\1/'`
phostname="sed -n -e '"'/sysname/s/^.*\"\\(.*\\)\"/\1/{'"' -e p -e q -e '}' </usr/include/whoami.h"
else
case "$hostname" in
'') echo "Does this machine have an identity crisis or something?"
phostname=''
;;
*) echo "Well, you said $hostname before...";;
esac
fi
fi
fi
fi
fi
fi
else
echo "Last time you said the hostname was $hostname"
fi
: you do not want to know about this
set $hostname
hostname=$1
: translate upper to lower if necessary
case "$hostname" in
*[A-Z]*)
hostname=`echo $hostname | tr '[A-Z]' '[a-z]'`
echo "(Normalizing case in your host name)"
;;
esac
: verify guess
if $test "$hostname" ; then
dflt=y
echo 'Your host name appears to be "'$hostname'".'
$echo $n "Is this correct? [$dflt] $c"
rp="Sitename is $hostname? [$dflt]"
. myread
case "$ans" in
y*) ;;
*) hostname='' ;;
esac
fi
: bad guess or no guess
while $test "X$hostname" = X ; do
dflt=''
rp="Please type the (one word) name of your host:"
$echo $n "$rp $c"
. myread
hostname="$ans"
autohostname="$undef"
done
echo " "
: These days, some places do strange things with virtual delivery.
: like shoving all email to a domain into a single mailbox
cat <<EOM
Some sites have a special header, that tells you who an email is "really"
to., eg "Really-To:" or "X-Rcpt-To:".
(In other words, the "envelope" destination).
If you'd like support for this kind of header, enter the header name now.
Or enter "none"
EOM
dflt="$rcpthdr"
$echo $n "Name of Rcpt-To header? [$dflt] $c"
. myread
case $ans in
"")
rcpthdr='none'
;;
'none')
rcpthdr='none'
;;
*:)
rcpthdr=$ans
;;
*)
$echo "Automatically adding expected ':'"
rcpthdr="$ans"":"
;;
esac
if [ "$rcpthdr" = "none" ] ; then
d_rcpthdr="$undef"
else
d_rcpthdr="$define"
fi
: see if there is a whoami file
echo " "
if $test -r /usr/include/whoami.h ; then
d_whoami="$define"
echo "whoami.h found."
else
d_whoami="$undef"
fi
# Revision 1.1.1.1 1995/04/13 19:38:54 wfp5p
# Elm 2
#
: see how we will look up host name
echo " "
d_douname="$undef"
d_gethname="$undef"
if $contains '^gethostname$' libc.list >/dev/null 2>&1 ; then
echo "gethostname() found."
d_gethname="$define"
ans=gethostname
elif xenix; then
if $test -n "$uname"; then
u_name=`$uname -n`
else
u_name=
fi
if $test -n "$line"; then
if $test -r /etc/systemid; then
s_name=`$line < /etc/systemid`
else
s_name=
fi
else
s_name=
fi
if $test -n "$u_name"; then
if $test "$u_name" = "$s_name"; then
cat <<EOM
On Xenix, UUCP uses the name found in /etc/systemid, while uname()
returns the name compiled into the operating system via configure.
Elm needs the UUCP name, and currently these two match. However, they
need not match. Be sure to always keep these two names in sync.
Since they match, Elm will not consider that the Xenix uname function
is broken. However, if you are not always able to make them
match, answer the compile in hostname question Yes.
EOM
if $contains '^uname$' libc.list >/dev/null 2>&1 ; then
echo "uname() found."
d_douname="$define"
ans=uname
fi
else
cat <<EOM
On Xenix, UUCP uses the name found in /etc/systemid, while uname()
returns the name compiled into the operating system via configure.
Your /etc/systemid file contains $s_name.
But uname returns $u_name.
Since Elm needs the UUCP name, and currently these two do not match,
Elm will assume Xenix uname() is broken.
EOM
fi
else
cat <<EOM
On Xenix, UUCP uses the name found in /etc/systemid, while uname()
returns the name compiled into the operating system via configure.
Elm needs the UUCP name, and currently the compiled in name is undefined.
Since mail needs the UUCP name, and these two need not match, Elm will
assume Xenix uname() is broken.
EOM
fi
elif $contains '^uname$' libc.list >/dev/null 2>&1 ; then
echo "uname() found."
d_douname="$define"
ans=uname
fi
case "$d_douname$d_gethname" in
*define*)
case "$ign_hname" in
'') case "$d_host_comp" in
"$define") dflt=y;;
*) dflt=n;;
esac;;
y) dflt=y;;
*) dflt=n;;
esac
cat <<EOM
Every now and then someone has a $ans() that lies about the hostname
but can't be fixed for political or economic reasons. Would you like to
EOM
rp="pretend $ans() isn't there and maybe compile in the hostname? [$dflt]"
$echo $n "$rp $c"
. myread
case "$ans" in
y*) ign_hname=y
d_douname="$undef"
d_gethname="$undef"
d_host_comp="$define"
$echo $n "Okay... $c"
;;
*) ign_hname=n
d_host_comp="$undef"
;;
esac
;;
*)
$cat <<EOT
There is no gethostname() or uname() on this system. The hostname will
have to be compiled in. It can be overridden in the global elm.rc file
in the library directory to specify hostname, hostfullname and hostdomain.
EOT
d_host_comp="$define"
;;
esac
: where do we get termlib routines from
echo " "
ans=`loc libcurses.a x $libpth`
if $test "$ans" = x; then
ans=`loc Slibcurses.a x $libpth`
fi
case "$ans" in
/*)
ar t $ans >grimble
if $contains tputs.o grimble >/dev/null 2>&1; then
termlib='-lcurses'
d_havetlib="$define"
echo "Terminfo library found."
else
ans=x
fi
rm -f grimble
;;
esac
case "$ans" in
x)
ans=`loc libtermlib.a x $libpth`
if $test "$ans" = x; then
ans=`loc Slibtermlib.a x $libpth`
fi
case "$ans" in
/usr/lib*|/lib*)
termlib='-ltermlib'
d_havetlib="$define"
echo "Termlib library found."
;;
/*)
termlib="$ans"
d_havetlib="$define"
echo "Termlib library found."
;;
*)
ans=`loc libtermcap.a x $libpth`
if $test "$ans" = x; then
ans=`loc Slibtermcap.a x $libpth`
fi
case "$ans" in
/usr/lib*|/lib*)
termlib='-ltermcap'
d_havetlib="$define"
echo "Termcap library found."
;;
/*)
termlib="$ans"
d_havetlib="$define"
echo "Termcap library found."
;;
*)
case "$termlib" in
'')
dflt=y
rp="Your system appears to NOT have termlib-style routines. Is this true? [$dflt]"
$echo $n "$rp $c"
. myread
case "$ans" in
n*|f*) d_havetlib="$define"
echo "Then where are the termlib-style routines kept (specify either -llibname"
$echo $n " or full pathname (~name ok))? $c"
rp='Specify termlib:'
. myread
termlib=`filexp $ans`
;;
*) d_havetlib="$undef"
termlib=''
echo "You will have to play around with term.c then."
;;
esac
echo " "
;;
*) echo "You said termlib was $termlib before."
;;
esac
;;
esac
;;
esac
;;
esac
: see if strings.h is in /usr/include or /usr/include/sys
echo " "
strings=`loc string.h "" /usr/include $includepath`
if $test -z "$strings"; then
strings=`loc strings.h "" /usr/include $includepath`
fi
while $test -z "$strings"; do
echo " "
dflt=''
rp="What is the full path name of the include file directory? []"
$echo $n "$rp $c"
. myread
includepath=`filexp $ans`
if $test -d "$includepath"; then
strings=`loc string.h "" /usr/include $includepath`
if $test -z "$strings"; then
strings=`loc strings.h "" /usr/include $includepath`
fi
if $test -z "$strings"; then
$cat <<EOM
Include file string.h or strings.h not found in $includepath.
Elm requires string.h on USG type systems or strings.h on BSD type
systems. Please specify the directory where one of these files can
be found.
EOM
fi
else
echo "Directory $includepath not found"
fi
done
strings_f=`$expr "$strings" : ".*/\(.*\)"`
if $test "$strings_f" = "string.h"; then
d_strings="$undef"
echo "Using string.h instead of strings.h"
else
d_strings="$define"
echo "Using strings.h instead of string.h"
fi
pwdinsys=`loc pwd.h "" /usr/include $includepath`
if $test -z "$pwdinsys"; then
d_pwdinsys="$define"
else
d_pwdinsys="$undef"
fi
# Revision 1.1.1.1 1995/04/13 19:38:55 wfp5p
# Elm 2
#
: index or strcpy
echo " "
case "$d_index" in
"$define") dflt=n;;
*) dflt=y;;
esac
if $contains '^index$' libc.list >/dev/null 2>&1 ; then
if $contains '^strchr$' libc.list >/dev/null 2>&1 ; then
if $contains strchr "$strings" >/dev/null 2>&1 ; then
if $contains index "$strings" >/dev/null 2>&1 ; then
# has index, strchr, and index and strchr in strings.h
echo "Your system has both index() and strchr(). Shall I use"
rp="index() rather than strchr()? [$dflt]"
$echo $n "$rp $c"
. myread
case "$ans" in
n*) d_index="$define" ;;
*) d_index="$undef" ;;
esac
else
# has index, strchr, and strchr in strings.h
d_index="$define"
echo "strchr() found."
fi
else
# has index, strchr, and no strchr in strings.h
d_index="$undef"
echo "index() found."
fi
else
# has only index, no strchr, strings.h is a moot point
d_index="$undef"
echo "index() found."
fi
else
if $contains '^strchr$' libc.list >/dev/null 2>&1 ; then
d_index="$define"
echo "strchr() found."
else
echo "No index() or strchr() found!"
d_index="$undef"
fi
fi
# Revision 1.1.1.1 1995/04/13 19:38:54 wfp5p
# Elm 2
#
case "$d_mmdf" in
"$define") dflt=y;;
"$undef") dflt=n;;
*) if $test -f "$submit"; then
dflt=y
else
dflt=n
fi
;;
esac
$cat <<EOM
Some systems run MMDF as their Mail Transport Agent. MMDF uses a
different way of delimiting messages in the mailbox files. Other
systems don't run MMDF but use the MMDF separator in their mailbox
files. The MMDF separator is usually a series of four Control A's.
$package needs to know if this system uses the MMDF style message
separator in its mailbox files.
EOM
rp="Does this system use MMDF style message separator? [$dflt]"
$echo $n "$rp $c"
. myread
case "$ans" in
y*) d_mmdf="$define";;
*) d_mmdf="$undef";;
esac
# Revision 1.1.1.1 1995/04/13 19:38:55 wfp5p
# Elm 2
#
: determine mail delivery agent for Elm to use
case "$mailer" in
'')
if $test "$d_mmdf" = "$define" -a -f "$execmail"; then
dflt="$execmail"
elif $test "$d_mmdf" = "$define" -a -f "$submit"; then
dflt="$submit"
elif $test -f "$sendmail"; then
dflt="$sendmail"
elif $test -f "$rmail"; then
dflt="$rmail"
elif $test -f /bin/mail; then
dflt=/bin/mail
else
dflt=$mail
fi
;;
*) dflt="$mailer";;
esac
cont=true
while $test "$cont" ; do
echo " "
echo "Give the full path name of the program used to deliver mail on your"
$echo $n "system: [$dflt] $c"
rp="Preferred mail delivery agent: [$dflt]"
. myread
mailer="$ans"
if $test -f "$ans"; then
cont=''
else
if $test "$fastread" = yes; then
dflt=y
else
dflt=n
fi
echo "Mail delivery agent $ans doesn't exist."
rp="Use that name anyway? [$dflt]"
$echo $n "$rp $c"
. myread
dflt=''
case "$ans" in
y*) cont='';;
esac
fi
done
if $test "$mailer" != "$sendmail"; then
sendmail=''
fi
if $test "$mailer" != "$submit"; then
submit=''
fi
if $test "$mailer" != "$execmail"; then
execmail=''
fi
# Revision 1.1.1.1 1995/04/13 19:38:55 wfp5p
# Elm 2
#
: check for internet mailer
case "$d_internet" in
"$define") dflt=y;;
"$undef") dflt=n;;
*) if $test -f "$sendmail"; then
dflt=y
elif $test -f "$submit"; then
dflt=y
elif $test -f "$smail"; then
dflt=y
else
dflt=n
fi
;;
esac
$cat <<EOM
Some newer mailers can deliver mail to addresses of the INTERNET
persuasion, such as user@host.domain. Other older mailers require the
complete uucp ! path to the destination to be specified in the address.
EOM
rp="Does your mailer understand INTERNET addresses? [$dflt]"
$echo $n "$rp $c"
. myread
case "$ans" in
y*) d_internet="$define";;
*) d_internet="$undef";;
esac
: see if locale.h is in /usr/include
echo " "
dflt=`loc locale.h "" /usr/include $includepath`
if $test -z "$dflt"; then
echo "locale.h not found, $package will not call setlocale"
d_locale=$undef
else
echo "locale.h found, $package will call setlocale"
d_locale=$define
fi
: see if nl_types.h is in /usr/include
echo " "
dflt=`loc nl_types.h "" /usr/include $includepath`
if $test -z "$dflt"; then
echo "nl_types.h not found, $package will use its own"
d_nl_types=$undef
else
echo "nl_types.h found, $package will include the systems version"
d_nl_types=$define
fi
: see if catgets is in the libraries
set catgets d_msgcat
eval $inlibc
if $test "$d_msgcat" = "$define"; then
echo "Message catalog routines found"
cat <<EOM
The system has the message catalog routines in its library. These routines
are new, and on some systems do not function properly. Also, $package expects
that these routines are X/Open compliant.
EOM
case "$d_usenls" in
"$define") dflt=y;;
"$undef") dflt=n;;
*) dflt=n;;
esac
rp="Should $package use its own routines instead of the systems NLS routines? [$dflt]"
$echo $n "$rp $c"
. myread
case "$ans" in
y*) d_usenls="$define"
d_nl_types=$undef;;
*) d_usenls="$undef";;
esac
else
echo "Message catalog routines not found, $package will use its own"
if $test "$d_usenls" = ""; then
d_usenls="$define"
fi
fi
: see if stdlib.h is in includepath
echo " "
i_stdlib=`loc stdlib.h "" /usr/include $includepath`
if $test -n "$i_stdlib"; then
echo "Found <stdlib.h>"
i_stdlib="$define"
else
echo "Did not find <stdlib.h>"
i_stdlib="$undef"
fi
: see if malloc is void * or char *
echo " "
case "$d_mallocvoid" in
"$define") dflt=y;;
"$undef") dflt=n;;
*) if $test "$i_stdlib" = "$define" ; then
cat >usemymalloc.c <<'END'
#include <stdlib.h>
void *malloc();
END
else
cat >usemymalloc.c <<'END'
#include <malloc.h>
void *malloc();
END
fi
if $cc $ccflags -c usemymalloc.c >/dev/null 2>&1; then
d_mallocvoid=$define
echo "Your system wants malloc to return void *, it would seem."
else
d_mallocvoid=$undef
echo "Your system wants malloc to return char *, it would seem."
fi
;;
esac
echo " "
: see if memcpy exists
set memcpy d_memcpy
eval $inlibc
# Revision 1.1.1.1 1995/04/13 19:38:55 wfp5p
# Elm 2
#
case "$d_noxheader" in
"$define") dflt=y;;
"$undef") dflt=n;;
*) dflt=n;;
esac
$cat <<EOM
Some sites do not like to see the mail header "X-mailer:" in outgoing
messages. If you choose, you may disable these headers. However, it
is strongly urged to leave these headers in the mail to assist in
tracking down problems.
EOM
rp="Would you like to disable the X-mailer: headers? [$dflt]"
$echo $n "$rp $c"
. myread
case "$ans" in
y*) d_noxheader="$define";;
*) d_noxheader="$undef";;
esac
# Revision 1.1.1.1 1995/04/13 19:38:55 wfp5p
# Elm 2
#
: check for "kill(pid, 0)"
echo " "
case "$d_pidcheck" in
"$define") ;;
"$undef") ;;
*)
echo "Checking to see if kill(pid, 0) works..."
$cat >try.c <<'EOCP'
main()
{
int pid, status0, status9;
if ((pid = fork()) == 0)
{
sleep(30);
exit(1);
}
status0 = kill(pid, 0);
status9 = kill(pid, 9);
exit(status0 == status9);
}
EOCP
if $cc try.c -o try >/dev/null 2>&1 ; then
if try >/dev/null 2>&1 ; then
echo "Your system does not support kill(pid, 0)..."
d_pidcheck="$undef"
else
d_pidcheck="$define"
echo "Your system supports kill(pid, 0)..."
fi
else
echo "Your system does not support kill(pid, 0)..."
d_pidcheck="$undef"
fi
$rm -f try.c try.o try
;;
esac
# Revision 1.1.1.1 1995/04/13 19:38:55 wfp5p
# Elm 2
#
: see if BSD sigset exists
echo " "
set sigset d_sigset
eval $inlibc
: See if sigaction exists -- POSIX has highest priority in match
if $contains sigaction libc.list >/dev/null 2>&1; then
echo "sigaction() found."
d_sigaction="$define"
d_sigset="$undef"
d_sigvec="$undef"
d_sigvectr="$undef"
else
d_sigaction="$undef"
: see if sigvector exists -- since sigvec will match the substring
if $contains sigvector libc.list >/dev/null 2>&1; then
echo 'sigvector() found--you must be running HP-UX.'
d_sigvectr="$define"
d_sigvec="$define"
else
: try the original name
d_sigvectr="$undef"
if $contains sigvec libc.list >/dev/null 2>&1; then
echo 'sigvec() found.'
d_sigvec="$define"
else
case "$d_sigset" in
"$define")
echo 'sigvec() not found';;
*)
echo 'sigvec() not found--race conditions with signals may occur.';;
esac
d_sigvec="$undef"
fi
fi
fi
: see if sigprocmask exists -- POSIX has highest priority in match
echo " "
if $contains sigprocmask libc.list >/dev/null 2>&1; then
echo 'sigprocmask() found.'
d_sigprocmask="$define"
d_sigblock="$undef"
d_sighold="$undef"
else
d_sigprocmask="$undef"
: see if sigblock exists
if $contains sigblock libc.list >/dev/null 2>&1; then
echo 'sigblock() found.'
d_sigblock="$define"
d_sighold="$undef"
else
: see if sighold exists
d_sigblock="$undef"
if $contains sighold libc.list >/dev/null 2>&1; then
echo 'sighold() found.'
d_sighold="$define"
else
echo 'No signal masking functions found.'
d_sighold="$undef"
fi
fi
fi
# Revision 1.1.1.1 1995/04/13 19:38:54 wfp5p
# Elm 2
#
: see if we should include time.h, sys/time.h, or both
cat <<'EOM'
Testing to see if we should include <time.h>, <sys/time.h> or both.
I'm now running the test program...
EOM
$cat >try.c <<'EOCP'
#ifdef I_TIME
#include <time.h>
#endif
#ifdef I_SYSTIME
#ifdef SYSTIMEKERNEL
#define KERNEL
#endif
#include <sys/time.h>
#endif
main()
{
struct tm foo;
#ifdef S_TIMEVAL
struct timeval bar;
#endif
if (foo.tm_sec == foo.tm_sec)
exit(0);
#ifdef S_TIMEVAL
if (bar.tv_sec == bar.tv_sec)
exit(0);
#endif
exit(1);
}
EOCP
flags=''
for s_timeval in '-DS_TIMEVAL' ''; do
for d_systimekernel in '' '-DSYSTIMEKERNEL'; do
for i_time in '-DI_TIME' ''; do
for i_systime in '-DI_SYSTIME' ''; do
case "$flags" in
'') echo "Trying $i_time $i_systime $d_systimekernel $s_timeval"
if $cc $ccflags $i_time $i_systime $d_systimekernel $s_timeval \
try.c -o try >/dev/null 2>&1 ; then
set X $i_time $i_systime $d_systimekernel $s_timeval
shift
flags="$*"
echo "Succeeded with $flags"
fi
;;
esac
done
done
done
done
case "$flags" in
*SYSTIMEKERNEL*) d_systimekernel="$define";;
*) d_systimekernel="$undef";;
esac
case "$flags" in
*I_TIME*) i_time="$define";;
*) i_time="$undef";;
esac
case "$flags" in
*I_SYSTIME*) i_systime="$define";;
*) i_systime="$undef";;
esac
$rm -f try.c try
# Revision 1.1.1.1 1995/04/13 19:38:54 wfp5p
# Elm 2
#
: check for valid reply/to fields
case "$d_useembed" in
"$define") dflt=y;;
"$undef") dflt=n;;
*) if $test "$d_internet" = "$define" ; then
dflt=y
else
dflt=n
fi
;;
esac
$cat <<EOM
One of the more annoying quirks of the UUCP network and various other
systems that interact with it are that everyone seems to have different
ideas about how to do routing, etc. Therefore, a lot of times e-mail
will arrive from off site with corrupt, unusable "Reply-To:" and "From:"
fields. This next question relates to whether your site is liable to
get mangled fields or not...
Does your site receive e-mail with valid "Reply-To:" and "From:" fields?
EOM
$echo $n "Use Reply-To: and From: addresses? [$dflt] $c"
rp="Are Reply-to: and From: addresses reliable? [$dflt]"
. myread
case "$ans" in
y*) d_useembed="$define";;
*) d_useembed="$undef";;
esac
: see if utime.h is in includepath
echo " "
i_utime=`loc utime.h "" /usr/include $includepath`
if $test -n "$i_utime"; then
echo "Found <utime.h>"
i_utime="$define"
i_sysutime="$undef"
else
i_sysutime=`loc sys/utime.h "" /usr/include $includepath`
if $test -n "$i_sysutime"; then
echo "Found <sys/utime.h>"
i_utime="$undef"
i_sysutime="$define"
else
echo "Did not find <utime.h> or <sys/utime.h>"
i_utime="$undef"
i_sysutime="$undef"
fi
fi
# Revision 1.1.1.1 1995/04/13 19:38:54 wfp5p
# Elm 2
#
: check for utimbuf structure
echo " "
case "$d_utimbuf" in
"$define") ;;
"$undef") ;;
*)
: Pyramid passes the att compile test but still needs the definition
if Cppsym pyr ; then
if $test "`/bin/universe`" = "att" ; then
d_utimbuf="$undef"
echo "I will use my 'utimbuf' structure..."
else
d_utimbuf="$define"
echo "You have the 'utimbuf' structure..."
fi
else
if $test "$d_utimbuf" != "$define"; then
echo "Checking to see if struct utimbuf exists."
$cat >try.c <<'EOCP'
#include <stdio.h>
#include <fcntl.h>
#include <sys/types.h>
#include <sys/stat.h>
#define far /* to keep Xenix from complaining */
#if (defined(BSD) || !defined(apollo))
# include <sys/file.h>
#endif
#ifdef I_TIME
# include <time.h>
#endif
#ifdef I_SYSTIME
# include <sys/time.h>
#endif
#ifdef BSD
# include <sys/timeb.h>
#endif
#ifdef I_UTIME
# include <utime.h>
#endif
#ifdef I_SYSUTIME
# include <sys/utime.h>
#endif
main()
{
struct utimbuf test;
test.actime = 0;
exit(1);
}
EOCP
cflags=$ccflags
if $test "$i_utime" = "$define"; then
cflags="$cflags -DI_UTIME"
fi
if $test "$i_sysutime" = "$define"; then
cflags="$cflags -DI_SYSUTIME"
fi
if $test "$i_time" = "$define"; then
cflags="$cflags -DI_TIME"
fi
if $test "$i_systime" = "$define"; then
cflags="$cflags -DI_SYSTIME"
fi
if $test "$d_bsd" = "$define"; then
cflags="$cflags -DBSD"
fi
if $cc $cflags try.c -o try >/dev/null 2>&1 ; then
d_utimbuf="$define"
echo "You have the 'utimbuf' structure..."
else
echo "I will use my 'utimbuf' structure..."
d_utimbuf="$undef"
fi
$rm -f try.c try.o try
fi
fi
;;
esac
: see if memory.h is in includepath
echo " "
i_memory=`loc memory.h "" /usr/include $includepath`
if $test -n "$i_memory"; then
echo "Found <memory.h>"
i_memory="$define"
else
echo "Did not find <memory.h>"
i_memory="$undef"
fi
: see if stdarg.h is in includepath
echo " "
i_stdarg=`loc stdarg.h "" /usr/include $includepath`
if $test -n "$i_stdarg"; then
echo "Found <stdarg.h>"
i_stdarg="$define"
else
echo "Did not find <stdarg.h>"
i_stdarg="$undef"
fi
: see if unistd.h is in includepath
echo " "
i_unistd=`loc unistd.h "" /usr/include $includepath`
if $test -n "$i_unistd"; then
echo "Found <unistd.h>"
i_unistd="$define"
else
echo "Did not find <unistd.h>"
i_unistd="$undef"
fi
# Revision 1.1.1.1 1995/04/13 19:38:54 wfp5p
# Elm 2
#
: see if signal is declared as pointer to function returning int or void
echo " "
$cppstdin $cppflags < /usr/include/signal.h >$$.tmp
if $contains 'void.*[^s]signal' $$.tmp >/dev/null 2>&1 ; then
echo "You have void (*signal())() instead of int."
sigtype="void"
elif $contains 'int.*[^sg]signal' $$.tmp >/dev/null 2>&1 ; then
echo "You have int (*signal())() instead of void."
sigtype="int"
elif $contains 'extern[ ]*[(\*]*signal' $$.tmp >/dev/null 2>&1 ; then
echo "You have int (*signal())() instead of void."
sigtype="int"
elif $contains 'sigfunc_t.*[^s]signal' $$.tmp >/dev/null 2>&1 ; then
echo "You have sigfunc_t (*signal())() instead of int."
sigtype="sigfunc_t"
elif $test -n "$sigtype"; then
echo $n "As you already told me, signal handlers return $sigtype"
else
echo "I can't determine whether signal handlers return void or int..."
echo "I'm assuming they return void like ANSI and POSIX want."
echo "If not, you will have to change sigtype to match the typedef"
echo "used by the signal handlers. Change it config.sh at the edit "
echo "question at the end of Configure."
sigtype="void"
fi
$rm -f $$.tmp
# Revision 1.1.1.1 1995/04/13 19:38:55 wfp5p
# Elm 2
#
: determine where public libraries go
# Revision 1.1.1.1 1995/04/13 19:38:55 wfp5p
# Elm 2
#
: determine where mail is spooled
case "$mailhome" in
'')
base=`loc . /usr/spool/mail /var/spool/mail /var/mail /usr/mail`
dflt=$base/'%u'
;;
*) dflt="$mailhome"
;;
esac
cont=true
while $test "$cont" ; do
$echo " "
$echo "NOTE: '%u' expands to the users login name. It MUST be present."
$echo "Normal type of location looks like /var/mail/%u"
$echo " you can also use '%f' as the first letter of the username. "
$echo " EG /var/mail/%f/%u"
rp="Where is yet-to-be-read mail spooled? [$dflt]"
$echo $n "$rp $c"
. myread
# We used to have a long nice check for "maildir" here. but that
# isn't going to be easy any more.
mailhome="$ans"
: check if we have the "traditional" spool dir
maildir=`$expr "$mailhome" : "\([/A-Za-z_0-9]*\)/%u$"`
if $test "$maildir" = "" ; then
: non-traditional mail delivery. %u is not at END.
: So no point checking if maildir exists
# But we still need to verify that %u is THERE!
hasU=`$expr "$mailhome" : ".*\(%u\)"`
if $test "$hasU" = "%u" ; then
cont=''
else
$echo "No '%u' present!"
fi
elif $test -d "$maildir"; then
# mailspool dir exists. Good!
cont=''
else
if $test "$fastread" = yes; then
dflt=y
else
dflt=n
fi
rp="Directory $maildir doesn't exist. Use that name anyway? [$dflt]"
$echo $n "$rp $c"
. myread
dflt=''
case "$ans" in
y*) cont='';;
esac
fi
done
: determine the group of the mail directory and what group elm should use
: IFFF we are using a mailspool dir
if $test "$maildir" != "" ; then
mailperms=`$ls -lgd $maildir/.`
mailgrp=`$expr "$mailperms" : "[ld][rwxstS-]*[ 0123456789]*\(.*\)"`
: now mailgrp is either user group size mon day time/year name
: or group size mon day time/year name
field1=`$expr "$mailgrp" : "\([A-Za-z_0-9]*\).*"`
field2=`$expr "$mailgrp" : "[A-Za-z_0-9]* *\([A-Za-z_0-9]*\).*"`
numcheck=`$expr "$field2" : "\([0-9]*\).*"`
if $test "$numcheck" = "" ; then
mailgrp=$field2
else
mailgrp=$field1
fi
case "$mailgrp" in
'')
mailgrp=mail
;;
esac
echo " "
echo "Mail group is $mailgrp"
: Check access perms on mail directory, from prior execution of ls
: If publically writable, then assume we will NOT be running
: setgid.
mailpublic=`$expr "$mailperms" : "d[rwxstT]*\([w-][tx-]\) .*"`
if $test "$d_setgid" = "" ; then
case "$mailpublic" in
wt)
$echo mail dir is publicaly writable. Filter will not be setgid
d_setgid="$undef"
;;
wx)
$echo "WARNING: mail directory does not have 't' flag set, yet is world-writable"
$echo "(Filter will not be setgid)"
$echo "$mailperms"
d_setgid="$undef"
;;
"")
$echo "No existing mail directory. Assuming filter will NOT be setgid."
d_setgid="$undef"
;;
*)
$echo "Spool dir does NOT have writable flag. Filter will be setgid."
d_setgid="$define"
;;
esac
fi
else
# we dont have a default global spool dir. Assume not setgid
if $test "$d_setgid" = "" ; then
d_setgid="$undef"
fi
#but just in case they say yes, default to the reasonable assumption
#bug right now: they arent asked. oops.
mailgrp=mail
fi
mailermode=755
case "$d_setgid" in
"$define")
mailermode=2755
cat <<EOM
Since Filter is being installed as a setgid program, it must be installed
by root, or a user able to set the setgid bit.
EOM
esac
# Revision 1.1.1.1 1995/04/13 19:38:56 wfp5p
# Elm 2
#
: if pmake exists, allow its use for parallel make
if $test -f "$pmake" ; then
case "$use_pmake" in
n) dflt=n;;
*) dflt=y;;
esac
$cat <<EOM
The executable file pmake was found on this system. Usually this
file indicates a parallel make, which executes much faster. Should
this system use the pmake command as its make command?
EOM
rp="Does this system use pmake as its make? [$dflt]"
$echo $n "$rp $c"
. myread
case "$ans" in
y*) use_pmake=y
make="$pmake";;
*) use_pmake=n;;
esac
else
use_pmake=n
fi
# Revision 1.1.1.1 1995/04/13 19:38:54 wfp5p
# Elm 2
#
: the "config.over" file can be used to patch configuration changes
if test -f ../config.over ; then
echo " "
echo "I have found a \"config.over\" file."
dflt=y
rp="Do you want to load the \"config.over\" file? [$dflt]"
$echo $n "$rp $c"
. myread
case "$ans" in
n*) echo "OK, I'll ignore it."
;;
*) . ../config.over
echo "Configuration override changes have been loaded from config.over."
;;
esac
fi
: clean up one time files
for file in OneTime.PL* ; do
if test -f "$file" ; then
echo "Removing patch cleanup script $file . . ."
rm -f $file
fi
done
echo " "
echo "End of configuration questions."
echo " "
: create config.sh file
echo " "
if test -d ../UU; then
cd ..
fi
echo "Creating config.sh..."
$spitshell <<EOT >config.sh
$startsh
# config.sh
# This file was produced by running the Configure script.
bin='$bin'
contains='$contains'
cppstdin='$cppstdin'
cppminus='$cppminus'
d_havetlib='$d_havetlib'
termlib='$termlib'
d_memcpy='$d_memcpy'
d_whoami='$d_whoami'
n='$n'
c='$c'
package='$package'
startsh='$startsh'
d_eunice='$d_eunice'
define='$define'
eunicefix='$eunicefix'
loclist='$loclist'
expr='$expr'
sed='$sed'
echo='$echo'
cat='$cat'
rm='$rm'
mv='$mv'
cp='$cp'
tail='$tail'
tr='$tr'
mkdir='$mkdir'
sort='$sort'
uniq='$uniq'
grep='$grep'
trylist='$trylist'
test='$test'
inews='$inews'
ispell='$ispell'
egrep='$egrep'
more='$more'
pg='$pg'
Mcc='$Mcc'
vi='$vi'
mailx='$mailx'
mail='$mail'
cpp='$cpp'
perl='$perl'
emacs='$emacs'
ls='$ls'
rmail='$rmail'
sendmail='$sendmail'
shar='$shar'
smail='$smail'
submit='$submit'
tbl='$tbl'
troff='$troff'
nroff='$nroff'
uname='$uname'
uuname='$uuname'
line='$line'
chgrp='$chgrp'
chmod='$chmod'
lint='$lint'
sleep='$sleep'
pr='$pr'
tar='$tar'
ln='$ln'
lpr='$lpr'
lp='$lp'
touch='$touch'
make='$make'
date='$date'
csh='$csh'
pmake='$pmake'
mips='$mips'
col='$col'
pack='$pack'
compress='$compress'
execmail='$execmail'
libswanted='$libswanted'
d_broke_ctype='$d_broke_ctype'
d_chown_neg1='$d_chown_neg1'
d_cuserid='$d_cuserid'
d_flock='$d_flock'
d_dotlock='$d_dotlock'
d_fcntlock='$d_fcntlock'
lock_dir='$lock_dir'
has_flock='$has_flock'
has_fcntl='$has_fcntl'
d_gethname='$d_gethname'
d_douname='$d_douname'
d_host_comp='$d_host_comp'
ign_hname='$ign_hname'
d_index='$d_index'
d_internet='$d_internet'
d_locale='$d_locale'
d_nl_types='$d_nl_types'
d_msgcat='$d_msgcat'
d_usenls='$d_usenls'
d_mallocvoid='$d_mallocvoid'
d_mmdf='$d_mmdf'
d_noxheader='$d_noxheader'
d_pidcheck='$d_pidcheck'
d_setgid='$d_setgid'
d_savegrpmboxid='$d_savegrpmboxid'
mailermode='$mailermode'
d_sigvec='$d_sigvec'
d_sigvectr='$d_sigvectr'
d_sigset='$d_sigset'
d_sighold='$d_sighold'
d_sigprocmask='$d_sigprocmask'
d_sigblock='$d_sigblock'
d_sigaction='$d_sigaction'
d_strings='$d_strings'
d_pwdinsys='$d_pwdinsys'
strings='$strings'
includepath='$includepath'
d_strstr='$d_strstr'
d_useembed='$d_useembed'
d_utimbuf='$d_utimbuf'
hostname='$hostname'
phostname='$phostname'
mydomain='$mydomain'
autohostname='$autohostname'
i_memory='$i_memory'
i_stdarg='$i_stdarg'
i_stdlib='$i_stdlib'
i_time='$i_time'
i_systime='$i_systime'
d_systimekernel='$d_systimekernel'
i_unistd='$i_unistd'
i_utime='$i_utime'
i_sysutime='$i_sysutime'
lib='$lib'
libc='$libc'
maildir='$maildir'
mailhome='$mailhome'
mailer='$mailer'
mailgrp='$mailgrp'
mansrc='$mansrc'
catmansrc='$catmansrc'
manext='$manext'
manext_choice='$manext_choice'
catmanext='$catmanext'
catmanext_choice='$catmanext_choice'
packed='$packed'
manroff='$manroff'
manroffopts='$manroffopts'
suffix='$suffix'
packer='$packer'
models='$models'
split='$split'
small='$small'
medium='$medium'
large='$large'
huge='$huge'
optimize='$optimize'
ccflags='$ccflags'
cppflags='$cppflags'
ldflags='$ldflags'
cc='$cc'
libs='$libs'
nametype='$nametype'
d_passnames='$d_passnames'
d_berknames='$d_berknames'
d_usgnames='$d_usgnames'
rcpthdr='$rcpthdr'
passcat='$passcat'
roff='$roff'
roffopts='$roffopts'
d_rcpthdr='$d_rcpthdr'
sigtype='$sigtype'
spitshell='$spitshell'
shsharp='$shsharp'
sharpbang='$sharpbang'
tzname_handling='$tzname_handling'
use_pmake='$use_pmake'
xencf='$xencf'
xenlf='$xenlf'
d_xenix='$d_xenix'
d_bsd='$d_bsd'
CONFIG=true
EOT
CONFIG=true
echo " "
dflt=''
fastread=''
#We want things fully automated
#echo "If you didn't make any mistakes, then just type a carriage return here."
#rp="If you need to edit config.sh, do it as a shell escape here:"
#$echo $n "$rp $c"
#. UU/myread
#case "$ans" in
#'') ;;
#*) : in case they cannot read
# eval $ans;;
#esac
: if this fails, just run all the .SH files by hand
. ./config.sh
echo " "
echo "Doing variable substitutions on .SH files..."
set x `awk '{print $1}' <MANIFEST | $grep '\.SH'`
shift
case $# in
0) set x *.SH; shift;;
esac
if test ! -f $1; then
shift
fi
for file in $*; do
case "$file" in
*/*)
dir=`$expr X$file : 'X\(.*\)/'`
file=`$expr X$file : 'X.*/\(.*\)'`
(cd $dir && . $file)
;;
*)
. $file
;;
esac
done
if test -f config.h.SH; then
if test ! -f config.h; then
: oops, they left it out of MANIFEST, probably, so do it anyway.
. config.h.SH
fi
fi
if $contains '^depend:' Makefile >/dev/null 2>&1; then
dflt=n
$cat <<EOM
Now you need to generate make dependencies by running "make depend".
You might prefer to run it in background: "make depend > makedepend.out &"
It can take a while, so you might not want to run it right now.
EOM
rp="Run make depend now? [$dflt]"
$echo $n "$rp $c"
. UU/myread
case "$ans" in
y*) make depend && echo "Now you must run a make."
;;
*) echo "You must run 'make depend' then 'make'."
;;
esac
elif test -f Makefile; then
echo " "
echo "Now you must run a make."
else
echo "Done."
fi
$rm -f kit*isdone
: the following is currently useless
cd UU && $rm -f $rmlist
: since this removes it all anyway
cd .. && $rm -rf UU
: end of Configure
|