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
|
dnl ProFTPD - FTP server daemon
dnl Copyright (c) 1997, 1998 Public Flood Software
dnl Copyright (c) 1999, 2000 MacGyver aka Habeeb J. Dihu <macgyver@tos.net>
dnl Copyright (c) 2001-2011 The ProFTPD Project team
dnl
dnl This program is free software; you can redistribute it and/or modify
dnl it under the terms of the GNU General Public License as published by
dnl the Free Software Foundation; either version 2 of the License, or
dnl (at your option) any later version.
dnl
dnl This program is distributed in the hope that it will be useful,
dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
dnl GNU General Public License for more details.
dnl
dnl You should have received a copy of the GNU General Public License
dnl along with this program; if not, write to the Free Software
dnl Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA.
dnl
dnl Process this file with autoconf to produce a configure script.
AC_INIT(include/conf.h)
ac_core_modules="mod_core.o mod_xfer.o mod_auth_unix.o mod_auth_file.o mod_auth.o mod_ls.o mod_log.o mod_site.o mod_delay.o mod_facts.o"
ac_build_core_modules="modules/mod_core.o modules/mod_xfer.o modules/mod_auth_unix.o modules/mod_auth_file.o modules/mod_auth.o modules/mod_ls.o modules/mod_log.o modules/mod_site.o modules/mod_delay.o modules/mod_facts.o"
dnl Get the OS type
AC_CONFIG_AUX_DIR(./)
AC_CANONICAL_SYSTEM
ostype=`echo $build_os | sed 's/\..*$//g' | sed 's/-.*//g' | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`
osrel=`echo $build_os | sed 's/-.*//g' | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ | tr '.' '_'`
OSTYPE="-D$ostype"
OSREL="-D$osrel"
platform="\"$ostype ($osrel)\""
if test "$OSTYPE" = "$OSREL" ; then
OSTYPE=""
platform="\"$ostype\""
fi
AC_DEFINE_UNQUOTED(PR_BUILD_OPTS, "`echo "$ac_configure_args"`")
AC_DEFINE_UNQUOTED(PR_PLATFORM, $platform)
AC_SUBST(OSREL)
AC_SUBST(OSTYPE)
dnl MacOS X requires -traditional-cpp; autodetecting it isn't impossible
dnl AFAIK, since assuming the need for -traditional-cpp breaks the build
dnl on other OSes. -jwm, 30 Jan 2001
if test "$OSTYPE" = "-DRHAPSODY5"; then
CFLAGS="$CFLAGS -traditional-cpp -D__OT__"
fi
dnl This needs to happen here, prior to the creation of the libtool script,
dnl so that that script uses the correct shell-isms
AC_SUBST(CONFIG_SHELL)
dnl AC_PROG_LIBTOOL relies on the top_builddir variable
top_builddir=.
LT_INIT([dlopen])
dnl If LT_INIT provides an empty value for CONFIG_SHELL for some reason (it
dnl happens on my Mac OSX 10.5 machine, for example), have a fallback.
if test x"$CONFIG_SHELL" = x; then
CONFIG_SHELL="$SHELL"
fi
dnl Checks for programs.
AC_PROG_CC
AC_PROG_MAKE_SET
AC_PROG_INSTALL
AC_PROG_LIBTOOL
dnl This test must come as early as possible after the compiler
dnl configuration tests, because the choice of the file model can (in
dnl principle) affect whether functions and headers are available,
dnl whether they work, etc.
AC_SYS_LARGEFILE
# The native HP-UX 10 compiler needs -Ae to enable Extended ANSI compliance
# (-Ae is the default in the native compiler under HP-UX 11).
if test $ac_cv_prog_gcc = no -a "$OSTYPE" = "-DHPUX10"; then
CFLAGS="$CFLAGS -Ae"
fi
LDFLAGS="-L\$(top_srcdir)/lib $LDFLAGS"
# Record the current CPPFLAGS, LDFLAGS, and LIBS here
ac_orig_cppflags="$CPPFLAGS"
ac_orig_ldflags="$LDFLAGS"
ac_orig_libs="$LIBS"
if test $ac_cv_prog_gcc = yes; then
if test x"$CFLAGS" = "x-g -O2"; then
fullCFLAGS="-O2"
else
fullCFLAGS="$CFLAGS"
fi
dnl Compilation tests
dnl test for -malign-jumps=2 -malign-loops=2 -malign-functions=2
if echo $ac_cv_build_cpu | egrep "^i[[34567]]86$" > /dev/null 2>&1; then
AC_MSG_CHECKING([whether the C compiler accepts -malign-jumps -malign-loops -malign-functions])
CFLAGS="-malign-jumps=2 -malign-loops=2 -malign-functions=2"
AC_TRY_COMPILE(,,
AC_MSG_RESULT(yes); fullCFLAGS="$fullCFLAGS $CFLAGS",
AC_MSG_RESULT(no))
fi
dnl test for -Wall
AC_MSG_CHECKING([whether the C compiler accepts -Wall])
CFLAGS="-Wall"
AC_TRY_COMPILE(,,
AC_MSG_RESULT(yes); fullCFLAGS="$fullCFLAGS $CFLAGS",
AC_MSG_RESULT(no))
CFLAGS="$fullCFLAGS"
fi
dnl We substitute these in the man page templates.
if test x$exec_prefix = xNONE ; then
exec_prefix=$prefix
fi
if test x$prefix = xNONE ; then
prefix=/usr/local
bindir=/usr/local/bin
datadir=/usr/locale/share
libexecdir=/usr/local/libexec
sbindir=/usr/local/sbin
fi
BINDIR=`eval echo $bindir`
AC_SUBST(BINDIR)
DATADIR=`eval echo $datadir`
AC_SUBST(DATADIR)
INCLUDEDIR=`eval echo $includedir`
AC_SUBST(INCLUDEDIR)
LIBEXECDIR=`eval echo $libexecdir`
AC_SUBST(LIBEXECDIR)
LOCALSTATEDIR=`eval echo $localstatedir`
AC_SUBST(LOCALSTATEDIR)
PREFIX=`eval echo $prefix`
AC_SUBST(PREFIX)
SBINDIR=`eval echo $sbindir`
AC_SUBST(SBINDIR)
SYSCONFDIR=`eval echo $sysconfdir`
AC_SUBST(SYSCONFDIR)
LIB_DEPS="\"\""
AC_ARG_VAR(LIBS, [linker flags, e.g. -l<lib>.{a,so} if you have nonstandard libraries to link])
dnl configure command line options...
dnl --with options.
dnl ProFTPD comes bundled with GNU's implementation of getopt, to be used
dnl in case the host system doesn't have getopt. However, this causes
dnl problems for certain builds of proftpd, e.g. ProFTPD and MySQL (which
dnl itself similarly bundles a getopt implementation). Thus, we need to
dnl support/handle --without-getopt, to disable use of ProFTPD's getopt.
dnl I don't know if MySQL supports any similar option.
LIB_OBJS="pr_fnmatch.o sstrncpy.o strsep.o vsnprintf.o glibc-glob.o glibc-hstrerror.o glibc-mkstemp.o pr-syslog.o pwgrent.o tpl.o"
AC_ARG_WITH(getopt,
[AC_HELP_STRING(
[--without-getopt],
[prevent proftpd from using its bundled getopt implementation. This is done automatically if the host supports getopt, but may need to be explicitly used when combining proftpd with other applications, such as MySQL])
],
[
if test "$withval" != "no" ; then
AC_CHECK_FUNCS(getopt,
[AC_CHECK_HEADERS(getopt.h)
AC_CHECK_FUNCS(getopt_long)
AC_DEFINE(PR_USE_SYSTEM_GETOPT, 1,
[Define if using system getopt support])],
[LIB_OBJS="$LIB_OBJS getopt.o getopt1.o"]
)
fi
],
[
AC_CHECK_FUNCS(getopt,
[AC_CHECK_HEADERS(getopt.h)
AC_CHECK_FUNCS(getopt_long)
AC_DEFINE(PR_USE_SYSTEM_GETOPT, 1,
[Define if using system getopt support])],
[LIB_OBJS="$LIB_OBJS getopt.o getopt1.o"]
)
])
dnl Lastlog support
AC_ARG_WITH(lastlog,
[AC_HELP_STRING(
[--with-lastlog=PATH],
[specify lastlog location (Default: /var/adm/lastlog)],
)],
[
if test "x$withval" = "xno" ; then
# nothing to do
foo=bar
elif test -n "$withval" ; then
AC_DEFINE(PR_USE_LASTLOG, 1, [Define if enabling lastlog support.])
AC_CHECK_HEADERS(lastlog.h paths.h)
if test "x${withval}" != "xyes" ; then
pr_lastlog_path="$withval"
else
dnl Try to determine the correct lastlog location (be it file or
dnl directory) automagically.
AC_MSG_CHECKING([for LASTLOG_FILE])
AC_TRY_COMPILE([
#include <sys/types.h>
#include <utmp.h>
#ifdef HAVE_LASTLOG_H
# include <lastlog.h>
#endif
#ifdef HAVE_PATHS_H
# include <paths.h>
#endif
#ifdef HAVE_LOGIN_H
# include <login.h>
#endif
],
[
char *lastlog = LASTLOG_FILE;
],
[
AC_MSG_RESULT(yes)
],
[
AC_MSG_RESULT(no)
AC_MSG_CHECKING([for _PATH_LASTLOG])
AC_TRY_COMPILE([
#include <sys/types.h>
#include <utmp.h>
#ifdef HAVE_LASTLOG_H
# include <lastlog.h>
#endif
#ifdef HAVE_PATHS_H
# include <paths.h>
#endif
],
[
char *lastlog = _PATH_LASTLOG;
],
[
AC_MSG_RESULT(yes)
],
[
AC_MSG_RESULT(no)
found_lastlog_path=no
])
])
if test -z "$pr_lastlog_path" ; then
if test x"$found_lastlog_path" = x"no" ; then
for f in /var/log/lastlog /var/adm/lastlog /usr/adm/lastlog /etc/security/lastlog ; do
AC_MSG_CHECKING([for $f])
if (test -d "$f" || test -f "$f") ; then
pr_lastlog_path=$f
AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no)
fi
done
if test -z "$pr_lastlog_path" ; then
AC_MSG_WARN([** Cannot find lastlog **])
fi
fi
fi
fi
if test -n "$pr_lastlog_path" ; then
AC_DEFINE_UNQUOTED(PR_LASTLOG_PATH, "`eval echo "$pr_lastlog_path"`")
fi
fi
])
dnl Modules...'nuff said.
AC_ARG_WITH(includes,
[AC_HELP_STRING(
[--with-includes=LIST],
[add additional include paths to proftpd. LIST is a colon-separated list of include paths to add e.g. --with-includes=/some/mysql/include:/my/include])
],
[
if test x"$withval" != x; then
if test x"$withval" = xyes; then
AC_MSG_ERROR([--with-includes parameter missing required colon-separated list of include paths])
fi
if test x"$withval" != xno; then
ac_addl_includes=`echo "$withval" | sed -e 's/:/ /g'` ;
for ainclude in $ac_addl_includes; do
if test x"$ac_build_addl_includes" = x ; then
ac_build_addl_includes="-I$ainclude"
else
ac_build_addl_includes="-I$ainclude $ac_build_addl_includes"
fi
done
CPPFLAGS="$CPPFLAGS $ac_build_addl_includes"
fi
fi
])
AC_ARG_WITH(libraries,
[AC_HELP_STRING(
[--with-libraries=LIST],
[add additional library paths to proftpd. LIST is a colon-separated list of library paths to add e.g. --with-libraries=/some/mysql/libdir:/my/libs])
],
[
if test x"$withval" != x; then
if test x"$withval" = xyes; then
AC_MSG_ERROR([--with-libraries parameter missing required colon-separated list of library paths])
fi
if test x"$withval" != xno; then
ac_addl_libdirs=`echo "$withval" | sed -e 's/:/ /g'` ;
for alibdir in $ac_addl_libdirs; do
if test x"$ac_build_addl_libdirs" = x ; then
ac_build_addl_libdirs="-L$alibdir"
else
ac_build_addl_libdirs="-L$alibdir $ac_build_addl_libdirs"
fi
done
LDFLAGS="$LDFLAGS $ac_build_addl_libdirs"
fi
fi
])
dnl This variable is used to impose a certain ordering between mod_ifsession
dnl and mod_cap, per Bug#3576
ifsession_requested="false"
AC_ARG_WITH(modules,
[AC_HELP_STRING(
[--with-modules=LIST],
[add additional modules to proftpd. LIST is a colon-separated list of modules to add e.g. --with-modules=mod_readme:mod_ifsession])
],
[
if test x"$withval" != x; then
if test x"$withval" = xyes; then
AC_MSG_ERROR([--with-modules parameter missing required colon-separated list of modules])
fi
if test x"$withval" != xno; then
modules_list=`echo "$withval" | sed -e 's/:/ /g'`;
for amodule in $modules_list; do
if test x"$amodule" = xmod_dso ; then
AC_MSG_ERROR([use --enable-dso instead of --with-modules=mod_dso for DSO support])
fi
if test x"$amodule" = xmod_ifsession ; then
ifsession_requested="true"
fi
if test x"$amodule" = xmod_lang ; then
AC_MSG_ERROR([use --enable-nls instead of --with-modules=mod_lang for NLS/UTF8 support])
fi
if test x"$amodule" = xmod_memcache ; then
AC_MSG_ERROR([use --enable-memcache instead of --with-modules=mod_memcache for Memcache support])
fi
done
ac_static_modules=`echo "$withval" | sed -e 's/:/.o /g'`.o ;
for amodule in $ac_static_modules; do
ac_build_static_modules="modules/$amodule $ac_build_static_modules"
done
dnl Make sure that mod_ifsession, if present in the list, appears at
dnl the end.
if test x"$ifsession_requested" = xtrue; then
ac_static_modules=`echo "$ac_static_modules" | sed -e 's/mod_ifsession\.o//g'`
ac_static_modules="$ac_static_modules mod_ifsession.o"
ac_build_static_modules=`echo "$ac_build_static_modules" | sed -e 's/modules\/mod_ifsession\.o//g'`
ac_build_static_modules="$ac_build_static_modules modules/mod_ifsession.o";
fi
fi
fi
])
dnl Memcache
if test x"$enable_memcache" = xyes; then
# Yes, we DO want mod_memcache AFTER the other modules in the static
# module list. Otherwise, the module load ordering will be such that
# memcache support will not work as expected
ac_static_modules="$ac_static_modules mod_memcache.o"
ac_build_static_modules="$ac_build_static_modules modules/mod_memcache.o"
fi
dnl List of modules which are not allowed to be built as DSOs
ac_unshareable_modules="mod_auth mod_auth_unix mod_core mod_dso mod_ls mod_xfer mod_log mod_site mod_cap mod_ctrls"
AC_ARG_WITH(shared,
[AC_HELP_STRING(
[--with-shared=LIST],
[build DSO modules for proftpd. LIST is a colon-separated list of modules to build as DSOs e.g. --with-shared=mod_rewrite:mod_ifsession])
],
[
if test x"$withval" != x; then
if test x"$withval" = xyes; then
AC_MSG_ERROR([--with-shared parameter missing required colon-separated list of modules])
fi
if test x"$withval" != xno; then
shared_modules=`echo "$withval" | sed -e 's/:/ /g'`;
# First double-check that the given list does not contain any
# unshareable modules
for amodule in $shared_modules; do
for smodule in $ac_unshareable_modules; do
if test x"$amodule" = x"$smodule"; then
AC_MSG_ERROR([cannot build $amodule as a shared module])
fi
done
done
ac_shared_modules=`echo "$withval" | sed -e 's/:/.la /g'`.la ;
for amodule in $ac_shared_modules; do
ac_build_shared_modules="modules/$amodule $ac_build_shared_modules"
done
fi
fi
])
dnl Configuration location of mysql_config
my_config="mysql_config"
AC_ARG_WITH(mysql-config,
[AC_HELP_STRING(
[--with-mysql-config=PATH],
[configure location of the MySQL mysql_config script (default=mysql_config)])
],
[
if test x"$withval" != x; then
my_config=`echo "$withval"`
if test -z "$my_config"; then
my_config="no"
elif test x"$my_config" = xno; then
# do nothing
foo=bar
elif test x"$my_config" = xyes; then
# Use the default
my_config="mysql_config"
elif test -x "$my_config"; then
# do nothing
foo=bar
else
AC_MSG_ERROR([mysql_config path $my_config is not executable])
fi
else
my_config="no"
fi
])
dnl Configuration location of pg_config
pg_config="pg_config"
AC_ARG_WITH(postgres-config,
[AC_HELP_STRING(
[--with-postgres-config=PATH],
[configure location of the Postgres pg_config script (default=pg_config)])
],
[
if test x"$withval" != x; then
pg_config=`echo "$withval"`
if test -z "$pg_config"; then
pg_config="no"
elif test x"$pg_config" = xno; then
# do nothing
foo=bar
elif test x"$pg_config" = xyes; then
# Use the default
pg_config="pg_config"
elif test -x "$pg_config"; then
# do nothing
foo=bar
else
AC_MSG_ERROR([pg_config path $pg_config is not executable])
fi
else
pg_config="no"
fi
])
dnl Configurable location of the pkgconfig file
pkgconfigdir=NONE
AC_ARG_WITH(pkgconfig,
[AC_HELP_STRING(
[--with-pkgconfig=PATH],
[configure directory that will contain the proftpd.pc pkgconfig file (default=lib/pkgconfig)])
],
[
if test x"$withval" != x; then
if test x"$withval" = xyes; then
AC_MSG_ERROR([--with-pkgconfig parameter missing required directory path])
fi
if test x"$withval" != xno; then
pkgconfigdir=`echo "$withval"`
fi
fi
])
dnl --enable/--disable options.
AC_ARG_ENABLE(auth-file,
[AC_HELP_STRING(
[--disable-auth-file],
[omit mod_auth_file from core modules])
],
[
if test "$enableval" = "no"; then
ac_core_modules=`echo "$ac_core_modules" | sed -e 's/mod_auth_file\.o//'`
ac_build_core_modules=`echo "$ac_build_core_modules" | sed -e 's/modules\/mod_auth_file\.o//'`
fi
])
dnl Auto-detection of shadow passwords.
AC_ARG_ENABLE(autoshadow,
[AC_HELP_STRING(
[--enable-autoshadow],
[enable run-time auto-detection of shadowed passwords (requires shadow)])
],
[
dnl AIX does not have shadow file/library support. Try to prevent a
dnl bad build if the admin, configuring on an AIX box, uses this option.
if test "$enableval" = "yes" && test "$OSTYPE" = "-DAIX4"; then
AC_MSG_WARN(AIX does not support traditional shadowed passwords)
enableval="no"
fi
if test "$enableval" != "no" ; then
AC_DEFINE(PR_USE_SHADOW, 1, [Define if using /etc/shadow files.])
AC_DEFINE(PR_USE_AUTO_SHADOW, 1,
[Define if auto-detection of shadow passwords is wanted.])
force_shadow="yes"
fi ])
dnl PAM support.
AC_ARG_ENABLE(auth-pam,
[AC_HELP_STRING(
[--enable-auth-pam],
[enable PAM support (default=yes)])
],
[
if test "$enableval" = "no"; then
if test `echo $ac_static_modules | grep -c mod_auth_pam` != "0"; then
AC_MSG_ERROR([You cannot run configure with --disable-auth-pam and include mod_auth_pam in --with-modules at the same time])
fi
if test `echo $ac_shared_modules | grep -c mod_auth_pam` != "0"; then
AC_MSG_ERROR([You cannot run configure with --disable-auth-pam and include mod_auth_pam in --with-shared at the same time])
fi
fi
])
dnl Optional workaround for broken getaddrinfo on some systems (e.g. HP-UX 11.x)
AC_ARG_ENABLE(builtin-getaddrinfo,
[AC_HELP_STRING(
[--enable-builtin-getaddrinfo],
[force use of builtin getaddrinfo (default=no)])
],
[
if test x"$enableval" = xyes; then
AC_DEFINE(PR_USE_GETADDRINFO, 1, [Define if using builtin getaddrinfo()])
fi
])
dnl Since getaddrinfo() is broken on HP-UX 11.x, we automatically use the
dnl builtin version.
if test "$OSTYPE" = "-DHPUX11"; then
AC_MSG_WARN([HP-UX 11 has broken getaddrinfo(), using builtin version])
AC_DEFINE(PR_USE_GETADDRINFO, 1, [Define if using builtin getaddrinfo()])
fi
dnl Workaround for broken getnameinfo on some systems
AC_ARG_ENABLE(builtin-getnameinfo,
[AC_HELP_STRING(
[--enable-builtin-getnameinfo],
[force use of builtin getnameinfo (default=no)])
],
[
if test x"$enableval" = xyes; then
AC_DEFINE(PR_USE_GETNAMEINFO, 1, [Define if using builtin getnameinfo()])
fi
])
dnl Capabilities support
AC_ARG_ENABLE(cap,
[AC_HELP_STRING(
[--enable-cap],
[enable POSIX.1e capabilities (default=yes on Linux)])
])
dnl Controls support
AC_ARG_ENABLE(ctrls,
[AC_HELP_STRING(
[--enable-ctrls],
[enable proftpd controls via ftpdctl (default=no)])
],
[ if test x"$enableval" = xyes ; then
AC_DEFINE(PR_USE_CTRLS, 1, [Define if using controls support.])
fi
])
dnl POSIX ACL support
AC_ARG_ENABLE(facl,
[AC_HELP_STRING(
[--enable-facl],
[enable support for POSIX ACLs])
])
dnl Curses/ncurses support
AC_ARG_ENABLE(curses,
[AC_HELP_STRING(
[--disable-curses],
[disable use of curses (default=no)])
])
dnl DSO support
AC_ARG_ENABLE(dso,
[AC_HELP_STRING(
[--enable-dso],
[add mod_dso to core modules])
],
[
if test x"$enableval" = x"yes"; then
ac_core_modules="$ac_core_modules mod_dso.o"
ac_build_core_modules="$ac_build_core_modules modules/mod_dso.o"
MAIN_LDFLAGS="-L\$(top_srcdir)/lib/libltdl -dlopen self -export-dynamic"
MAIN_LIBS="\$(LIBLTDL)"
MODULE_LDFLAGS="-avoid-version -export-dynamic -module"
INSTALL_DEPS="install-libltdl"
LIB_DEPS="libltdl"
MODULE_DEPS="libltdl"
AC_DEFINE(PR_USE_DSO, 1, [Define if using DSO support.])
dnl Run configure scripts in subdirectories
LT_CONFIG_LTDL_DIR([lib/libltdl])
LTDL_INIT([convenience])
dnl Even though this macro is deprecated, we need to use it to
dnl specifically tell ltdl that it is NOT to use any system directories,
dnl and ONLY to use this bundled location.
LTDL_CONVENIENCE([lib/libltdl])
fi
])
dnl ident (RFC1413) support
AC_ARG_ENABLE(ident,
[AC_HELP_STRING(
[--disable-ident],
[disable use of ident (RFC1413) lookups (default=no)])
])
dnl Memcache support
AC_ARG_ENABLE(memcache,
[AC_HELP_STRING(
[--enable-memcache],
[enable support for memcache (default=no)])
],
[ if test x"$enableval" = xyes ; then
AC_DEFINE(PR_USE_MEMCACHE, 1, [Define if using Memcache support.])
fi
])
dnl NLS support
ENABLE_NLS="\"\""
AC_ARG_ENABLE(nls,
[AC_HELP_STRING(
[--enable-nls],
[enable Native Language Support (NLS) (default=no)])
],
[ if test x"$enableval" = x"yes" ; then
dnl The libintl library is only needed on non-GNU systems. If it
dnl is not installed, and the admin enables NLS support, then we
dnl should abort.
AC_CHECK_LIB(intl, bindtextdomain,
[ac_build_addl_libs="-lintl $ac_build_addl_libs" UTILS_LIBS="-lintl"
AC_DEFINE(HAVE_LIBINTL, 1, [Define if libintl is present.])
AC_DEFINE(PR_USE_NLS, 1, [Define if using NLS support.])
ENABLE_NLS="1"
],
[AC_CHECK_LIB(c, bindtextdomain,
[AC_DEFINE(PR_USE_NLS, 1, [Define if using NLS support.])
ENABLE_NLS="1"
],
[AC_MSG_ERROR([libintl support, required for NLS, not present -- aborting])]
])
)
dnl Similarly, the libiconv library is only needed on some non-GNU
dnl systems.
AC_CHECK_LIB(iconv, iconv_open,
[LIBS="$LIBS -liconv"
AC_DEFINE(HAVE_LIBICONV, 1, [Define if libiconv is present.])
AC_DEFINE(PR_USE_NLS, 1, [Define if using NLS support.])
ENABLE_NLS="1"
],
[AC_CHECK_LIB(c, iconv_open,
[AC_DEFINE(PR_USE_NLS, 1, [Define if using NLS support.])
ENABLE_NLS="1"
],
[AC_MSG_ERROR([libiconv support, required for NLS, not present -- aborting])]
])
)
fi
])
AC_ARG_ENABLE(nonblocking-log-open,
[AC_HELP_STRING(
[--disable-nonblocking-log-open],
[disable use of nonblocking open of log files (default=no)])
])
AC_ARG_ENABLE(ncurses,
[AC_HELP_STRING(
[--disable-ncurses],
[disable use of ncurses (default=no)])
])
AC_ARG_ENABLE(pcre,
[AC_HELP_STRING(
[--enable-pcre],
[enable use of PCRE for POSIX regular expressions rather than the system library (default=no)],
)],
[
if test x"$enableval" = xyes ; then
AC_DEFINE(PR_USE_PCRE, 1, [Define if using PCRE support.])
ac_build_addl_libs="$ac_build_addl_libs -lpcreposix -lpcre"
fi
])
dnl Workaround for broken setpassent on FreeBSD.
AC_ARG_ENABLE(force-setpassent,
[AC_HELP_STRING(
[--enable-force-setpassent],
[force use of setpassent (default=no on FreeBSD)])
])
dnl IPv6 support.
AC_ARG_ENABLE(ipv6,
[AC_HELP_STRING(
[--disable-ipv6],
[disable IPv6 support (default=no)])
])
dnl OpenSSL support
AC_ARG_ENABLE(openssl,
[AC_HELP_STRING(
[--enable-openssl],
[enable OpenSSL support (default=no)])
],
[ if test x"$enableval" = xyes ; then
AC_DEFINE(PR_USE_OPENSSL, 1, [Define if using OpenSSL support.])
ac_build_addl_libs="$ac_build_addl_libs -lssl -lcrypto"
fi
])
dnl Sendfile support.
AC_ARG_ENABLE(sendfile,
[AC_HELP_STRING(
[--disable-sendfile],
[disable sendfile support (default=no)])
])
dnl Check for enabled shadow password support.
AC_ARG_ENABLE(shadow,
[AC_HELP_STRING(
[--enable-shadow],
[force compilation of shadowed password support])
],
[
dnl AIX does not have shadow file/library support. Try to prevent a
dnl bad build if the admin, configuring on an AIX box, uses this option.
if test "$enableval" = "yes" && test "$OSTYPE" = "-DAIX4"; then
AC_MSG_WARN([AIX does not support traditional shadowed passwords])
enableval="no"
fi
if test "$enableval" = "no" ; then
use_shadow=""
force_shadow="no"
else
AC_DEFINE(PR_USE_SHADOW, 1, [Define if using shadow password support.])
force_shadow="yes"
fi ])
dnl Enable support for Tru64's C2 SIA authentication
AC_ARG_ENABLE(sia,
[AC_HELP_STRING(
[--enable-sia],
[enable SIA authentication support (Tru64)])
],
[
if test x"$enableval" = xyes ; then
dnl Tru64's C2/SIA authentication requires these headers
AC_CHECK_HEADERS(sia.h siad.h sys/security.h)
AC_CHECK_LIB(security, set_auth_parameters)
AC_CHECK_FUNCS(set_auth_parameters)
AC_CHECK_LIB(sec, getprpwent)
AC_CHECK_FUNCS(getprpwent)
AC_DEFINE(PR_USE_SIA, 1, [Define if using Tru64 SIA support.])
fi
])
dnl Test support
ENABLE_TESTS="\"\""
AC_ARG_ENABLE(tests,
[AC_HELP_STRING(
[--enable-tests],
[enable unit tests (default=no)])
],
[ if test x"$enableval" = x"yes" ; then
AC_CHECK_HEADERS(check.h)
AC_CHECK_LIB(check, tcase_create,
[AC_DEFINE(HAVE_LIBCHECK, 1, [Define if libcheck is present.])
ENABLE_TESTS="1"
AC_DEFINE(PR_USE_TESTS, 1, [Define if testsuite support is enabled.])
],
[
AC_MSG_ERROR([libcheck support, required for tests, not present -- aborting])
]
)
fi
])
dnl Trace support.
AC_ARG_ENABLE(trace,
[AC_HELP_STRING(
[--disable-trace],
[disable trace support (default=no)])
])
dnl Enable developer code
pr_devel_cflags="-g -O0 -Wcast-align -Wchar-subscripts -Winline -Wstrict-prototypes -Wmissing-declarations -Wnested-externs -Wpointer-arith -Wshadow -Wundef"
pr_devel_libs=""
AC_ARG_ENABLE(devel,
[AC_HELP_STRING(
[--enable-devel],
[enable developer-only code (default=no)])
],
[
if test x"$enableval" != xno ; then
devel="yes"
dnl Check to see if specific developer flags were requested
if test `echo $enableval | grep -c coredump` = "1" ; then
pr_devel_cflags="-DPR_DEVEL_COREDUMP $pr_devel_cflags"
fi
if test `echo $enableval | grep -c nodaemon` = "1" ; then
pr_devel_cflags="-DPR_DEVEL_NO_DAEMON $pr_devel_cflags"
fi
if test `echo $enableval | grep -c nofork` = "1" ; then
pr_devel_cflags="-DPR_DEVEL_NO_FORK $pr_devel_cflags"
fi
if test `echo $enableval | grep -c profile` = "1" ; then
pr_devel_cflags="-DPR_DEVEL_PROFILE -p -pg $pr_devel_cflags"
pr_devel_libs="-pg $pr_devel_libs"
fi
if test `echo $enableval | grep -c stacktrace` = "1"; then
pr_devel_cflags="-DPR_DEVEL_STACK_TRACE $pr_devel_cflags"
# On FreeBSD, the libexecinfo port is needed for the backtrace(3)
# function; we thus also need to check for the libexecinfo library
AC_CHECK_LIB(execinfo, backtrace)
# Some libcs need the execinfo.h header for their backtrace symbols,
# and some (like Solaris) want ucontext.h. Check for those headers
# here.
AC_CHECK_HEADERS(execinfo.h ucontext.h)
# Make sure that we can find the backtrace(3) and backtrace_symbols(3)
# functions
AC_MSG_CHECKING([for backtrace])
AC_TRY_LINK(
[
#include <stddef.h>
#include <stdlib.h>
#ifdef HAVE_EXECINFO_H
# include <execinfo.h>
#endif
#ifdef HAVE_UCONTEXT_H
# include <ucontext.h>
#endif
],
[
void **syms = NULL;
int res, nsyms = 0;
res = backtrace(syms, nsyms);
],
[
AC_MSG_RESULT(yes)
AC_DEFINE(HAVE_BACKTRACE, 1, [Define if you have backtrace])
],
[
AC_MSG_RESULT(no)
]
)
AC_MSG_CHECKING([for backtrace_symbols])
AC_TRY_LINK(
[
#include <stddef.h>
#include <stdlib.h>
#ifdef HAVE_EXECINFO_H
# include <execinfo.h>
#endif
#ifdef HAVE_UCONTEXT_H
# include <ucontext.h>
#endif
],
[
void **syms = NULL;
int nsyms = 0;
char **res;
res = backtrace_symbols(syms, nsyms);
],
[
AC_MSG_RESULT(yes)
AC_DEFINE(HAVE_BACKTRACE_SYMBOLS, 1, [Define if you have backtrace_symbols])
],
[
AC_MSG_RESULT(no)
]
)
fi
if test `echo $enableval | grep -c timing` = "1"; then
pr_devel_cflags="-DPR_DEVEL_TIMING $pr_devel_cflags"
fi
else
devel="no"
fi
])
dnl The "tunable" options, from include/options.h
AC_ARG_ENABLE(buffer-size,
[AC_HELP_STRING(
[--enable-buffer-size],
[tune the the size (in bytes) of internal buffers (default=1024)])
],
[
if test "$enableval" = "yes" || test "$enableval" = "no" ; then
AC_MSG_WARN(buffer size defaulting to 1024 bytes)
AC_DEFINE_UNQUOTED(PR_TUNABLE_BUFFER_SIZE, 1024,
[Default buffer size])
else
AC_DEFINE_UNQUOTED(PR_TUNABLE_BUFFER_SIZE, $enableval,
[Default buffer size])
fi
])
AC_ARG_ENABLE(pool-size,
[AC_HELP_STRING(
[--enable-pool-size],
[tune the size (in bytes) of memory pools (default=512)])
],
[
if test "$enableval" = "yes" || test "$enableval" = "no" ; then
AC_MSG_WARN(pool size defaulting to 512 bytes)
AC_DEFINE_UNQUOTED(PR_TUNABLE_NEW_POOL_SIZE, 512,
[Default pool size])
else
AC_DEFINE_UNQUOTED(PR_TUNABLE_NEW_POOL_SIZE, $enableval,
[Default pool size])
fi
])
AC_ARG_ENABLE(scoreboard-buffer-size,
[AC_HELP_STRING(
[--enable-scoreboard-buffer-size],
[tune the the size (in bytes) of certain scoreboard buffers (default=80)])
],
[
if test "$enableval" = "yes" || test "$enableval" = "no" ; then
AC_MSG_WARN(scoreboard buffer size defaulting to 80 bytes)
AC_DEFINE_UNQUOTED(PR_TUNABLE_SCOREBOARD_BUFFER_SIZE, 80,
[Default scoreboard buffer size])
else
AC_DEFINE_UNQUOTED(PR_TUNABLE_SCOREBOARD_BUFFER_SIZE, $enableval,
[Default scoreboard buffer size])
fi
])
AC_ARG_ENABLE(scoreboard-updates,
[AC_HELP_STRING(
[--enable-scoreboard-updates],
[set how often (in loops) the mod_xfer module updates the scoreboard (default=10)])
],
[
if test x"$enableval" = xyes || test x"$enableval" = xno ; then
AC_MSG_WARN(scoreboard updates defaulting to 10)
AC_DEFINE_UNQUOTED(PR_TUNABLE_XFER_SCOREBOARD_UPDATES, 10)
else
AC_DEFINE_UNQUOTED(PR_TUNABLE_XFER_SCOREBOARD_UPDATES, $enableval)
fi
])
keepsyms="no"
AC_ARG_ENABLE(strip,
[AC_HELP_STRING(
[--disable-strip],
[do not strip debugging symbols from installed code (default=no)])
],
[
if test x"$enableval" = xno ; then
keepsyms="yes"
fi
]
)
AC_ARG_ENABLE(timeout-ident,
[AC_HELP_STRING(
[--enable-timeout-ident],
[set the default timeout (in secs) for RFC931 connections (default=10)])
],
[
if test "$enableval" = "yes" || test "$enableval" = "no" ; then
AC_MSG_WARN(ident timeout defaulting to 10 secs)
AC_DEFINE_UNQUOTED(PR_TUNABLE_TIMEOUTIDENT, 10,
[Default ident timeout])
else
AC_DEFINE_UNQUOTED(PR_TUNABLE_TIMEOUTIDENT, $enableval,
[Default ident timeout])
fi
])
AC_ARG_ENABLE(timeout-idle,
[AC_HELP_STRING(
[--enable-timeout-idle],
[set the default timeout (in secs) for idle connections (default=600)])
],
[
if test "$enableval" = "yes" || test "$enableval" = "no" ; then
AC_MSG_WARN(idle timeout defaulting to 600 secs)
AC_DEFINE_UNQUOTED(PR_TUNABLE_TIMEOUTIDLE, 600,
[Default idle timeout])
else
AC_DEFINE_UNQUOTED(PR_TUNABLE_TIMEOUTIDLE, $enableval,
[Default idle timeout])
fi
])
AC_ARG_ENABLE(timeout-linger,
[AC_HELP_STRING(
[--enable-timeout-linger],
[set the default timeout (in secs) for lingering closes (default=30)])
],
[
if test "$enableval" = "yes" || test "$enableval" = "no" ; then
AC_MSG_WARN(linger timeout defaulting to 30 secs)
AC_DEFINE_UNQUOTED(PR_TUNABLE_TIMEOUTLINGER, 30,
[Default linger timeout])
else
AC_DEFINE_UNQUOTED(PR_TUNABLE_TIMEOUTLINGER, $enableval,
[Default linger timeout])
fi
])
AC_ARG_ENABLE(timeout-login,
[AC_HELP_STRING(
[--enable-timeout-login],
[set the default timeout (in secs) for logging in after connecting (default=300)])
],
[
if test "$enableval" = "yes" || test "$enableval" = "no" ; then
AC_MSG_WARN(login timeout defaulting to 300 secs)
AC_DEFINE_UNQUOTED(PR_TUNABLE_TIMEOUTLOGIN, 300,
[Default login timeout])
else
AC_DEFINE_UNQUOTED(PR_TUNABLE_TIMEOUTLOGIN, $enableval,
[Default login timeout])
fi
])
AC_ARG_ENABLE(timeout-no-transfer,
[AC_HELP_STRING(
[--enable-timeout-no-transfer],
[set the default timeout (in secs) for no data transferred (default=300)])
],
[
if test "$enableval" = "yes" || test "$enableval" = "no" ; then
AC_MSG_WARN(no data transfer timeout defaulting to 300 secs)
AC_DEFINE_UNQUOTED(PR_TUNABLE_TIMEOUTNOXFER, 300,
[Default when no data transferred])
else
AC_DEFINE_UNQUOTED(PR_TUNABLE_TIMEOUTNOXFER, $enableval,
[Default when no data transferred])
fi
])
AC_ARG_ENABLE(timeout-stalled,
[AC_HELP_STRING(
[--enable-timeout-stalled],
[set the default timeout (in secs) for stalled transfers (default=3600)])
],
[
if test "$enableval" = "yes" || test "$enableval" = "no" ; then
AC_MSG_WARN(stalled timeout defaulting to 3600 secs)
AC_DEFINE_UNQUOTED(PR_TUNABLE_TIMEOUTSTALLED, 3600,
[Default stalled timeout])
else
AC_DEFINE_UNQUOTED(PR_TUNABLE_TIMEOUTSTALLED, $enableval,
[Default stalled timeout])
fi
])
AC_ARG_ENABLE(transfer-buffer-size,
[AC_HELP_STRING(
[--enable-transfer-buffer-size],
[tune the the size (in bytes) of data transfer buffers (default=OS dependent)])
],
[
if test "$enableval" = "yes" || test "$enableval" = "no" ; then
AC_MSG_WARN(transfer buffer size defaulting to regular buffer size)
AC_DEFINE_UNQUOTED(PR_TUNABLE_XFER_BUFFER_SIZE, 8192,
[Default buffer size])
else
AC_DEFINE_UNQUOTED(PR_TUNABLE_XFER_BUFFER_SIZE, $enableval,
[Specified transfer buffer size])
fi
])
dnl Checks for libraries. Yes, this is the hard way, but it's necessary.
AC_CACHE_CHECK(for standalone crypt,pr_cv_lib_standalone_crypt,
AC_TRY_LINK(,[crypt();],
pr_cv_lib_standalone_crypt="yes", pr_cv_lib_standalone_crypt="no" ))
if test "$pr_cv_lib_standalone_crypt" = "no"; then
AC_CHECK_LIB(crypt, crypt)
fi
AC_CACHE_CHECK(for standalone gethostbyname,pr_cv_lib_standalone_gethost,
AC_TRY_LINK(,[gethostbyname();],
pr_cv_lib_standalone_gethost="yes",
pr_cv_lib_standalone_gethost="no" ))
if test "$pr_cv_lib_standalone_gethost" = "no"; then
AC_CHECK_LIB(resolv, gethostbyname)
AC_CHECK_LIB(resolv, inet_aton)
fi
AC_CACHE_CHECK(for standalone inet_aton,pr_cv_lib_standalone_aton,
AC_TRY_LINK(,[inet_aton();],
pr_cv_lib_standalone_aton="yes",
pr_cv_lib_standalone_aton="no" ))
if test "$pr_cv_lib_standalone_aton" = "no"; then
AC_CHECK_LIB(bind, inet_aton)
fi
AC_CACHE_CHECK(for standalone nsl functions,pr_cv_lib_standalone_nsl,[
AC_TRY_LINK(,[gethostent();],
pr_cv_lib_standalone_nsl="yes", pr_cv_lib_standalone_nsl="no") ])
if test "$pr_cv_lib_standalone_nsl" = "no"; then
AC_CHECK_LIB(nsl, gethostent)
fi
AC_CACHE_CHECK(for standalone socket functions,pr_cv_lib_standalone_sockets,
AC_TRY_LINK(,[bind();],
pr_cv_lib_standalone_sockets="yes", pr_cv_lib_standalone_sockets="no"))
if test "$pr_cv_lib_standalone_sockets" = "no"; then
AC_CHECK_LIB(socket, bind)
fi
AC_CACHE_CHECK(for _pw_stayopen variable,pr_cv_var__pw_stayopen,
AC_TRY_LINK(
[extern int _pw_stayopen; ],
[_pw_stayopen = 1;],
pr_cv_var__pw_stayopen="yes", pr_cv_var__pw_stayopen="no"))
if test "$pr_cv_var__pw_stayopen" = "yes"; then
AC_DEFINE(HAVE__PW_STAYOPEN, 1, [Define if you have __pw_stayopen variable.])
fi
AC_CHECK_HEADERS(krb.h login.h prot.h usersec.h)
dnl HP-UX's hpsecurity.h can multiply define MAXINT and confuse configure
AC_CHECK_HEADERS(hpsecurity.h, [
AC_SEARCH_LIBS(getprpwnam, sec)
],
[
AC_MSG_CHECKING(for hpsecurity.h workaround)
AC_TRY_COMPILE([
#include <values.h>
#undef MAXINT
#include <hpsecurity.h>
], [],
[
AC_DEFINE(HAVE_HPSECURITY_H, 1, [Define you have <hpsecurity.h>])
AC_SEARCH_LIBS(getprpwnam, sec)
AC_MSG_RESULT(yes)
], [
AC_MSG_RESULT(no)
])
])
dnl Checks for installation user/group
if test x"$install_user" = x; then
if test "x$target_os" = "xcygwin"; then
install_user=`id -u`
else
install_user=root
fi
fi
if test x"$install_group" = x ; then
if test "x$target_os" = "xcygwin"; then
install_group=`id -g`
else
install_group=`sed -n '/.*:.*:0:/{s/^\(.*\):.*:0:.*/\1/p;q;}' /etc/group 2>/dev/null`
fi
fi
AC_SUBST(install_user)
AC_SUBST(install_group)
dnl Checks for header files.
AC_HEADER_DIRENT
AC_HEADER_STDC
AC_HEADER_SYS_WAIT
AC_CHECK_HEADERS(fcntl.h signal.h sys/ioctl.h sys/resource.h sys/time.h junistd.h memory.h)
if test x"$force_shadow" != xno ; then
AC_CHECK_HEADERS(shadow.h,
[ if test "$use_shadow" = "" && test -f /etc/shadow ; then
AC_DEFINE(PR_USE_SHADOW, 1, [Define if using shadow password support.])
AC_CHECK_MEMBER(struct spwd.sp_warn,
[AC_DEFINE(HAVE_SPWD_SP_WARN)],,
[#include <shadow.h>])
AC_CHECK_MEMBER(struct spwd.sp_inact,
[AC_DEFINE(HAVE_SPWD_SP_INACT)],,
[#include <shadow.h>])
AC_CHECK_MEMBER(struct spwd.sp_expire,
[AC_DEFINE(HAVE_SPWD_SP_EXPIRE)],,
[#include <shadow.h>])
fi ])
fi
dnl The pam test used to disable use_shadow, and I'm not sure why, libpam
dnl really shouldn't have anything to do with force_shadow or use_shadow.
if test x"$enable_auth_pam" != xno ; then
AC_CHECK_HEADERS(security/pam_appl.h security/pam_modules.h pam/pam_appl.h,
[
if test `echo $ac_static_modules | grep -c mod_auth_pam` = "0"; then
ac_static_modules="mod_auth_pam.o $ac_static_modules"
ac_build_static_modules="modules/mod_auth_pam.o $ac_build_static_modules"
fi
], [],
[
#ifdef HAVE_SECURITY_PAM_APPL_H
# include <security/pam_appl.h>
#endif
])
dnl This next check looks funky due to a linker problem with some versions
dnl of the PAM library. Prior to 0.72 release, the Linux PAM shared library
dnl omitted requiring libdl linking information. PAM-0.72 or better ships
dnl with RedHat 6.2 and Debian 2.2 or better.
dnl
dnl This test used to add -lpam to the libraries list, however this isn't
dnl necessary in light of the fact that mod_auth_pam.c has the $Libraries $
dnl tag and is picked up at configure time. The only thing we need is to
dnl add -ldl in the event of broken PAM.
if test `echo $ac_static_modules | grep -c mod_auth_pam` = "1"; then
AC_CHECK_LIB(pam, pam_start,
[AC_DEFINE(HAVE_PAM, 1, [Define if you have PAM support.])],
[AC_CHECK_LIB(pam, pam_end,
[AC_DEFINE(HAVE_PAM, 1,
[Define if you have PAM support.])
LIBS="$LIBS -ldl"],,
[-ldl])])
fi
fi
ac_add_mod_cap="no"
ac_have_libcap="no"
if test x"$enable_cap" != xno; then
case "$host" in
[*-linux-*])
rev=`uname -r | awk -F'[[.-]]' '{printf "%03d%03d%03d", $1, $2, $3}'`
if test $rev -ge 002001097; then
AC_CHECK_HEADERS(linux/capability.h)
if test $ac_cv_header_linux_capability_h = "yes"; then
ac_add_mod_cap="yes"
fi
AC_CHECK_LIB(cap2, cap_init,
[ac_have_libcap="yes"
AC_DEFINE(HAVE_LIBCAP2, 1, [Define if libcap2 is present.])
],[AC_CHECK_LIB(cap, cap_init,
[ac_have_libcap="yes"
AC_DEFINE(HAVE_LIBCAP, 1, [Define if libcap is present.])
])
])
fi
esac
fi
AC_MSG_CHECKING([whether to enable mod_cap])
AC_MSG_RESULT($ac_add_mod_cap)
if test x"$ac_add_mod_cap" = xyes; then
dnl Make sure that mod_ifsession, if present in the list, appears at
dnl the end.
if test x"$ifsession_requested" = xtrue; then
ac_static_modules=`echo "$ac_static_modules" | sed -e 's/mod_ifsession\.o//g'`
ac_static_modules="$ac_static_modules mod_cap.o mod_ifsession.o"
ac_build_static_modules=`echo "$ac_build_static_modules" | sed -e 's/modules\/mod_ifsession\.o//g'`
ac_build_static_modules="$ac_build_static_modules modules/mod_cap.o modules/mod_ifsession.o";
else
ac_static_modules="$ac_static_modules mod_cap.o"
ac_build_static_modules="$ac_build_static_modules modules/mod_cap.o"
fi
fi
AC_CHECK_HEADERS(bstring.h crypt.h ctype.h execinfo.h iconv.h inttypes.h langinfo.h limits.h locale.h)
AC_CHECK_HEADERS(string.h strings.h stropts.h)
AC_CHECK_HEADERS(sys/file.h sys/mman.h sys/types.h sys/ucred.h sys/uio.h)
dnl These particular checks are done a little differently because on some
dnl platforms, <sys/mount.h> wants <sys/param.h> to be included first.
AC_CHECK_HEADERS(sys/param.h sys/mount.h,,,
[
[
#if HAVE_SYS_PARAM_H
# include <sys/param.h>
#endif
]
])
AC_CHECK_HEADERS(netdb.h netinet/in.h)
dnl On AIX, it seems that in order for hstrerror to be properly seen
dnl from netdb.h, we need to define _USE_IRS. And people wonder why
dnl there's all this effort for compatibility, when "Unix is Unix,
dnl right?" Yeah, whatever.
AC_MSG_CHECKING(whether netdb.h requires _USE_IRS)
AC_EGREP_HEADER(_USE_IRS, netdb.h,
[
AC_DEFINE(_USE_IRS, 1, [Define if netdb.h requires _USE_IRS])
AC_MSG_RESULT(yes)
],
[
AC_MSG_RESULT(no)
])
AC_CHECK_HEADERS(netinet/in_systm.h,,,
[
[
#if HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif
]
])
AC_CHECK_HEADERS(netinet/ip.h,,,
[
[
#if HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif
#if HAVE_NETINET_IN_H
# include <netinet/in.h>
#endif
#if HAVE_NETINET_IN_SYSTM_H
# include <netinet/in_systm.h>
#endif
]
])
AC_CHECK_HEADERS(netinet/tcp.h arpa/inet.h libintl.h)
AC_CHECK_HEADERS(sys/stat.h errno.h sys/socket.h sys/termios.h sys/termio.h)
AC_CHECK_HEADERS(sys/statvfs.h sys/un.h sys/vfs.h sys/select.h termios.h)
AC_CHECK_HEADERS(dirent.h ndir.h sys/ndir.h sys/dir.h vmsdir.h)
AC_CHECK_HEADERS(ucred.h ucontext.h utime.h utmpx.h)
AC_CHECK_HEADERS(regex.h)
AC_CHECK_HEADER(syslog.h, have_syslog_h="yes",)
AC_CHECK_HEADERS(curses.h ncurses.h)
dnl Check for the presence of the tzname, timezone, and daylight global
dnl variables.
AC_MSG_CHECKING(for tzname global variable)
AC_TRY_COMPILE([
#include <time.h>
], [
char *dup[2];
dup[0] = tzname[0];
dup[1] = tzname[1];
],
[
AC_DEFINE(HAVE_TZNAME, 1, [Define if you have the tzname variable.])
AC_MSG_RESULT(yes)
], [
AC_MSG_RESULT(no)
])
dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
AC_C_INLINE
AC_TYPE_UID_T
AC_TYPE_PID_T
AC_TYPE_SIZE_T
AC_TYPE_MODE_T
AC_TYPE_OFF_T
AC_TYPE_GETGROUPS
dnl Check to see if timer_t is already defined
AC_CACHE_CHECK([for timer_t], pr_cv_header_timer_t,
AC_EGREP_HEADER([.*typedef.*timer_t;],sys/types.h,
pr_cv_header_timer_t="yes",
AC_EGREP_HEADER([.*typedef.*timer_t;],limits.h,
pr_cv_header_timer_t="yes",pr_cv_header_timer_t="no")))
if test "$pr_cv_header_timer_t" = "yes"; then
AC_DEFINE(HAVE_TIMER_T, 1, [Define if you have the timer_t type])
fi
AC_HEADER_TIME
AC_STRUCT_TM
AC_CHECK_SIZEOF(short, 0)
AC_CHECK_SIZEOF(int, 0)
AC_CHECK_SIZEOF(long, 0)
AC_CHECK_SIZEOF(long long, 0)
AC_CHECK_SIZEOF(off_t, 0)
AC_CHECK_SIZEOF(size_t, 0)
AC_CHECK_SIZEOF(time_t, 0)
AC_CHECK_SIZEOF(char *, 0)
AC_CHECK_SIZEOF(void *, 0)
dnl Check for generic typedefs
AC_CHECK_TYPE(mode_t, mode_t)
AC_CHECK_TYPE(ino_t, ino_t)
AC_CHECK_TYPE(intptr_t, AC_DEFINE(HAVE_INTPTR_T),, [
#if HAVE_INTTYPES_H
# include <inttypes.h>
#endif
])
AC_CHECK_TYPES(socklen_t, ,
[AC_DEFINE(socklen_t, int)],
[
#if HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif
#if HAVE_NETDB_H
# include <netdb.h>
#endif
#include <sys/socket.h>
])
dnl See what type of utmp exists
AC_CHECK_HEADERS(utmp.h, have_utmp=1, have_utmp=0)
if test $have_utmp; then
AC_CACHE_CHECK(whether struct utmp has ut_user,
pr_cv_header_utmaxtype,
AC_EGREP_HEADER([ *ut_user.*;],utmp.h,
pr_cv_header_utmaxtype="yes",
pr_cv_header_utmaxtype="no"))
AC_CACHE_CHECK(whether struct utmp has ut_host,
pr_cv_header_ut_host,
AC_EGREP_HEADER([ *ut_host.*;],utmp.h,
pr_cv_header_ut_host="yes",
pr_cv_header_ut_host="no"))
AC_CACHE_CHECK(whether struct utmp has ut_exit,
pr_cv_header_ut_exit,
AC_EGREP_HEADER([ *ut_exit.*;],utmp.h,
pr_cv_header_ut_exit="yes",
pr_cv_header_ut_exit="no"))
if test "$pr_cv_header_utmaxtype" = "yes"; then
AC_DEFINE(HAVE_UTMAXTYPE, 1, [Define if struct utmp has ut_user.])
fi
if test "$pr_cv_header_ut_host" = "yes"; then
AC_DEFINE(HAVE_UT_UT_HOST, 1, [Define if struct utmp has ut_host.])
fi
if test "$pr_cv_header_ut_exit" = "yes"; then
AC_DEFINE(HAVE_UT_UT_EXIT, 1, [Define if struct utmp has ut_exit.])
fi
fi
dnl See if various LOG_ macros are defined
if test "$have_syslog_h" = "yes"; then
AC_DEFINE(HAVE_SYSLOG_H, 1, [Define if you have <syslog.h>])
AC_CACHE_CHECK(whether syslog.h defines LOG_CRON,
pr_cv_header_syslog_log_cron,
AC_EGREP_CPP(yes,[
#include <syslog.h>
#ifdef LOG_CRON
yes
#endif
],pr_cv_header_syslog_log_cron="yes",
pr_cv_header_syslog_log_cron="no") )
AC_CACHE_CHECK(whether syslog.h defines LOG_FTP,
pr_cv_header_syslog_log_ftp,
AC_EGREP_CPP(yes,[
#include <syslog.h>
#ifdef LOG_FTP
yes
#endif
],pr_cv_header_syslog_log_ftp="yes",
pr_cv_header_syslog_log_ftp="no") )
if test "$pr_cv_header_syslog_log_cron" = "yes"; then
AC_DEFINE(HAVE_LOG_CRON, 1, [Define if you have LOG_CRON])
fi
if test "$pr_cv_header_syslog_log_ftp" = "yes"; then
AC_DEFINE(HAVE_LOG_FTP, 1, [Define if you have LOG_FTP])
fi
fi
dnl Check for directory file descriptor member ("d_fd", "dd_fd" or "__dd_fd")
dnl of the DIR struct, possibly defining one of:
dnl HAVE_STRUCT_DIR_D_FD
dnl HAVE_STRUCT_DIR_DD_FD
dnl HAVE_STRUCT_DIR___DD_FD
dnl Should use AC_C_STRUCT_MEMBER, when available in an official release.
dnl The autoconf-2.14.1 floating around is NOT an official release.
dnl Note: use of either the _POSIX_C_SOURCE or the _XOPEN_SOURCE preprocessor
dnl macro could result in a wrong answer unless it is also defined here.
dnl Doing so may be automatic or may take some care or reordering.
dnl NB: autoheader won't pick up these macros, requiring acconfig.h entries.
dnl
for dirfd in d_fd dd_fd __dd_fd ; do
AC_MSG_CHECKING(for $dirfd in DIR structure)
AC_TRY_COMPILE([
#include <stdio.h>
#include <dirent.h>
], [
DIR *dirp;
int i = dirp->$dirfd;
], eval ac_cv_struct_dir_$dirfd=yes,)
if test "`eval echo x'$''ac_cv_struct_dir_'$dirfd`" = xyes ; then
ucdirfd=`echo $dirfd | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
AC_DEFINE_UNQUOTED(HAVE_STRUCT_DIR_$ucdirfd)
AC_MSG_RESULT(yes)
break
else
AC_MSG_RESULT(no)
fi
done
dnl Checks for library functions.
AC_FUNC_ALLOCA
dnl UnixWare's alloca is in libucb, in /usr/ucblib/. Muck about with
dnl $LDFLAGS so AC_CHECK_LIB() will find it there.
old_LDFLAGS=$LDFLAGS
LDFLAGS="$LDFLAGS -L/usr/ucblib/"
AC_CHECK_LIB(ucb, alloca)
LDFLAGS=$old_LDFLAGS
AC_PROG_GCC_TRADITIONAL
AC_TYPE_SIGNAL
AC_FUNC_VPRINTF
AC_CHECK_FUNCS(bcopy crypt fdatasync fgetgrent fgetpwent fgetspent flock fpathconf freeaddrinfo futimes getpgid getpgrp nl_langinfo)
AC_CHECK_FUNC(gai_strerror,
AC_DEFINE(HAVE_GAI_STRERROR, 1,
[Define if you have the gai_strerror() function]),
LIB_OBJS="$LIB_OBJS glibc-gai_strerror.o"
)
AC_MSG_CHECKING([for iconv])
AC_TRY_LINK(
[ #include <stdlib.h>
#include <sys/types.h>
#ifdef HAVE_ICONV_H
# include <iconv.h>
#endif
],
[
size_t res, in_len = 0, out_len = 0;
const char *in = NULL;
char *out = NULL;
res = iconv((iconv_t)-1, &in, &in_len, &out, &out_len);
],
[
AC_MSG_RESULT(yes)
AC_DEFINE(HAVE_ICONV, 1, [Define if you have iconv])
],
[
AC_MSG_RESULT(no)
]
)
AC_MSG_CHECKING([for dirfd])
AC_TRY_LINK(
[
#include <stdio.h>
#include <sys/types.h>
#if HAVE_DIRENT_H
# include <dirent.h>
#endif
],
[
DIR *dirh = NULL;
int fd;
fd = dirfd(dirh);
],
[
AC_MSG_RESULT(yes)
AC_DEFINE(HAVE_DIRFD, 1, [Define if you have dirfd])
],
[
AC_MSG_RESULT(no)
]
)
dnl getaddrinfo is a #define on Tru64 Unix. How annoying.
AC_MSG_CHECKING([for getaddrinfo])
AC_TRY_LINK(
[
#include <stdio.h>
#if HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif
#if HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif
#if HAVE_NETDB_H
# include <netdb.h>
#endif
],
[
getaddrinfo(NULL, NULL, NULL, NULL);
],
[
AC_MSG_RESULT(yes)
AC_DEFINE(HAVE_GETADDRINFO, 1, [Define if you have getaddrinfo])
],
[
AC_MSG_RESULT(no)
]
)
AC_CHECK_FUNCS(getcwd getenv getgrouplist getgrset gethostbyname2 gethostname getnameinfo)
AC_CHECK_FUNCS(gettimeofday hstrerror inet_aton inet_ntop inet_pton)
AC_CHECK_FUNCS(loginrestrictions)
AC_CHECK_FUNCS(memcpy mempcpy mkdir mkstemp mlock mlockall munlock munlockall)
AC_CHECK_FUNCS(pathconf putenv regcomp rmdir select setgroups socket statfs strchr strcoll strerror)
AC_CHECK_FUNCS(strsep strtod strtof strtol strtoull setprotoent setspent endprotoent)
# __snprintf and __vsnprintf are only on solaris and _really_ broken there.
AC_CHECK_FUNCS(vsnprintf snprintf)
if test x"$ac_cv_func_vsnprintf" != xyes || test x"$ac_cv_func_snprintf" != xyes
then
AC_CHECK_FUNCS(fconvert fcvt)
AC_CHECK_HEADERS(floatingpoint.h)
fi
AC_CHECK_FUNCS(setsid setgroupent seteuid setegid setenv setpgid siginterrupt)
AC_CHECK_FUNCS(tzset uname unsetenv)
AC_CHECK_FUNC(setpassent,
[case "$target_os:$enable_force_setpassent" in
changequote(, )dnl
*freebsd[23]\.[0-3]*:)
changequote([, ])dnl
AC_MSG_WARN(Disabling broken FreeBSD setpassent(), see README for details.)
;;
*:no) ;;
*) AC_DEFINE(HAVE_SETPASSENT, 1, [Define if you have setpassent()]) ;;
esac])
dnl Controls
if test x"$enable_ctrls" = xyes; then
AC_CHECK_FUNCS(getpeereid getpeerucred)
ac_static_modules="$ac_static_modules mod_ctrls.o"
ac_build_static_modules="$ac_build_static_modules modules/mod_ctrls.o"
fi
dnl NLS/LANG support
if test x"$enable_nls" = xyes; then
ac_static_modules="$ac_static_modules mod_lang.o"
ac_build_static_modules="$ac_build_static_modules modules/mod_lang.o"
fi
dnl Controls-related checks
AC_CHECK_MEMBER(struct cmsgcred.cmcred_uid,
[AC_DEFINE(HAVE_STRUCT_CMSGCRED, 1, [Define if you have struct cmsgcred])],,
[
#if HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif
#if HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif
#if HAVE_SYS_UIO_H
# include <sys/uio.h>
#endif
])
AC_CHECK_MEMBER(struct sockcred.sc_uid,
[AC_DEFINE(HAVE_STRUCT_SOCKCRED, 1, [Define if you have struct sockcred])],,
[
#if HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif
#if HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif
#if HAVE_SYS_UIO_H
# include <sys/uio.h>
#endif
])
dnl IPv4/IPv6-related checks
AC_CHECK_MEMBER(struct sockaddr_in.sin_len,
[AC_DEFINE(SIN_LEN, 1, [Define if you have sockaddr_in.sin_len])],,
[
#if HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif
#if HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif
#if HAVE_NETINET_IN_H
# include <netinet/in.h>
#endif
])
dnl Largefile support
if test x"$enable_largefile" = xno; then
AC_DEFINE(PR_USE_LARGEFILES, 0, [Define if you have largefile support])
else
AC_DEFINE(PR_USE_LARGEFILES, 1, [Define if you have largefile support])
fi
PR_CHECK_STRUCT_ADDRINFO
PR_CHECK_STRUCT_SS
PR_CHECK_SS_FAMILY
PR_CHECK_SS_LEN
dnl POSIX ACL checks. Always perform these, in case the administrator
dnl wants to use mod_facl.
AC_CHECK_HEADERS(sys/acl.h acl/libacl.h)
AC_CACHE_CHECK(
[which POSIX ACL implementation to use],
pr_cv_func_facl,
pr_cv_func_facl="none"
dnl BSD.
if test "$pr_cv_func_facl" = "none"; then
AC_TRY_LINK(
[ #include <sys/types.h>
#ifdef HAVE_SYS_ACL_H
# include <sys/acl.h>
#endif
],
[ acl_entry_t ae;
(void)acl_get_qualifier(ae);
], pr_cv_func_facl="BSD")
fi
dnl Linux.
if test "$pr_cv_func_facl" = "none"; then
old_ldflags=$LDFLAGS
LDFLAGS="-lacl $LDFLAGS"
AC_TRY_LINK(
[ #include <sys/types.h>
#ifdef HAVE_SYS_ACL_H
# include <sys/acl.h>
#endif
],
[ acl_entry_t ae;
(void)acl_get_qualifier(ae);
], pr_cv_func_facl="Linux")
LDFLAGS=$old_ldflags
fi
dnl Solaris.
if test "$pr_cv_func_facl" = "none"; then
old_ldflags=$LDFLAGS
LDFLAGS="-lsec $LDFLAGS"
AC_TRY_LINK(
[ #include <sys/types.h>
#ifdef HAVE_SYS_ACL_H
# include <sys/acl.h>
#endif
],
[ aclent_t ae;
(void)aclcheck(&ae,0,NULL);
], pr_cv_func_facl="Solaris")
LDFLAGS=$old_ldflags
fi
)
dnl Now, set the appropriate defines based on our investigations...
if test "$pr_cv_func_facl" != "none"; then
AC_DEFINE(HAVE_POSIX_ACL, 1, [Define if you have POSIX ACL support])
case "$pr_cv_func_facl" in
"BSD")
AC_DEFINE(HAVE_BSD_POSIX_ACL, 1,
[Define if you have BSD-flavoured POSIX ACL support])
;;
"Linux")
AC_DEFINE(HAVE_LIBACL, 1, [Define if you have libacl])
AC_DEFINE(HAVE_LINUX_POSIX_ACL, 1,
[Define if you have Linux-flavoured POSIX ACL support])
AC_CHECK_LIB(acl, perm_copy_fd,
[AC_DEFINE(HAVE_PERM_COPY_FD, 1, [Define if you have perm_copy_fd])])
;;
"Solaris")
AC_DEFINE(HAVE_LIBSEC, 1, [Define if you have libsec])
AC_DEFINE(HAVE_SOLARIS_POSIX_ACL, 1,
[Define if you have Solaris-flavoured POSIX ACL support])
;;
esac
fi
if test x"$enable_facl" = xyes ; then
AC_DEFINE(PR_USE_FACL, 1, [Define if using POSIX ACL support.])
case "$pr_cv_func_facl" in
"Linux")
ac_build_addl_libs="-lacl $ac_build_addl_libs"
;;
"Solaris")
ac_build_addl_libs="-lsec $ac_build_addl_libs"
;;
esac
fi
dnl IPv6. Remember that the option is --disable-ipv6, despite the
dnl $enable_ipv6 variable name.
if test x"$enable_ipv6" != xno ; then
AC_DEFINE(PR_USE_IPV6, 1, [Define if using IPv6 support.])
fi
dnl sendfile() checks
if test x"$enable_sendfile" != xno ; then
AC_CACHE_CHECK(
[which sendfile() implementation to use],
pr_cv_func_sendfile,
pr_cv_func_sendfile="none"
dnl Linux.
if test "$pr_cv_func_sendfile" = "none"; then
AC_TRY_LINK(
[ #include <sys/types.h>
#include <sys/sendfile.h>
#include <unistd.h>
],
[ int i;
off_t o;
size_t c;
(void)sendfile(i,i,&o,c);
], pr_cv_func_sendfile="Linux")
fi
dnl BSD.
if test "$pr_cv_func_sendfile" = "none"; then
AC_TRY_LINK(
[ #include <sys/types.h>
#include <sys/socket.h>
#include <sys/uio.h>
],
[ int i;
off_t o;
size_t n;
struct sf_hdtr h;
(void)sendfile(i,i,o,n,&h,&o,i);
], pr_cv_func_sendfile="BSD")
fi
dnl AIX.
if test "$pr_cv_func_sendfile" = "none"; then
AC_TRY_LINK(
[ #include <sys/types.h>
#include <sys/socket.h>
],
[ uint f;
int h;
struct sf_parms p;
(void)send_file(&(h),&(p),f);
], pr_cv_func_sendfile="AIX")
fi
dnl Solaris
if test "$pr_cv_func_sendfile" = "none"; then
old_ldflags=$LDFLAGS
LDFLAGS="-lsendfile $LDFLAGS"
AC_TRY_LINK(
[ #include <sys/types.h>
#include <sys/sendfile.h>
#include <unistd.h>
],
[ int i;
off_t o;
size_t c;
(void)sendfile(i,i,&o,c);
], pr_cv_func_sendfile="Solaris")
LDFLAGS=$old_ldflags
fi
dnl Mac OSX (10.5 and later)
if test "$pr_cv_func_sendfile" = "none"; then
AC_TRY_LINK(
[ #include <sys/types.h>
#include <sys/socket.h>
#include <sys/uio.h>
],
[ int i;
off_t o, n;
struct sf_hdtr h;
(void)sendfile(i,i,o,&n,&h,i);
], pr_cv_func_sendfile="Mac OSX")
fi
)
dnl Now, set the appropriate defines based on our investigations...
if test x"$pr_cv_func_sendfile" != x"none"; then
dnl Avoid defining these for AIX and its buggy sendfile implementation,
dnl as per Bug#3675
if test x"$pr_cv_func_sendfile" != x"AIX"; then
AC_DEFINE(HAVE_SENDFILE, 1, [Define if you have <sendfile.h>])
AC_DEFINE(PR_USE_SENDFILE, 1,
[Define if using sendfile support.])
fi
fi
case "$pr_cv_func_sendfile" in
"Linux")
AC_CHECK_HEADERS(sys/sendfile.h)
AC_DEFINE(HAVE_LINUX_SENDFILE, 1,
[Define if using Linux sendfile support.])
;;
"BSD")
AC_DEFINE(HAVE_BSD_SENDFILE, 1,
[Define if using BSD sendfile support.])
;;
"AIX")
AC_MSG_WARN([** AIX sendfile support automatically disabled **])
;;
"Solaris")
AC_CHECK_HEADERS(sys/sendfile.h)
AC_DEFINE(HAVE_SOLARIS_SENDFILE, 1,
[Define if using Solaris sendfile support.])
ac_build_addl_libs="-lsendfile $ac_build_addl_libs"
;;
"Mac OSX")
AC_DEFINE(HAVE_MACOSX_SENDFILE, 1,
[Define if using Mac OSX sendfile support.])
;;
esac
fi
dnl Trace checks
if test x"$enable_trace" != xno ; then
AC_DEFINE(PR_USE_TRACE, 1, [Define for trace support])
fi
dnl Custom-rolled macro for checking return type of setgrent(3)
PR_FUNC_SETGRENT_VOID
dnl Perform checks for curses/ncurses libraries only if the corresponding
dnl headers have been found.
if test x"$ac_cv_header_curses_h" = xyes; then
AC_CHECK_LIB(curses, initscr,
[ CURSES_LIBS="-lcurses"
AC_DEFINE(HAVE_LIBCURSES, 1, [Define if you have curses])
])
fi
pr_have_ncursesw="no"
if test x"$ac_cv_header_ncurses_h" = xyes; then
dnl If NLS support has been enabled, then check for the locale-sensitive
dnl libncursesw library first; if not found, or if no NLS support, then
dnl check for libncurses.
if test x"$enable_nls" = xyes ; then
AC_CHECK_LIB(ncursesw, initscr,
[ CURSES_LIBS="-lncursesw"
pr_have_ncursesw="yes"
AC_DEFINE(HAVE_LIBNCURSESW, 1, [Define if you have ncursesw])
], [
AC_CHECK_LIB(ncurses, initscr,
[ CURSES_LIBS="-lncurses"
AC_DEFINE(HAVE_LIBNCURSES, 1, [Define if you have ncurses])
])
])
else
AC_CHECK_LIB(ncurses, initscr,
[ CURSES_LIBS="-lncurses"
AC_DEFINE(HAVE_LIBNCURSES, 1, [Define if you have ncurses])
])
fi
fi
if test x"$enable_curses" != xno ; then
AC_DEFINE(PR_USE_CURSES, 1, [Define if using curses support])
fi
if test x"$enable_ncurses" != xno ; then
if test x"$pr_have_ncursesw" = xyes ; then
AC_DEFINE(PR_USE_NCURSESW, 1, [Define if using ncursesw support])
else
AC_DEFINE(PR_USE_NCURSES, 1, [Define if using ncurses support])
fi
fi
if test x"$enable_nonblocking_log_open" != xno; then
AC_DEFINE(PR_USE_NONBLOCKING_LOG_OPEN, 1, [Define if using nonblocking open of log files])
fi
if test x"$enable_ident" != xno ; then
ac_static_modules="mod_ident.o $ac_static_modules"
ac_build_static_modules="modules/mod_ident.o $ac_build_static_modules"
fi
dnl Check for various argv[] replacing functions on various OSs
AC_CHECK_FUNCS(setproctitle)
AC_CHECK_HEADERS(libutil.h)
AC_CHECK_LIB(util, setproctitle,
[AC_DEFINE(HAVE_SETPROCTITLE)
ac_cv_func_setproctitle="yes" ; LIBS="$LIBS -lutil"])
if test "$ac_cv_func_setproctitle" = "yes"; then
AC_DEFINE(PF_ARGV_TYPE, PF_ARGV_NONE)
else
pf_argv_set="no"
AC_CHECK_HEADERS(sys/pstat.h,have_pstat_h="yes",have_pstat_h="no")
if test "$have_pstat_h" = "yes"; then
AC_CHECK_FUNCS(pstat)
if test "$ac_cv_func_pstat" = "yes"; then
AC_DEFINE(PF_ARGV_TYPE, PF_ARGV_PSTAT)
else
AC_DEFINE(PF_ARGV_TYPE, PF_ARGV_WRITEABLE)
fi
pf_argv_set="yes"
fi
if test "$pf_argv_set" = "no"; then
AC_EGREP_HEADER([#define.*PS_STRINGS.*],sys/exec.h,
have_psstrings="yes",have_psstrings="no")
if test "$have_psstrings" = "yes"; then
AC_DEFINE(PF_ARGV_TYPE, PF_ARGV_PSSTRINGS)
pf_argv_set="yes"
fi
fi
if test "$pf_argv_set" = "no"; then
AC_CACHE_CHECK(whether __progname and __progname_full are available,
pf_cv_var_progname,
AC_TRY_LINK([extern char *__progname, *__progname_full;],
[__progname = "foo"; __progname_full = "foo bar";],
pf_cv_var_progname="yes", pf_cv_var_progname="no"))
if test "$pf_cv_var_progname" = "yes"; then
AC_DEFINE(HAVE___PROGNAME, 1, [Define if you have __progname])
fi
AC_CACHE_CHECK(which argv replacement method to use,
pf_cv_argv_type,
AC_EGREP_CPP(yes,[
#if defined(__GNU_HURD__)
yes
#endif
],pf_cv_argv_type="new", pf_cv_argv_type="writeable"))
if test "$pf_cv_argv_type" = "new"; then
AC_DEFINE(PF_ARGV_TYPE, PF_ARGV_NEW)
pf_argv_set="yes"
fi
if test "$pf_argv_set" = "no"; then
AC_DEFINE(PF_ARGV_TYPE, PF_ARGV_WRITEABLE)
fi
fi
fi
dnl Run a small test program to see if the host's printf(3) family can
dnl actually handle the %llu format.
AC_MSG_CHECKING([whether printf supports %llu format]);
AC_TRY_RUN(
[ #include <stdio.h>
int main(int argc, char *argv[]) {
return (fprintf(stderr, "%llu\n", (unsigned long long) 1) == 2 ? 0 : 1);
}
],
AC_MSG_RESULT(yes); AC_DEFINE(HAVE_LLU, 1, [Define if you have %llu support]),
AC_MSG_RESULT(no); AC_DEFINE(HAVE_LU, 1, [Define if you have %lu support]),
AC_MSG_RESULT(cross-compiling); AC_DEFINE(HAVE_LU, 1, [Define if you have %lu support])
)
dnl Add the proftpd support library
LIBS="-lsupp $LIBS"
dnl Module handling.
ac_shared_module_dirs=
ac_static_module_dirs=
dnl Remove any modules in the shared module list from the core and static
dnl module lists
for amodule in $ac_shared_modules; do
module=`echo "$amodule" | sed -e 's/\.la//g'`.o;
ac_core_modules=`echo "$ac_core_modules" | sed -e "s/$module//g"`;
ac_build_core_modules=`echo "$ac_build_core_modules" | sed -e "s/modules\/$module//g"`;
ac_static_modules=`echo "$ac_static_modules" | sed -e "s/$module//g"`;
ac_build_static_modules=`echo "$ac_build_static_modules" | sed -e "s/modules\/$module//g"`;
done
GLUE_MODULE_OBJS="$ac_core_modules $ac_static_modules"
dnl Check for any duplicates
my_core_modules=`echo "$ac_core_modules" | sed -e 's/\.o//g'`;
my_static_modules=`echo "$ac_static_modules" | sed -e 's/\.o//g'`;
my_shared_modules=`echo "$ac_shared_modules" | sed -e 's/\.la//g'`;
all_modules="$my_core_modules $my_static_modules $my_shared_modules";
pr_use_mysql="no"
pr_use_openssl="no"
pr_use_postgres="no"
AC_MSG_CHECKING([for duplicate module build requests])
for i in $all_modules; do
once=no;
dnl Make sure the OpenSSL define is set if mod_tls or mod_sftp are being used
if test x"$i" = x"mod_tls"; then
pr_use_openssl=yes
elif test x"$i" = x"mod_sftp"; then
pr_use_openssl=yes
elif test x"$i" = x"mod_sql_passwd"; then
pr_use_openssl=yes
fi
for j in $all_modules; do
if test x"$i" = x"$j"; then
if test x"$once" = xno; then
once=yes;
else
AC_MSG_RESULT([yes])
AC_MSG_ERROR([duplicate build request for $j -- aborting])
fi
fi
done
dnl Use database-specific config scripts, if we can. Note that
dnl these will cause problems for cross-compiles!
if test x"$i" = x"mod_sql_mysql"; then
pr_use_mysql="yes"
if test x"$my_config" != xno; then
if `$my_config --version 2>/dev/null 1>&2`; then
# mysql_config --include gives path WITH -I prefix
mysql_includes=`$my_config --include 2>/dev/null`
if test ! -z "$mysql_includes"; then
ac_build_addl_includes="$ac_build_addl_includes $mysql_includes"
fi
# mysql_config --libs gives ALL options; use just the -L ones.
#
# Note that due to Bug#3702, we also need to look for -pthread, and
# if present, add it to the LIBS list of flags.
mysql_libdirs=`$my_config --libs 2>/dev/null`
if test ! -z "$mysql_libdirs"; then
for my_libdir in $mysql_libdirs; do
l=`echo -n "$my_libdir" | sed -n '/^-L/{p;}'`
if test ! -z "$l"; then
ac_build_addl_libdirs="$ac_build_addl_libdirs $my_libdir"
fi
if test x"$my_libdir" = x"-pthread"; then
LIBS="$LIBS -pthread"
fi
done
fi
fi
fi
elif test x"$i" = x"mod_sql_postgres"; then
pr_use_postgres="yes"
if test x"$pg_config" != xno; then
if `$pg_config 2>/dev/null 1>&2`; then
# pg_config --includedir gives path, no -I prefix
pg_includes=`$pg_config --includedir 2>/dev/null`
if test ! -z "$pg_includes"; then
ac_build_addl_includes="$ac_build_addl_includes -I$pg_includes"
fi
# pg_config --libdir gives path, no -L prefix
pg_libdirs=`$pg_config --libdir 2>/dev/null`
if test ! -z "pg_libdirs"; then
ac_build_addl_libdirs="$ac_build_addl_libdirs -L$pg_libdirs"
fi
fi
fi
fi
done
AC_MSG_RESULT([no])
if test x"$pr_use_mysql" = xyes; then
# Check for other MySQL-specific functionality here
saved_ldflags="$LDFLAGS"
saved_libs="$LIBS"
saved_cppflags="$CPPFLAGS"
AC_MSG_CHECKING([for MySQL's make_scrambled_password_323])
# fiddle with CPPFLAGS, LDFLAGS
CPPFLAGS="$CPPFLAGS $ac_build_addl_includes"
LDFLAGS="$LDFLAGS -lm -lmysqlclient -lz"
dnl Splice out -lsupp, since that library hasn't been built yet
LIBS=`echo "$LIBS" | sed -e 's/-lsupp//g'`;
LIBS="$LIBS $ac_build_addl_libdirs"
AC_TRY_LINK(
[
#ifdef HAVE_STDLIB_H
# include <stdlib.h>
#endif
#ifdef HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif
#include <mysql.h>
],
[
char input[32];
char *output = NULL;
(void) make_scrambled_password_323(input, output);
],
[
AC_MSG_RESULT(yes)
AC_DEFINE(HAVE_MYSQL_MAKE_SCRAMBLED_PASSWORD_323, 1, [Define if you have MySQL's make_scrambled_password_323])
],
[
AC_MSG_RESULT(no)
]
)
# restore CPPFLAGS, LDFLAGS
CPPFLAGS="$saved_cppflags"
LDFLAGS="$saved_ldflags"
LIBS="$saved_libs"
fi
if test x"$pr_use_openssl" = xyes; then
AC_DEFINE(PR_USE_OPENSSL, 1, [Define if using OpenSSL support.])
ac_build_addl_libs="$ac_build_addl_libs -lssl -lcrypto"
AC_MSG_CHECKING([whether OpenSSL is compiled with FIPS support])
saved_libs="$LIBS"
dnl Splice out -lsupp, since that library hasn't been built yet
LIBS=`echo "$LIBS" | sed -e 's/-lsupp//g'`;
LIBS="$LIBS -lcrypto"
AC_TRY_RUN(
[
#include <openssl/fips.h>
int main(int argc, char *argv[]) {
# ifdef OPENSSL_FIPS
return 0;
# else
return 1;
#endif
}
],
AC_MSG_RESULT(yes); AC_DEFINE(PR_USE_OPENSSL_FIPS, 1, [Define if your OpenSSL supports FIPS]),
AC_MSG_RESULT(no),
AC_MSG_RESULT(unknown)
)
LIBS="$saved_libs"
AC_MSG_CHECKING([whether linking with OpenSSL functions succeeds])
AC_TRY_LINK(
[
#include <openssl/evp.h>
],
[
SSLeay_add_all_algorithms();
],
[
AC_MSG_RESULT(yes)
],
[
AC_MSG_RESULT(no)
AC_MSG_CHECKING([whether linking with OpenSSL functions requires -ldl])
saved_libs="$LIBS"
dnl Splice out -lsupp, since that library hasn't been built yet
LIBS=`echo "$LIBS" | sed -e 's/-lsupp//g'`;
LIBS="$LIBS -lcrypto -ldl"
AC_TRY_LINK(
[
#include <openssl/evp.h>
],
[
SSLeay_add_all_algorithms();
],
[
AC_MSG_RESULT(yes)
LIBS="$saved_libs -ldl"
],
[
AC_MSG_RESULT(no)
LIBS="$saved_libs"
]
)
AC_MSG_CHECKING([whether linking with OpenSSL functions requires -lz])
saved_libs="$LIBS"
dnl Splice out -lsupp, since that library hasn't been built yet
LIBS=`echo "$LIBS" | sed -e 's/-lsupp//g'`;
LIBS="$LIBS -lcrypto -lz"
AC_TRY_LINK(
[
#include <openssl/evp.h>
#include <openssl/bio.h>
#include <openssl/comp.h>
],
[
BIO *bio;
SSLeay_add_all_algorithms();
bio = BIO_new(BIO_f_zlib());
],
[
AC_MSG_RESULT(yes)
LIBS="$saved_libs -lz"
],
[
AC_MSG_RESULT(no)
LIBS="$saved_libs"
]
)
]
)
fi
if test x"$pr_use_postgres" = xyes; then
# Check for other Postgres-specific functionality here
saved_ldflags="$LDFLAGS"
saved_libs="$LIBS"
saved_cppflags="$CPPFLAGS"
AC_MSG_CHECKING([for Postgres's PQescapeStringConn])
# fiddle with CPPFLAGS, LDFLAGS
CPPFLAGS="$CPPFLAGS $ac_build_addl_includes"
LDFLAGS="$LDFLAGS -lm -lpq"
dnl Splice out -lsupp, since that library hasn't been built yet
LIBS=`echo "$LIBS" | sed -e 's/-lsupp//g'`;
LIBS="$LIBS $ac_build_addl_libdirs"
AC_TRY_LINK(
[
#ifdef HAVE_STDLIB_H
# include <stdlib.h>
#endif
#ifdef HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif
#include <libpq-fe.h>
],
[
char *input = NULL, *output = NULL;
size_t inputlen = 0;
PGconn *postgres = NULL;
int pgerr = 0;
PQescapeStringConn(postgres, output, input, inputlen, &pgerr);
],
[
AC_MSG_RESULT(yes)
AC_DEFINE(HAVE_POSTGRES_PQESCAPESTRINGCONN, 1, [Define if you have Postgres's PQescapeStringConn])
],
[
AC_MSG_RESULT(no)
]
)
# restore CPPFLAGS, LDFLAGS
CPPFLAGS="$saved_cppflags"
LDFLAGS="$saved_ldflags"
LIBS="$saved_libs"
fi
for module in $ac_shared_modules ; do
moduledir=`echo "$module" | sed -e 's/\.la$//'`;
if test -f $srcdir/modules/$src -o -f $srcdir/contrib/$src; then
continue
elif test -d $srcdir/modules/$moduledir; then
ac_shared_module_dirs="$ac_shared_module_dirs modules/$moduledir";
ac_shared_modules=`echo "$ac_shared_modules" | sed -e "s/$module//"`
elif test -d $srcdir/contrib/$moduledir; then
ac_shared_module_dirs="$ac_shared_module_dirs contrib/$moduledir";
ac_shared_modules=`echo "$ac_shared_modules" | sed -e "s/$module//"`
fi
done
for module in $ac_static_modules ; do
moduledir=`echo "$module" | sed -e 's/\.o$//'`;
if test -f $srcdir/modules/$src -o -f $srcdir/contrib/$src; then
continue
elif test -d $srcdir/modules/$moduledir; then
ac_static_module_dirs="$ac_static_module_dirs modules/$moduledir";
ac_static_modules=`echo "$ac_static_modules" | sed -e "s/$module//"`
elif test -d $srcdir/contrib/$moduledir; then
ac_static_module_dirs="$ac_static_module_dirs contrib/$moduledir";
ac_static_modules=`echo "$ac_static_modules" | sed -e "s/$module//"`
addonlibs=""
src=`echo "$module" | sed -e 's/\.o$//'`.c;
srcinc=`echo "$module" | sed -e 's/\.o$//'`.h;
if test -f $srcdir/contrib/$moduledir/$src ; then
srcarch=`sed -n '/.*\$Archive: \(.*\)\$.*/s//\1/p' "$srcdir/contrib/$moduledir/$src"`
srclib=`sed -n '/.*\$Libraries: \(.*\)\$.*/s//\1/p' "$srcdir/contrib/$moduledir/$src"`
else
srcarch=
srclib=
fi
if test -f $srcdir/contrib/$moduledir/$srcinc ; then
if test -z $srcarch ; then
incarch=`sed -n '/.*\$Archive: \(.*\)\$.*/s//\1/p' "$srcdir/contrib/$moduledir/$srcinc"`
else
incarch=
fi
inclib=`sed -n '/.*\$Libraries: \(.*\)\$.*/s//\1/p' "$srcdir/contrib/$moduledir/$srcinc"`
else
incarch=
inclib=
fi
dnl If the module will be providing an archive (.a file), then remove it
dnl from the list of static module objects (.o files).
for thearch in $srcarch $incarch; do
archive=`echo "$thearch" | sed -e 's/\.a$//'`
if test x"$archive" != x"$moduledir" ; then
AC_MSG_ERROR([specified archive '$thearch' does not match expected module archive name '$moduledir.a' -- aborting])
fi
ac_static_modules=`echo "$ac_static_modules" | sed -e "s/$module//g"`
ac_build_static_modules=`echo "$ac_build_static_modules" | sed -e "s/modules\/$module//g"`
ac_build_static_module_archives="$ac_build_static_module_archives contrib/$moduledir/$thearch"
done
dnl Test for duplicate libraries, just in case.
for thelib in $srclib $inclib; do
dup="no"
for somelib in $ac_addl_libs $LIBS; do
if test "$thelib" = "$somelib"; then
dup="yes"
break
fi
done
if test "$dup" = "no"; then
addonlibs="$addonlibs $thelib"
fi
done
test x"$addonlibs" = x || ac_addl_libs="$addonlibs $ac_addl_libs"
fi
done
dnl Yes, I know that this is not recommended Autoconf practice. I doubt,
dnl though, that many users will require the use of
dnl `./configure --help=recursive' to see all of the options.
if test ! -z "$ac_shared_module_dirs" ; then
AC_CONFIG_SUBDIRS($ac_shared_module_dirs)
else
ac_shared_module_dirs="\"\""
fi
if test ! -z "$ac_static_module_dirs" ; then
AC_CONFIG_SUBDIRS($ac_static_module_dirs)
else
ac_static_module_dirs="\"\""
fi
for module in $ac_shared_modules; do
if test x"$enable_dso" != xyes ; then
AC_MSG_ERROR([cannot build shared modules without DSO support -- aborting])
fi
moduledir=`echo "$module" | sed -e 's/\.la$//'`;
src=`echo "$module" | sed -e 's/\.la$//'`.c;
srcinc=`echo "$module" | sed -e 's/\.la$//'`.h;
if test -f $srcdir/modules/$src -o -f $srcdir/contrib/$src; then
if test ! -e $srcdir/modules/$src; then
olddir=`pwd`
cd $srcdir/modules
ln -s ../contrib/$src $src
cd $olddir
fi
if test ! -e $srcdir/include/$srcinc -a -f $srcdir/contrib/$srcinc ; then
olddir=`pwd`
cd $srcdir/include
ln -s ../contrib/$srcinc $srcinc
cd $olddir
fi
elif test -d $srcdir/modules/$moduledir -o -d $srcdir/contrib/$moduledir; then
continue
else
AC_MSG_ERROR([source file '$srcdir/modules/$src' cannot be found -- aborting])
fi
done
for module in $ac_static_modules; do
addonlibs=""
moduledir=`echo "$module" | sed -e 's/\.o$//'`;
src=`echo "$module" | sed -e 's/\.o$//'`.c;
srcinc=`echo "$module" | sed -e 's/\.o$//'`.h;
if test -f $srcdir/modules/$src -o -f $srcdir/contrib/$src; then
if test ! -e $srcdir/modules/$src; then
olddir=`pwd`
cd $srcdir/modules
ln -s ../contrib/$src $src
cd $olddir
fi
if test ! -f $srcdir/include/$srcinc -a -f $srcdir/contrib/$srcinc ; then
olddir=`pwd`
cd $srcdir/include
ln -s ../contrib/$srcinc $srcinc
cd $olddir
fi
srclib=`sed -n '/.*\$Libraries: \(.*\)\$.*/s//\1/p' "$srcdir/modules/$src"`
if test -f $srcdir/include/$srcinc ; then
inclib=`sed -n '/.*\$Libraries: \(.*\)\$.*/s//\1/p' "$srcdir/include/$srcinc"`
else
inclib=
fi
dnl Test for duplicate libraries, just in case.
for thelib in $srclib $inclib; do
dup="no"
for somelib in $ac_addl_libs $LIBS; do
if test "$thelib" = "$somelib"; then
dup="yes"
break
fi
done
if test "$dup" = "no"; then
addonlibs="$addonlibs $thelib"
fi
done
test x"$addonlibs" = x || ac_addl_libs="$addonlibs $ac_addl_libs"
adir=`cat $srcdir/modules/$src | grep "\\\$Directories:" | sed -e 's/^.*\$Directories: \(.*\)\\$/\1/'`
test x"$adir" = x || ac_addl_dirs="$adir $ac_addl_dirs"
elif test -d $srcdir/modules/$moduledir -o -d $srcdir/contrib/$moduledir; then
continue
else
AC_MSG_ERROR([source file '$srcdir/modules/$src' cannot be found -- aborting])
fi
done
dnl This is a nasty, cap-specific hack. If we will be using the system
dnl libcap (i.e. ac_have_libcap is "yes"), then we want to remove the
dnl hackish stuff that mod_cap added to the library and directory strings.
if test x"$ac_have_libcap" = xyes; then
ac_addl_libs=`echo "$ac_addl_libs" | sed -e 's/-L\$(top_srcdir)\/lib\/libcap//g'`
ac_addl_dirs=`echo "$ac_addl_dirs" | sed -e 's/\$(top_srcdir)\/lib\/libcap//g'`
fi
ac_addl_libs=`echo "$ac_addl_libs" | sed -e 's/ *\$//'`
ac_addl_libs=`echo "$ac_addl_libs" | sed -e 's/^ *//'`
test "x$ac_addl_libs" = x || ac_build_addl_libs="$ac_build_addl_libs $ac_addl_libs"
ac_addl_dirs=`echo "$ac_addl_dirs" | sed -e 's/ *\$//'`
ac_addl_dirs=`echo "$ac_addl_dirs" | sed -e 's/^ *//'`
ADDL_DIRS="$ac_addl_dirs"
ADDL_CPPFLAGS="$ac_orig_cppflags"
# Restore the original CPPFLAGS and LDFLAGS settings
CPPFLAGS="$ac_orig_cppflags"
LDFLAGS="$ac_orig_ldflags"
INCLUDES="$ac_build_addl_includes"
LIBDIRS="$ac_build_addl_libdirs"
LIBRARIES="$ac_build_addl_libs"
SHARED_MODULE_DIRS="$ac_shared_module_dirs"
if test ! -z "$ac_shared_modules" ; then
SHARED_MODULE_OBJS="$ac_shared_modules"
else
SHARED_MODULE_OBJS="\"\""
fi
STATIC_MODULE_DIRS="$ac_static_module_dirs"
STATIC_MODULE_OBJS="$ac_core_modules $ac_static_modules"
BUILD_SHARED_MODULE_OBJS="$ac_build_shared_modules"
BUILD_STATIC_MODULE_ARCHIVES="$ac_build_static_module_archives"
BUILD_STATIC_MODULE_OBJS="$ac_build_core_modules $ac_build_static_modules"
SHARED_MODULE_LIBS="$ac_orig_libs"
VERSION=`cat $srcdir/include/version.h | grep "#define PROFTPD_VERSION_TEXT" | sed -e 's/^.*\"\(.*\)\"/\1/'`
dnl Substitute in our configuration paths as appropriate. We also have to
dnl sweet talk the environment into helping us get this right, like so...
pr_saved_prefix="$prefix"
pr_saved_exec_prefix="$exec_prefix"
test "x$prefix" = xNONE && prefix=$ac_default_prefix
test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
AC_DEFINE_UNQUOTED(PR_CONFIG_DIR, "`eval echo "${sysconfdir}"`")
AC_DEFINE_UNQUOTED(PR_INCLUDE_DIR, "`eval echo "${includedir}"`")
AC_DEFINE_UNQUOTED(PR_LIBEXEC_DIR, "`eval echo "${libexecdir}"`")
dnl We evaluate the string twice. Once to go from $datadir to $prefix/share,
dnl and once more to substitute in the $prefix value. What a pain.
locale_dir="`eval echo ${localedir}`"
locale_dir="`eval echo ${locale_dir}`"
AC_DEFINE_UNQUOTED(PR_LOCALE_DIR, "`eval echo "${locale_dir}"`")
AC_DEFINE_UNQUOTED(PR_RUN_DIR, "`eval echo "${localstatedir}"`")
AC_DEFINE_UNQUOTED(PR_CONFIG_FILE_PATH, "`eval echo "${sysconfdir}/proftpd.conf"`")
AC_DEFINE_UNQUOTED(PR_PID_FILE_PATH, "`eval echo "${localstatedir}/proftpd.pid"`")
prefix="$pr_saved_prefix"
exec_prefix="$pr_saved_exec_prefix"
if test x"$pkgconfigdir" = xNONE ; then
pkgconfigdir="${libdir}/pkgconfig"
else
pkgconfigdir="${prefix}/$pkgconfigdir"
fi
AC_SUBST(pkgconfigdir)
if test x"$devel" = xyes ; then
AC_DEFINE(PR_USE_DEVEL, 1, [Define if enabling developer support])
if test x"$GCC" = xyes; then
dnl Remove optimization flags from CFLAGS
CFLAGS=`echo "$CFLAGS" | sed -e 's/\-O2//'`
CFLAGS="$CFLAGS $pr_devel_cflags"
LIBS="$LIBS $pr_devel_libs"
dnl Some C compilers (e.g. older gcc versions) may not accept these
dnl options. Check if they are supported. They will be added to
dnl CFLAGS if supported.
PR_CHECK_CC_OPT(Wfloat-equal)
PR_CHECK_CC_OPT(Wunreachable-code)
PR_CHECK_CC_OPT(Wformat-security)
PR_CHECK_CC_OPT(Wstack-protector)
PR_CHECK_CC_OPT(fstack-protector-all)
fi
dnl Do not strip symbols from developer object files.
INSTALL_STRIP=""
else
if test x"$keepsyms" = xyes ; then
dnl Do not strip symbols from object files.
INSTALL_STRIP=""
else
dnl Make sure to strip symbols from non-developer object files.
INSTALL_STRIP="-s"
fi
fi
if test "$OSTYPE" = "-DDARWIN6" -o "$OSTYPE" = "-DDARWIN7" -o "$OSTYPE" = "-DDARWIN8"; then
dnl Check whether the C compiler accepts -Wno-long-double. This helps to
dnl quell unnecessary OSX compiler complaints. Use of this macro should
dnl be as late in the configure script as possible, for it changes the
dnl CFLAGS environment variable (which may possible cause other autoconf
dnl tests to fail).
PR_CHECK_CC_OPT(Wno-long-double)
fi
my_cflags="\"$CFLAGS\""
AC_DEFINE_UNQUOTED(PR_BUILD_CFLAGS, $my_cflags)
my_ldflags="\"$LDFLAGS $LIBDIRS\""
AC_DEFINE_UNQUOTED(PR_BUILD_LDFLAGS, $my_ldflags)
my_libs="\"$LIBRARIES $LIBS\""
AC_DEFINE_UNQUOTED(PR_BUILD_LIBS, $my_libs)
dnl And finally, generate the appropriate Make* and config.h
AC_SUBST(ENABLE_NLS)
AC_SUBST(ENABLE_TESTS)
AC_SUBST(GLUE_MODULE_OBJS)
AC_SUBST(INSTALL_STRIP)
AC_SUBST(INSTALL_DEPS)
AC_SUBST(LIB_DEPS)
AC_SUBST(LIB_OBJS)
AC_SUBST(LIBTOOL_DEPS)
AC_SUBST(LIBLTDL)
AC_SUBST(LTDLINCL)
AC_SUBST(MAIN_LDFLAGS)
AC_SUBST(MAIN_LIBS)
AC_SUBST(MODULE_DEPS)
AC_SUBST(MODULE_LDFLAGS)
AC_SUBST(SHARED_MODULE_DIRS)
AC_SUBST(SHARED_MODULE_LIBS)
AC_SUBST(SHARED_MODULE_OBJS)
AC_SUBST(STATIC_MODULE_DIRS)
AC_SUBST(STATIC_MODULE_OBJS)
AC_SUBST(BUILD_SHARED_MODULE_OBJS)
AC_SUBST(BUILD_STATIC_MODULE_ARCHIVES)
AC_SUBST(BUILD_STATIC_MODULE_OBJS)
AC_SUBST(ADDL_CPPFLAGS)
AC_SUBST(ADDL_DIRS)
AC_SUBST(INCLUDES)
AC_SUBST(LIBDIRS)
AC_SUBST(LIBRARIES)
AC_SUBST(CURSES_LIBS)
AC_SUBST(UTILS_LIBS)
AC_SUBST(VERSION)
AC_CONFIG_HEADER(config.h)
AC_OUTPUT(
contrib/Makefile
include/Makefile
lib/Makefile
locale/Makefile
modules/Makefile
src/Makefile
src/prxs
src/ftpdctl.8
src/proftpd.8
src/xferlog.5
tests/Makefile
utils/Makefile
utils/ftpcount.1
utils/ftpscrub.8
utils/ftpshut.8
utils/ftptop.1
utils/ftpwho.1
Makefile
Make.rules,
[echo timestamp > stamp-h]
)
dnl After everything has been generated, we need to double-check for
dnl header files in the module directories.
for moduledir in $ac_shared_module_dirs $ac_static_module_dirs; do
srcinc=`echo "$moduledir" | sed -e 's/^.*\///'`.h;
if test -d $srcdir/$moduledir ; then
if test ! -e $srcdir/include/$srcinc ; then
if test -e $srcdir/$moduledir/$srcinc ; then
olddir=`pwd`
cd $srcdir/include
ln -s ../$moduledir/$srcinc $srcinc
cd $olddir
fi
fi
fi
done
|