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
|
dnl $Id: configure.in,v 1.506 2000/06/14 11:58:08 eschmid Exp $
dnl Process this file with autoconf to produce a configure script.
AC_INIT(main.c)
PHP_VERSION=`cut -d\" -f 2 $srcdir/php_version.h`
AC_SUBST(PHP_VERSION)
AC_CONFIG_HEADER(config.h)
AM_SANITY_CHECK
AM_MAINTAINER_MODE
CONFIGURE_COMMAND=$0
for arg in "$@"; do
CONFIGURE_COMMAND="$CONFIGURE_COMMAND '$arg'"
done
AC_SUBST(CONFIGURE_COMMAND)
dnl We want this one before the checks, so the checks can modify CFLAGS.
test -z "$CFLAGS" && auto_cflags=1
dnl Checks for programs.
AC_PROG_YACC
if test "$YACC" != "bison -y"; then
AC_MSG_WARN(You will need bison if you'd want to regenerate the PHP 3.0 parsers.)
else
AC_MSG_CHECKING(bison version)
set `bison --version| sed -e 's/^GNU Bison version //' -e 's/\./ /g'`
if test "$1" = "1" -a "$2" -lt "25"; then
AC_MSG_WARN(You will need bison 1.25 if you'd want to regenerate the PHP 3.0 parsers (found $1.$2).)
fi
AC_MSG_RESULT($1.$2 (ok))
fi
AC_PROG_CC
AM_PROG_CC_STDC
AC_PROG_RANLIB
AC_PROG_CC_C_O
AC_PROG_LN_S
AC_PATH_PROG(PERL_PATH, perl)
AC_PATH_PROG(SH, sh, /bin/sh)
dnl Make flex scanners use const if they can, even if __STDC__ is not
dnl true, for compilers like Sun's that only set __STDC__ true in
dnl "limit-to-ANSI-standard" mode, not in "ANSI-compatible" mode
AC_C_CONST
if test "$ac_cv_c_const" = "yes" ; then
LEX_CFLAGS="-DYY_USE_CONST"
fi
AC_SUBST(LEX_CFLAGS)
dnl Ugly hack to get around a problem with gcc on AIX.
if test "$CC" = "gcc" -a "$ac_cv_prog_cc_g" = "yes" -a \
"`uname -sv`" = "AIX 4"; then
CFLAGS=`echo $CFLAGS | sed -e 's/-g//'`
fi
if test "`uname -sv`" = "AIX 4" -a "$GCC" != "yes"; then
APXS_EXP="-bE:mod_php3.exp"
fi
AC_SUBST(APXS_EXP)
dnl Hack to work around a Mac OS X Server cpp problem
dnl Known versions needing this workaround are 5.3 and 5.4
if test "$ac_cv_prog_gcc" = "yes" -a "`uname -s`" = "Rhapsody"; then
CPPFLAGS="$CPPFLAGS -traditional-cpp"
fi
dnl check for -R, etc. switch
AC_MSG_CHECKING(if compiler supports -R)
AC_CACHE_VAL(php_cv_cc_dashr,[
SAVE_LIBS="${LIBS}"
LIBS="-R /usr/lib ${LIBS}"
AC_TRY_LINK([], [], php_cv_cc_dashr=yes, php_cv_cc_dashr=no)
LIBS="${SAVE_LIBS}"])
AC_MSG_RESULT($php_cv_cc_dashr)
if test $php_cv_cc_dashr = "yes"; then
ld_runpath_switch="-R"
apxs_runpath_switch="-Wl,-R'"
else
AC_MSG_CHECKING([if compiler supports -Wl,-rpath,])
AC_CACHE_VAL(php_cv_cc_rpath,[
SAVE_LIBS="${LIBS}"
LIBS="-Wl,-rpath,/usr/lib ${LIBS}"
AC_TRY_LINK([], [], php_cv_cc_rpath=yes, php_cv_cc_rpath=no)
LIBS="${SAVE_LIBS}"])
AC_MSG_RESULT($php_cv_cc_rpath)
if test $php_cv_cc_rpath = "yes"; then
ld_runpath_switch="-Wl,-rpath,"
apxs_runpath_switch="-Wl,'-rpath "
else
dnl something innocuous
ld_runpath_switch="-L"
apxs_runpath_switch="-L'"
fi
fi
AC_MSG_CHECKING([if compiler supports -Wl,--version-script])
AC_CACHE_VAL(php_cv_cc_vscript,[
SLIBS=$LIBS
LIBS="-Wl,--version-script=$srcdir/php.map $LIBS"
AC_TRY_LINK([],[],php_cv_cc_vscript=yes,php_cv_cc_vscript=no)
LIBS=$SLIBS ])
AC_MSG_RESULT($php_cv_cc_vscript)
AC_CHECK_SIZEOF(long, 8)
AC_CHECK_SIZEOF(int, 4)
dnl AC_PROG_INSTALL
AC_PATH_PROG(PROG_SENDMAIL, sendmail, /usr/sbin/sendmail, $PATH /usr/bin /usr/sbin /usr/etc /etc /usr/ucblib)
if test -n "$PROG_SENDMAIL"; then
AC_DEFINE(HAVE_SENDMAIL)
fi
dnl
dnl Check for /usr/pkg/{lib,include} which is where NetBSD puts binary
dnl and source packages. This should be harmless on other OSs.
dnl
if test -d /usr/pkg/include -a -d /usr/pkg/lib ; then
CFLAGS="$CFLAGS -I/usr/pkg/include"
LDFLAGS="$LDFLAGS -L/usr/pkg/lib"
fi
AC_CHECK_FUNC(gethostent, [], [
AC_CHECK_LIB(nsl, gethostent, [
LIBS="-lnsl $LIBS"
AC_DEFINE(HAVE_LIBNSL) ], [])])
AC_CHECK_LIB(c, socket, [:], [
AC_CHECK_LIB(socket, socket, [
LIBS="-lsocket $LIBS"
AC_DEFINE(HAVE_LIBSOCKET) ], []) ])
AC_CHECK_LIB(c, gethostbyaddr, [:], [
AC_CHECK_LIB(nsl, gethostbyaddr, [
LIBS="-lnsl $LIBS"
AC_DEFINE(HAVE_LIBNSL) ], []) ])
AC_CHECK_LIB(c, crypt, [:], [
AC_CHECK_LIB(crypt, crypt, [
LIBS="-lcrypt $LIBS"
AC_DEFINE(HAVE_LIBCRYPT)
],[
AC_CHECK_LIB(ufc, crypt, [
LIBS="-lufc $LIBS"
AC_DEFINE(HAVE_LIBCRYPT)
])
])
])
AC_CHECK_LIB(c, dlopen, [
# fake it
AC_DEFINE(HAVE_LIBDL) ], [
AC_CHECK_LIB(dl, dlopen, [
LIBS="-ldl $LIBS"
AC_DEFINE(HAVE_LIBDL) ], []) ])
dnl The sin may be in a library which need not be specifed
dnl as well as res_search resides in libsocket
AC_CHECK_LIB(c, sin, [:], [
AC_CHECK_LIB(m, sin) ])
dnl The res_search may be in libsocket as well, and if it is
dnl make sure to check for dn_skipname in libresolv, or if res_search
dnl is in neither of these libs, still check for dn_skipname in libresolv
AC_CHECK_LIB(socket, res_search, [
AC_CHECK_LIB(resolv, dn_skipname)
AC_CHECK_LIB(resolv, __dn_skipname)
LIBS="$LIBS -lsocket"
AC_DEFINE(HAVE_LIBSOCKET)
], [
AC_CHECK_LIB(resolv, res_search, [
LIBS="$LIBS -lresolv"
AC_DEFINE(HAVE_LIBRESOLV)
], [
AC_CHECK_LIB(resolv, dn_skipname)
AC_CHECK_LIB(resolv, __dn_skipname)
])
])
AC_CHECK_LIB(bind, inet_aton, [
LIBS="$LIBS -lbind" ], [])
dnl Checks for header files.
AC_HEADER_STDC
dnl In QNX opendir resides in libc but dirent.h is still required
if test "`uname -s 2>/dev/null`" != "QNX"; then
AC_HEADER_DIRENT
else
AC_CHECK_HEADERS(dirent.h)
fi
AC_MISSING_FCLOSE_DECL
dnl QNX requires unix.h to allow functions in libunix to work properly
AC_CHECK_HEADERS(fcntl.h stdlib.h unistd.h crypt.h sys/file.h memory.h pwd.h grp.h sys/socket.h sys/wait.h syslog.h string.h sys/varargs.h stdarg.h sys/resource.h sys/time.h signal.h netinet/in.h dlfcn.h limits.h sys/types.h sys/statvfs.h sys/statfs.h unix.h db.h dbm.h ndbm.h db1/ndbm.h locale.h features.h)
dnl Checks for typedefs, structures, and compiler characteristics.
AC_STRUCT_TM
AC_STRUCT_TIMEZONE
AC_CACHE_CHECK([for tm_gmtoff in struct tm], ac_cv_struct_tm_gmtoff,
[AC_TRY_COMPILE([#include <sys/types.h>
#include <$ac_cv_struct_tm>], [struct tm tm; tm.tm_gmtoff;],
ac_cv_struct_tm_gmtoff=yes, ac_cv_struct_tm_gmtoff=no)])
if test "$ac_cv_struct_tm_gmtoff" = yes; then
AC_DEFINE(HAVE_TM_GMTOFF)
fi
AC_CACHE_CHECK(for struct flock,php_struct_flock,
AC_TRY_COMPILE([
#include <unistd.h>
#include <fcntl.h>
],
[struct flock x;],
[
php_struct_flock=yes
],[
php_struct_flock=no
])
)
if test "$php_struct_flock" = "yes" ; then
AC_DEFINE(HAVE_STRUCT_FLOCK, 1)
else
AC_DEFINE(HAVE_STRUCT_FLOCK, 0)
fi
dnl Check for members of the stat structure
AC_STRUCT_ST_BLKSIZE
dnl AC_STRUCT_ST_BLOCKS will screw QNX because fileblocks.o does not exists
dnl The WARNING_LEVEL required because cc in QNX hates -w option without an argument
if test "`uname -s 2>/dev/null`" != "QNX"; then
if test "`uname -s 2>/dev/null`" != "OS/2"; then
AC_STRUCT_ST_BLOCKS
fi
else
AC_MSG_WARN(warnings level for cc set to 0)
WARNING_LEVEL=0
AC_SUBST(WARNING_LEVEL)
fi
AC_STRUCT_ST_RDEV
dnl Checks for types
AC_TYPE_SIZE_T
AC_TYPE_UID_T
dnl This is required for QNX and may be some BSD derived systems
AC_CHECK_TYPE( uint, unsigned int )
AC_CHECK_TYPE( ushort, unsigned short )
AC_CHECK_TYPE( ulong, unsigned long )
AC_CHECK_TYPE(ptrdiff_t, unsigned long)
dnl Checks for library functions.
AC_FUNC_VPRINTF
AC_CHECK_FUNCS(memcpy memmove strdup strerror strcasecmp strstr flock lockf putenv tempnam usleep setlocale gettimeofday setvbuf srand48 lrand48 srandom random link symlink regcomp getlogin cuserid vsnprintf gcvt utime crypt setitimer rint unsetenv strftime setsockopt tzset statvfs statfs inet_aton shutdown truncate getpgid getsid getrlimit snprintf ctermid setsid mkfifo getrusage)
AC_FUNC_UTIME_NULL
AC_FUNC_ALLOCA
AC_BROKEN_SPRINTF
AC_REPLACE_FUNCS(getopt)
PHP_DECLARED_TIMEZONE
dnl AIX keeps in_addr_t in /usr/include/netinet/in.h
dnl AC_MSG_CHECKING(for in_addr_t)
AC_CACHE_VAL(ac_cv_type_$1,
[AC_EGREP_CPP(dnl
changequote(<<,>>)dnl
<<in_addr_t[^a-zA-Z_0-9]>>dnl
changequote([,]), [#include <sys/types.h>
#if STDC_HEADERS
#include <stdlib.h>
#include <stddef.h>
#endif
#ifdef HAVE_NETINET_IN_H
#include <netinet/in.h>
#endif], ac_cv_type_in_addr_t=yes, ac_cv_type_in_addr_t=no)])dnl
dnl AC_MSG_RESULT($ac_cv_type_in_addr_t)
if test $ac_cv_type_in_addr_t = no; then
AC_DEFINE(in_addr_t, u_int)
fi
AC_CRYPT_CAP
AC_MSG_CHECKING(for Apache module support via DSO through APXS)
AC_ARG_WITH(apxs,
[ --with-apxs[=FILE] Build shared Apache module. FILE is the optional
pathname to the Apache apxs tool; defaults to "apxs".],
[
if test "$withval" = "yes"; then
withval=apxs
fi
APXS="$withval"
APXS_LDFLAGS="@EXTRA_LIBS@ @SYBASE_CT_LFLAGS@ @SYBASE_CT_LIBS@ @FHTTPD_LIB@ @ORACLE_LFLAGS@ @ORACLE_LIBS@ @IODBC_LFLAGS@ @IODBC_LIBS@ @SYBASE_LFLAGS@ @SYBASE_LIBS@ @SYBASE_CT_LFLAGS@ @SYBASE_CT_LIBS@ @ADA_LFLAGS@ @ADA_LIBS@ @SOLID_LIBS@ @EMPRESS_LIBS@ @OPENLINK_LFLAGS@ @OPENLINK_LIBS@ @VELOCIS_LIBS@ @CODBC_LFLAGS@ @CODBC_LIBS@ @ZLIB_LIBS@ @PDFLIB_LIBS@ @CPDFLIB_LIBS@ @FDFLIB_LIBS@ @IFX_LFLAGS@ @IFX_LIBS@ @IBASE_LFLAGS@ @IBASE_LIBS@ @DBM_LIB@"
APACHE_INCLUDE="-I`$APXS -q INCLUDEDIR`"
BINNAME=libphp3.so
INSTALL_IT="\$(APXS) -i -a -n php3 $BINNAME"
CFLAGS_SHLIB="`$APXS -q CFLAGS_SHLIB`"
LDFLAGS_SHLIB="`$APXS -q LDFLAGS_SHLIB`"
CFLAGS="$CFLAGS `$APXS -q CFLAGS`"
if test "a`$APXS -q LD_SHLIB`" = "a" || test "`$APXS -q LIBEXECDIR`" = "modules"; then
PHP_APXS_BROKEN=yes
fi
PHP_LIBS=-L/usr/local/lib
STRONGHOLD=
AC_DEFINE(APACHE)
AC_SUBST(APXS)
AC_SUBST(APXS_LDFLAGS)
AC_SUBST(BINNAME)
AC_SUBST(INSTALL_IT)
AC_SUBST(PHP_LIBS)
AC_DEFINE(HAVE_AP_CONFIG_H)
AC_DEFINE(HAVE_AP_COMPAT_H)
AC_MSG_RESULT(yes)
],[
AC_MSG_RESULT(no)
])
if test -n "$APXS" ; then
APXS_CC="`$APXS -q CC`"
fi
abs_srcdir="`(cd $srcdir && pwd)`"
versioning="no"
AC_MSG_CHECKING(whether to enable versioning)
AC_ARG_ENABLE(versioning,
[ --enable-versioning Take advantage of versioning and scoping
Provided by Solaris 2.x and Linux],
[
if test "$enableval" = "yes" ; then
case "`uname -sr`" in
"SunOS 5"*)
VERSION_SCRIPT="-Wl,'-M $abs_srcdir/php.map'"
;;
*)
if test "$php_cv_cc_vscript" = "yes" ; then
VERSION_SCRIPT="-Wl,--version-script=$abs_srcdir/php.map"
else
AC_MSG_ERROR(versioning is not supported on your OS)
fi
;;
esac
versioning="yes"
fi
])
AC_MSG_RESULT($versioning)
AC_SUBST(VERSION_SCRIPT)
if test "$BINNAME" != "libmodphp3-so.a"; then
if test "$BINNAME" != "libphp3.so"; then
AC_MSG_CHECKING(for Apache module support)
AC_ARG_WITH(apache,
[ --with-apache[=DIR] Build Apache module. DIR is the top-level Apache
build directory, defaults to /usr/local/etc/httpd.],
[
if test "$withval" = "yes"; then
# Apache's default directory
withval=/usr/local/etc/httpd
fi
if test "$withval" != "no"; then
APACHE_WITHVAL=$withval
# figure out extra library nonsense
# For Apache 1.2.x
if test -f $withval/src/httpd.h; then
APACHE_INCLUDE=-I$withval/src
APACHE_TARGET=$withval/src
BINNAME=libphp3.a
INSTALL_IT="mkdir -p $APACHE_TARGET; cp $BINNAME $srcdir/mod_php3.* $srcdir/php_version.h libphp3.module $extra_copy $APACHE_TARGET"
PHP_LIBS="-L. -lphp3 $extra_l"
AC_DEFINE(APACHE)
AC_MSG_RESULT(yes - Apache 1.2.x)
STRONGHOLD=
if test -f $withval/src/ap_config.h; then
AC_DEFINE(HAVE_AP_CONFIG_H)
fi
# For Apache 1.3.x
elif test -f $withval/src/main/httpd.h; then
APACHE_INCLUDE="-I$withval/src/main -I$withval/src/os/unix -I$withval/src/ap"
APACHE_TARGET=$withval/src/modules/php3
if test ! -d $APACHE_TARGET; then
mkdir $APACHE_TARGET
fi
BINNAME=libmodphp3.a
INSTALL_IT="mkdir -p $APACHE_TARGET; cp $BINNAME $srcdir/mod_php3.* $srcdir/php_version.h libphp3.module $extra_copy $APACHE_TARGET; cp $srcdir/apMakefile.tmpl $APACHE_TARGET/Makefile.tmpl; cp $srcdir/apMakefile.libdir $APACHE_TARGET/Makefile.libdir"
PHP_LIBS="-Lmodules/php3 -L../modules/php3 -L../../modules/php3 -lmodphp3 $extra_l"
AC_DEFINE(APACHE)
AC_MSG_RESULT(yes - Apache 1.3.x)
STRONGHOLD=
if test -f $withval/src/include/ap_config.h; then
AC_DEFINE(HAVE_AP_CONFIG_H)
fi
if test -f $withval/src/include/ap_compat.h; then
AC_DEFINE(HAVE_AP_COMPAT_H)
if test ! -f $withval/src/include/ap_config_auto.h; then
AC_MSG_ERROR(Please run Apache's configure or src/Configure program once and try again)
fi
else
if test -f $withval/src/include/compat.h; then
AC_DEFINE(HAVE_OLD_COMPAT_H)
fi
fi
# Also for Apache 1.3.x
elif test -f $withval/src/include/httpd.h; then
APACHE_INCLUDE="-I$withval/src/include -I$withval/src/os/unix"
APACHE_TARGET=$withval/src/modules/php3
if test ! -d $APACHE_TARGET; then
mkdir $APACHE_TARGET
fi
BINNAME=libmodphp3.a
PHP_LIBS="-Lmodules/php3 -L../modules/php3 -L../../modules/php3 -lmodphp3 $extra_l"
INSTALL_IT="mkdir -p $APACHE_TARGET; cp $BINNAME $srcdir/mod_php3.* $srcdir/php_version.h $extra_copy $APACHE_TARGET; cp $srcdir/apMakefile.tmpl $APACHE_TARGET/Makefile.tmpl; cp $srcdir/apMakefile.libdir $APACHE_TARGET/Makefile.libdir; cp libphp3.module $APACHE_TARGET"
AC_DEFINE(APACHE)
AC_MSG_RESULT(yes - Apache 1.3.x)
STRONGHOLD=
if test -f $withval/src/include/ap_config.h; then
AC_DEFINE(HAVE_AP_CONFIG_H)
fi
if test -f $withval/src/include/ap_compat.h; then
AC_DEFINE(HAVE_AP_COMPAT_H)
if test ! -f $withval/src/include/ap_config_auto.h; then
AC_MSG_ERROR(Please run Apache's configure or src/Configure program once and try again)
fi
else
if test -f $withval/src/include/compat.h; then
AC_DEFINE(HAVE_OLD_COMPAT_H)
fi
fi
# For StrongHold 2.2
elif test -f $withval/apache/httpd.h; then
APACHE_INCLUDE=-"I$withval/apache -I$withval/ssl/include"
APACHE_TARGET=$withval/apache
BINNAME=libmodphp3.a
PHP_LIBS="-Lmodules/php3 -L../modules/php3 -L../../modules/php3 -lmodphp3 $extra_l"
INSTALL_IT="mkdir -p $APACHE_TARGET; cp $BINNAME $srcdir/mod_php3.* $srcdir/php_version.h libphp3.module $extra_copy $APACHE_TARGET"
STRONGHOLD=-DSTRONGHOLD=1
AC_DEFINE(APACHE)
AC_MSG_RESULT(yes - StrongHold)
if test -f $withval/apache/ap_config.h; then
AC_DEFINE(HAVE_AP_CONFIG_H)
fi
if test -f $withval/src/ap_compat.h; then
AC_DEFINE(HAVE_AP_COMPAT_H)
if test ! -f $withval/src/include/ap_config_auto.h; then
AC_MSG_ERROR(Please run Apache's configure or src/Configure program once and try again)
fi
else
if test -f $withval/src/compat.h; then
AC_DEFINE(HAVE_OLD_COMPAT_H)
fi
fi
else
AC_MSG_RESULT(no)
AC_MSG_ERROR(Invalid Apache directory - unable to find httpd.h under $withval)
fi
else
AC_MSG_RESULT(no)
BINNAME=php
INSTALL_IT="cp $BINNAME \$(bindir)"
fi
],[
AC_MSG_RESULT(no)
BINNAME=php
INSTALL_IT="cp $BINNAME \$(bindir)"
])
AC_SUBST(APACHE_INCLUDE)
AC_SUBST(APACHE_TARGET)
AC_SUBST(INSTALL_IT)
AC_SUBST(BINNAME)
AC_SUBST(STRONGHOLD)
AC_SUBST(PHP_LIBS)
fi
fi
AC_MSG_CHECKING(whether to use bundled regex library)
AC_ARG_WITH(system-regex,
[ --with-system-regex Do not use the bundled regex library],
[
if test -n "$APXS"; then
if test -n "`$APXS -q CFLAGS | grep USE_HSREGEX`"; then
REGEX_LIB=regex/libregex.a
HSREGEX=yes
AC_MSG_RESULT(yes)
AC_DEFINE(HSREGEX)
AC_DEFINE(REGEX,1)
else
REGEX_LIB=
HSREGEX=no
AC_MSG_RESULT(no)
AC_DEFINE(REGEX,0)
fi
else
if test "$withval" = "no"; then
REGEX_LIB=regex/libregex.a
HSREGEX=yes
AC_MSG_RESULT(yes)
AC_DEFINE(REGEX,1)
else
REGEX_LIB=
HSREGEX=no
AC_MSG_RESULT(no)
AC_DEFINE(REGEX,0)
fi
fi
],[
if test -n "$APXS"; then
if test -n "`$APXS -q CFLAGS | grep USE_HSREGEX`"; then
REGEX_LIB=regex/libregex.a
HSREGEX=yes
AC_MSG_RESULT(yes)
AC_DEFINE(HSREGEX)
AC_DEFINE(REGEX,1)
else
REGEX_LIB=
HSREGEX=no
AC_MSG_RESULT(no)
AC_DEFINE(REGEX,0)
fi
else
REGEX_LIB=regex/libregex.a
HSREGEX=yes
AC_MSG_RESULT(yes)
AC_DEFINE(HSREGEX)
AC_DEFINE(REGEX,1)
fi
])
AC_SUBST(REGEX_LIB)
AC_SUBST(HSREGEX)
AC_PREFERRED_DB_LIB
if test "$DBM_LIB" = "-lgdbm"; then
AC_CHECK_HEADER(gdbm.h, [ GDBM_INCLUDE="" ], [
AC_MSG_RESULT("Try /usr/local/include/gdbm.h");
AC_CHECK_HEADER(/usr/local/include/gdbm.h, [ GDBM_INCLUDE="-I/usr/local/include" ],[
AC_MSG_RESULT("Try /opt/local/include/gdbm.h");
AC_CHECK_HEADER(/opt/local/include/gdbm.h, [ GDBM_INCLUDE="-I/opt/local/include" ],[
dnl if in /usr/pkg/include, don't add anything. See above.
AC_MSG_RESULT("Try /usr/pkg/include/gdbm.h");
AC_CHECK_HEADER(/usr/pkg/include/gdbm.h, [ GDBM_INCLUDE="" ],[
AC_MSG_RESULT("Giving up - You need to install gdbm.h somewhere");
exit
])
])
])
])
AC_DEFINE(HAVE_GDBM_H, 1)
AC_SUBST(GDBM_INCLUDE)
fi
AC_MSG_CHECKING(for mod_charset compatibility option)
AC_ARG_WITH(mod_charset,
[ --with-mod_charset Enable transfer tables for mod_charset (Rus Apache).],
[
if test "$withval" = "yes"; then
AC_MSG_RESULT(yes)
AC_DEFINE(USE_TRANSFER_TABLES)
else
AC_MSG_RESULT(no)
fi
],[
AC_MSG_RESULT(no)
])
AC_MSG_CHECKING(for fhttpd module support)
AC_ARG_WITH(fhttpd,
[ --with-fhttpd[=DIR] Build fhttpd module. DIR is the fhttpd sources
directory, defaults to /usr/local/src/fhttpd.],
[
if test "$withval" = "yes"; then
# fhttpd source directory
withval=/usr/local/src/fhttpd
fi
if test "$withval" != "no"; then
# For fhttpd 0.3.x
if test -f $withval/servproc.h; then
FHTTPD_INCLUDE=-I$withval/
FHTTPD_LIB=$withval/servproc.o
FHTTPD_TARGET=$withval/
BINNAME=php
AC_DEFINE(FHTTPD)
AC_MSG_RESULT(yes - fhttpd 0.3.x)
else
AC_MSG_RESULT(no)
AC_MSG_ERROR(Invalid fhttpd directory - unable to find servproc.h under $withval)
fi
else
AC_MSG_RESULT(no)
fi
],[
AC_MSG_RESULT(no)
])
AC_SUBST(FHTTPD_INCLUDE)
AC_SUBST(FHTTPD_LIB)
AC_SUBST(FHTTPD_TARGET)
AC_MSG_CHECKING(for IMAP support)
AC_ARG_WITH(imap,
[ --with-imap[=DIR] Include IMAP support (DIR is IMAP's include dir and c-client.a dir).],
[
if test "$withval" = "yes"; then
if test -f /usr/local/include/mail.h; then
withval=/usr/local
elif test -f /usr/include/mail.h; then
withval=/usr
elif test -f /usr/include/imap/mail.h; then
withval=/usr
fi
fi
if test "$withval" != "no" && test "$withval" != "yes"; then
IMAP_DIR=$withval
if test -f $IMAP_DIR/include/imap/mail.h; then
IMAP_INC_DIR=$IMAP_DIR/include/imap
else
IMAP_INC_DIR=$withval/include
fi
if test ! -f $IMAP_INC_DIR/mail.h; then
AC_MSG_ERROR(could not find mail.h in $IMAP_INC_DIR !)
fi
if test ! -f $IMAP_INC_DIR/rfc822.h; then
AC_MSG_ERROR(could not find rfc822.h in $IMAP_INC_DIR !)
fi
if test ! -f $IMAP_INC_DIR/linkage.h; then
AC_MSG_ERROR(could not find linkage.h in $IMAP_INC_DIR !)
fi
AC_EXPAND_PATH($IMAP_DIR, IMAP_DIR)
if test -f "$IMAP_DIR/lib/libimap.a" ; then
AC_ADD_LIBRARY_WITH_PATH(imap, $IMAP_DIR/lib)
elif test -f "$IMAP_DIR/lib/libc-client4.a" || test -f "$IMAP_DIR/lib/libc-client4.so"; then
AC_ADD_LIBRARY_WITH_PATH(c-client4, $IMAP_DIR/lib)
elif test -f "$IMAP_DIR/lib/libc-client.a" || test -f "$IMAP_DIR/lib/libc-client.so"; then
AC_ADD_LIBRARY_WITH_PATH(c-client, $IMAP_DIR/lib)
elif test -f "$IMAP_DIR/lib/c-client.a" ; then
EXTRA_LIBS="$EXTRA_LIBS $IMAP_DIR/lib/c-client.a"
else
AC_MSG_ERROR(Please copy or link $IMAP_DIR/lib/c-client.a to $IMAP_DIR/lib/libc-client.a)
fi
AC_ADD_INCLUDE($IMAP_INC_DIR)
AC_DEFINE(HAVE_IMAP)
AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no)
fi
],[
AC_MSG_RESULT(no)
])
AC_MSG_CHECKING(for IMSP support)
AC_ARG_WITH(imsp,
[ --with-imsp[=DIR] Include IMSp support (DIR is IMSP's include dir and libimsp.a dir).],
[
if test "$withval" = "yes"; then
if test -f /usr/local/include/imsp.h; then
withval=/usr/local
elif test -f /usr/include/imsp.h; then
withval=/usr
elif test -f /usr/include/imsp/imsp.h; then
withval=/usr
fi
fi
if test "$withval" != "no"; then
IMSP_DIR=$withval
if test -f $IMSP_DIR/include/imsp/mail.h; then
IMSP_INC_DIR=$IMSP_DIR/include/imsp
else
IMSP_INC_DIR=$withval/include
fi
if test ! -f $IMSP_INC_DIR/imsp.h; then
AC_MSG_ERROR(could not find imsp.h in $IMSP_INC_DIR !)
fi
if test ! -f $IMSP_INC_DIR/support.h; then
AC_MSG_ERROR(could not find support.h in $IMSP_INC_DIR !)
fi
if test ! -f $IMSP_INC_DIR/imutil.h; then
AC_MSG_ERROR(could not find imutil.h in $IMSP_INC_DIR !)
fi
if test -f "$IMSP_DIR/lib/libimsp.a" ; then
AC_ADD_LIBRARY_WITH_PATH(imsp, $IMSP_DIR/lib)
elif test -f "$IMSP_DIR/lib/imsp.a" ; then
EXTRA_LIBS="$EXTRA_LIBS $IMSP_DIR/lib/imsp.a"
else
AC_MSG_ERROR(Please copy or link $IMSP_DIR/lib/imsp.a to $IMSP_DIR/lib/libimsp.a)
fi
AC_ADD_INCLUDE($IMSP_INC_DIR)
AC_DEFINE(HAVE_IMSP)
AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no)
fi
],[
AC_MSG_RESULT(no)
])
AC_MSG_CHECKING(for ASPELL support)
AC_ARG_WITH(aspell,
[ --with-aspell[=DIR] Include ASPELL support.],
[
if test "$withval" != "no"; then
if test "$withval" = "yes"; then
ASPELL_DIR=/usr/local
else
ASPELL_DIR=$withval
fi
AC_ADD_INCLUDE($ASPELL_DIR/include)
AC_ADD_LIBRARY_WITH_PATH(aspell, $ASPELL_DIR/lib)
if test ! -f "$ASPELL_DIR/include/aspell-c.h"; then
AC_MSG_ERROR(Could not find aspell-c.h in $ASPELL_DIR/include - please copy it manually from the aspell sources to $ASPELL_DIR/include)
fi
AC_DEFINE(HAVE_ASPELL)
AC_MSG_RESULT(yes)
else
AC_MSG_ERROR(no)
fi
],[
AC_MSG_RESULT(no)
])
AC_MSG_CHECKING(for MCAL support)
AC_ARG_WITH(mcal,
[ --with-mcal[=DIR] Include MCAL support.],
[
if test "$withval" != "no"; then
if test "$withval" = "yes"; then
MCAL_DIR=/usr/local
else
MCAL_DIR=$withval
fi
AC_ADD_INCLUDE($MCAL_DIR/)
AC_ADD_LIBRARY_WITH_PATH(mcal, $MCAL_DIR/)
AC_DEFINE(HAVE_MCAL)
AC_MSG_RESULT(yes)
else
AC_MSG_ERROR(no)
fi
],[
AC_MSG_RESULT(no)
])
AC_MSG_CHECKING(for ftp support)
AC_ARG_WITH(ftp,
[ --with-ftp Include FTP support.],
[
if test "$withval" != "no"; then
AC_DEFINE(HAVE_FTP)
AC_MSG_RESULT(yes)
else
AC_MSG_ERROR(no)
fi
],[
AC_MSG_RESULT(no)
])
AC_ARG_WITH(gd,
[ --without-gd Disable GD support.
--with-gd[=DIR] Include GD support (DIR is GD's install dir).],
[
case "$withval" in
no)
AC_MSG_CHECKING(whether to include GD support)
AC_MSG_RESULT(no)
;;
yes)
dnl Check for PNG-based GD version
old_LIBS=$LIBS
AC_CHECK_LIB(z,compress, LIBS="$LIBS -lz",,)
AC_CHECK_LIB(png,png_info_init, LIBS="$LIBS -lpng",,)
AC_CHECK_LIB(gd, gdImageCreateFromPng, [AC_DEFINE(HAVE_GD_PNG)])
LIBS=$old_LIBS
if test "$ac_cv_lib_gd_gdImageCreateFromPng" = "yes"; then
AC_ADD_LIBRARY(png)
AC_ADD_LIBRARY(z)
fi
old_LIBS=$LIBS
AC_MSG_CHECKING([for libjpeg (needed by gd-1.8+)])
AC_ARG_WITH(jpeg-dir,
[ --with-jpeg-dir[=DIR] jpeg dir for gd-1.8+],[
AC_MSG_RESULT(yes)
if test -z $withval; then
withval="/usr/local"
fi
LIBS="$LIBS -L$withval/lib -ljpeg"
AC_CHECK_LIB(jpeg,jpeg_read_header, [LIBS="$LIBS -L$withval/lib -ljpeg"],,)
],[
AC_MSG_RESULT(no)
AC_MSG_WARN(If configure fails try --with-jpeg-dir=<DIR>)
])
withval=$old_withval
AC_CHECK_LIB(gd,gdImageCreateFromJpeg,[AC_DEFINE(HAVE_GD_JPG)])
LIBS=$old_LIBS
if test "$ac_cv_lib_gd_gdImageCreateFromJpeg" = "yes"; then
AC_ADD_LIBRARY(jpeg)
fi
AC_CHECK_LIB(gd,gdImageCreateFromGif,[AC_DEFINE(HAVE_GD_GIF)])
AC_CHECK_LIB(gd,gdImageLzw, [AC_DEFINE(HAVE_GD_LZW)])
AC_CHECK_LIB(gd,gdImageColorResolve, [AC_DEFINE(HAVE_GD_COLORRESOLVE)])
AC_CHECK_LIB(gd,gdImageString16,[ ], [AC_DEFINE(HAVE_GD_ANCIENT)])
dnl Say hi to the NetBSD package system!
if test -f /usr/pkg/include/gd/gd.h -a -z "$GD_INCLUDE" ; then
AC_ADD_INCLUDE(/usr/pkg/include/gd)
fi
AC_MSG_CHECKING(whether to include GD support)
if test "$ac_cv_lib_gd_gdImageCreateFromPng" = "no" &&
test "$ac_cv_lib_gd_gdImageCreateFromGif" = "no"; then
AC_MSG_RESULT(no)
else
AC_ADD_LIBRARY(gd)
AC_DEFINE(HAVE_LIBGD)
PHP_HAVE_GD=yes
AC_MSG_RESULT(yes)
fi
;;
*)
test -f $withval/include/gd1.7/gd.h && GD_INCLUDE="$withval/include/gd1.7"
test -f $withval/include/gd1.6/gd.h && GD_INCLUDE="$withval/include/gd1.6"
test -f $withval/include/gd1.5/gd.h && GD_INCLUDE="$withval/include/gd1.5"
test -f $withval/include/gd1.4/gd.h && GD_INCLUDE="$withval/include/gd1.4"
test -f $withval/include/gd1.3/gd.h && GD_INCLUDE="$withval/include/gd1.3"
test -f $withval/include/gd/gd.h && GD_INCLUDE="$withval/include/gd"
test -f $withval/include/gd.h && GD_INCLUDE="$withval/include"
test -f $withval/gd1.6/gd.h && GD_INCLUDE="$withval/gd1.6"
test -f $withval/gd1.5/gd.h && GD_INCLUDE="$withval/gd1.5"
test -f $withval/gd1.4/gd.h && GD_INCLUDE="$withval/gd1.4"
test -f $withval/gd1.3/gd.h && GD_INCLUDE="$withval/gd1.3"
test -f $withval/gd/gd.h && GD_INCLUDE="$withval/gd"
test -f $withval/gd.h && GD_INCLUDE="$withval"
test -f $withval/lib/libgd.a && GD_LIB="$withval/lib"
test -f $withval/lib/gd/libgd.a && GD_LIB="$withval/lib/gd"
test -f $withval/lib/gd1.7/libgd.a && GD_LIB="$withval/lib/gd1.7"
test -f $withval/lib/gd1.6/libgd.a && GD_LIB="$withval/lib/gd1.6"
test -f $withval/lib/gd1.5/libgd.a && GD_LIB="$withval/lib/gd1.5"
test -f $withval/lib/gd1.4/libgd.a && GD_LIB="$withval/lib/gd1.4"
test -f $withval/lib/gd1.3/libgd.a && GD_LIB="$withval/lib/gd1.3"
test -f $withval/libgd.a && GD_LIB="$withval"
test -f $withval/gd/libgd.a && GD_LIB="$withval/gd"
test -f $withval/gd1.7/libgd.a && GD_LIB="$withval/gd1.7"
test -f $withval/gd1.6/libgd.a && GD_LIB="$withval/gd1.6"
test -f $withval/gd1.5/libgd.a && GD_LIB="$withval/gd1.5"
test -f $withval/gd1.4/libgd.a && GD_LIB="$withval/gd1.4"
test -f $withval/gd1.3/libgd.a && GD_LIB="$withval/gd1.3"
if test -n "$GD_INCLUDE" && test -n "$GD_LIB" ; then
AC_ADD_INCLUDE($GD_INCLUDE)
AC_ADD_LIBRARY_WITH_PATH(gd, $GD_LIB)
old_LDFLAGS=$LDFLAGS
LDFLAGS="$LDFLAGS -L$GD_LIB"
dnl Check for PNG-based GD version
old_LIBS=$LIBS
AC_CHECK_LIB(z,compress, LIBS="$LIBS -lz",,)
AC_CHECK_LIB(png,png_info_init, LIBS="$LIBS -lpng",,)
AC_CHECK_LIB(gd, gdImageCreateFromPng, [AC_DEFINE(HAVE_GD_PNG)])
AC_CHECK_LIB(gd,gdImageCreateFromJpeg,[AC_DEFINE(HAVE_GD_JPG)])
LIBS=$old_LIBS
if test "$ac_cv_lib_gd_gdImageCreateFromPng" = "yes"; then
AC_ADD_LIBRARY(png)
AC_ADD_LIBRARY(z)
fi
AC_CHECK_LIB(gd,gdImageCreateFromGif,[AC_DEFINE(HAVE_GD_GIF)])
AC_CHECK_LIB(gd,gdImageLzw, [AC_DEFINE(HAVE_GD_LZW)])
AC_CHECK_LIB(gd,gdImageColorResolve, [AC_DEFINE(HAVE_GD_COLORRESOLVE)])
AC_CHECK_LIB(gd,gdImageString16,[ ], [AC_DEFINE(HAVE_GD_ANCIENT)])
LDFLAGS=$old_LDFLAGS;
AC_MSG_CHECKING(whether to include GD support)
if test "$ac_cv_lib_gd_gdImageCreateFromPng" = "no" &&
test "$ac_cv_lib_gd_gdImageCreateFromGif" = "no"; then
AC_MSG_RESULT(no)
else
AC_DEFINE(HAVE_LIBGD)
PHP_HAVE_GD=yes
AC_MSG_RESULT(yes)
fi
else
AC_MSG_CHECKING(whether to include GD support)
AC_MSG_RESULT(no)
fi
;;
esac
],[
AC_CHECK_LIB(gd, gdImageLine, [
AC_DEFINE(HAVE_LIBGD)
AC_ADD_LIBRARY(gd)
])
if test "$ac_cv_lib_gd_gdImageLine" = "yes"; then
dnl Check for PNG-based GD version
old_LIBS=$LIBS
AC_CHECK_LIB(z,compress, LIBS="$LIBS -lz",,)
AC_CHECK_LIB(png,png_info_init, LIBS="$LIBS -lpng",,)
AC_CHECK_LIB(gd, gdImageCreateFromPng, [AC_DEFINE(HAVE_GD_PNG)])
AC_CHECK_LIB(gd,gdImageCreateFromJpeg,[AC_DEFINE(HAVE_GD_JPG)])
LIBS=$old_LIBS
if test "$ac_cv_lib_gd_gdImageCreateFromPng" = "yes"; then
AC_ADD_LIBRARY(png)
AC_ADD_LIBRARY(z)
fi
AC_CHECK_LIB(gd,gdImageCreateFromGif,[AC_DEFINE(HAVE_GD_GIF)])
AC_CHECK_LIB(gd,gdImageLzw, [AC_DEFINE(HAVE_GD_LZW)])
AC_CHECK_LIB(gd,gdImageColorResolve, [AC_DEFINE(HAVE_GD_COLORRESOLVE)])
AC_CHECK_LIB(gd,gdImageString16,[ ], [AC_DEFINE(HAVE_GD_ANCIENT)])
dnl Say hi to the NetBSD package system!
if test -f /usr/pkg/include/gd/gd.h -a -z "$GD_INCLUDE" ; then
AC_ADD_INCLUDE(/usr/pkg/include/gd)
fi
AC_MSG_CHECKING(whether to include GD support)
if test "$ac_cv_lib_gd_gdImageCreateFromPng" = "no" &&
test "$ac_cv_lib_gd_gdImageCreateFromGif" = "no"; then
AC_MSG_RESULT(no)
else
AC_DEFINE(HAVE_LIBGD)
PHP_HAVE_GD=yes
AC_MSG_RESULT(yes)
fi
else
AC_MSG_CHECKING(whether to include GD support)
AC_MSG_RESULT(no)
fi
])
AC_MSG_CHECKING(whether to include FreeType support)
AC_ARG_WITH(ttf,
[ --with-ttf[=DIR] Include FreeType support],
[
PHP_TTF=$withval
],[
PHP_TTF=yes
])
AC_MSG_RESULT($PHP_TTF)
define(PHP_ICHK,[
test -f "$i/$1"; then $2_PREFIX="$i"; $2_INCLUDE="$i/$1";
])
define(PHP_LCHK,[
test -f "$i/$1"; then $2_PREFIX="$i"; $2_LIBPATH="$i/$1";
])
define(PHP_TTF_LIB_CHECK,[
for i in lib lib/freetype ""; do
ac_save_ldflags="$LDFLAGS"
ac_save_libs="$LIBS"
LDFLAGS="$LDFLAGS -L$$1_PREFIX/$i"
unset ac_cv_lib_$2_TT_Init_FreeType
AC_CHECK_LIB($2, TT_Init_FreeType,[
LDFLAGS="$ac_save_ldflags"
LIBS="$ac_save_libs"
AC_ADD_LIBRARY_WITH_PATH($2, $$1_PREFIX/$i)
AC_DEFINE(HAVE_LIB$1)
dir=`dirname $$1_INCLUDE`
AC_ADD_INCLUDE($dir)
break
])
LDFLAGS="$ac_save_ldflags"
done
])
if test "$PHP_TTF" != "no" && test "$PHP_HAVE_GD" != "yes"; then
AC_MSG_WARN(No gd support found. Skipping FreeType Configuration)
elif test "$PHP_TTF" != "no"; then
for i in /usr/local /usr $PHP_TTF; do
if PHP_ICHK(freetype.h, TTF)
elif PHP_ICHK(include/freetype.h, TTF)
elif PHP_ICHK(include/freetype/freetype.h, TTF)
fi
if PHP_ICHK(truetype.h, FREETYPE)
elif PHP_ICHK(include/truetype.h, FREETYPE)
elif PHP_ICHK(include/freetype/truetype.h, FREETYPE)
fi
done
if test -n "$FREETYPE_PREFIX"; then
PHP_TTF_LIB_CHECK(FREETYPE, freetype)
elif test -n "$TTF_PREFIX"; then
PHP_TTF_LIB_CHECK(TTF, ttf)
fi
fi
AC_ARG_ENABLE(t1lib,
[ --enable-t1lib Enable t1lib support.],[
if test "$enableval" = "yes"; then
AC_CHECK_LIB(t1, T1_SetDefaultEncoding, [ AC_DEFINE(HAVE_LIBT1) ], [
AC_MSG_ERROR(T1lib version 0.8 or higher required)
])
AC_CHECK_LIB(t1, T1_GetCharOutline, [
AC_DEFINE(HAVE_LIBT1_OUTLINE)
T1LIB_WARNING="WARNING: You *must* read README.t1lib for a necessary patch"
])
AC_CHECK_LIB(t1, T1_GetExtend, [ T1LIB_WARNING="" ])dnl New version, bug fixed
AC_ADD_LIBRARY(t1)
AC_MSG_CHECKING(whether to enable t1lib support)
AC_MSG_RESULT(yes)
else
AC_DEFINE(HAVE_LIBT1, 0)
AC_MSG_CHECKING(whether to enable t1lib support)
AC_MSG_RESULT(no)
fi
],[
AC_DEFINE(HAVE_LIBT1, 0)
AC_MSG_CHECKING(whether to enable t1lib support)
AC_MSG_RESULT(no)
])
AC_MSG_CHECKING(whether to include GNU gettext support)
AC_ARG_WITH(gettext,
[ --with-gettext[=DIR] Include GNU gettext support. DIR is the gettext
intall directory, defaults to /usr/local],
[
if test "$withval" != "no"; then
if test "$withval" = "yes"; then
GETTEXT_INCDIR=/usr/local/include
test -f /usr/local/include/libintl.h && GETTEXT_INCDIR=/usr/local/include/
GETTEXT_LIBDIR=/usr/local/lib
else
GETTEXT_INCDIR=$withval/include
test -f $withval/include/libintl.h && GETTEXT_INCDIR=$withval/include
GETTEXT_LIBDIR=$withval/lib
fi
AC_ADD_INCLUDE($GETTEXT_INCDIR)
AC_ADD_LIBPATH($GETTEXT_LIBDIR)
GETTEXT_INCLUDE=-I$GETTEXT_INCDIR
GETTEXT_LFLAGS=-L$GETTEXT_LIBDIR
O_CPPFLAGS="$CPPFLAGS"
O_LDFLAGS=$LDFLAGS
CPPFLAGS="$CPPFLAGS -I$GETTEXT_INCDIR"
LDFLAGS="$LDFLAGS -L$GETTEXT_LIBDIR"
GETTEXT_LIBS=
AC_MSG_RESULT(yes)
AC_CHECK_LIB(intl, bindtextdomain, GETTEXT_LIBS="intl",[
AC_CHECK_LIB(c, bindtextdomain, GETTEXT_LIBS=,[
AC_MSG_ERROR(Unable to find required gettext library)
],)
],)
AC_ADD_LIBRARY($GETTEXT_LIBS)
AC_DEFINE(HAVE_LIBINTL)
else
AC_MSG_RESULT(no)
fi
],[
AC_MSG_RESULT(no)
])
AC_MSG_CHECKING(whether to include ImageMagick support)
AC_ARG_WITH(imagick,
[ --with-imagick[=DIR] Include ImageMagick support. DIR is the
intall directory, and if left out, PHP will
try to find it on its own. [experimental]],
[
if test "$withval" != "no"; then
if test "$withval" = "yes"; then
IMAGICK_INCDIR=/usr/X11R6/include/X11/magick
IMAGICK_LIBDIR=/usr/X11R6/lib/
test -f /usr/local/include/magick/magick.h && IMAGICK_INCDIR=/usr/local/include/magick
test -f /usr/local/lib/libMagick.a && IMAGICK_LIBDIR=/usr/local/lib
else
IMAGICK_INCDIR=$withval
IMAGICK_LIBDIR=$withval
test -f $withval/include/magick.h && IMAGICK_INCDIR=$withval/include
test -f $withval/lib/libMagick.a && IMAGICK_LIBDIR=$withval/lib
test -f $withval/include/magick/magick.h && IMAGICK_INCDIR=$withval/include/magick
test -f $withval/lib/magick/libMagick.a && IMAGICK_LIBDIR=$withval/lib/magick
fi
AC_MSG_RESULT(yes)
AC_PATH_X
AC_ADD_LIBPATH($IMAGICK_LIBDIR)
AC_ADD_LIBPATH(${ac_x_libraries})
AC_ADD_LIBRARY(Magick)
AC_ADD_LIBRARY(X11)
AC_ADD_INCLUDE($IMAGICK_INCDIR)
AC_ADD_INCLUDE(${ac_x_includes}/X11)
O_CPPFLAGS="$CPPFLAGS"
O_LDFLAGS=$LDFLAGS
CPPFLAGS="$CPPFLAGS -I${ac_x_includes}/X11"
LDFLAGS="$LDFLAGS -L${ac_x_libraries}"
dnl check for a whole whack of possible required libraries
AC_CHECK_LIB(bz2, bzBuffToBuffCompress, AC_ADD_LIBRARY(bz2),,)
AC_CHECK_LIB(Xext,XShapeCombineMask, AC_ADD_LIBRARY(Xext),,)
AC_CHECK_LIB(dps,DPSInitialize, AC_ADD_LIBRARY(dps),,)
AC_CHECK_LIB(dpstk,XDPSPixelsPerPoint, AC_ADD_LIBRARY(dpstk),,)
AC_CHECK_LIB(tiff,TIFFOpen, AC_ADD_LIBRARY(tiff),,)
AC_CHECK_LIB(jpeg,jpeg_read_header, AC_ADD_LIBRARY(jpeg),,)
AC_CHECK_LIB(z,compress, AC_ADD_LIBRARY(z),,)
AC_CHECK_LIB(fpx,FPX_OpenImageByFilename, AC_ADD_LIBRARY(fpx),,)
AC_CHECK_LIB(png,png_info_init, AC_ADD_LIBRARY(png),,)
AC_CHECK_LIB(ttf,TT_Init_FreeType, AC_ADD_LIBRARY(ttf),,)
AC_CHECK_LIB(df,DFANputlabel, AC_ADD_LIBRARY(df),,)
AC_CHECK_LIB(jbig,jbg_dec_init, AC_ADD_LIBRARY(jbig),,)
CPPFLAGS=$O_CPPFLAGS
LDFLAGS=$O_LDFLAGS
AC_DEFINE(HAVE_LIBMAGICK)
else
AC_MSG_RESULT(no)
fi
],[
AC_MSG_RESULT(no)
])
AC_MSG_CHECKING(for Oracle support)
AC_ARG_WITH(oracle,
[ --with-oracle[=DIR] Include Oracle database support. DIR is Oracle's
home directory, defaults to \$ORACLE_HOME.],
[
case "$withval" in
yes)
ORACLEINST_TOP=$ORACLE_HOME
AC_MSG_RESULT(yes)
;;
no)
ORACLEINST_TOP=
AC_MSG_RESULT(no)
;;
*)
AC_MSG_RESULT(yes)
ORACLEINST_TOP=$withval
;;
esac
if test "$ORACLEINST_TOP" != ""
then
# Oracle include files
if test -d "$ORACLEINST_TOP/rdbms/public"; then
ORACLE_INCLUDE="$ORACLE_INCLUDE -I$ORACLEINST_TOP/rdbms/public"
fi
if test -d "$ORACLEINST_TOP/rdbms/demo/";then
ORACLE_INCLUDE="$ORACLE_INCLUDE -I$ORACLEINST_TOP/rdbms/demo"
fi
if test -d "$ORACLEINST_TOP/network/public"; then
ORACLE_INCLUDE="$ORACLE_INCLUDE -I$ORACLEINST_TOP/network/public"
fi
if test -d "$ORACLEINST_TOP/plsql/public"; then
ORACLE_INCLUDE="$ORACLE_INCLUDE -I$ORACLEINST_TOP/plsql/public"
fi
# Need to know the version, otherwhise we will mixup nlsrtl
AC_ORACLE_VERSION($ORACLEINST_TOP)
# Oracle libs - nightmare :-)
ORACLE_LIBDIR=lib
AC_ADD_LIBPATH($ORACLEINST_TOP/$ORACLE_LIBDIR)
if test -f "$ORACLEINST_TOP/rdbms/lib/sysliblist"
then
ORA_SYSLIB="`cat $ORACLEINST_TOP/rdbms/lib/sysliblist`"
elif test -f "$ORACLEINST_TOP/lib/sysliblist"
then
ORA_SYSLIB="`cat $ORACLEINST_TOP/lib/sysliblist`"
else
ORA_SYSLIB="-lm"
fi
# Oracle Static libs
case $ORACLE_VERSION in
7.0|7.1)
ORACLE_STLIBS="-locic $ORACLEINST_TOP/$ORACLE_LIBDIR/osntab.o \
-lsqlnet -lora -lsqlnet -lnlsrtl -lcv6 -lcore -lnlsrtl -lcv6 \
-lcore $ORA_SYSLIB -lcore $ORA_SYSLIB"
if test "`uname -s 2>/dev/null`" = "AIX"; then
ORACLE_STLIBS="$ORACLE_STLIBS -bI:$ORACLE_HOME/lib/mili.exp"
fi
;;
7.2)
ORACLE_STLIBS="-locic $ORACLEINST_TOP/$ORACLE_LIBDIR/osntab.o \
-lsqlnet -lora -lsqlnet -lora -lnlsrtl3 -lc3v6 -lcore3 -lnlsrtl3 \
-lcore3 $ORA_SYSLIB -lcore3 $ORA_SYSLIB"
;;
7.3)
ORACLE_STLIBS="-lclient -lsqlnet -lncr -lsqlnet -lclient -lcommon \
-lgeneric -lsqlnet -lncr -lsqlnet -lclient -lcommon -lgeneric \
-lepc -lnlsrtl3 -lc3v6 -lcore3 -lnlsrtl3 -lcore3 -lnlsrtl3 \
$ORA_SYSLIB -lcore3 $ORA_SYSLIB"
;;
8.0)
ORACLE_STLIBS="-lclient -lsqlnet -lncr -lsqlnet -lclient -lcommon \
-lgeneric -lsqlnet -lncr -lsqlnet -lclient -lcommon -lgeneric \
-lepc -lnlsrtl3 -lc3v6 -lcore4 -lnlsrtl3 -lcore4 -lnlsrtl3 \
$ORA_SYSLIB -lcore3 $ORA_SYSLIB"
;;
*)
ORACLE_STLIBS=
;;
esac
# Oracle shared libs
case $ORACLE_VERSION in
7.0)
# shared libs not supported
ORACLE_SHLIBS="$ORACLE_STLIBS"
;;
7.1)
if test -f $ORACLEINST_TOP/$ORACLE_LIBDIR/liboracle.s?
then
ORACLE_SHLIBS="-loracle $ORA_SYSLIB"
else
ORACLE_SHLIBS="$ORACLE_STLIBS"
fi
;;
7.2|7.3)
if test -f $ORACLEINST_TOP/$ORACLE_LIBDIR/libclntsh.s?
then
ORACLE_SHLIBS="-lclntsh $ORA_SYSLIB"
else
ORACLE_SHLIBS="$ORACLE_STLIBS"
fi
;;
8.0)
if test -f $ORACLEINST_TOP/$ORACLE_LIBDIR/libclntsh.s? -o \
-f $ORACLEINST_TOP/$ORACLE_LIBDIR/libclntsh.a # AIX
then
if test "$CC" = "gcc" -a "`uname -sv`" = "AIX 4"; then
# for Oracle 8 on AIX 4
ORA_SYSLIB="$ORA_SYSLIB -nostdlib /lib/crt0_r.o /usr/lib/libpthreads.a /usr/lib/libc_r.a -lgcc"
fi
ORACLE_SHLIBS="-lclntsh -lpsa -lcore4 -lnlsrtl3 -lclntsh $ORA_SYSLIB"
else
ORACLE_SHLIBS="$ORACLE_STLIBS"
fi
AC_DEFINE(HAVE_OCI8)
;;
8.1)
ORACLE_SHLIBS="-lclntsh $ORA_SYSLIB"
AC_DEFINE(HAVE_OCI8)
;;
*)
ORACLE_SHLIBS=
;;
esac
# only using shared libs right now
ORACLE_LIBS=$ORACLE_SHLIBS
AC_DEFINE(HAVE_ORACLE)
echo "+--------------------------------------------------------------------+"
echo "| Notice: |"
echo "| If you encounter <defunc> processes when using a local Oracle-DB |"
echo "| please recompile PHP and specify --enable-sigchild when configuring|"
echo "| (This problem has been reported un Linux using Oracle >= 8.1.5) |"
echo "+--------------------------------------------------------------------+"
fi
],[AC_MSG_RESULT(no)])
AC_SUBST(ORACLE_SHLIBS)
AC_SUBST(ORACLE_STLIBS)
AC_SUBST(ORACLE_LIBS)
AC_SUBST(ORACLE_LFLAGS)
AC_SUBST(ORACLE_INCLUDE)
AC_SUBST(ORACLE_HOME)
AC_SUBST(ORACLE_VERSION)
AC_MSG_CHECKING(for iODBC support)
AC_ARG_WITH(iodbc,
[ --with-iodbc[=DIR] Include iODBC support. DIR is the iODBC base
install directory, defaults to /usr/local.],
[
if test "$withval" = "yes"; then
withval=/usr/local
fi
if test "$withval" != "no"; then
IODBC_INCDIR=$withval/include
IODBC_LIBDIR=$withval/lib
IODBC_LFLAGS=-L$IODBC_LIBDIR
IODBC_INCLUDE=-I$IODBC_INCDIR
IODBC_LIBS=-liodbc
UODBC_DEFAULT=yes
AC_DEFINE(HAVE_IODBC)
AC_MSG_RESULT(yes)
fi
],[
AC_MSG_RESULT(no)
])
AC_SUBST(IODBC_LIBS)
AC_SUBST(IODBC_LFLAGS)
AC_SUBST(IODBC_INCLUDE)
AC_MSG_CHECKING(for OpenLink ODBC support)
AC_ARG_WITH(openlink,
[ --with-openlink[=DIR] Include OpenLink ODBC support. DIR is the
OpenLink base install directory, defaults to
/usr/local/openlink.],
[
if test "$withval" = "yes"; then
withval=/usr/local/openlink
fi
if test "$withval" != "no"; then
OPENLINK_INCDIR=$withval/odbcsdk/include
OPENLINK_LIBDIR=$withval/odbcsdk/lib
OPENLINK_LFLAGS=-L$OPENLINK_LIBDIR
OPENLINK_INCLUDE=-I$OPENLINK_INCDIR
OPENLINK_LIBS=-liodbc
UODBC_DEFAULT=yes
AC_DEFINE(HAVE_OPENLINK)
AC_MSG_RESULT(yes)
fi
],[
AC_MSG_RESULT(no)
])
AC_SUBST(OPENLINK_LIBS)
AC_SUBST(OPENLINK_LFLAGS)
AC_SUBST(OPENLINK_INCLUDE)
AC_MSG_CHECKING(for Adabas support)
AC_ARG_WITH(adabas,
[ --with-adabas[=DIR] Include Adabas D support. DIR is the Adabas base
install directory, defaults to /usr/local.],
[
if test "$withval" = "yes"; then
withval=/usr/local
fi
if test "$withval" != "no"; then
ADA_INCDIR=$withval/incl
ADA_LIBDIR=$withval/lib
ADA_LFLAGS=-L$ADA_LIBDIR
ADA_INCLUDE=-I$ADA_INCDIR
ADA_LIBS="${ADA_LIBDIR}/odbclib.a -lsqlrte -lsqlptc"
UODBC_DEFAULT=yes
AC_DEFINE(HAVE_ADABAS)
AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no)
fi
],[
AC_MSG_RESULT(no)
])
AC_SUBST(ADA_LIBS)
AC_SUBST(ADA_LFLAGS)
AC_SUBST(ADA_INCLUDE)
AC_MSG_CHECKING(for Sybase support)
AC_ARG_WITH(sybase,
[ --with-sybase[=DIR] Include Sybase-DB support. DIR is the Sybase home
directory, defaults to /home/sybase.],
[
if test "$withval" != "no"; then
if test "$withval" = "yes"; then
SYBASE_INCDIR=/home/sybase/include
SYBASE_LIBDIR=/home/sybase/lib
else
SYBASE_INCDIR=$withval/include
SYBASE_LIBDIR=$withval/lib
fi
SYBASE_INCLUDE=-I$SYBASE_INCDIR
SYBASE_LFLAGS="-L$SYBASE_LIBDIR -L$SYBASE_LIBDIR"
SYBASE_LIBS=-lsybdb
AC_MSG_RESULT(yes)
AC_CHECK_LIB(dnet_stub, dnet_addr,
[ SYBASE_LIBS="$SYBASE_LIBS -ldnet_stub"
AC_DEFINE(HAVE_LIBDNET_STUB)
])
AC_DEFINE(HAVE_SYBASE)
else
AC_MSG_RESULT(no)
fi
],[
AC_MSG_RESULT(no)
])
AC_SUBST(SYBASE_LIBS)
AC_SUBST(SYBASE_LFLAGS)
AC_SUBST(SYBASE_INCLUDE)
AC_MSG_CHECKING(for Sybase-CT support)
AC_ARG_WITH(sybase-ct,
[ --with-sybase-ct[=DIR] Include Sybase-CT support. DIR is the Sybase home
directory, defaults to /home/sybase.],
[
if test "$withval" != "no"; then
AC_MSG_RESULT(yes)
AC_DEFINE(HAVE_SYBASE_CT)
if test "$withval" = "yes"; then
SYBASE_CT_INCDIR=/home/sybase/include
SYBASE_CT_LIBDIR=/home/sybase/lib
else
SYBASE_CT_INCDIR=$withval/include
SYBASE_CT_LIBDIR=$withval/lib
fi
SYBASE_CT_INCLUDE=-I$SYBASE_CT_INCDIR
SYBASE_CT_LFLAGS="-L$SYBASE_CT_LIBDIR"
SYBASE_CT_LIBS="-lcs -lct -lcomn -lintl"
old_LDFLAGS=$LDFLAGS
LDFLAGS="$LDFLAGS -L$SYBASE_CT_LIBDIR"
AC_CHECK_LIB(tcl, netg_errstr,
[ SYBASE_CT_LIBS="$SYBASE_CT_LIBS -ltcl" ],
[ SYBASE_CT_LIBS="$SYBASE_CT_LIBS -lsybtcl" ],
[ $SYBASE_CT_LIBS ])
AC_CHECK_LIB(insck, insck__getVdate,
[ SYBASE_CT_LIBS="$SYBASE_CT_LIBS -linsck" ])
LDFLAGS=$old_LDFLAGS
else
AC_MSG_RESULT(no)
fi
],[
AC_MSG_RESULT(no)
])
AC_SUBST(SYBASE_CT_LIBS)
AC_SUBST(SYBASE_CT_LFLAGS)
AC_SUBST(SYBASE_CT_INCLUDE)
AC_MSG_CHECKING(for MySQL support)
AC_ARG_WITH(mysql,
[ --with-mysql[=DIR] Include MySQL support. DIR is the MySQL base
install directory, defaults to searching through
a number of common places for the MySQL files.],
[
if test "$withval" != "no"; then
if test "$withval" = "yes"; then
# Autodetect
for w in /usr/include /usr/local/include /usr/mysql /usr/local/mysql /opt /opt/mysql; do
# check for plain setups
if test -f $w/mysql.h; then
MYSQL_INCDIR=$w
break
fi
# check for "/usr/include/<packagename>" type setups
if test -f $w/mysql/mysql.h; then
MYSQL_INCDIR=$w/mysql
break
fi
# check for "/usr/<packagename>/include" type setups
if test -f $w/mysql/include/mysql.h; then
MYSQL_INCDIR=$w/mysql/include
break
fi
done
for w in /usr/lib /usr/local/lib /usr/mysql /usr/local/mysql /opt /opt/mysql; do
# check for plain setups
if test -f $w/libmysqlclient.a -o -f $w/libmysqlclient.so; then
MYSQL_LIBDIR=$w
break
fi
# check for "/usr/lib/<packagename>" type setups
if test -f $w/mysql/libmysqlclient.a -o -f $w/mysql/libmysqlclient.so; then
MYSQL_LIBDIR=$w/mysql
break
fi
# check for "/usr/<packagename>/lib" type setups
if test -f $w/mysql/lib/libmysqlclient.a -o -f $w/mysql/lib/libmysqlclient.so; then
MYSQL_LIBDIR=$w/mysql/lib
break
fi
done
else
# Manual detection for <withval>/include/<packagename>
# and <withval>/include.
if test -f $withval/include/mysql/mysql.h; then
MYSQL_INCDIR=$withval/include/mysql
elif test -f $withval/include/mysql.h; then
MYSQL_INCDIR=$withval/include
fi
# Manual detection for <withval>/lib/<packagename>
# and <withval>/lib.
if test -f $withval/lib/mysql/libmysqlclient.a -o -f $withval/lib/mysql/libmysqlclient.so; then
MYSQL_LIBDIR=$withval/lib/mysql
elif test -f $withval/lib/libmysqlclient.a -o -f $withval/lib/libmysqlclient.so; then
MYSQL_LIBDIR=$withval/lib
fi
fi
## Did we find anything?
if test -z "$MYSQL_LIBDIR" ; then
AC_MSG_RESULT(no)
AC_MSG_ERROR(Invalid MySQL directory - unable to find libmysqlclient.a or libmysqlclient.so.)
fi
if test -z "$MYSQL_INCDIR" ; then
AC_MSG_RESULT(no)
AC_MSG_ERROR(Invalid MySQL directory - unable to find mysql.h.)
fi
AC_ADD_LIBRARY_WITH_PATH(mysqlclient, $MYSQL_LIBDIR)
AC_ADD_INCLUDE($MYSQL_INCDIR)
AC_DEFINE(HAVE_MYSQL)
AC_MSG_RESULT(yes)
dnl check for errmsg.h, which isn't installed by some versions of 3.21
old_CPPFLAGS="$CPPFLAGS"
CPPFLAGS="$CPPFLAGS -I$MYSQL_INCDIR"
AC_CHECK_HEADERS(errmsg.h mysql.h)
CPPFLAGS="$old_CPPFLAGS"
else
AC_MSG_RESULT(no)
fi
],[
AC_MSG_RESULT(no)
])
AC_MSG_CHECKING(for mSQL support)
AC_ARG_WITH(msql,
[ --with-msql[=DIR] Include mSQL support. DIR is the mSQL base
install directory, defaults to /usr/local/Hughes.],
[
if test "$withval" != "no"; then
if test "$withval" = "yes"; then
MSQL_INCDIR=/usr/local/Hughes/include
MSQL_LIBDIR=/usr/local/Hughes/lib
else
MSQL_INCDIR=$withval/include
MSQL_LIBDIR=$withval/lib
fi
AC_ADD_LIBRARY_WITH_PATH(msql, $MSQL_LIBDIR)
AC_ADD_INCLUDE($MSQL_INCDIR)
AC_DEFINE(HAVE_MSQL)
AC_MSG_RESULT(yes)
AC_MSQL_VERSION
else
AC_MSG_RESULT(no)
fi
],[
AC_MSG_RESULT(no)
])
AC_MSG_CHECKING(for PostgresSQL support)
AC_ARG_WITH(pgsql,
[ --with-pgsql[=DIR] Include PostgresSQL support. DIR is the PostgresSQL
base install directory, defaults to /usr/local/pgsql.],
[
if test "$withval" != "no"; then
if test "$withval" = "yes"; then
withval=/usr/local
fi
PGSQL_INCDIR=$withval/include
test -d $withval/include/pgsql && PGSQL_INCDIR=$withval/include/pgsql
test -d $withval/pgsql/include && PGSQL_INCDIR=$withval/pgsql/include
test -d $withval/include/postgresql && PGSQL_INCDIR=$withval/include/postgresql
PGSQL_LIBDIR=$withval/lib
test -d $withval/lib/pgsql && PGSQL_LIBDIR=$withval/lib/pgsql
test -d $withval/pgsql/lib && PGSQL_LIBDIR=$withval/pgsql/lib
test -d $withval/lib/postgresql && PGSQL_LIBDIR=$withval/lib/postgresql
PGSQL_INCLUDE=-I$PGSQL_INCDIR
PGSQL_LFLAGS=-L$PGSQL_LIBDIR
PGSQL_LIBS=-lpq
AC_ADD_LIBRARY_WITH_PATH(pq, $PGSQL_LIBDIR)
AC_ADD_INCLUDE($PGSQL_INCDIR)
old_CFLAGS=$CFLAGS; old_LDFLAGS=$LDFLAGS; old_LIBS=$LIBS
CFLAGS="$CFLAGS $PGSQL_INCLUDE"
LDFLAGS="$LDFLAGS $PGSQL_LFLAGS"
LIBS="$LIBS $PGSQL_LIBS"
AC_DEFINE(HAVE_PGSQL)
AC_MSG_RESULT(yes)
AC_CHECK_FUNC(PQcmdTuples,AC_DEFINE(HAVE_PQCMDTUPLES))
CFLAGS=$old_CFLAGS; LDFLAGS=$old_LDFLAGS; LIBS=$old_LIBS
else
AC_MSG_RESULT(no)
fi
],[
AC_MSG_RESULT(no)
])
AC_MSG_CHECKING(for IBM DB2 support)
AC_ARG_WITH(ibm-db2,
[ --with-ibm-db2[=DIR] Include IBM DB2 support. DIR is the DB2 base
install directory, defaults to /home/db2inst1/sqllib],
[
if test "$withval" != "no"; then
if test "$withval" = "yes"; then
IBMDB2_INCDIR=/home/db2inst1/sqllib/include
IBMDB2_LIBDIR=/home/db2inst1/sqllib/lib
else
IBMDB2_INCDIR=$withval/include
IBMDB2_LIBDIR=$withval/lib
fi
IBMDB2_INCLUDE=-I$IBMDB2_INCDIR
UODBC_DEFAULT=yes
AC_ADD_LIBRARY_WITH_PATH(db2, $IBMDB2_LIBDIR)
AC_ADD_INCLUDE($IBMDB2_INCDIR)
AC_DEFINE(HAVE_IBMDB2)
AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no)
fi
],[
AC_MSG_RESULT(no)
])
AC_MSG_CHECKING(for Solid support)
AC_ARG_WITH(solid,
[ --with-solid[=DIR] Include Solid support. DIR is the Solid base
install directory, defaults to /usr/local/solid],
[
if test "$withval" != "no"; then
if test "$withval" = "yes"; then
SOLID_INCDIR=/usr/local/solid/include
SOLID_LIBDIR=/usr/local/solid/lib
else
SOLID_INCDIR=$withval/include
SOLID_LIBDIR=$withval/lib
fi
SOLID_INCLUDE=-I$SOLID_INCDIR
UODBC_DEFAULT=yes
AC_DEFINE(HAVE_SOLID)
AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no)
fi
],[
AC_MSG_RESULT(no)
])
if test "$SOLID_LIBDIR" != ""; then
AC_FIND_SOLID_LIBS($SOLID_LIBDIR)
fi
AC_SUBST(SOLID_INCLUDE)
AC_SUBST(SOLID_LIBS)
AC_MSG_CHECKING(for Empress support)
AC_ARG_WITH(empress,
[ --with-empress[=DIR] Include Empress support. DIR is the Empress base
install directory, defaults to \$EMPRESSPATH],
[
if test "$withval" != "no"; then
if test "$withval" = "yes"; then
EMPRESS_INCDIR=$EMPRESSPATH/odbccl/include
EMPRESS_LIBDIR=$EMPRESSPATH/odbccl/lib
else
EMPRESS_INCDIR=$withval/include
EMPRESS_LIBDIR=$withval/lib
fi
EMPRESS_INCLUDE=-I$EMPRESS_INCDIR
UODBC_DEFAULT=yes
AC_DEFINE(HAVE_EMPRESS)
AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no)
fi
],[
AC_MSG_RESULT(no)
])
if test "$EMPRESS_LIBDIR" != ""; then
AC_FIND_EMPRESS_LIBS($EMPRESS_LIBDIR)
fi
AC_SUBST(EMPRESS_INCLUDE)
AC_SUBST(EMPRESS_LIBS)
AC_MSG_CHECKING(for LDAP support)
AC_ARG_WITH(ldap,
[ --with-ldap[=DIR] Include LDAP support. DIR is the LDAP base
install directory, defaults to /usr and /usr/local],
[
if test "$withval" != "no"; then
if test "$withval" = "yes"; then
if test -f /usr/include/ldap.h; then
LDAP_INCDIR=/usr/include
LDAP_LIBDIR=/usr/lib
elif test -f /usr/local/include/ldap.h; then
LDAP_INCDIR=/usr/local/include
LDAP_LIBDIR=/usr/local/lib
else
AC_MSG_RESULT(no)
AC_MSG_ERROR(Unable to find ldap.h)
fi
else
if test -f $withval/include/ldap.h; then
LDAP_INCDIR=$withval/include
LDAP_LIBDIR=$withval/lib
else
AC_MSG_RESULT(no)
AC_MSG_ERROR(Unable to find $withval/include/ldap.h)
fi
fi
dnl The Linux version of the SDK need -lpthread
dnl I have tested Solaris, and it doesn't, but others may. Add
dnl these here if necessary. -RL
if test `uname` = "Linux"; then
LDAP_PTHREAD="pthread"
else
LDAP_PTHREAD=
fi
if test -f $LDAP_LIBDIR/liblber.a; then
AC_ADD_LIBRARY(ldap)
AC_ADD_LIBRARY(lber)
elif test -f $LDAP_LIBDIR/libldapssl30.so; then
AC_ADD_LIBRARY(ldapssl30)
AC_ADD_LIBRARY($LDAP_PTHREAD)
AC_DEFINE(HAVE_NSLDAP)
elif test -f $LDAP_LIBDIR/libldapssl30.sl; then
AC_ADD_LIBRARY(ldapssl30)
AC_DEFINE(HAVE_NSLDAP)
elif test -f $LDAP_LIBDIR/libldap30.so; then
AC_ADD_LIBRARY(ldap30)
AC_ADD_LIBRARY($LDAP_PTHREAD)
AC_DEFINE(HAVE_NSLDAP)
elif test -f $LDAP_LIBDIR/libldap30.sl; then
AC_ADD_LIBRARY(ldap30)
AC_DEFINE(HAVE_NSLDAP)
fi
AC_ADD_LIBPATH($LDAP_LIBDIR)
AC_ADD_INCLUDE($LDAP_INCDIR)
AC_DEFINE(HAVE_LDAP)
AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no)
fi
],[
AC_MSG_RESULT(no)
])
AC_MSG_CHECKING(for Cybercash MCK support)
AC_ARG_WITH(mck,
[ --with-mck[=DIR] Include Cybercash MCK support. DIR is the cybercash
mck build directory, defaults to
/usr/src/mck-3.2.0.3-linux for help look in
extra/cyberlib],
[
if test "$withval" != "no"; then
if test "$withval" = "yes"; then
MCK_INCDIR=/usr/src/mck-3.2.0.3-linux/c-api
MCK_LIBDIR=/usr/src/mck-3.2.0.3-linux/c-api/lib
else
MCK_INCDIR=$withval/c-api
MCK_LIBDIR=$withval/c-api/lib
fi
AC_ADD_LIBRARY_WITH_PATH(mckcrypto, $MCK_LIBDIR)
AC_ADD_INCLUDE($MCK_INCDIR)
AC_DEFINE(HAVE_MCK)
AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no)
fi
],[
AC_MSG_RESULT(no)
])
AC_SUBST(MCK_LIBS)
AC_SUBST(MCK_LFLAGS)
AC_SUBST(MCK_INCLUDE)
sinclude(snmp.m4)
AC_MSG_CHECKING(for Velocis support)
AC_ARG_WITH(velocis,
[ --with-velocis[=DIR] Include Velocis support. DIR is the Velocis
base install directory, defaults to /usr/local/velocis.],
[
if test "$withval" != "no"; then
VELOCIS_OS=`uname`
if test "$withval" = "yes"; then
VELOCIS_INCDIR=/usr/local/velocis/include
VELOCIS_LIBDIR=/usr/local/velocis
else
VELOCIS_INCDIR=$withval/include
VELOCIS_LIBDIR=$withval
fi
VELOCIS_INCLUDE=-I$VELOCIS_INCDIR
VELOCIS_LIBDIR="$VELOCIS_LIBDIR/bin"
VELOCIS_LIBS="-l_rdbc -l_sql"
if test $VELOCIS_OS = "FreeBSD"; then
VELOCIS_LIBS="$VELOCIS_LIBDIR/../lib/rdscli.a -lcompat"
fi
if test $VELOCIS_OS = "BSD/OS"; then
VELOCIS_LIBS="$VELOCIS_LIBDIR/../lib/rdscli.a -lcompat"
fi
old_CFLAGS=$CFLAGS; old_LDFLAGS=$LDFLAGS
CFLAGS="$CFLAGS $VELOCIS_INCLUDE"
LDFLAGS="$LDFLAGS $VELOCIS_LIBS"
UODBC_DEFAULT=yes
AC_DEFINE(HAVE_VELOCIS)
AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no)
fi
],[
AC_MSG_RESULT(no)
])
AC_SUBST(VELOCIS_LIBS)
AC_SUBST(VELOCIS_LFLAGS)
AC_SUBST(VELOCIS_INCLUDE)
AC_MSG_CHECKING(for Informix support)
AC_ARG_WITH(informix,
[ --with-informix[=DIR] Include Informix support. DIR is the Informix base
install directory, defaults to ${INFORMIXDIR:-nothing}.],
[
if test "$withval" != "no"; then
if test "$INFORMIXDIR" = ""; then
INFORMIX_WARNING="
WARNING: You asked for Informix support, but don't have \\\$INFORMIXDIR
environment value set up. Configuring and compiling Informix
support to PHP3 is impossible and has been turned off. Please
try again after setting up your environment."
IFX_C_MAKE='touch functions/ifx.c'
AC_MSG_RESULT(no)
else
if test "$withval" = "yes"; then
IFX_INCDIR=$INFORMIXDIR/incl/esql
IFX_LIBDIR="-L$INFORMIXDIR/lib -L$INFORMIXDIR/lib/esql"
else
IFX_INCDIR=$withval/incl/esql
IFX_LIBDIR="-L$withval/lib -L$withval/lib/esql"
if test "$withval" != "$INFORMIXDIR"; then
INFORMIX_WARNING="
WARNING: You specified Informix base install directory that is different
than your \\\$INFORMIXDIR environment variable. You'd better know
exactly what you are doing."
fi
fi
IFX_INCLUDE=-I$IFX_INCDIR
IFX_LFLAGS=$IFX_LIBDIR
if test -z "$IFX_LIBS"; then
IFX_LIBS=`esql -libs | sed -e 's/-lm$//'`
dnl -lm twice otherwise?
IFX_LIBS=`echo $IFX_LIBS | sed -e 's/Libraries to be used://g' -e 's/esql: error -55923: No source or object file\.//g'`
dnl Seems to get rid of newlines.
dnl According to Perl's DBD-Informix, might contain these strings.
else
dnl Allow override to use static and/or threaded libs
IFX_LIBS="$IFX_LIBS"
fi
CFLAGS="$CFLAGS $IFX_INCLUDE"
LDFLAGS="$LDFLAGS $IFX_LFLAGS"
if test "`uname -s 2>/dev/null`" = "AIX"; then
CFLAGS="$CFLAGS -D__H_LOCALEDEF"
fi
AC_DEFINE(HAVE_IFX)
AC_MSG_CHECKING([Informix version])
IFX_VERSION=[`esql -V | sed -ne '1 s/^[^0-9]*\([0-9]\)\.\([0-9]*\).*/\1\2/p'`]
if test $IFX_VERSION -ge "900"; then
AC_DEFINE(HAVE_IFX_IUS)
IFX_ESQL_FLAGS="-EDHAVE_IFX_IUS"
else
IFX_ESQL_FLAGS="-EUHAVE_IFX_IUS"
fi
AC_SUBST(IFX_ESQL_FLAGS)
AC_DEFINE_UNQUOTED(IFX_VERSION, $IFX_VERSION)
AC_MSG_RESULT(yes)
IFX_C_MAKE="(esql -e $IFX_ESQL_FLAGS functions/ifx.ec; mv ifx.c functions)"
fi
else
INFORMIXDIR=
IFX_C_MAKE='touch functions/ifx.c'
AC_MSG_RESULT(no)
fi
],[
IFX_C_MAKE='touch functions/ifx.c'
AC_MSG_RESULT(no)
])
AC_SUBST(IFX_LIBS)
AC_SUBST(IFX_LFLAGS)
AC_SUBST(IFX_INCLUDE)
AC_SUBST(INFORMIXDIR)
AC_SUBST(IFX_C_MAKE)
AC_MSG_CHECKING(for InterBase support)
AC_ARG_WITH(interbase,
[ --with-interbase[=DIR] Include InterBase support. DIR is the InterBase base
install directory, defaults to /usr/interbase],
[
if test "$withval" != "no"; then
if test "$withval" = "yes"; then
IBASE_INCDIR=/usr/interbase/include
IBASE_LIBDIR=/usr/interbase/lib
else
IBASE_INCDIR=$withval/include
IBASE_LIBDIR=$withval/lib
fi
IBASE_INCLUDE=-I$IBASE_INCDIR
IBASE_LFLAGS=-L$IBASE_LIBDIR
IBASE_LIBS="-lgds"
AC_DEFINE(HAVE_IBASE)
AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no)
fi
],[
AC_MSG_RESULT(no)
])
AC_SUBST(IBASE_INCLUDE)
AC_SUBST(IBASE_LIBS)
AC_SUBST(IBASE_LFLAGS)
AC_MSG_CHECKING(for a custom ODBC support)
AC_ARG_WITH(custom-odbc,
[ --with-custom-odbc[=DIR] Include a user defined ODBC support.
The DIR is ODBC install base directory,
which defaults to /usr/local.
Make sure to define CUSTOM_ODBC_LIBS and
have some odbc.h in your include dirs.
E.g., you should define following for
Sybase SQL Anywhere 5.5.00 on QNX, prior to
run configure script:
CFLAGS=\"-DODBC_QNX -DSQLANY_BUG\"
LDFLAGS=-lunix
CUSTOM_ODBC_LIBS=\"-ldblib -lodbc\".],
[
if test "$withval" = "yes"; then
withval=/usr/local
fi
if test "$withval" != "no"; then
CODBC_INCDIR=$withval/include
CODBC_LIBDIR=$withval/lib
CODBC_LFLAGS=-L$CODBC_LIBDIR
CODBC_INCLUDE=-I$CODBC_INCDIR
CODBC_LIBS=$CUSTOM_ODBC_LIBS
UODBC_DEFAULT=yes
AC_DEFINE(HAVE_CODBC)
AC_MSG_RESULT(yes)
fi
],[
AC_MSG_RESULT(no)
])
AC_SUBST(CODBC_LIBS)
AC_SUBST(CODBC_LFLAGS)
AC_SUBST(CODBC_INCLUDE)
AC_MSG_CHECKING(for Hyperwave support)
AC_ARG_WITH(hyperwave,
[ --with-hyperwave Include Hyperwave support],
[
if test "$withval" != "no"; then
AC_DEFINE(HYPERWAVE,1)
AC_MSG_RESULT(yes)
else
AC_DEFINE(HYPERWAVE,0)
AC_MSG_RESULT(no)
fi
],[
AC_DEFINE(HYPERWAVE,0)
AC_MSG_RESULT(no)
])
AC_MSG_CHECKING(for XML support)
AC_ARG_WITH(xml,
[ --with-xml Include XML support],[
if test "$withval" != "no" ; then
for i in $withval /usr /usr/local; do
if test -f "$i/include/xml/xmltok.h" ; then
XML_DIR=$i
XML_INCLUDE="$i/include"
XML_LIB="$i/lib"
fi
done
if test "$XML_DIR" = "" ; then
if test -n "$APACHE_WITHVAL"; then
if test -f "$APACHE_WITHVAL/src/lib/expat-lite/xmltok.h"; then
XML_DIR=$APACHE_WITHVAL
XML_INCLUDE="$APACHE_WITHVAL/src/lib/expat-lite"
AC_DEFINE(RAW_XML_INCLUDEPATH)
fi
fi
fi
if test -n "$APXS"; then
i="`$APXS -q INCLUDEDIR`"
if test -f "$i/xml/xmltok.h"; then
XML_DIR=$i
XML_INCLUDE=$i
fi
fi
if test "$XML_DIR" = "" ; then
AC_MSG_ERROR(cannot find XML include files)
fi
AC_DEFINE(HAVE_LIBEXPAT, 1)
AC_MSG_RESULT(yes)
if test "$XML_LIB" != ""; then
AC_ADD_LIBRARY_WITH_PATH(expat, $XML_LIB)
fi
AC_ADD_INCLUDE($XML_INCLUDE)
else
AC_MSG_RESULT(no)
fi
],[
AC_MSG_RESULT(no)
])
AC_MSG_CHECKING(whether to include YP support)
AC_ARG_WITH(yp,
[ --with-yp Include YP support],
[
if test "$withval" = "yes"; then
AC_MSG_RESULT(yes)
AC_DEFINE(HAVE_YP)
AC_CHECK_LIB(nsl,yp_next)
if test `uname` = "SunOS";then
release=`uname -r`
case "$release" in
5*)
AC_DEFINE(SOLARIS_YP)
;;
*)
;;
esac
fi
else
AC_MSG_RESULT(no)
fi
],[
AC_MSG_RESULT(no)
])
AC_MSG_CHECKING(whether to include zlib support)
AC_ARG_WITH(zlib,
[ --with-zlib[=DIR] Include zlib support (requires zlib >= 1.0.9).
DIR is the zlib install directory,
defaults to /usr.],
[
case "$withval" in
no)
AC_MSG_RESULT(no) ;;
yes)
AC_MSG_RESULT(yes)
AC_CHECK_LIB(z, gzgets, [AC_DEFINE(HAVE_ZLIB) ZLIB_LIBS="-lz"],
[AC_MSG_ERROR(Zlib module requires zlib >= 1.0.9.)]) ;;
*)
test -f $withval/include/zlib/zlib.h && ZLIB_INCLUDE="-I$withval/include/zlib"
test -f $withval/include/zlib.h && ZLIB_INCLUDE="-I$withval/include"
if test -n "$ZLIB_INCLUDE" ; then
AC_MSG_RESULT(yes)
old_LIBS=$LIBS
LIBS="$LIBS -L$withval/lib"
AC_CHECK_LIB(z, gzgets, [AC_DEFINE(HAVE_ZLIB) ZLIB_LIBS="-L$withval/lib -lz"],
[AC_MSG_ERROR(Zlib module requires zlib >= 1.0.9.)])
LIBS=$old_LIBS
else
AC_MSG_RESULT(no)
fi ;;
esac
],[
AC_MSG_RESULT(no)
])
AC_SUBST(ZLIB_LIBS)
AC_SUBST(ZLIB_INCLUDE)
AC_MSG_CHECKING(whether to include pdflib support)
AC_ARG_WITH(pdflib,
[ --with-pdflib[=DIR] Include pdflib support (tested with 0.6 and 2.0).
DIR is the pdflib install directory,
defaults to /usr/local.],
[
case "$withval" in
no)
AC_MSG_RESULT(no) ;;
yes)
LIBS="$LIBS -L/usr/local/lib $ZLIB_LIBS -ltiff -lz"
AC_MSG_RESULT(yes)
AC_MSG_WARN(!!!!! Note for pdflib 0.6 !!!!!)
AC_MSG_WARN(In order to ensure the pdf module works correctly, you must)
AC_MSG_WARN(modify the pdflib distribution. Take out line 190 in)
AC_MSG_WARN(file p_basic.c which closes the pdf file. Read the php3)
AC_MSG_WARN(documentation for more information.)
AC_CHECK_LIB(pdf, PDF_close, [AC_DEFINE(HAVE_PDFLIB) PDFLIB_LIBS="-L/usr/local/lib -lpdf" PDFLIB_INCLUDE="-I/usr/local/include"],
[AC_MSG_ERROR(pdflib module requires at least pdflib 0.6)])
AC_CHECK_LIB(pdf, PDF_new, [AC_DEFINE(HAVE_PDFLIB2) PDFLIB_LIBS="-L/usr/local/lib $ZLIB_LIBS -lpdf -ltiff -lz" PDFLIB_INCLUDE="-I/usr/local/include"],
[AC_MSG_WARN(No pdflib 2.0 support. Consider an update.)])
LIBS=$old_LIBS;;
*)
test -d $withval/include && PDFLIB_INCLUDE="-I$withval/include"
if test -f $withval/include/pdf.h ; then
AC_MSG_RESULT(yes)
AC_MSG_WARN(!!!!! Note for pdflib 0.6 !!!!!)
AC_MSG_WARN(In order to ensure the pdf module works correctly, you must)
AC_MSG_WARN(modify the pdflib distribution. Take out line 190 in)
AC_MSG_WARN(file p_basic.c which closes the pdf file. Read)
AC_MSG_WARN(the php3 documentation for more information.)
old_LIBS=$LIBS
LIBS="$LIBS -L$withval/lib"
AC_CHECK_LIB(pdf, PDF_open, [AC_DEFINE(HAVE_PDFLIB) PDFLIB_LIBS="-L$withval/lib -lpdf"],
[AC_MSG_ERROR(pdflib module requires at least pdflib 0.6.)])
LIBS=$old_LIBS
else
if test -f $withval/include/pdflib.h ; then
old_LIBS=$LIBS
AC_MSG_RESULT(yes)
old_withval=$withval
if test -z $ZLIB_LIBS; then
AC_MSG_CHECKING([for zlib (needed by pdflib 2.0)])
AC_ARG_WITH(zlib-dir,
[ --with-zlib-dir[=DIR] zlib dir for pdflib 2.0 or include zlib support],[
AC_MSG_RESULT( )
if test -z $withval; then
withval="/usr/local"
fi
LIBS="$LIBS -L$withval/lib -lz"
AC_CHECK_LIB(z,deflate, [PDFLIB_LIBS="-L$withval/lib -lz"],[AC_MSG_RESULT(no)],)
],[
AC_MSG_RESULT(no)
AC_MSG_WARN(If configure fails try --with-zlib=<DIR>)
])
else
echo "checking for libz needed by pdflib 2.0... already zlib support"
PDFLIB_LIBS="$ZLIB_LIBS"
LIBS="$LIBS $ZLIB_LIBS"
fi
AC_MSG_CHECKING([for libjpeg (needed by pdflib 2.0)])
AC_ARG_WITH(jpeg-dir,
[ --with-jpeg-dir[=DIR] jpeg dir for pdflib 2.0],[
AC_MSG_RESULT(yes)
if test -z $withval; then
withval="/usr/local"
fi
LIBS="$LIBS -L$withval/lib -ljpeg"
AC_CHECK_LIB(jpeg,jpeg_read_header, [PDFLIB_LIBS="$PDFLIB_LIBS -L$withval/lib -ljpeg"],[AC_MSG_RESULT(no)],)
],[
AC_MSG_RESULT(no)
AC_MSG_WARN(If configure fails try --with-jpeg-dir=<DIR>)
])
withval=$old_withval
AC_MSG_CHECKING([for libtiff (needed by pdflib 2.0)])
AC_ARG_WITH(tiff-dir,
[ --with-tiff-dir[=DIR] tiff dir for pdflib 2.0],[
AC_MSG_RESULT(yes)
if test -z $withval; then
withval="/usr/local"
fi
LIBS="$LIBS -L$withval/lib -ltiff"
AC_CHECK_LIB(tiff,TIFFOpen, [PDFLIB_LIBS="$PDFLIB_LIBS -L$withval/lib -ltiff"],[AC_MSG_RESULT(no)],)
],[
AC_MSG_RESULT(no)
AC_MSG_WARN(If configure fails try --with-tiff-dir=<DIR>)
])
withval=$old_withval
LIBS="$LIBS -L$withval/lib"
AC_CHECK_LIB(pdf, PDF_new, [AC_DEFINE(HAVE_PDFLIB) AC_DEFINE(HAVE_PDFLIB2) PDFLIB_LIBS="$PDFLIB_LIBS -L$withval/lib -lpdf"],
[AC_MSG_ERROR(Check if zlib libjpeg and libtiff has been found. If not specify --with-zlib-dir=<DIR> --with-jpeg-dir=<DIR> and --with-tiff-dir=<DIR>.)])
LIBS=$old_LIBS
else
AC_MSG_RESULT(no)
fi
fi ;;
esac
],[
AC_MSG_RESULT(no)
])
AC_SUBST(PDFLIB_LIBS)
AC_SUBST(PDFLIB_INCLUDE)
AC_MSG_CHECKING(whether to include cpdflib support)
AC_ARG_WITH(cpdflib,
[ --with-cpdflib[=DIR] Include ClibPDF support.
DIR is the ClibPDF install directory,
defaults to /usr/local.],
[
case "$withval" in
no)
AC_MSG_RESULT(no) ;;
yes)
AC_MSG_RESULT(yes)
AC_CHECK_LIB(cpdf, cpdf_open, [AC_DEFINE(HAVE_CPDFLIB) CPDFLIB_LIBS="-lcpdf"],
[AC_MSG_ERROR(cpdflib module requires cpdflib)]) ;;
*)
test -f $withval/include/cpdflib.h && CPDFLIB_INCLUDE="-I$withval/include"
if test -n "$CPDFLIB_INCLUDE" ; then
AC_MSG_RESULT(yes)
old_LIBS=$LIBS
LIBS="$LIBS -L$withval/lib"
AC_CHECK_LIB(cpdf, cpdf_open, [AC_DEFINE(HAVE_CPDFLIB) CPDFLIB_LIBS="-L$withval/lib -lcpdf"],
[AC_MSG_ERROR(cpdflib module requires cpdflib)])
LIBS=$old_LIBS
else
AC_MSG_RESULT(no)
fi ;;
esac
],[
AC_MSG_RESULT(no)
])
AC_SUBST(CPDFLIB_LIBS)
AC_SUBST(CPDFLIB_INCLUDE)
AC_MSG_CHECKING(whether to include fdftk support)
AC_ARG_WITH(fdftk,
[ --with-fdftk[=DIR] Include fdftk support.
DIR is the fdftk install directory,
defaults to /usr/local.],
[
case "$withval" in
no)
AC_MSG_RESULT(no) ;;
yes)
AC_MSG_RESULT(yes)
AC_CHECK_LIB(FdfTk, FDFOpen, [AC_DEFINE(HAVE_FDFLIB) FDFLIB_LIBS="-lFdfTk"],
[AC_MSG_ERROR(fdftk module requires fdftk 2.0)]) ;;
*)
test -f $withval/include/FdfTk.h && FDFLIB_INCLUDE="-I$withval/include"
if test -n "$FDFLIB_INCLUDE" ; then
AC_MSG_RESULT(yes)
old_LIBS=$LIBS
LIBS="$LIBS -L$withval/lib"
AC_CHECK_LIB(FdfTk, FDFOpen, [AC_DEFINE(HAVE_FDFLIB) FDFLIB_LIBS="-L$withval/lib -lFdfTk"],
[AC_MSG_ERROR(fdftk module requires ftftk lib 2.0.)])
LIBS=$old_LIBS
else
AC_MSG_RESULT(no)
fi ;;
esac
],[
AC_MSG_RESULT(no)
])
AC_SUBST(FDFLIB_LIBS)
AC_SUBST(FDFLIB_INCLUDE)
AC_MSG_CHECKING(whether to include the bundled dbase library)
AC_ARG_WITH(dbase,
[ --with-dbase Include the bundled dbase library],
[
if test "$withval" = "yes"; then
AC_MSG_RESULT(yes)
AC_DEFINE(DBASE,1)
DBASE_LIB=dbase/libdbf.a
DBASE_LIBS="-L./dbase -ldbf"
DBASE_OBJS="\$(DBF_OBJS)"
else
AC_MSG_RESULT(no)
AC_DEFINE(DBASE,0)
DBASE_LIB=
DBASE_OBJS=
fi
],[
AC_MSG_RESULT(no)
AC_DEFINE(DBASE,0)
DBASE_LIB=
])
AC_SUBST(DBASE_LIB)
AC_SUBST(DBASE_LIBS)
AC_SUBST(DBASE_OBJS)
AC_MSG_CHECKING(whether to include the bundled filePro support)
AC_ARG_WITH(filepro,
[ --with-filepro Include the bundled read-only filePro support],[
if test "$withval" = "yes"; then
AC_DEFINE(HAVE_FILEPRO, 1)
AC_MSG_RESULT(yes)
else
AC_DEFINE(HAVE_FILEPRO, 0)
AC_MSG_RESULT(no)
fi
],[
AC_DEFINE(HAVE_FILEPRO, 0)
AC_MSG_RESULT(no)
])
AC_MSG_CHECKING(whether to enable DAV support through mod_dav)
AC_ARG_WITH(mod-dav,
[ --with-mod-dav=DIR Include DAV support through Apache's mod_dav,
DIR is mod_dav's installation directory (Apache
module version only!)],
[
if test "$withval" = "yes"; then
AC_MSG_ERROR(Must give parameter to --with-mod-dav!)
else
if test "$withval" != "no"; then
AC_MSG_RESULT(yes)
AC_DEFINE(HAVE_MOD_DAV, 1)
MOD_DAV_CFLAGS="-DHAVE_MOD_DAV -I$withval"
APACHE_INCLUDE="$APACHE_INCLUDE -I$withval"
else
AC_MSG_RESULT(no)
AC_DEFINE(HAVE_MOD_DAV, 0)
fi
fi
],[
AC_MSG_RESULT(no)
AC_DEFINE(HAVE_MOD_DAV, 0)
])
AC_SUBST(MOD_DAV_CFLAGS)
AC_MSG_CHECKING(whether to enable unified ODBC support)
AC_ARG_ENABLE(unified-odbc,
[ --disable-unified-odbc Disable unified ODBC support. Only applicable if
iODBC, Adabas, Solid, Velocis or a custom ODBC
interface is enabled.],
[
if test "$enableval" = "no"; then
AC_DEFINE(HAVE_UODBC, 0)
AC_MSG_RESULT(no)
else
if test "$with_solid" != ""; then
UODBC_TYPE=solid
elif test "$with_iodbc" != ""; then
UODBC_TYPE=iodbc
elif test "$with_adabas" != ""; then
UODBC_TYPE=adabas
elif test "$with_velocis" != ""; then
UODBC_TYPE=velocis
elif test "$with_custom_odbc" != ""; then
UODBC_TYPE=custom
else
AC_MSG_ERROR([no ODBC library! Include Solid, iODBC, Velocis, Adabas D or a custom ODBC support.])
fi
AC_DEFINE(HAVE_UODBC, 1)
AC_MSG_RESULT([yes, using $UODBC_TYPE])
fi
],[
if test "$UODBC_DEFAULT" = "yes"; then
AC_DEFINE(HAVE_UODBC, 1)
AC_MSG_RESULT(yes)
else
AC_DEFINE(HAVE_UODBC, 0)
AC_MSG_RESULT(no)
fi
])
AC_MSG_CHECKING(whether to use a configuration file)
AC_ARG_WITH(config-file-path,
[ --with-config-file-path=PATH Sets the path in which to look for php3.ini
defaults to /usr/local/lib],
[
if test "$withval" = "yes"; then
AC_DEFINE_UNQUOTED(CONFIGURATION_FILE_PATH, "/usr/local/lib")
AC_DEFINE(USE_CONFIG_FILE, 1)
AC_MSG_RESULT(yes)
else
if test "$withval" != "no"; then
AC_DEFINE_UNQUOTED(CONFIGURATION_FILE_PATH, "$withval")
AC_DEFINE(USE_CONFIG_FILE, 1)
AC_MSG_RESULT(yes)
else
AC_DEFINE(CONFIGURATION_FILE_PATH, 0)
AC_DEFINE(USE_CONFIG_FILE, 0)
AC_MSG_RESULT(no)
fi
fi
],[
AC_DEFINE_UNQUOTED(CONFIGURATION_FILE_PATH, "/usr/local/lib")
AC_DEFINE(USE_CONFIG_FILE, 1)
AC_MSG_RESULT(yes)
])
AC_MSG_CHECKING(whether to include debugging symbols)
AC_ARG_ENABLE(debug,
[ --enable-debug Compile with debugging symbols],
[
if test "$enableval" = "yes"; then
AC_MSG_RESULT(yes)
AC_DEFINE(DEBUG,1)
PHP_DEBUG=1
DEBUG_CFLAGS="-g"
test -n "$GCC" && DEBUG_CFLAGS="$DEBUG_CFLAGS -Wall"
test -n "$GCC" && test "$USE_MAINTAINER_MODE" = "yes" && \
DEBUG_CFLAGS="$DEBUG_CFLAGS -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations"
else
AC_MSG_RESULT(no)
AC_DEFINE(DEBUG,0)
PHP_DEBUG=0
DEBUG_CFLAGS=""
fi
],[
AC_MSG_RESULT(no)
AC_DEFINE(DEBUG,0)
PHP_DEBUG=0
DEBUG_CFLAGS=""
])
AC_SUBST(DEBUG_CFLAGS)
AC_SUBST(PHP_DEBUG)
AC_MSG_CHECKING(whether to enable safe mode by default)
AC_ARG_ENABLE(safe-mode,
[ --enable-safe-mode Enable safe mode by default.],
[
if test "$enableval" = "yes"; then
AC_DEFINE(PHP_SAFE_MODE, 1)
AC_MSG_RESULT(yes)
else
AC_DEFINE(PHP_SAFE_MODE, 0)
AC_MSG_RESULT(no)
fi
],[
AC_DEFINE(PHP_SAFE_MODE, 0)
AC_MSG_RESULT(no)
])
AC_MSG_CHECKING(for safe mode exec dir)
AC_ARG_WITH(exec-dir,
[ --with-exec-dir[=DIR] Only allow executables in DIR when in safe mode
defaults to /usr/local/php/bin],
[
if test "$withval" != "no"; then
if test "$withval" = "yes"; then
AC_DEFINE(PHP_SAFE_MODE_EXEC_DIR,"/usr/local/php/bin")
AC_MSG_RESULT(/usr/local/php/bin)
else
AC_DEFINE_UNQUOTED(PHP_SAFE_MODE_EXEC_DIR,"$withval")
AC_MSG_RESULT($withval)
fi
else
AC_DEFINE(PHP_SAFE_MODE_EXEC_DIR,"/usr/local/php/bin")
AC_MSG_RESULT(/usr/local/php/bin)
fi
],[
AC_DEFINE(PHP_SAFE_MODE_EXEC_DIR,"/usr/local/php/bin")
AC_MSG_RESULT(/usr/local/php/bin)
])
AC_MSG_CHECKING(whether to enable PHP's own SIGCHLD handler)
AC_ARG_ENABLE(sigchild,
[ --enable-sigchild Enable PHP's own SIGCHLD handler.],
[
if test "$enableval" = "yes"; then
AC_DEFINE(PHP_SIGCHILD, 1)
AC_MSG_RESULT(yes)
else
AC_DEFINE(PHP_SIGCHILD, 0)
AC_MSG_RESULT(no)
fi
],[
AC_DEFINE(PHP_SIGCHILD, 0)
AC_MSG_RESULT(no)
])
AC_MSG_CHECKING(whether to enable track_vars variables by default)
AC_ARG_ENABLE(track-vars,
[ --enable-track-vars Enable GET/POST/Cookie track variables by default.],
[
if test "$enableval" = "yes"; then
AC_DEFINE(PHP_TRACK_VARS, 1)
AC_MSG_RESULT(yes)
else
AC_DEFINE(PHP_TRACK_VARS, 0)
AC_MSG_RESULT(no)
fi
],[
AC_DEFINE(PHP_TRACK_VARS, 0)
AC_MSG_RESULT(no)
])
AC_MSG_CHECKING(whether to enable magic quotes by default)
AC_ARG_ENABLE(magic-quotes,
[ --enable-magic-quotes Enable magic quotes by default.],
[
if test "$enableval" = "yes"; then
AC_DEFINE(MAGIC_QUOTES, 1)
AC_MSG_RESULT(yes)
else
AC_DEFINE(MAGIC_QUOTES, 0)
AC_MSG_RESULT(no)
fi
],[
AC_DEFINE(MAGIC_QUOTES, 0)
AC_MSG_RESULT(no)
])
AC_MSG_CHECKING(whether to enable remote debugger support)
AC_ARG_ENABLE(debugger,
[ --enable-debugger Compile with remote debugging functions.],
[
if test "$enableval" = "yes"; then
AC_DEFINE(PHP_DEBUGGER, 1)
AC_MSG_RESULT(yes)
else
AC_DEFINE(PHP_DEBUGGER, 0)
AC_MSG_RESULT(no)
fi
],[
AC_DEFINE(PHP_DEBUGGER, 0)
AC_MSG_RESULT(no)
])
dnl AC_MSG_CHECKING(whether to enable PHP RPC support)
dnl AC_ARG_ENABLE(php-rpc,
dnl [ --enable-php-rpc Compile with PHP RPC support.],
dnl [
dnl if test "$enableval" = "yes"; then
dnl AC_DEFINE(PHP_RPC, 1)
dnl AC_MSG_RESULT(yes)
dnl else
dnl AC_DEFINE(PHP_RPC, 0)
dnl AC_MSG_RESULT(no)
dnl fi
dnl ],[
dnl AC_DEFINE(PHP_RPC, 0)
dnl AC_MSG_RESULT(no)
dnl ])
AC_MSG_CHECKING(whether to enable bc style precision math functions)
AC_ARG_ENABLE(bcmath,
[ --disable-bcmath Compile without bc style precision math functions. ],
[
if test "$enableval" = "yes"; then
AC_DEFINE(WITH_BCMATH, 1)
AC_MSG_RESULT(yes)
BCMATH_SRC="functions/bcmath.c functions/number.c"
else
AC_DEFINE(WITH_BCMATH, 0)
AC_MSG_RESULT(no)
BCMATH_SRC=""
fi
],[
AC_DEFINE(WITH_BCMATH, 1)
AC_MSG_RESULT(yes)
BCMATH_SRC="functions/bcmath.c functions/number.c"
])
AC_SUBST(BCMATH_SRC)
if test "$BINNAME" = "php"; then
AC_MSG_CHECKING(whether to force Apache CGI redirect)
AC_ARG_ENABLE(force-cgi-redirect,
[ --enable-force-cgi-redirect Enable the security check for internal server
redirects. You should use this if you are
running the CGI version with Apache. ],
[
if test "$enableval" = "yes"; then
AC_DEFINE(FORCE_CGI_REDIRECT, 1)
AC_MSG_RESULT(yes)
REDIRECT=1
else
AC_DEFINE(FORCE_CGI_REDIRECT, 0)
AC_MSG_RESULT(no)
REDIRECT=0
fi
],[
AC_DEFINE(FORCE_CGI_REDIRECT, 0)
AC_MSG_RESULT(no)
REDIRECT=0
])
AC_MSG_CHECKING(whether to discard path_info + path_translated)
AC_ARG_ENABLE(discard_path,
[ --enable-discard-path If this is enabled, the PHP CGI binary
can safely be placed outside of the
web tree and people will not be able
to circumvent .htaccess security. ],
[
if test "$enableval" = "yes"; then
AC_DEFINE(DISCARD_PATH, 1)
AC_MSG_RESULT(yes)
DISCARD_PATH=1
else
AC_DEFINE(DISCARD_PATH, 0)
AC_MSG_RESULT(no)
DISCARD_PATH=0
fi
],[
AC_DEFINE(DISCARD_PATH, 0)
AC_MSG_RESULT(no)
DISCARD_PATH=0
])
fi
AC_MSG_CHECKING(whether to enable a memory limit)
AC_ARG_ENABLE(memory-limit,
[ --enable-memory-limit Compile with memory limit support. ],
[
if test "$enableval" = "yes"; then
AC_DEFINE(MEMORY_LIMIT, 1)
AC_MSG_RESULT(yes)
else
AC_DEFINE(MEMORY_LIMIT, 0)
AC_MSG_RESULT(no)
fi
],[
AC_DEFINE(MEMORY_LIMIT, 0)
AC_MSG_RESULT(no)
])
AC_MSG_CHECKING(whether to enable short tags by default)
AC_ARG_ENABLE(short-tags,
[ --disable-short-tags Disable the short-form <? start tag by default.],
[
if test "$enableval" = "no"; then
AC_DEFINE(DEFAULT_SHORT_OPEN_TAG, 0)
AC_MSG_RESULT(no)
else
AC_DEFINE(DEFAULT_SHORT_OPEN_TAG, 1)
AC_MSG_RESULT(yes)
fi
],[
AC_DEFINE(DEFAULT_SHORT_OPEN_TAG, 1)
AC_MSG_RESULT(yes)
])
AC_MSG_CHECKING(whether to enable the URL-aware fopen wrapper)
AC_ARG_ENABLE(url-fopen-wrapper,
[ --disable-url-fopen-wrapper Disable the URL-aware fopen wrapper that allows
accessing files via http or ftp.],
[
if test "$enableval" = "yes"; then
AC_DEFINE(PHP3_URL_FOPEN, 1)
AC_MSG_RESULT(yes)
else
AC_DEFINE(PHP3_URL_FOPEN, 0)
AC_MSG_RESULT(no)
fi
],[
AC_DEFINE(PHP3_URL_FOPEN, 1)
AC_MSG_RESULT(yes)
])
AC_MSG_CHECKING(whether to enable System V semaphore support)
AC_ARG_ENABLE(sysvsem,
[ --enable-sysvsem Enable System V semaphore support.],
[
if test "$enableval" = "yes"; then
AC_MSG_RESULT(yes)
AC_DEFINE(HAVE_SYSVSEM, 1)
AC_CACHE_CHECK(for union semun,php_cv_semun,
AC_TRY_COMPILE([
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/sem.h>
],
[union semun x;],
[
php_cv_semun=yes
],[
php_cv_semun=no
])
)
if test $php_cv_semun = "yes"; then
AC_DEFINE(HAVE_SEMUN, 1)
else
AC_DEFINE(HAVE_SEMUN, 0)
fi
else
AC_MSG_RESULT(no)
AC_DEFINE(HAVE_SYSVSEM, 0)
fi
],[
AC_MSG_RESULT(no)
AC_DEFINE(HAVE_SYSVSEM, 0)
])
AC_MSG_CHECKING(whether to enable System V shared memory support)
AC_ARG_ENABLE(sysvshm,
[ --enable-sysvshm Enable the System V shared memory support],[
if test "$enableval" = "yes"; then
AC_DEFINE(HAVE_SYSVSHM, 1)
AC_MSG_RESULT(yes)
else
AC_DEFINE(HAVE_SYSVSHM, 0)
AC_MSG_RESULT(no)
fi
],[
AC_DEFINE(HAVE_SYSVSHM, 0)
AC_MSG_RESULT(no)
])
AC_MSG_CHECKING(whether to enable displaying source support)
AC_ARG_ENABLE(display-source,
[ --disable-display-source Compile without displaying source support],[
if test "$enableval" = "yes"; then
AC_DEFINE(HAVE_DISPLAY_SOURCE, 1)
AC_MSG_RESULT(yes)
else
AC_DEFINE(HAVE_DISPLAY_SOURCE, 0)
AC_MSG_RESULT(no)
fi
],[
AC_DEFINE(HAVE_DISPLAY_SOURCE, 1)
AC_MSG_RESULT(yes)
])
AC_ARG_WITH(gdbm,
[ --with-gdbm[=DIR] Include GDBM support],[
if test "$withval" != "no"; then
for i in /usr/local /usr $withval; do
if test -f "$i/include/gdbm.h"; then
THIS_PREFIX="$i"
fi
done
unset ac_cv_lib_gdbm_gdbm_open
AC_TEMP_LDFLAGS(-L$THIS_PREFIX/lib,[
AC_CHECK_LIB(gdbm, gdbm_open, [AC_DEFINE(DBA_GDBM, 1) THIS_LIBS="gdbm"])
])
AC_DBA_STD_ASSIGN
AC_DBA_STD_CHECK
AC_DBA_STD_ATTACH
fi
])
AC_MSG_CHECKING(for GDBM support)
AC_DBA_STD_RESULT
AC_ARG_WITH(ndbm,
[ --with-ndbm[=DIR] Include NDBM support],[
if test "$withval" != "no"; then
for i in /usr/local /usr $withval; do
if test -f "$i/include/db1/ndbm.h" ; then
THIS_PREFIX="$i"
NDBM_EXTRA="NDBM_DB1_NDBM_H"
elif test -f "$i/include/ndbm.h" ; then
THIS_PREFIX="$i"
NDBM_EXTRA="NDBM_NDBM_H"
fi
done
if test "$NDBM_EXTRA" != ""; then
eval "AC_DEFINE($NDBM_EXTRA, 1)"
fi
for LIB in db1 ndbm c; do
AC_TEMP_LDFLAGS(-L$THIS_PREFIX/lib,[
AC_CHECK_LIB($LIB, dbm_open, [AC_DEFINE(DBA_NDBM,1) THIS_LIBS="$LIB"])
])
done
AC_DBA_STD_ASSIGN
AC_DBA_STD_CHECK
AC_DBA_STD_ATTACH
fi
])
AC_MSG_CHECKING(for NDBM support)
AC_DBA_STD_RESULT
AC_ARG_WITH(db2,
[ --with-db2[=DIR] Include Berkeley DB2 support],[
if test "$withval" != "no"; then
for i in /usr/local /usr /usr/BerkeleyDB $withval; do
if test -f "$i/db2/db.h"; then
THIS_PREFIX="$i"
DB2_EXTRA="db2"
elif test -f "$i/include/db2/db.h"; then
THIS_PREFIX="$i"
DB2_EXTRA="DB2_DB2_DB_H"
elif test -f "$i/include/db/db2.h"; then
THIS_PREFIX="$i"
DB2_EXTRA="DB2_DB_DB2_H"
elif test -f "$i/include/db2.h"; then
THIS_PREFIX="$i"
DB2_EXTRA="DB2_DB2_H"
elif test -f "$i/include/db.h" ; then
THIS_PREFIX="$i"
DB2_EXTRA="DB2_DB_H"
fi
done
if test "$DB2_EXTRA" = "db2" ; then
DBA_INCLUDE="$DBA_INCLUDE -I$THIS_PREFIX/db2"
DB2_EXTRA="DB2_DB_H"
fi
if test "$DB2_EXTRA" != ""; then
eval "AC_DEFINE($DB2_EXTRA, 1)"
fi
for LIB in db db2 c; do
AC_TEMP_LDFLAGS(-L$THIS_PREFIX/lib,[
AC_CHECK_LIB($LIB, db_appinit, [AC_DEFINE(DBA_DB2,1) THIS_LIBS="$LIB"])
])
done
AC_DBA_STD_ASSIGN
AC_DBA_STD_CHECK
AC_DBA_STD_ATTACH
fi
])
AC_MSG_CHECKING(for Berkeley DB2 support)
AC_DBA_STD_RESULT
AC_ARG_WITH(dbm,
[ --with-dbm[=DIR] Include DBM support],[
if test "$withval" != "no"; then
for i in /usr/local /usr $withval; do
if test -f "$i/include/dbm.h" ; then
THIS_PREFIX="$i"
fi
done
for LIB in db1 dbm c; do
AC_TEMP_LDFLAGS(-L$THIS_PREFIX/lib,[
AC_CHECK_LIB($LIB, dbminit, [AC_DEFINE(DBA_DBM,1) THIS_LIBS="$LIB"])
])
done
AC_DBA_STD_ASSIGN
AC_DBA_STD_CHECK
AC_DBA_STD_ATTACH
fi
])
AC_MSG_CHECKING(for DBM support)
AC_DBA_STD_RESULT
AC_ARG_WITH(cdb,
[ --with-cdb[=DIR] Include CDB support],[
if test "$withval" != "no"; then
for i in /usr/local /usr $withval; do
if test -f "$i/include/cdb.h" ; then
THIS_PREFIX="$i"
fi
done
for LIB in cdb c; do
AC_TEMP_LDFLAGS(-L$THIS_PREFIX/lib,[
AC_CHECK_LIB($LIB, cdb_bread, [AC_DEFINE(DBA_CDB,1) THIS_LIBS="$LIB"])
])
done
AC_DBA_STD_ASSIGN
AC_DBA_STD_CHECK
AC_DBA_STD_ATTACH
fi
])
AC_MSG_CHECKING(for CDB support)
AC_DBA_STD_RESULT
AC_MSG_CHECKING(whether to enable DBA interface)
if test "$HAVE_DBA" = "1"; then
AC_MSG_RESULT(yes)
AC_DEFINE(HAVE_DBA, 1)
else
AC_MSG_RESULT(no)
AC_DEFINE(HAVE_DBA, 0)
fi
AC_MSG_CHECKING(for mcrypt support)
AC_ARG_WITH(mcrypt,
[ --with-mcrypt[=DIR] Include mcrypt support. DIR is the mcrypt
install directory.],
[
if test "$withval" != "no"; then
for i in /usr/local /usr $withval; do
if test -f $i/include/mcrypt.h; then
MCRYPT_DIR=$i
fi
done
if test "$MCRYPT_DIR" = ""; then
AC_MSG_ERROR(Please install mcrypt.h and libmcrypt.a as explained in the documentation - I cannot find mcrypt.h)
fi
AC_ADD_INCLUDE($MCRYPT_DIR/include)
AC_ADD_LIBRARY_WITH_PATH(mcrypt, $MCRYPT_DIR/lib)
AC_DEFINE(HAVE_LIBMCRYPT)
AC_MSG_RESULT(yes)
PHP_EXTENSION(mcrypt)
else
AC_MSG_RESULT(no)
fi
],[
AC_MSG_RESULT(no)
])
AC_MSG_CHECKING(for mhash support)
AC_ARG_WITH(mhash,
[ --with-mhash[=DIR] Include mhash support. DIR is the mhash
install directory.],
[
if test "$withval" != "no"; then
for i in /usr/local /usr /opt/mhash $withval; do
if test -f $i/include/mhash.h; then
MHASH_DIR=$i
fi
done
if test "$MHASH_DIR" = ""; then
AC_MSG_ERROR(Please reinstall libmhash - I cannot find mhash.h)
fi
AC_ADD_INCLUDE($MHASH_DIR/include)
AC_ADD_LIBRARY_WITH_PATH(mhash, $MHASH_DIR/lib)
AC_DEFINE(HAVE_LIBMHASH)
AC_MSG_RESULT(yes)
PHP_EXTENSION(mhash)
else
AC_MSG_RESULT(no)
fi
],[
AC_MSG_RESULT(no)
])
AC_MSG_CHECKING(whether to include PCRE support)
AC_ARG_WITH(pcre-regex,
[ --without-pcre-regex Don't include Perl Compatible Regular Expressions support],[
if test "$withval" = "yes"; then
PCRE_LIB="pcrelib/libpcre.a"
PCRE_LIBS="-Lpcrelib -lpcre"
PCRE_OBJS="\$(PCRE_OBJS)"
AC_DEFINE(HAVE_PCRE, 1)
AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no)
fi
],[
PCRE_LIB="pcrelib/libpcre.a"
PCRE_LIBS="-Lpcrelib -lpcre"
PCRE_OBJS="\$(PCRE_OBJS)"
AC_DEFINE(HAVE_PCRE, 1)
AC_MSG_RESULT(yes)
])
AC_SUBST(PCRE_LIB)
AC_SUBST(PCRE_LIBS)
AC_SUBST(PCRE_OBJS)
AC_CHECK_FUNC(memmove, [], [AC_DEFINE(USE_BCOPY, 1)])
AC_MSG_CHECKING(whether to include POSIX support)
AC_ARG_WITH(posix,
[ --without-posix Don't include POSIX functions],[
if test "$withval" = "yes"; then
AC_DEFINE(HAVE_POSIX, 1)
AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no)
fi
],[
AC_DEFINE(HAVE_POSIX, 1)
AC_MSG_RESULT(yes)
])
RESULT=no
AC_MSG_CHECKING(whether to include GNU recode support)
AC_ARG_WITH(recode,
[ --with-recode[=DIR] Include GNU recode support.],
[
if test "$withval" != "no"; then
for i in /usr/local /usr /opt/recode $withval; do
if test -f $i/include/recode.h; then
RECODE_DIR=$i
RECODE_INC=
elif test -f $i/include/recode/recode.h; then
RECODE_DIR=$i
RECODE_INC=/recode
fi
done
if test -z "$RECODE_DIR"; then
AC_MSG_ERROR(Cannot find recode.h. Please install recode-3.5 or higher)
fi
AC_ADD_INCLUDE($RECODE_DIR$RECODE_INC)
old_LDFLAGS="$LDFLAGS"
old_LIBS="$LIBS"
LDFLAGS="$LDFLAGS -L$RECODE_DIR/lib"
LIBS="$LIBS -lrecode"
AC_TRY_LINK([
char *program_name;
],[
recode_format_table();
],[],[
AC_MSG_ERROR(Cannot find librecode. Please install recode-3.5 or higher)])
LIBS="$old_LIBS"
LDFLAGS="$old_LDFLAGS"
AC_ADD_LIBRARY_WITH_PATH(recode, $RECODE_DIR/lib)
AC_DEFINE(HAVE_RECODE)
RESULT=yes
fi
])
AC_MSG_RESULT($RESULT)
AC_MSG_CHECKING(whether to enable dmalloc support)
AC_ARG_ENABLE(dmalloc,
[ --enable-dmalloc Enable dmalloc],
[
if test "$enableval" = "yes" ; then
LIBS="$LIBS -ldmalloc"
CFLAGS="$CFLAGS -DDMALLOC_FUNC_CHECK"
AC_DEFINE(HAVE_DMALLOC, 1)
AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no)
fi
],[AC_MSG_RESULT(no)])
AC_CHECK_LIB(bind, __dn_skipname, [ AC_ADD_LIBRARY(bind) ])
dnl if test -z "$APXS" || test "$APXS_CC" = "$CC" ; then
dnl might cause more problems than it solves
dnl we need a better test ...
dnl AC_CHECK_LIB(gcc, __udivdi3, [ AC_ADD_LIBRARY(gcc)])
dnl fi
dnl If we're using gcc and the user hasn't specified CFLAGS, add -O2.
test -n "$auto_cflags" && test -n "$GCC" && CFLAGS="$CFLAGS -O2"
dnl *** Commented out - generates slow code and consumes a lot of
dnl *** resources during compilation - we need to figure out how
dnl *** to supply it only when absolutely necessary
dnl If we're using gcc add -fpic to make dl() work on some platforms
dnl test -n "$GCC" && CFLAGS="$CFLAGS -fpic"
AC_SUBST(CFLAGS)
AC_SUBST(PROG_SENDMAIL)
AC_SUBST(CFLAGS_SHLIB)
AC_SUBST(LDFLAGS_SHLIB)
AC_SUBST(INCLUDES)
AC_SUBST(EXTRA_LIBS)
AC_SUBST(RPATHS)
dnl Create the necessary directories if building using VPATH
if test ! -d functions; then
mkdir functions
fi
if test ! -d extra; then
mkdir extra
fi
if test ! -d extra/gd; then
mkdir extra/gd
fi
PHP_BUILD_DATE=`date '+%Y-%m-%d'`
AC_SUBST(PHP_BUILD_DATE)
AC_DEFINE_UNQUOTED(PHP_BUILD_DATE,"$PHP_BUILD_DATE")
PHP_UNAME=`uname -a`
AC_DEFINE_UNQUOTED(PHP_UNAME,"$PHP_UNAME")
PHP_OS=`uname`
AC_DEFINE_UNQUOTED(PHP_OS,"$PHP_OS")
AC_OUTPUT(Makefile build-defs.h stamp-h libphp3.module
extra/gd/bdf2gdfont regex/Makefile pcrelib/Makefile, [
chmod +x extra/gd/bdf2gdfont
], [
if test -n "$PHP_APXS_BROKEN" ; then
echo "=================================================================="
echo "WARNING: Your $APXS script is most likely broken."
echo ""
echo "Please go read http://www.php.net/FAQ.php3#6.11 and make the"
echo "changes described there and try again."
echo "=================================================================="
fi
if test -n "$APXS_CC" && test "$APXS_CC" != "$CC" ; then
echo "=================================================================="
echo "WARNING: You have chosen to compile PHP with a different compiler"
echo " as you used for compiling Apache."
echo ""
echo " Current compiler: $CC"
echo " Apache's compiler: $APXS_CC"
echo ""
echo "This might result in an unusable PHP module and linking problems."
echo "=================================================================="
fi
dnl Warn about CGI version with no extra security options.
if test "$BINNAME" = "php"; then
if test "$REDIRECT" = "0"; then
if test "$DISCARD_PATH" = "0"; then
echo "WARNING: You will be compiling the CGI version of PHP without any"
echo " redirection checking. By putting this cgi binary somewhere"
echo " in your web space, users may be able to circumvent existing .htaccess"
echo " security by loading files directly through the parser. See"
echo " http://www.php.net/manual/security.php for more details."
fi
fi
fi
dnl Warn if Informix support was requested but environment is not set up correctly.
if test "$INFORMIX_WARNING" != ""; then
echo "$INFORMIX_WARNING"
fi
if test "$T1LIB_WARNING" != ""; then
echo "$T1LIB_WARNING"
fi
])
# Local Variables:
# tab-width: 4
# End:
|