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
|
# Configure script written by Bob Friesenhahn.
AC_PREREQ(2.59)
AC_INIT(magick/magick.h)
#
# Save initial user-tunable values
#
DISTCHECK_CONFIG_FLAGS=`echo "$@" | sed -e 's/ */ /g'`
AC_SUBST(DISTCHECK_CONFIG_FLAGS)
for var in CC CFLAGS CPPFLAGS CXX CXXCPP LDFLAGS LIBS ; do
eval isset=\${$var+set}
if test "$isset" = 'set' ; then
eval val=$`echo $var`
DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS}'${var}=${val}' "
fi
done
AC_SUBST(DISTCHECK_CONFIG_FLAGS)
CONFIGURE_ARGS=`echo "$0 $@" | sed -e 's/ */ /g'`
AC_SUBST(CONFIGURE_ARGS)
# Source file containing package/library versioning information.
. ${srcdir}/version.sh
echo "configuring ${PACKAGE_NAME} ${PACKAGE_VERSION}${PACKAGE_VERSION_ADDENDUM}"
AC_CANONICAL_SYSTEM
# Substitute library versioning
AC_SUBST(LIBRARY_CURRENT)dnl
AC_SUBST(LIBRARY_REVISION)dnl
AC_SUBST(LIBRARY_AGE)dnl
AC_SUBST(PACKAGE_NAME)dnl
AC_SUBST(PACKAGE_VERSION)dnl
AC_SUBST(PACKAGE_LIB_VERSION)dnl
AC_SUBST(PACKAGE_LIB_VERSION_NUMBER)dnl
AC_SUBST(PACKAGE_RELEASE_DATE)dnl
AC_SUBST(PACKAGE_VERSION_ADDENDUM)dnl
# Substitute CVS branch tag
AC_SUBST(CVS_BRANCH_TAG)dnl
# Ensure that make can run correctly
AM_SANITY_CHECK
# Generate configure header.
AC_CONFIG_SRCDIR([magick/ImageMagick.h])
AC_CONFIG_HEADERS([magick/magick_config.h])
AM_INIT_AUTOMAKE($PACKAGE_NAME,"${PACKAGE_VERSION}${PACKAGE_VERSION_ADDENDUM}", ' ')
PERLMAINCC=$CC
MAGICK_CFLAGS=''
MAGICK_CPPFLAGS=$CPPFLAGS_USER
MAGICK_PCFLAGS=$CPPFLAGS_USER
MAGICK_LDFLAGS=''
MAGICK_LIBS=''
#
# Evaluate shell variable equivalents to Makefile directory variables
#
if test "x$prefix" = xNONE
then
prefix=$ac_default_prefix
fi
# Let make expand exec_prefix.
if test "x$exec_prefix" = xNONE
then
exec_prefix='${prefix}'
fi
#
eval "eval PREFIX_DIR=${prefix}"
AC_SUBST(PREFIX_DIR)
eval "eval EXEC_PREFIX_DIR=${exec_prefix}"
AC_SUBST(EXEC_PREFIX_DIR)
eval "eval BIN_DIR=$bindir"
AC_SUBST(BIN_DIR)
eval "eval SBIN_DIR=$sbindir"
AC_SUBST(SBIN_DIR)
eval "eval LIBEXEC_DIR=$libexecdir"
AC_SUBST(LIBEXEC_DIR)
eval "eval DATA_DIR=$datadir"
AC_SUBST(DATA_DIR)
eval "eval SYSCONF_DIR=$sysconfdir"
AC_SUBST(SYSCONF_DIR)
eval "eval SHAREDSTATE_DIR=$sharedstatedir"
AC_SUBST(SHAREDSTATE_DIR)
eval "eval LOCALSTATE_DIR=$localstatedir"
AC_SUBST(LOCALSTATE_DIR)
eval "eval LIB_DIR=$libdir"
AC_SUBST(LIB_DIR)
eval "eval INCLUDE_DIR=$includedir"
AC_SUBST(INCLUDE_DIR)
eval "eval OLDINCLUDE_DIR=$oldincludedir"
AC_SUBST(OLDINCLUDE_DIR)
eval "eval INFO_DIR=$infodir"
AC_SUBST(INFO_DIR)
eval "eval MAN_DIR=$mandir"
AC_SUBST(MAN_DIR)
# Get full paths to source and build directories
srcdirfull=`cd $srcdir && pwd`
builddir=`pwd`
WinPathScript="${srcdirfull}/winpath.sh"
AC_SUBST(WinPathScript)
# Check for programs
AC_PROG_CC
AC_PROG_CC_STDC
AC_PROG_CPP
AC_PROG_LD
AC_SUBST(LD)
AC_PROG_INSTALL
AC_PROG_MAKE_SET
AC_PROG_LN_S
AM_PROG_CC_STDC
AM_WITH_DMALLOC
#
# Enable OS features.
#
AC_GNU_SOURCE
AC_DEFINE(_NETBSD_SOURCE, 1, [Define on NetBSD to activate all library features])
AC_DEFINE(__BSD_VISIBLE, 1, [Define on FreeBSD to activate all library features])
define_xopen_source=yes
case $ac_sys_system/$ac_sys_release in
OpenBSD/2.* | OpenBSD/3.@<:@01234@:>@)
define_xopen_source=no;;
SunOS/5.6)
define_xopen_source=no;;
OpenUNIX/8.0.0| UnixWare/7.1.@<:@0-4@:>@)
define_xopen_source=no;;
SCO_SV/3.2)
define_xopen_source=no;;
FreeBSD/4.8* | Darwin/6* )
define_xopen_source=no;;
AIX/4)
define_xopen_source=no;;
esac
if test $define_xopen_source = yes
then
AC_DEFINE(_XOPEN_SOURCE, 600, Define to the level of X/Open that your system supports)
AC_DEFINE(_XOPEN_SOURCE_EXTENDED, 1, Define to activate Unix95-and-earlier features)
AC_DEFINE(_POSIX_C_SOURCE, 199506L, Define to activate features from IEEE Stds 1003.1-1995)
AC_DEFINE(__EXTENSIONS__, 1, [Defined on Solaris to see additional function prototypes.])
fi
#
# Tests for Windows
#
AC_EXEEXT
AC_OBJEXT
LIB_GDI32=''
StaticCplusPlusLibraries='no'
native_win32_build='no'
cygwin_build='no'
case "${host_os}" in
cygwin* )
StaticCplusPlusLibraries='yes'
cygwin_build='yes'
LIB_GDI32='-lgdi32'
;;
mingw* )
StaticCplusPlusLibraries='yes'
native_win32_build='yes'
LIB_GDI32='-lgdi32'
;;
esac
if test "${LIB_GDI32}x" != 'x'
then
AC_DEFINE(HasWINGDI32,1,Define to use the Windows GDI32 library)
fi
AC_SUBST(LIB_GDI32)
AM_CONDITIONAL(HasWINGDI32, test "${LIB_GDI32}x" != 'x' )
AM_CONDITIONAL(WIN32_NATIVE_BUILD, test "${native_win32_build}" = 'yes' )
AM_CONDITIONAL(CYGWIN_BUILD, test "${cygwin_build}" = 'yes' )
#
# Compiler flags tweaks
#
if test "${GCC}" != "yes"
then
case "${host}" in
*-*-hpux* )
# aCC: HP ANSI C++ B3910B A.03.34
CFLAGS="${CFLAGS} -Wp,-H30000"
if test -n "${CXXFLAGS}"
then
CXXFLAGS='-AA'
else
CXXFLAGS="${CXXFLAGS} -AA"
fi
;;
*-dec-osf5.* )
# Compaq alphaev68-dec-osf5.1 compiler
if test -n "${CXXFLAGS}"
then
CXXFLAGS='-std strict_ansi -noimplicit_include'
else
CXXFLAGS="${CXXFLAGS} -std strict_ansi -noimplicit_include"
fi
esac
else
CFLAGS="${CFLAGS} -Wall"
fi
# Enable support for threads
AC_ARG_WITH(threads,
[ --without-threads disable threads support],
[with_threads=$withval],
[with_threads='yes'])
have_threads=no
if test "$with_threads" != 'no'
then
ACX_PTHREAD()
if test "$acx_pthread_ok" = yes
then
have_threads=yes
DEF_THREAD="$PTHREAD_CFLAGS"
CFLAGS="$CFLAGS $DEF_THREAD"
CXXFLAGS="$CXXFLAGS $DEF_THREAD"
if test "$CC" != "$PTHREAD_CC"
then
AC_MSG_WARN([Replacing compiler $CC with compiler $PTHREAD_CC to support pthreads.])
CC="$PTHREAD_CC"
fi
if test "$CXX" != "$PTHREAD_CXX"
then
AC_MSG_WARN([Replacing compiler $CXX with compiler $PTHREAD_CXX to support pthreads.])
CXX="$PTHREAD_CXX"
fi
fi
fi
########
#
# Check for large file support
#
########
AC_SYS_LARGEFILE
LFS_CPPFLAGS=''
if test "$enable_largefile" != no
then
if test "$ac_cv_sys_file_offset_bits" != 'no'
then
LFS_CPPFLAGS="$LFS_CPPFLAGS -D_FILE_OFFSET_BITS=$ac_cv_sys_file_offset_bits"
fi
if test "$ac_cv_sys_large_files" != 'no'
then
LFS_CPPFLAGS="$LFS_CPPFLAGS -D_LARGE_FILES=1"
fi
AC_FUNC_FSEEKO
if test "$ac_cv_sys_largefile_source" != 'no'
then
LFS_CPPFLAGS="$LFS_CPPFLAGS -D_LARGEFILE_SOURCE=1"
fi
fi
AC_SUBST(LFS_CPPFLAGS)
#
# Configure libtool & libltdl
#
# Configure libltdl
#AC_CONFIG_SUBDIRS(ltdl)
AC_LIBLTDL_CONVENIENCE(ltdl)
AC_LIB_LTDL
# Substitute INCLTDL and LIBLTDL in the Makefiles
AC_SUBST(INCLTDL)
AC_SUBST(LIBLTDL)
# Configure libtool
AC_ENABLE_SHARED
AC_ENABLE_STATIC
AC_LIBTOOL_TAGS([CXX])
AC_LIBTOOL_WIN32_DLL
AC_LIBTOOL_DLOPEN
AC_LIBTOOL_SETUP
AC_PROG_LIBTOOL
AC_SUBST(LIBTOOL_DEPS)
#AC_OUTPUT
# Check to see if building shared libraries
libtool_build_shared_libs='no'
if test "$enable_shared" = 'yes'
then
libtool_build_shared_libs='yes'
fi
# Check to see if building static libraries
libtool_build_static_libs='no'
if test "$enable_static" = 'yes'
then
libtool_build_static_libs='yes'
fi
# MinGW and Cygwin can't build C++ DLLs which support exceptions.
if test "${StaticCplusPlusLibraries}" = 'yes'
then
LTCXXLIBOPTS='--static'
AC_SUBST(LTCXXLIBOPTS)
fi
#
# Enable support for building loadable modules
#
AC_ARG_WITH(modules,
[ --with-modules enable support for dynamically loadable modules],
[with_modules=$withval],
[with_modules='no'])
# Only allow building loadable modules if we are building shared libraries
if test "$with_modules" != 'no' ; then
if test "$libtool_build_shared_libs" = 'no' ; then
AC_MSG_WARN([Modules may only be built if building shared libraries is enabled.])
with_modules='no'
fi
fi
if test "$with_modules" != 'no' ; then
AC_DEFINE(BuildMagickModules,1,Define if coders and filters are to be built as modules.)
fi
AM_CONDITIONAL(WITH_MODULES, test "$with_modules" != 'no')
# Enable building/use of libltdl if we are building shared libraries regardless
# of whether modules are built or not.
with_ltdl='no'
if test "$libtool_build_shared_libs" != 'no' ; then
with_ltdl='yes'
fi
AM_CONDITIONAL(WITH_LTDL, test "$with_ltdl" != 'no')
if test "$with_ltdl" != 'no' ; then
AC_DEFINE(HasLTDL,1,Define if using libltdl to support dynamically loadable modules)
# Set DLLDFLAGS
if test X"$enable_shared" = Xyes; then
DLLDFLAGS=-export-dynamic
AC_SUBST(DLLDFLAGS)
fi
fi
# Enable build using delegate libraries built in subdirectories rather than installed
# delegate libraries (bzlib fpx jasper jbig jpeg lcms png tiff ttf wmf xml zlib)
AC_ARG_ENABLE(delegate-build,
[ --enable-delegate-build enable using delegate libs in subdirectories
(default disabled)],
[with_delegate_build=$enableval],
[with_delegate_build='no'])
# Build a version of ImageMagick which operates uninstalled.
# Used to build distributions located via MAGICK_HOME / executable path
AC_ARG_ENABLE(installed,
[ --disable-installed disable building an installed ImageMagick
(default enabled)],
[with_installed=$enableval],
[with_installed='yes'])
if test "$with_installed" = 'yes'
then
AC_DEFINE(UseInstalledMagick,1,[ImageMagick is formally installed under prefix])
fi
# Enable verbose output from libtool (enable libtool's default)
AC_ARG_ENABLE(libtool-verbose,
[ --enable-libtool-verbose enable verbose libtool output (default disabled)],
[with_libtool_verbose=$enableval],
[with_libtool_verbose='no'])
if test "$with_libtool_verbose" = 'no'
then
LIBTOOL="$LIBTOOL --silent"
fi
# Add configure option --enable-maintainer-mode which enables dependency
# checking and generation useful to package maintainers. This is made an
# option to avoid confusing end users.
AM_MAINTAINER_MODE
# Enable ccmalloc memory debugging support
AC_ARG_ENABLE(ccmalloc,
[ --enable-ccmalloc enable 'ccmalloc' memory debug support (default disabled)],
[with_ccmalloc=$enableval],
[with_ccmalloc='no'])
# Enable Electric Fence memory debugging support
AC_ARG_ENABLE(efence,
[ --enable-efence enable 'efence' memory debug support (default disabled)],
[with_efence=$enableval],
[with_efence='no'])
# Enable prof-based profiling support
AC_ARG_ENABLE(prof,
[ --enable-prof enable 'prof' profiling support (default disabled)],
[with_prof=$enableval],
[with_prof='no'])
# Enable gprof-based profiling support
AC_ARG_ENABLE(gprof,
[ --enable-gprof enable 'gprof' profiling support (default disabled)],
[with_gprof=$enableval],
[with_gprof='no'])
# Enable gcov-based profiling support
AC_ARG_ENABLE(gcov,
[ --enable-gcov enable 'gcov' profiling support (default disabled)],
[with_gcov=$enableval],
[with_gcov='no'])
with_profiling='no'
if test "$with_prof" = 'yes' || test "$with_gprof" = 'yes' || test "$with_gcov" = 'yes'
then
with_profiling='yes'
if test "$libtool_build_shared_libs" = 'yes'
then
echo "Warning: Can not profile code using shared libraries"
fi
fi
# Magick API method prefix
AC_ARG_WITH(method-prefix,
[ --method-prefix prefix Magick API methods (default no prefix)],
[with_method_prefix=$withval],
[with_method_prefix=''])
if test "$with_method_prefix" != ''
then
AC_DEFINE_UNQUOTED(MagickMethodPrefix,$with_method_prefix,[Magick API method prefix])
fi
# Number of bits in a Quantum
AC_ARG_WITH(quantum-depth,
[ --with-quantum-depth number of bits in a pixel quantum (default 16)],
[with_quantum_depth=$withval],
[with_quantum_depth=16])
case "${with_quantum_depth}" in
8 ) ;;
16 ) ;;
32 ) ;;
* ) AC_ERROR("Pixel quantum depth must have value of 8, 16, or 32") ;;
esac
QuantumDepth="$with_quantum_depth"
AC_DEFINE_UNQUOTED(QuantumDepth,$QuantumDepth,[Number of bits in a pixel Quantum (8/16/32)])
AC_SUBST(QuantumDepth)dnl
# Set pixel cache threshold
AC_ARG_WITH(cache,
[ --with-cache set pixel cache threshhold in MB (default available memory)],
[with_cache=$withval],
[with_cache=''])
if test "$with_cache" != ''
then
AC_DEFINE_UNQUOTED(PixelCacheThreshold,$with_cache,[Pixel cache threshold in MB (defaults to available memory)])
fi
# Disable/Enable support for full delegate paths
AC_ARG_WITH(frozenpaths,
[ --with-frozenpaths enable frozen delegate paths],
[with_frozenpaths=$withval],
[with_frozenpaths='no'])
# Enable build/install of Magick++
AC_ARG_WITH(magick-plus-plus,
[ --without-magick-plus-plus disable build/install of Magick++],
[with_magick_plus_plus=$withval],
[with_magick_plus_plus='yes'])
# Disable build/install of PerlMagick.
AC_ARG_WITH(perl,
[ --without-perl disable build/install of PerlMagick
or
--with-perl=PERL use specified Perl binary to configure PerlMagick],
[with_perl=$withval],
[with_perl='yes'])
# Options to pass when configuring PerlMagick
AC_ARG_WITH(perl-options,
[ --with-perl-options=[OPTIONS] options to pass on command-line when
generating PerlMagick's Makefile from Makefile.PL],
[PERL_MAKE_OPTIONS=$withval])
AC_SUBST(PERL_MAKE_OPTIONS)
# Disable BZLIB (bzip2 library)
AC_ARG_WITH(bzlib,
[ --without-bzlib disable BZLIB support],
[with_bzlib=$withval],
[with_bzlib='yes'])
# Disable Display Postscript.
AC_ARG_WITH(dps,
[ --without-dps disable Display Postscript support],
[with_dps=$withval],
[with_dps='yes'])
# Disable FlashPIX.
AC_ARG_WITH(fpx,
[ --without-fpx disable FlashPIX support],
[with_fpx=$withval],
[with_fpx='yes'])
# Enable Ghostscript library support.
AC_ARG_WITH(gslib,
[ --with-gslib enable Ghostscript library support],
[with_gslib=$withval],
[with_gslib='no'])
# Disable Graphviz.
AC_ARG_WITH(dot,
[ --without-dot disable Graphviz support],
[with_dot=$withval],
[with_dot='yes'])
# # Enable HDF.
# AC_ARG_WITH(hdf,
# [ --with-hdf enable HDF support],
# [with_hdf=$withval],
# [with_hdf='no'])
# Disable JBIG.
AC_ARG_WITH(jbig,
[ --without-jbig disable JBIG support],
[with_jbig=$withval],
[with_jbig='yes'])
# Disable JPEG.
AC_ARG_WITH(jpeg,
[ --without-jpeg disable JPEG support],
[with_jpeg=$withval],
[with_jpeg='yes'])
# Disable JPEG Version 2.
AC_ARG_WITH(jp2,
[ --without-jp2 disable JPEG v2 support],
[with_jp2=$withval],
[with_jp2='yes'])
# Disable LCMS.
AC_ARG_WITH(lcms,
[ --without-lcms disable LCMS support],
[with_lcms=$withval],
[with_lcms='yes'])
# # Disable MPEG.
# AC_ARG_WITH(mpeg2,
# [ --without-mpeg2 disable MPEG support],
# [with_mpeg2=$withval],
# [with_mpeg2='yes'])
# Disable PNG.
AC_ARG_WITH(png,
[ --without-png disable PNG support],
[with_png=$withval],
[with_png='yes'])
# Disable TIFF.
AC_ARG_WITH(tiff,
[ --without-tiff disable TIFF support],
[with_tiff=$withval],
[with_tiff='yes'])
# Disable TTF.
AC_ARG_WITH(ttf,
[ --without-ttf disable TrueType support],
[with_ttf=$withval],
[with_ttf='yes'])
# Disable WMF.
AC_ARG_WITH(wmf,
[ --without-wmf disable WMF support],
[with_wmf=$withval],
[with_wmf='yes'])
# Set default font search path
AC_ARG_WITH(fontpath,
[ --with-fontpath=DIR prepend to default font search path],
[with_fontpath=$withval],
[with_fontpath=''])
if test "$with_fontpath" != "yes" && test -z "$with_fontpath"
then
with_fontpath=''
else
AC_DEFINE_UNQUOTED(MAGICK_FONT_PATH,"$with_fontpath",Define to prepend to default font search path.)
fi
# Set Ghostscript font directory
AC_ARG_WITH(gs-font-dir,
[ --with-gs-font-dir=DIR directory containing Ghostscript fonts],
[with_gs_font_dir=$withval],
[with_gs_font_dir='default'])
# Set Windows font directory
AC_ARG_WITH(windows-font-dir,
[ --with-windows-font-dir=DIR
directory containing MS-Windows fonts],
[with_windows_font_dir=$withval],
[with_windows_font_dir=''])
# Disable XML.
AC_ARG_WITH(xml,
[ --without-xml disable XML support],
[with_xml=$withval],
[with_xml='yes'])
AC_ARG_WITH(zlib,
[ --without-zlib disable ZLIB support],
[with_zlib=$withval],
[with_zlib='yes'])
#
# Specify path to shared libstdc++ if not in normal location
#
AC_ARG_WITH(libstdc,
[ --with-libstdc=DIR use libstdc++ in DIR (for GNU C++)],
[if test "$withval" != no && test "$withval" != yes; then
if test -d "$withval"; then
LIBSTDCLDFLAGS="-L$withval"
fi
fi])
AC_SUBST(LIBSTDCLDFLAGS)
# Does gcc required -traditional?
AC_PROG_GCC_TRADITIONAL
########
#
# Set defines required to build DLLs and modules using MinGW
#
########
# These options are set for multi-thread DLL module build
# libMagick: _DLL _MAGICKMOD_ _MAGICKLIB_
# module: _DLL
# executable/Magick++: _DLL _MAGICKMOD_
MODULE_EXTRA_CPPFLAGS=''
LIBRARY_EXTRA_CPPFLAGS=''
if test "${native_win32_build}" = 'yes'
then
if test "${libtool_build_shared_libs}" = 'yes'
then
CPPFLAGS="$CPPFLAGS -D_DLL"
MAGICK_CPPFLAGS="$MAGICK_CPPFLAGS -D_DLL"
MAGICK_PCFLAGS="$MAGICK_PCFLAGS -D_DLL"
LIBRARY_EXTRA_CPPFLAGS="$LIBRARY_EXTRA_CPPFLAGS -D_MAGICKLIB_"
if test "$with_modules" = 'yes'
then
LIBRARY_EXTRA_CPPFLAGS="$LIBRARY_EXTRA_CPPFLAGS -D_MAGICKMOD_"
else
MODULE_EXTRA_CPPFLAGS="$MODULE_EXTRA_CPPFLAGS -D_MAGICKLIB_"
fi
else
CPPFLAGS="$CPPFLAGS -D_LIB"
MAGICK_CPPFLAGS="$MAGICK_CPPFLAGS -D_LIB"
MAGICK_PCFLAGS="$MAGICK_PCFLAGS -D_LIB"
fi
if test "$with_threads" = 'yes'
then
CPPFLAGS="$CPPFLAGS -D_MT"
MAGICK_CPPFLAGS="$MAGICK_CPPFLAGS -D_MT"
MAGICK_PCFLAGS="$MAGICK_PCFLAGS -D_MT"
fi
fi
AC_SUBST(MODULE_EXTRA_CPPFLAGS)
AC_SUBST(LIBRARY_EXTRA_CPPFLAGS)
# Check standard headers
AC_HEADER_STDC
if ! test x"$ac_cv_header_stdc" = x"yes"; then
AC_MSG_WARN( [configure has detected that you do not have the ANSI standard C
header files. Compilation cannot proceed. Please install the ANSI C
headers and rerun this script.] );
fi
AC_HEADER_DIRENT
# Check additional headers
AC_CHECK_HEADERS(locale.h machine/param.h sys/resource.h sys/times.h sys/types.h unistd.h)
########
#
# Checks for typedefs, structures, and compiler characteristics.
#
########
# If the C compiler does not fully support the ANSI C qualifier const,
# define const to be empty.
AC_HEADER_STDBOOL
AC_C_CONST
AC_TYPE_OFF_T
AC_TYPE_SIZE_T
AC_HEADER_TIME
AC_STRUCT_TM
# If the C compiler supports the keyword inline, do nothing. Otherwise
# define inline to __inline__ or __inline if it accepts one of those,
# otherwise define inline to be empty.
AC_C_INLINE
# If words are stored with the most significant byte first (like
# Motorola and SPARC CPUs), define `WORDS_BIGENDIAN'.
AC_C_BIGENDIAN
# If the C compiler supports a working long double type with more range
# or precision than the double type, define HAVE_LONG_DOUBLE.
AC_C_LONG_DOUBLE
# If the C type char is unsigned, define __CHAR_UNSIGNED__, unless the
# C compiler predefines it.
AC_C_CHAR_UNSIGNED
# Obtain size of an 'short' and define as SIZEOF_SHORT
AC_CHECK_SIZEOF(short)
# Obtain size of an 'unsigned short' and define as SIZEOF_UNSIGNED_SHORT
AC_CHECK_SIZEOF(unsigned short)
# Obtain size of an 'int' and define as SIZEOF_INT
AC_CHECK_SIZEOF(int)
# Obtain size of an 'unsigned int' and define as SIZEOF_UNSIGNED_INT
AC_CHECK_SIZEOF(unsigned int)
# Obtain size of a 'long' and define as SIZEOF_LONG
AC_CHECK_SIZEOF(long)
# Obtain size of a 'unsigned long' and define as SIZEOF_UNSIGNED_LONG
AC_CHECK_SIZEOF(unsigned long)
# Obtain size of a 'long long' and define as SIZEOF_LONG_LONG. If
# 'long long' is not supported then the value defined is zero.
AC_CHECK_SIZEOF(long long)
# Obtain size of a 'unsigned long long' and define as
# SIZEOF_UNSIGNED_LONG_LONG. If 'unsigned long long' is not
# supported then the value defined is zero.
AC_CHECK_SIZEOF(unsigned long long)
# If the system does not provide a 'mode_t' type, use 'int' instead
AC_CHECK_TYPE(mode_t, unsigned int)
# If the system does not provide a 'off_t' type, use 'long' instead
AC_CHECK_TYPE(off_t, long)
# If the system does not provide a 'pid_t' type, use 'int' instead
AC_CHECK_TYPE(pid_t, int)
# If the system does not provide a 'size_t', use 'unsigned long' instead.
AC_CHECK_TYPE(size_t, unsigned long)
# If the system does not provide a 'ssize_t', use 'long' instead.
AC_CHECK_TYPE(ssize_t, long)
AC_TYPE_SIGNAL
# Test for C compiler __func__ support
if test "$ac_cv_have_C__func__" != 'yes' ; then
AC_CACHE_CHECK(for C compiler __func__ support, ac_cv_have_C__func__,
[AC_TRY_COMPILE(
,
changequote(<<, >>)dnl
<<
const char *func=__func__;
return 0;
>>,
changequote([, ])dnl
ac_cv_have_C__func__='yes',
ac_cv_have_C__func__='no')])
if test "$ac_cv_have_C__func__" = 'yes' ; then
AC_DEFINE(HAS_C__func__,1,Define if C compiler supports __func__)
fi
fi
########
#
# Check for functions
#
########
MAGICK_FUNC_MMAP_FILEIO
AC_FUNC_STAT
AC_CHECK_FUNCS([ftime getexecname getdtablesize getpagesize mkstemp poll pclose popen pread pwrite raise sbrk select strerror setvbuf sysconf sigemptyset sigaction strlcat strlcpy strcasecmp strncasecmp times usleep vsprintf vsnprintf])
########
#
# C++ Support Tests (For Magick++)
#
########
have_magick_plus_plus='no'
if test "$with_magick_plus_plus" = 'yes'
then
OLIBS="$LIBS"
LIBS=''
AC_LANG_PUSH(C++)
# Test for C++ compiler __func__ support
if test "$ac_cv_have_CPP__func__" != 'yes' ; then
AC_CACHE_CHECK(for C++ compiler __func__ support, ac_cv_have_CPP__func__,
[AC_TRY_COMPILE(
,
changequote(<<, >>)dnl
<<
const char *func=__func__;
return 0;
>>,
changequote([, ])dnl
ac_cv_have_CPP__func__='yes',
ac_cv_have_CPP__func__='no')])
if test "$ac_cv_have_CPP__func__" = 'yes' ; then
AC_MSG_RESULT(yes)
AC_DEFINE(HAS_CPP__func__,1,Define if C++ compiler supports __func__)
else
AC_MSG_RESULT(no)
fi
fi
# Full set of headers used ...
# algorithm cctype cerrno cmath cstdio cstdlib cstring ctime exception
# functional iomanip iosfwd iostream iterator list string strstream utility
AC_LANG_CPLUSPLUS
AC_PROG_CXX
AC_CXX_BOOL
AC_CXX_CONST_CAST
AC_CXX_DEFAULT_TEMPLATE_PARAMETERS
AC_CXX_EXCEPTIONS
AC_CXX_NAMESPACES
AC_CXX_EXPLICIT
AC_CXX_HAVE_STD
AC_CXX_HAVE_STL
AC_CXX_MUTABLE
AC_CXX_NEW_FOR_SCOPING
AC_CXX_STATIC_CAST
AC_CXX_TEMPLATES
AC_LANG_POP
AC_MSG_CHECKING(whether C++ compiler is sufficient for Magick++)
if \
test $ac_cv_cxx_bool = 'yes' && \
test $ac_cv_cxx_const_cast = 'yes' &&
test $ac_cv_cxx_default_template_parameters = 'yes' &&
test $ac_cv_cxx_exceptions = 'yes' && \
test $ac_cv_cxx_explicit = 'yes' && \
test $ac_cv_cxx_have_std = 'yes' && \
test $ac_cv_cxx_have_stl = 'yes' && \
test $ac_cv_cxx_mutable = 'yes' && \
test $ac_cv_cxx_namespaces = 'yes' && \
test $ac_cv_cxx_new_for_scoping = 'yes' && \
test $ac_cv_cxx_static_cast = 'yes' && \
test $ac_cv_cxx_templates = 'yes'
then
have_magick_plus_plus='yes'
else
have_magick_plus_plus='no (failed tests)'
fi
AC_MSG_RESULT($have_magick_plus_plus)
LIBS="$OLIBS"
fi
AM_CONDITIONAL(WITH_MAGICK_PLUS_PLUS, test "$have_magick_plus_plus" = 'yes')
# Only check for delegate libraries in subdirectories if requested.
if test "$with_delegate_build" != 'no'
then
# Check for delegate sub-directories and add -I & -L options as required.
# This presumes that delegates are installed as detailed in the ImageMagick
# README. If delegates are installed in a standard location where the
# compiler will automatically find them then these options should not be
# required.
#
# Most delegates have includes in the same directory as the library, but not all ...
#
# Includes
for dir in bzlib fpx jasper jasper/src/libjasper/include jbig/libjbig jpeg lcms lcms/src magick png tiff/libtiff ttf/include wand wmf/include xml zlib
do
if test -d "$builddir/$dir"
then
CPPFLAGS="$CPPFLAGS -I$builddir/$dir"
else
if test -d "$srcdirfull/$dir"
then
CPPFLAGS="$CPPFLAGS -I$srcdirfull/$dir"
fi
fi
done
# Libraries
for dir in bzlib fpx jasper jbig/libjbig jpeg lcms lcms/src magick png tiff/libtiff ttf/objs wand wmf/src xml zlib
do
if test -d "$builddir/$dir"
then
LDFLAGS="$LDFLAGS -L$builddir/$dir"
else
if test -d "$srcdirfull/$dir"
then
LDFLAGS="$LDFLAGS -L$srcdirfull/$dir"
fi
fi
if test -d "$builddir/$dir/.libs"
then
LDFLAGS="$LDFLAGS -L$builddir/$dir/.libs"
else
if test -d "$srcdirfull/$dir/.libs"
then
LDFLAGS="$LDFLAGS -L$srcdirfull/$dir/.libs"
fi
fi
done
fi
# Assume that delegate headers reside under same directory as ImageMagick
# installation prefix.
MAGICK_CPPFLAGS="-I$INCLUDE_DIR $MAGICK_CPPFLAGS"
#
# Find the X11 RGB database
#
AC_CACHE_CHECK(for X11 configure files,im_cv_x_configure,
[# Look for the header file in a standard set of common directories.
# Check X11 before X11Rn because it is often a symlink to the current release.
for ac_dir in \
/lib/usr/lib/X11 \
/usr/X11/lib \
/usr/X11R4/lib \
/usr/X11R5/lib \
/usr/X11R6/lib \
/usr/X386/lib \
/usr/XFree86/lib/X11 \
/usr/athena/lib \
/usr/lib \
/usr/lib/X11 \
/usr/lib/X11R4 \
/usr/lib/X11R5 \
/usr/lib/X11R6 \
/usr/local/X11/lib \
/usr/local/X11R4/lib \
/usr/local/X11R5/lib \
/usr/local/X11R6/lib \
/usr/local/lib \
/usr/local/lib/X11 \
/usr/local/lib/X11R4 \
/usr/local/lib/X11R5 \
/usr/local/lib/X11R6 \
/usr/local/x11r5/lib \
/usr/lpp/Xamples/lib \
/usr/openwin/lib \
/usr/openwin/share/lib \
/usr/unsupported/lib \
/usr/x386/lib \
; \
do
if test -f "$ac_dir/X11/rgb.txt"
then
im_cv_x_configure="$ac_dir/X11/"
break
elif test -f "$ac_dir/rgb.txt"
then
im_cv_x_configure="$ac_dir/"
break
fi
done])
X11ConfigurePath="$im_cv_x_configure"
if test "$native_win32_build" = 'yes'
then
X11ConfigurePath=`$WinPathScript "$X11ConfigurePath=" 1`
fi
AC_DEFINE_UNQUOTED(X11ConfigurePath,"X11ConfigurePath",Location of X11 configure files)
#
# Find Posix threads library
#
LIB_THREAD=''
if test "$with_threads" != 'no' && test "$have_threads" = 'yes'
then
if test "x$PTHREAD_LIBS" = "x"
then
case "${host_cpu}-${host_os}" in
*-freebsd*)
MAGICK_CHECK_PTHREAD_LIB(c_r,PTHREAD_LIBS=-lc_r) ;;
esac
fi
for lib in pthread pthreads
do
if test "x$PTHREAD_LIBS" = "x" ; then
MAGICK_CHECK_PTHREAD_LIB([$lib],[PTHREAD_LIBS=-l$lib])
fi
done
LIB_THREAD="$PTHREAD_LIBS"
LIBS="$LIBS $LIB_THREAD"
fi
AC_SUBST(LIB_THREAD)
#
# Add support for ccmalloc memory debugging library if requested
#
have_ccmalloc='no'
LIB_CCMALLOC=''
if test "$with_ccmalloc" = 'yes'
then
AC_PATH_PROG(CCMALLOCDelegate,ccmalloc,)
if test -n "$CCMALLOCDelegate"
then
eval `grep PREFIX= $CCMALLOCDelegate | sed -e 's/PREFIX/CCMALLOC_PREFIX/'`
OLIBS="$LIBS"
# Assume that gcc is used with ccmalloc.
LIBS="$LIBS $CCMALLOC_PREFIX/lib/ccmalloc-gcc.o"
AC_CHECK_LIB(ccmalloc,ccmalloc_malloc,LIB_CCMALLOC="$CCMALLOC_PREFIX/lib/ccmalloc-gcc.o -lccmalloc -ldl",,-ldl)
if test -n "$LIB_CCMALLOC"
then
LIBS="$OLIBS"
LIBS="$LIBS $LIB_CCMALLOC"
have_ccmalloc='yes'
else
LIBS="$OLIBS"
fi
fi
fi
#
# Add support for efence memory debugging library if requested
#
if test "$with_efence" = 'yes'
then
LIB_EFENCE='-lefence'
LIBS="$LIB_EFENCE $LIBS"
fi
#
# Find math library
#
LIB_MATH=''
AC_CHECK_LIB(m,sqrt,LIB_MATH="-lm",,)
LIBS="$LIB_MATH $LIBS"
AC_SUBST(LIB_MATH)
#
# Check for ZLIB
#
have_zlib='no'
LIB_ZLIB=''
dnl PNG requires zlib so enable zlib check if PNG is requested
if test "$with_zlib" != 'no' || test "$with_png" != 'no'
then
LIB_ZLIB=''
AC_MSG_CHECKING(for ZLIB support )
AC_MSG_RESULT()
failed=0;
passed=0;
AC_CHECK_HEADER(zconf.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`)
AC_CHECK_HEADER(zlib.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`)
AC_CHECK_LIB(z,compress,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
AC_CHECK_LIB(z,uncompress,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
AC_CHECK_LIB(z,deflate,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
AC_CHECK_LIB(z,inflate,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
AC_CHECK_LIB(z,gzseek,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
AC_CHECK_LIB(z,gztell,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
AC_MSG_CHECKING(if ZLIB package is complete)
if test $passed -gt 0
then
if test $failed -gt 0
then
AC_MSG_RESULT(no -- some components failed test)
have_zlib='no (failed tests)'
else
LIB_ZLIB='-lz'
LIBS="$LIB_ZLIB $LIBS"
AC_DEFINE(HasZLIB,1,Define if you have zlib compression library)
AC_MSG_RESULT(yes)
have_zlib='yes'
fi
else
AC_MSG_RESULT(no)
fi
fi
AM_CONDITIONAL(HasZLIB, test "$have_zlib" = 'yes')
AC_SUBST(LIB_ZLIB)
#
# Check for BZLIB
#
have_bzlib='no'
if test "$with_bzlib" != 'no'
then
LIB_BZLIB=''
AC_MSG_CHECKING(for BZLIB support )
AC_MSG_RESULT()
failed=0;
passed=0;
AC_CHECK_HEADER(bzlib.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`)
AC_CHECK_LIB(bz2,BZ2_bzCompress,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
AC_CHECK_LIB(bz2,BZ2_bzDecompress,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
AC_MSG_CHECKING(if BZLIB package is complete)
if test $passed -gt 0
then
if test $failed -gt 0
then
AC_MSG_RESULT(no -- some components failed test)
have_bzlib='no (failed tests)'
else
LIB_BZLIB='-lbz2'
LIBS="$LIB_BZLIB $LIBS"
AC_DEFINE(HasBZLIB,1,Define if you have the bzip2 library)
AC_MSG_RESULT(yes)
have_bzlib='yes'
fi
else
AC_MSG_RESULT(no)
fi
fi
AM_CONDITIONAL(HasBZLIB, test "$have_bzlib" = 'yes')
AC_SUBST(LIB_BZLIB)
#
# Find the X11 include and library directories.
#
LIB_IPC=''
LIB_X11=''
LIB_XEXT=''
LIB_XT=''
AC_PATH_XTRA
if test "$no_x" != 'yes'
then
LDFLAGS="$LDFLAGS $X_LIBS"
LIB_X11="$X_PRE_LIBS -lX11 $X_EXTRA_LIBS"
LIBS="$LIB_X11 $LIBS"
CPPFLAGS="$CPPFLAGS $X_CFLAGS"
AC_DEFINE(HasX11,1,Define if you have X11 library)dnl
#
# Check for X11 shared memory extension
#
# shmctl is required to support the shared memory extension
AC_CHECK_FUNC([shmctl],[have_shmctl='yes'],[])
if test "$have_shmctl" != 'yes'
then
AC_SEARCH_LIBS([shmctl],[cygipc],[have_shmctl='yes'; LIB_IPC='-lcygipc'],[])
fi
if test "$have_shmctl" = 'yes'
then
AC_CHECK_LIB([Xext],[XShmAttach],[LIB_XEXT='-lXext' ; AC_DEFINE(HasSharedMemory,1,X11 server supports shared memory extension)],[],[])
fi
#
# Check for X11 shape extension
#
AC_CHECK_LIB([Xext],[XShapeCombineMask],[LIB_XEXT='-lXext' ; AC_DEFINE(HasShape,1,X11 server supports shape extension)],[],[])
AC_CHECK_LIB(Xt,XtSetEventDispatcher,LIB_XT='-lXt',,)
LIBS="$LIB_XEXT $LIB_XT $LIBS"
fi
if test "$no_x" != 'yes'
then
have_x='yes'
else
have_x='no'
fi
AM_CONDITIONAL(HasX11, test "$have_x" = 'yes')
AC_SUBST(LIB_X11)
AC_SUBST(LIB_XEXT)
#
# If profiling, then check for -ldl and dlopen (required for Solaris & gcc)
#
LIB_DL=''
if test "$with_profiling" = 'yes'
then
AC_CHECK_LIB(dl,dlopen,LIB_DL='-ldl',,)
LIBS="$LIB_DL $LIBS"
fi
AC_SUBST(LIB_DL)
#
# Check for Display Postscript
#
have_dps='no'
LIB_DPS=''
if test "$with_dps" != 'no' && test "$with_x" != 'no'
then
AC_MSG_CHECKING([for Display Postscript support ])
AC_MSG_RESULT()
failed=0;
passed=0;
O_CPPFLAGS="$CPPFLAGS"
CPPFLAGS="$CPPFLAGS -I${ac_x_includes}/X11"
AC_CHECK_HEADER(DPS/dpsXclient.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`)
# DPS issues:
# XFree86-4.x needs -lXt to provide XtMalloc for -ldps.
# Cygwin doesn't deliver -lXt as a DLL, which prevents a DLL build.
# Adobe DPS (as delivered on Solaris) doesn't require -lXt.
# ImageMagick itself doesn't use -lXt.
have_libdps='no'
LIBDPS_XT=''
AC_CHECK_LIB(dps,DPSInitialize,have_libdps='yes',have_libdps='no',)
if test "$have_libdps" != 'yes'
then
# Unset cache variable so we can try again.
unset ac_cv_lib_dps_DPSInitialize
AC_CHECK_LIB(dps,DPSInitialize,have_libdps='yes',have_libdps='no',-lXt)
if test "$have_libdps" = 'yes'
then
LIBDPS_XT='-lXt'
fi
fi
if test "$have_libdps" = 'yes'
then
passed=`expr $passed + 1`
else
failed=`expr $failed + 1`
fi
AC_CHECK_LIB(dpstk,XDPSPixelsPerPoint,passed=`expr $passed + 1`,failed=`expr $failed + 1`,-ldps $LIBDPS_XT)
AC_MSG_CHECKING(if DPS package is complete)
if test $passed -gt 0
then
if test $failed -gt 0
then
AC_MSG_RESULT([no -- some components failed test])
have_dps='no (failed tests)'
CPPFLAGS="$O_CPPFLAGS"
else
LIB_DPS="-ldpstk -ldps ${LIBDPS_XT}"
LIBS="$LIB_DPS $LIBS"
AC_DEFINE(HasDPS,1,Define if you have Display Postscript)
AC_MSG_RESULT(yes)
have_dps='yes'
fi
else
AC_MSG_RESULT(no)
CPPFLAGS=$O_CPPFLAGS
fi
fi
AM_CONDITIONAL(HasDPS, test "$have_dps" = 'yes')
AC_SUBST(LIB_DPS)
#
# Check for DOT
#
have_dot='no'
LIB_DOT=''
if test "$with_dot" != 'no'
then
OLD_LDFLAGS=$LDFLAGS
OLD_CPPFLAGS=$CPPFLAGS
AC_MSG_CHECKING(for DOT support )
AC_MSG_RESULT()
dotneato_config=''
AC_CHECK_PROGS(dotneato_config,dotneato-config,)dnl
if test -n "$dotneato_config"
then
dotneato_prefix=`dotneato-config --prefix`
if test -d "${dotneato_prefix}/include/graphviz"
then
CPPFLAGS="$CPPFLAGS -I${dotneato_prefix}/include/graphviz"
fi
LDFLAGS="$LDFLAGS -L${dotneato_prefix}/lib/graphviz"
fi
failed=0;
passed=0;
AC_CHECK_HEADER(dotneato.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`)
AC_CHECK_LIB(dotneato,gvNEWcontext,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
AC_MSG_CHECKING(if DOT package is complete)
if test $passed -gt 0
then
if test $failed -gt 0
then
AC_MSG_RESULT(no -- some components failed test)
have_dot='no (failed tests)'
LDFLAGS="$OLD_LDFLAGS"
CPPFLAGS="$OLD_CPPFLAGS"
else
LIB_DOT='-ldotneato'
LIBS="$LIB_DOT $LIBS"
AC_DEFINE(HasDOT,1,Define if you have DOT library)
AC_MSG_RESULT(yes)
have_dot='yes'
fi
else
AC_MSG_RESULT(no)
fi
fi
AM_CONDITIONAL(HasDOT, test "$have_dot" = 'yes')
AC_SUBST(LIB_DOT)
#
# Check for FlashPIX
#
have_fpx='no'
LIB_FPX=''
if test "$with_fpx" != 'no'
then
AC_MSG_CHECKING(for FlashPIX components )
AC_MSG_RESULT()
failed=0;
passed=0;
AC_LANG_PUSH(C++)
AC_CHECK_HEADER(fpxlib.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`)
AC_CHECK_LIB(fpx,FPX_OpenImageByFilename,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
AC_LANG_POP
AC_MSG_CHECKING(if FlashPIX package is complete)
if test $passed -gt 0
then
if test $failed -gt 0
then
AC_MSG_RESULT(no -- some components failed test)
have_fpx='no (failed tests)'
else
LIB_FPX='-lfpx'
# LIBS="$LIB_FPX $LIBS"
AC_DEFINE(HasFPX,1,Define if you have FlashPIX library)
AC_MSG_RESULT(yes)
have_fpx='yes'
PERLMAINCC="$CXX"
fi
else
AC_MSG_RESULT(no)
fi
fi
AM_CONDITIONAL(HasFPX, test "$have_fpx" = 'yes')
AC_SUBST(LIB_FPX)
#
# Check for LCMS
#
have_lcms='no'
LIB_LCMS=''
if test "$with_lcms" != 'no'
then
AC_MSG_CHECKING(for LCMS support )
AC_MSG_RESULT()
failed=0;
passed=0;
have_lcms_header='no'
AC_CHECK_HEADER(lcms.h,have_lcms_header='yes',,)
if test "$have_lcms_header" = 'yes'
then
passed=`expr $passed + 1`
AC_DEFINE(HAVE_LCMS_H,1,Define if you have the <lcms.h> header file.)
else
AC_CHECK_HEADER(lcms/lcms.h,have_lcms_header='yes',,)
if test "$have_lcms_header" = 'yes'
then
passed=`expr $passed + 1`
AC_DEFINE(HAVE_LCMS_LCMS_H,1,Define if you have the <lcms/lcms.h> header file.)
else
failed=`expr $failed + 1`
fi
fi
AC_CHECK_LIB(lcms,cmsOpenProfileFromMem,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
AC_MSG_CHECKING(if LCMS package is complete)
if test $passed -gt 0
then
if test $failed -gt 0
then
AC_MSG_RESULT(no -- some components failed test)
have_lcms='no (failed tests)'
else
LIB_LCMS='-llcms'
LIBS="$LIB_LCMS $LIBS"
AC_DEFINE(HasLCMS,1,Define if you have LCMS library)
AC_MSG_RESULT(yes)
have_lcms='yes'
fi
else
AC_MSG_RESULT(no)
fi
fi
AM_CONDITIONAL(HasLCMS, test "$have_lcms" = 'yes')
AC_SUBST(LIB_LCMS)
#
# Check for PNG
#
have_png='no'
LIB_PNG=''
if test "$with_png" != 'no'
then
AC_MSG_CHECKING(for PNG support )
AC_MSG_RESULT()
failed=0;
passed=0;
AC_CHECK_HEADER(png.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
AC_CHECK_LIB(png,png_get_io_ptr,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
AC_MSG_CHECKING(if PNG package is complete)
if test $passed -gt 0
then
if test $failed -gt 0
then
AC_MSG_RESULT(no -- some components failed test)
have_png='no (failed tests)'
else
LIB_PNG='-lpng'
LIBS="$LIB_PNG $LIBS"
AC_DEFINE(HasPNG,1,Define if you have PNG library)
AC_MSG_RESULT(yes)
have_png='yes'
fi
else
AC_MSG_RESULT(no)
fi
fi
AM_CONDITIONAL(HasPNG, test "$have_png" = 'yes')
AC_SUBST(LIB_PNG)
#
# Check for JPEG
#
have_jpeg='no'
LIB_JPEG=''
if test "$with_jpeg" != 'no'
then
AC_MSG_CHECKING(for JPEG support )
AC_MSG_RESULT()
failed=0;
passed=0;
AC_CHECK_HEADER(jconfig.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`)
AC_CHECK_HEADER(jerror.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`)
AC_CHECK_HEADER(jmorecfg.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`)
AC_CHECK_HEADER(jpeglib.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`)
AC_CHECK_LIB(jpeg,jpeg_read_header,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
# Test for compatible JPEG library
if test "$ac_cv_jpeg_version_ok" != 'yes' ; then
AC_CACHE_CHECK(for JPEG library is version 6b or later, ac_cv_jpeg_version_ok,
[AC_TRY_COMPILE(
#include <stdio.h>
#include <stdlib.h>
#include <jpeglib.h>
,
changequote(<<, >>)dnl
<<
#if JPEG_LIB_VERSION < 62
#error IJG JPEG library must be version 6b or newer!
#endif
return 0;
>>,
changequote([, ])dnl
ac_cv_jpeg_version_ok='yes',
ac_cv_jpeg_version_ok='no')])
if test "$ac_cv_jpeg_version_ok" = 'yes' ; then
AC_MSG_RESULT(yes)
passed=`expr $passed + 1`
else
AC_MSG_RESULT(no)
failed=`expr $failed + 1`
fi
fi
AC_MSG_CHECKING(if JPEG package is complete)
if test $passed -gt 0
then
if test $failed -gt 0
then
AC_MSG_RESULT(no -- some components failed test)
have_jpeg='no (failed tests)'
else
LIB_JPEG='-ljpeg'
LIBS="$LIB_JPEG $LIBS"
AC_DEFINE(HasJPEG,1,Define if you have JPEG library)
AC_MSG_RESULT(yes)
have_jpeg='yes'
fi
else
AC_MSG_RESULT(no)
fi
fi
AM_CONDITIONAL(HasJPEG, test "$have_jpeg" = 'yes')
AC_SUBST(LIB_JPEG)
#
# Check for JPEG Version 2
#
have_jp2='no'
LIB_JP2=''
if test "$with_jp2" != 'no'
then
AC_MSG_CHECKING(for JPEG version 2 support )
AC_MSG_RESULT()
failed=0;
passed=0;
AC_CHECK_HEADER(jasper/jasper.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`)
AC_CHECK_LIB(jasper,jas_stream_fopen,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
AC_MSG_CHECKING(if JPEG version 2 support package is complete)
if test $passed -gt 0
then
if test $failed -gt 0
then
AC_MSG_RESULT(no -- some components failed test)
have_jp2='no (failed tests)'
else
LIB_JP2='-ljasper'
LIBS="$LIB_JP2 $LIBS"
AC_DEFINE(HasJP2,1,Define if you have JPEG version 2 "Jasper" library)
AC_MSG_RESULT(yes)
have_jp2='yes'
fi
else
AC_MSG_RESULT(no)
fi
fi
AM_CONDITIONAL(HasJP2, test "$have_jp2" = 'yes')
AC_SUBST(LIB_JP2)
#
# Check for Ghostscript library
#
# Test for iapi.h & test for gsapi_new_instance in -lgs
have_gslib='no'
LIB_GS=''
if test "$with_gslib" != 'no'
then
AC_MSG_CHECKING(for Ghostscript library support )
AC_MSG_RESULT()
failed=0;
passed=0;
AC_CHECK_HEADER(ps/iapi.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
AC_CHECK_HEADER(ps/errors.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
AC_CHECK_LIB(gs,gsapi_new_instance,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
AC_MSG_CHECKING(if Ghostscript library package is complete)
if test $passed -gt 0
then
if test $failed -gt 0
then
AC_MSG_RESULT(no -- some components failed test)
have_gslib='no (failed tests)'
else
LIB_GS='-lgs'
LIBS="$LIB_GS $LIBS"
AC_DEFINE(HasGS,1,Define if you have Ghostscript library)
AC_MSG_RESULT(yes)
have_gslib='yes'
fi
else
AC_MSG_RESULT(no)
fi
fi
AM_CONDITIONAL(HasGS, test "$have_gslib" = 'yes')
AC_SUBST(LIB_GS)
# #
# # Check for MPEG2 library
# #
# have_mpeg2='no'
# LIB_MPEG2=''
# if test "$with_mpeg2" != 'no'
# then
# AC_MSG_CHECKING(for MPEG version 2 support )
# AC_MSG_RESULT()
# failed=0;
# passed=0;
# AC_CHECK_HEADER(mpeg2dec/mpeg2.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`)
# AC_CHECK_LIB(mpeg2,mpeg2_decode_data,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
# AC_MSG_CHECKING(if MPEG version 2 support package is complete)
# if test $passed -gt 0
# then
# if test $failed -gt 0
# then
# AC_MSG_RESULT(no -- some components failed test)
# have_mpeg2='no (failed tests)'
# else
# LIB_MPEG2='-lmpeg2'
# LIBS="$LIB_MPEG2 $LIBS"
# AC_DEFINE(HasMPEG2,1,Define if you have MPEG2 library)
# AC_MSG_RESULT(yes)
# have_mpeg2='yes'
# fi
# else
# AC_MSG_RESULT(no)
# fi
# fi
# AM_CONDITIONAL(HasMPEG2, test "$have_mpeg2" = 'yes')
# AC_SUBST(LIB_MPEG2)
#
# Check for TTF
#
have_ttf='no'
LIB_TTF=''
if test "$with_ttf" != 'no'
then
AC_MSG_CHECKING(for FreeType 2.0 )
AC_MSG_RESULT()
failed=0;
passed=0;
OLD_LDFLAGS="$LDFLAGS"
OLD_CPPFLAGS="$CPPFLAGS"
if test "$with_delegate_build" != 'no' && test -d "$builddir/ttf/include"
then
:
else
freetype_config=''
AC_CHECK_PROGS(freetype_config,freetype-config,)dnl
if test -n "$freetype_config"
then
freetype_cflags=`$freetype_config --cflags`
freetype_libs=`$freetype_config --libs`
LDFLAGS="$LDFLAGS $freetype_libs"
CPPFLAGS="$freetype_cflags $CPPFLAGS"
fi
fi
dnl First see if there is a library
if test "$LIB_TTF" = ''
then
AC_CHECK_LIB(freetype,FT_Init_FreeType,LIB_TTF='-lfreetype',,)
if test "$LIB_TTF" != ''
then
passed=`expr $passed + 1`
else
failed=`expr $failed + 1`
LDFLAGS="$OLD_LDFLAGS"
fi
fi
dnl Now test for the headers
AC_CHECK_HEADER([ft2build.h],[FT2BUILD_H='#include <ft2build.h>'],[ft2build=''],[])
AC_CHECK_HEADER(freetype/freetype.h,[have_freetype_h='yes'],[have_freetype_h='no'],[$FT2BUILD_H])
if test "$ac_cv_header_ft2build_h" = 'yes' || test "$have_freetype_h" = 'yes'
then
passed=`expr $passed + 1`
else
failed=`expr $failed + 1`
CPPFLAGS="$OLD_CPPFLAGS"
fi
AC_MSG_CHECKING(if FreeType package is complete)
if test $passed -gt 0
then
if test $failed -gt 0
then
LIB_TTF=''
AC_MSG_RESULT(no -- some components failed test)
have_ttf='no (failed tests)'
else
LIBS="$LIB_TTF $LIBS"
AC_DEFINE(HasTTF,1,Define if you have FreeType (TrueType font) library)
if test "$ac_cv_header_ft2build_h" = 'yes'
then
AC_DEFINE([HAVE_FT2BUILD_H],[1],[Define to 1 if you have the <ft2build.h> header file.])
fi
AC_MSG_RESULT(yes)
have_ttf='yes'
fi
else
AC_MSG_RESULT(no)
fi
fi
AM_CONDITIONAL(HasTTF, test "$have_ttf" = 'yes')
AC_SUBST(LIB_TTF)
#
# Check for TIFF
#
have_tiff='no'
LIB_TIFF=''
if test "$with_tiff" != 'no'
then
AC_MSG_CHECKING(for TIFF support )
AC_MSG_RESULT()
failed=0;
passed=0;
AC_CHECK_HEADER(tiff.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`)
AC_CHECK_HEADER(tiffio.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`)
AC_CHECK_LIB(tiff,TIFFOpen,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
AC_CHECK_LIB(tiff,TIFFClientOpen,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
AC_CHECK_LIB(tiff,TIFFIsByteSwapped,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
AC_CHECK_LIB(tiff,TIFFReadRGBATile,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
AC_CHECK_LIB(tiff,TIFFReadRGBAStrip,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
AC_MSG_CHECKING(if TIFF package is complete)
if test $passed -gt 0
then
if test $failed -gt 0
then
AC_MSG_RESULT(no -- some components failed test)
have_tiff='no (failed tests)'
else
LIB_TIFF='-ltiff'
LIBS="$LIB_TIFF $LIBS"
AC_DEFINE(HasTIFF,1,Define if you have TIFF library)
AC_MSG_RESULT(yes)
have_tiff='yes'
AC_CHECK_HEADERS(tiffconf.h)
fi
else
AC_MSG_RESULT(no)
fi
fi
AM_CONDITIONAL(HasTIFF, test "$have_tiff" = 'yes')
AC_SUBST(LIB_TIFF)
# #
# # Check for HDF
# #
# have_hdf='no'
# LIB_HDF=''
# if test "$with_hdf" != 'no'
# then
# AC_MSG_CHECKING(for HDF components )
# AC_MSG_RESULT()
# failed=0;
# passed=0;
# AC_CHECK_HEADERS(hdf.h hdf/hdf.h)
# if test "$ac_cv_header_hdf_h" = 'yes' -o "$ac_cv_header_hdf_hdf_h" = 'yes'
# then
# passed=`expr $passed + 1`
# else
# failed=`expr $failed + 1`
# fi
# AC_CHECK_LIB(df,DFANputlabel,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
# AC_MSG_CHECKING(if HDF package is complete)
# if test $passed -gt 0
# then
# if test $failed -gt 0
# then
# AC_MSG_RESULT(no -- some components failed test)
# have_hdf='no (failed tests)'
# else
# LIB_HDF='-ldf'
# LIBS="$LIB_HDF $LIBS"
# AC_DEFINE(HasHDF,1,Define if you have HDF library)
# AC_MSG_RESULT(yes)
# have_hdf='yes'
# fi
# else
# AC_MSG_RESULT(no)
# fi
# fi
# AM_CONDITIONAL(HasHDF, test "$have_hdf" = 'yes')
# AC_SUBST(LIB_HDF)
#
# Check for JBIG
#
have_jbig='no'
LIB_JBIG=''
if test "$with_jbig" != 'no'
then
AC_MSG_CHECKING(for JBIG support )
AC_MSG_RESULT()
failed=0;
passed=0;
AC_CHECK_HEADER(jbig.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`)
AC_CHECK_LIB(jbig,jbg_dec_init,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
AC_MSG_CHECKING(if JBIG package is complete)
if test $passed -gt 0
then
if test $failed -gt 0
then
AC_MSG_RESULT(no -- some components failed test)
have_jbig='no (failed tests)'
else
LIB_JBIG='-ljbig'
LIBS="$LIB_JBIG $LIBS"
AC_DEFINE(HasJBIG,1,Define if you have JBIG library)
AC_MSG_RESULT(yes)
have_jbig='yes'
fi
else
AC_MSG_RESULT(no)
fi
fi
AM_CONDITIONAL(HasJBIG, test "$have_jbig" = 'yes')
AC_SUBST(LIB_JBIG)
#
# Check for XML
#
have_xml='no'
LIB_XML=''
if test "$with_xml" != 'no'
then
OLD_LDFLAGS=$LDFLAGS
OLD_CPPFLAGS=$CPPFLAGS
AC_MSG_CHECKING(for XML support )
AC_MSG_RESULT()
xml2_config=''
AC_CHECK_PROGS(xml2_config,xml2-config,)dnl
if test -n "$xml2_config"
then
# Debian installs libxml headers under /usr/include/libxml2/libxml with
# the shared library installed under /usr/lib, whereas the package
# installs itself under $prefix/libxml and $prefix/lib.
xml2_prefix=`xml2-config --prefix`
if test -d "${xml2_prefix}/include/libxml2"
then
CPPFLAGS="$CPPFLAGS -I${xml2_prefix}/include/libxml2"
fi
LDFLAGS="$LDFLAGS -L${xml2_prefix}/lib"
fi
failed=0;
passed=0;
AC_CHECK_HEADER(libxml/parser.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`)
AC_CHECK_LIB(xml2,xmlParseExternalEntity,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
AC_MSG_CHECKING(if XML package is complete)
if test $passed -gt 0
then
if test $failed -gt 0
then
AC_MSG_RESULT(no -- some components failed test)
have_xml='no (failed tests)'
LDFLAGS="$OLD_LDFLAGS"
CPPFLAGS="$OLD_CPPFLAGS"
else
LIB_XML='-lxml2'
LIBS="$LIB_XML $LIBS"
AC_DEFINE(HasXML,1,Define if you have XML library)
AC_MSG_RESULT(yes)
have_xml='yes'
fi
else
AC_MSG_RESULT(no)
fi
fi
AM_CONDITIONAL(HasXML, test "$have_xml" = 'yes')
AC_SUBST(LIB_XML)
#
# Check for WMF
#
have_wmf='no'
LIB_WMF=''
LIB_WMF_DEPS=''
OLIBS="$LIBS"
if test "$with_wmf" != 'no' && test "$with_modules" != 'no'
then
AC_MSG_CHECKING(for WMF support )
AC_MSG_RESULT()
have_libwmf='no'
have_libwmflite='no'
have_libwmf_ipa_h='no'
AC_CHECK_HEADER([libwmf/ipa.h],[have_libwmf_ipa_h='yes'],[$FT2BUILD_H])
if test "$have_libwmf_ipa_h" = 'yes'
then
AC_CHECK_LIB(wmflite,wmf_lite_create,have_libwmflite='yes',,)
if test "$have_libwmflite" = 'yes'
then
AC_DEFINE(HasWMFlite,1,Define if you have wmflite library)
LIB_WMF='-lwmflite'
LIBS="$LIB_WMF $LIBS"
have_wmf='yes'
else
LIB_WMF_DEPS=''
WMF_CONFIG_LIBS=`libwmf-config --libs`
for lib in xml2 expat freetype jpeg png z
do
testlib="-l${lib}"
echo "$WMF_CONFIG_LIBS" | grep -- "$testlib" > /dev/null && LIB_WMF_DEPS="$LIB_WMF_DEPS $testlib"
done
AC_CHECK_LIB(wmf,wmf_api_create,have_libwmf='yes',,$LIB_WMF_DEPS)
if test "$have_libwmf" = 'yes'
then
AC_DEFINE(HasWMF,1,Define if you have wmf library)
LIB_WMF='-lwmf'
LIBS="$LIB_WMF $LIBS"
have_wmf='yes'
else
AC_MSG_RESULT(no -- some components failed test)
have_wmf='no (failed tests)'
have_wmflite='no (failed tests)'
LIBS="$OLIBS"
LIB_WMF=''
fi
fi
fi
fi
AC_MSG_CHECKING(if WMF package is complete)
if test "$have_wmf" = 'yes'
then
AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no)
fi
AM_CONDITIONAL(HasWMF, test "$have_wmf" = 'yes')
AC_SUBST(LIB_WMF)
AC_SUBST(LIB_WMF_DEPS)
# Substitute compiler name to build/link PerlMagick
#
AC_SUBST(PERLMAINCC)
#
# Configure install Paths
#
# Subdirectory under lib to place ImageMagick lib files
MagickLibSubdir="${PACKAGE_NAME}-${PACKAGE_VERSION}"
AC_DEFINE_UNQUOTED(MagickLibSubdir,"$MagickLibSubdir",Subdirectory of lib where ImageMagick architecture dependent files are installed)
# Path to ImageMagick bin directory
MagickBinPath="${BIN_DIR}"
MagickBinPathDefine="${MagickBinPath}/"
if test "$native_win32_build" = 'yes'
then
MagickBinPathDefine=`$WinPathScript "$MagickBinPathDefine" 1`
fi
AC_DEFINE_UNQUOTED(MagickBinPath,"$MagickBinPathDefine",Directory where executables are installed.)
AC_SUBST(MagickBinPath)
# Path to ImageMagick lib
MagickLibPath="${LIB_DIR}/${MagickLibSubdir}"
MagickLibPathDefine="${MagickLibPath}/"
if test "$native_win32_build" = 'yes'
then
MagickLibPathDefine=`$WinPathScript "$MagickLibPathDefine" 1`
fi
AC_DEFINE_UNQUOTED(MagickLibPath,"$MagickLibPathDefine",Directory where architecture-dependent files live.)
AC_SUBST(MagickLibPath)
# Subdirectory under lib to place ImageMagick configuration files
MagickLibConfigSubDir="${MagickLibSubdir}/config"
AC_DEFINE_UNQUOTED(MagickLibConfigSubDir,"$MagickLibConfigSubDir",Subdirectory of lib where architecture-dependent configuration files live.)
MagickLibConfigPath="${LIB_DIR}/${MagickLibConfigSubDir}"
MagickLibConfigPathDefine="${MagickLibConfigPath}/"
if test "$native_win32_build" = 'yes'
then
MagickLibConfigPathDefine=`$WinPathScript "$MagickLibConfigPathDefine" 1`
fi
AC_DEFINE_UNQUOTED(MagickLibConfigPath,"$MagickLibConfigPathDefine",Directory where architecture-dependent configuration files live.)
AC_SUBST(MagickLibConfigPath)
#
# Subdirectory under lib to place ImageMagick coder module files
MagickCoderModulesSubdir="${MagickLibSubdir}/modules-Q${QuantumDepth}/coders"
AC_DEFINE_UNQUOTED(MagickCoderModulesSubdir,"$MagickCoderModulesSubdir",Subdirectory of lib where coder modules are installed)
MagickCoderModulesPath="${LIB_DIR}/${MagickCoderModulesSubdir}"
MagickCoderModulesPathDefine="${MagickCoderModulesPath}/"
if test "$native_win32_build" = 'yes'
then
MagickCoderModulesPathDefine=`$WinPathScript "$MagickCoderModulesPathDefine" 1`
fi
AC_DEFINE_UNQUOTED(MagickCoderModulesPath,"$MagickCoderModulesPathDefine",Location of coder modules)
AC_SUBST(MagickCoderModulesPath)
#
# Subdirectory under lib to place ImageMagick filter module files
MagickFilterModulesSubdir="${MagickLibSubdir}/modules-Q${QuantumDepth}/filters"
AC_DEFINE_UNQUOTED(MagickFilterModulesSubdir,"$MagickFilterModulesSubdir",Subdirectory of lib where filter modules are installed)
MagickFilterModulesPath="${LIB_DIR}/${MagickFilterModulesSubdir}"
MagickFilterModulesPathDefine="${MagickFilterModulesPath}/"
if test "$native_win32_build" = 'yes'
then
MagickFilterModulesPathDefine=`$WinPathScript "$MagickFilterModulesPathDefine" 1`
fi
AC_DEFINE_UNQUOTED(MagickFilterModulesPath,"$MagickFilterModulesPathDefine",Location of filter modules)
AC_SUBST(MagickFilterModulesPath)
#
# Path to ImageMagick share files
MagickShareSubdir="${PACKAGE_NAME}-${PACKAGE_VERSION}"
MagickSharePath="${DATA_DIR}/${MagickShareSubdir}"
MagickSharePathDefine="${MagickSharePath}/"
if test "$native_win32_build" = 'yes'
then
MagickSharePathDefine=`$WinPathScript "$MagickSharePathDefine" 1`
fi
AC_DEFINE_UNQUOTED(MagickSharePath,"$MagickSharePathDefine",Directory where architecture-independent files live.)
AC_SUBST(MagickSharePath)
# Subdirectory under share to place ImageMagick configuration files
MagickShareConfigSubDir="${MagickLibSubdir}/config"
AC_DEFINE_UNQUOTED(MagickShareConfigSubDir,"$MagickShareConfigSubDir",Subdirectory of lib where architecture-independent configuration files live.)
MagickShareConfigPath="${DATA_DIR}/${MagickShareConfigSubDir}"
MagickShareConfigPathDefine="${MagickShareConfigPath}/"
if test "$native_win32_build" = 'yes'
then
MagickShareConfigPathDefine=`$WinPathScript "$MagickShareConfigPathDefine" 1`
fi
AC_DEFINE_UNQUOTED(MagickShareConfigPath,"$MagickShareConfigPathDefine",Directory where architecture-independent configuration files live.)
AC_SUBST(MagickShareConfigPath)
#
# program_transform_name is formed for use in a Makefile, so create a
# modified version for use in a shell script.
configure_transform_name=`echo ${program_transform_name} | sed 's,\\$\\$,$,'`
# Default delegate definitions
AutotraceDecodeDelegateDefault='autotrace'
BZIPDelegateDefault='bzip2'
BrowseDelegateDefault='mozilla'
CGMDecodeDelegateDefault='ralcgm'
CatDelegateDefault='cat'
CRWDecodeDelegateDefault='dcraw'
DOTDecodeDelegateDefault='dot'
DVIDecodeDelegateDefault='dvips'
EchoDelegateDefault='echo'
EditorDelegateDefault='xterm'
FIGDecodeDelegateDefault='fig2dev'
ConvertDelegateDefault=`echo convert | sed ${configure_transform_name}`
DisplayDelegateDefault=`echo display | sed ${configure_transform_name}`
MogrifyDelegateDefault=`echo modify | sed ${configure_transform_name}`
GnuplotDecodeDelegateDefault='gnuplot'
HPGLDecodeDelegateDefault='hp2xx'
HTMLDecodeDelegateDefault='html2ps'
ILBMDecodeDelegateDefault='ilbmtoppm'
ILBMEncodeDelegateDefault='ppmtoilbm'
LPDelegateDefault='lp'
LPRDelegateDefault='lpr'
LZWDecodeDelegateDefault='uncompress'
LZWEncodeDelegateDefault='compress'
LaunchDelegateDefault='gimp'
MANDelegateDefault='groff'
MPEGDecodeDelegateDefault='mpeg2decode'
MPEGEncodeDelegateDefault='mpeg2encode'
MVDelegateDefault='mv'
PCLDelegateDefault='pcl6'
PGPDecodeDelegateDefault='pgpv'
POVDelegateDefault='povray'
if test "$native_win32_build" = 'yes' ; then
PSDelegateDefault='gswin32c'
else
PSDelegateDefault='gs'
fi
RADDecodeDelegateDefault='ra_ppm'
RLEEncodeDelegateDefault='rawtorle'
RMDelegateDefault='rm'
SCANDecodeDelegateDefault='scanimage'
TXTDelegateDefault='enscript'
WMFDecodeDelegateDefault='wmf2eps'
WWWDecodeDelegateDefault='wget'
ZipDelegateDefault='gzip'
# Search for delegates
AC_PATH_PROG(AutotraceDecodeDelegate, "$AutotraceDecodeDelegateDefault", "$AutotraceDecodeDelegateDefault")
AC_PATH_PROG(BZIPDelegate, "$BZIPDelegateDefault", "$BZIPDelegateDefault")
AC_PATH_PROG(BrowseDelegate, "$BrowseDelegateDefault" firefox netscape, "$BrowseDelegateDefault")
AC_PATH_PROG(CGMDecodeDelegate, "$CGMDecodeDelegateDefault", "$CGMDecodeDelegateDefault")
AC_PATH_PROG(CatDelegate, "$CatDelegateDefault", "$CatDelegateDefault")
AC_PATH_PROG(CRWDecodeDelegate, "$CRWDecodeDelegateDefault", "$CRWDecodeDelegateDefault")
AC_PATH_PROG(DOTDecodeDelegate, "$DOTDecodeDelegateDefault", "$DOTDecodeDelegateDefault")
AC_PATH_PROG(DVIDecodeDelegate, "$DVIDecodeDelegateDefault", "$DVIDecodeDelegateDefault")
AC_PATH_PROG(EchoDelegate, "$EchoDelegateDefault", "$EchoDelegateDefault")
AC_PATH_PROG(EditorDelegate, "$EditorDelegateDefault", "$EditorDelegateDefault")
AC_PATH_PROG(FIGDecodeDelegate, "$FIGDecodeDelegateDefault", "$FIGDecodeDelegateDefault")
AC_PATH_PROG(ConvertDelegate, "$ConvertDelegateDefault", "$ConvertDelegateDefault")
AC_PATH_PROG(DisplayDelegate, "$DisplayDelegateDefault", "$DisplayDelegateDefault")
AC_PATH_PROG(MogrifyDelegate, "$MogrifyDelegateDefault", "$MogrifyDelegateDefault")
AC_PATH_PROG(GnuplotDecodeDelegate, "$GnuplotDecodeDelegateDefault", "$GnuplotDecodeDelegateDefault")
AC_PATH_PROG(HPGLDecodeDelegate, "$HPGLDecodeDelegateDefault", "$HPGLDecodeDelegateDefault")
AC_PATH_PROG(HTMLDecodeDelegate, "$HTMLDecodeDelegateDefault", "$HTMLDecodeDelegateDefault")
AC_PATH_PROG(ILBMDecodeDelegate, "$ILBMDecodeDelegateDefault", "$ILBMDecodeDelegateDefault")
AC_PATH_PROG(ILBMEncodeDelegate, "$ILBMEncodeDelegateDefault", "$ILBMEncodeDelegateDefault")
AC_PATH_PROG(LPDelegate, "$LPDelegateDefault", no)
AC_PATH_PROG(LPRDelegate, "$LPRDelegateDefault", "$LPRDelegateDefault")
AC_PATH_PROG(LZWDecodeDelegate, "$LZWDecodeDelegateDefault", "$LZWDecodeDelegateDefault")
AC_PATH_PROG(LZWEncodeDelegate, "$LZWEncodeDelegateDefault", "$LZWEncodeDelegateDefault")
AC_PATH_PROG(LaunchDelegate, "$LaunchDelegateDefault", "$LaunchDelegateDefault")
AC_PATH_PROG(MANDelegate, "$MANDelegateDefault", "$MANDelegateDefault")
AC_PATH_PROG(MPEGDecodeDelegate, "$MPEGDecodeDelegateDefault", "$MPEGDecodeDelegateDefault")
AC_PATH_PROG(MPEGEncodeDelegate, "$MPEGEncodeDelegateDefault", "$MPEGEncodeDelegateDefault")
AC_PATH_PROG(MVDelegate, "$MVDelegateDefault", "$MVDelegateDefault")
AC_PATH_PROG(PCLDelegate, "$PCLDelegateDefault", "$PCLDelegateDefault")
AC_PATH_PROG(PGPDecodeDelegate, "$PGPDecodeDelegateDefault", "$PGPDecodeDelegateDefault")
AC_PATH_PROG(POVDelegate, "$POVDelegateDefault", "$POVDelegateDefault")
AC_PATH_PROG(PSDelegate, "$PSDelegateDefault", "$PSDelegateDefault")
AC_PATH_PROG(RADDecodeDelegate, "$RADDecodeDelegateDefault", "$RADDecodeDelegateDefault")
AC_PATH_PROG(RLEEncodeDelegate, "$RLEEncodeDelegateDefault", "$RLEEncodeDelegateDefault")
AC_PATH_PROG(RMDelegate, "$RMDelegateDefault", "$RMDelegateDefault")
AC_PATH_PROG(SCANDecodeDelegate, "$SCANDecodeDelegateDefault", "$SCANDecodeDelegateDefault")
AC_PATH_PROG(TXTDelegate, "$TXTDelegateDefault", "$TXTDelegateDefault")
AC_PATH_PROG(WMFDecodeDelegate, "$WMFDecodeDelegateDefault", "$WMFDecodeDelegateDefault")
AC_PATH_PROG(WWWDecodeDelegate, "$WWWDecodeDelegateDefault", "$WWWDecodeDelegateDefault")
AC_PATH_PROG(ZipDelegate, "$ZipDelegateDefault", "$ZipDelegateDefault")
# Prefer lpr to lp; lp needs options tacked on.
if test "$LPRDelegate" != no
then
PrintDelegate="$LPRDelegate"
else
PrintDelegate="$LPDelegate -c -s"
fi
AC_SUBST(PrintDelegate)
# Installed ImageMagick utiltity paths
ConvertDelegate="${BIN_DIR}/${ConvertDelegateDefault}"
DisplayDelegate="${BIN_DIR}/${DisplayDelegateDefault}"
MogrifyDelegate="${BIN_DIR}/${MogrifyDelegateDefault}"
# Set delegate booleans
have_fig2dev='no' ; if test "$FIGDecodeDelegate" != "$FIGDecodeDelegateDefault" ; then have_fig2dev='yes' ; fi
have_gs='no' ; if test "$PSDelegate" != "$PSDelegateDefault"; then have_gs='yes' ; fi
have_hp2xx='no' ; if test "$HPGLDecodeDelegate" != "$HPGLDecodeDelegateDefault" ; then have_hp2xx='yes' ; fi
have_ilbmtoppm='no' ; if test "$ILBMDecodeDelegate" != "$ILBMDecodeDelegateDefault" ; then have_ilbmtoppm='yes' ; fi
have_ppmtoilbm='no' ; if test "$ILBMEncodeDelegate" != "$ILBMEncodeDelegateDefault" ; then have_ppmtoilbm='yes' ; fi
have_mpeg2decode='no' ; if test "$MPEGDecodeDelegate" != "$MPEGDecodeDelegateDefault" ; then have_mpeg2decode='yes' ; fi
have_mpeg2encode='no' ; if test "$MPEGEncodeDelegate" != "$MPEGEncodeDelegateDefault" ; then have_mpeg2encode='yes' ; fi
have_ra_ppm='no' ; if test "$RADDecodeDelegate" != "$RADDecodeDelegateDefault" ; then have_ra_ppm='yes' ; fi
have_ralcgm='no' ; if test "$CGMDecodeDelegate" != "$CGMDecodeDelegateDefault" ; then have_ralcgm='yes' ; fi
# Test for optional txt2html utility and define automake conditional HasTXT2HTML if found.
AC_PATH_PROG(TXT2HTML, txt2html, txt2html)
have_txt2html='no' ; if test "$TXT2HTML" != 'txt2html' ; then have_txt2html='yes' ; fi
AM_CONDITIONAL(HasTXT2HTML, test "$have_txt2html" = 'yes')
#
# Test for font directories
#
type_include_files=''
# Windows
windows_font_dir=''
if test "$with_windows_font_dir" != "yes" && test -n "$with_windows_font_dir"
then
windows_font_dir="${with_windows_font_dir}/"
fi
if test -n "$windows_font_dir"
then
if test -f '/usr/X11R6/lib/X11/fonts/truetype/arial.ttf'
then
windows_font_dir='/usr/X11R6/lib/X11/fonts/truetype/'
fi
fi
if test -n "$windows_font_dir"
then
type_include_files="$type_include_files "'<include file="type-windows.mgk" />'
fi
AC_SUBST(windows_font_dir)
# Adobe Postscript fonts on various systems
case $host_os in
solaris*) type_include_files="$type_include_files "'<include file="type-solaris.mgk" />';;
esac
# Ghostscript
AC_MSG_CHECKING(for Ghostscript fonts directory)
ghostscript_font_dir=''
if test "${with_gs_font_dir}" != 'default'
then
ghostscript_font_dir="${with_gs_font_dir}/"
else
if test "${native_win32_build}" = 'yes'
then
ghostscript_font_dir="c:\\gs\\fonts\\"
if test "${PSDelegate}" != 'gswin32c'
then
ghostscript_font_dir=`echo "${PSDelegate}" | sed -e 's:/gs/.*:/gs:;s:^/::;s/./&:/;s:/:\\\\:g'`"\\fonts\\"
fi
else
# Red Hat Linux puts Ghostscript fonts in /usr/share/fonts/default/Type1
for font_dir in "${prefix}/share/ghostscript/fonts/" '/usr/share/fonts/default/Type1/' '/usr/share/ghostscript/fonts/'
do
if test -f "${font_dir}a010013l.pfb"
then
ghostscript_font_dir="${font_dir}"
break 1
fi
done
if test "${ghostscript_font_dir}x" = 'x'
then
if test "$PSDelegate" != 'gs'
then
ghostscript_font_dir=`echo "$PSDelegate" | sed -e 's:/bin/gs:/share/ghostscript/fonts:'`"/"
fi
fi
fi
fi
if test "${ghostscript_font_dir}x" != 'x'
then
type_include_files="${type_include_files} "'<include file="type-ghostscript.mgk" />'
AC_MSG_RESULT($ghostscript_font_dir)
else
AC_MSG_RESULT(not found!);
fi
AC_SUBST(ghostscript_font_dir)
if test "${native_win32_build}" = 'yes'
then
PSDelegate=`$WinPathScript "$PSDelegate" 1`
fi
AC_SUBST(type_include_files)
#
# Handle case where user doesn't want frozen paths
#
if test "$with_frozenpaths" != 'yes'
then
# Re-set delegate definitions to default (no paths)
AutotraceDecodeDelegate="$AutotraceDecodeDelegateDefault"
BZIPDelegate="$BZIPDelegateDefault"
BrowseDelegate="$BrowseDelegateDefault"
CGMDecodeDelegate="$CGMDecodeDelegateDefault"
CatDelegate="$CatDelegateDefault"
ConvertDelegate="$ConvertDelegateDefault"
DOTDecodeDelegate="$DOTDecodeDelegateDefault"
DVIDecodeDelegate="$DVIDecodeDelegateDefault"
EchoDelegate="$EchoDelegateDefault"
EditorDelegate="$EditorDelegateDefault"
FIGDecodeDelegate="$FIGDecodeDelegateDefault"
GnuplotDecodeDelegate="$GnuplotDecodeDelegateDefault"
HPGLDecodeDelegate="$HPGLDecodeDelegateDefault"
HTMLDecodeDelegate="$HTMLDecodeDelegatDefault"
ILBMDecodeDelegate="$ILBMDecodeDelegateDefault"
ILBMEncodeDelegate="$ILBMEncodeDelegateDefault"
LPDelegate="$LPDelegateDefault"
LZWDecodeDelegate="$LZWDecodeDelegateDefault"
LZWEncodeDelegate="$LZWEncodeDelegateDefault"
LaunchDelegate="$LaunchDelegateDefault"
MANDelegate="$MANDelegateDefault"
MPEGDecodeDelegate="$MPEGDecodeDelegateDefault"
MPEGEncodeDelegate="$MPEGEncodeDelegateDefault"
MVDelegate="$MVDelegateDefault"
MogrifyDelegate="$MogrifyDelegateDefault"
PCLDelegate="$PCLDelegateDefault"
PGPDecodeDelegate="$PGPDecodeDelegateDefault"
POVDelegate="$POVDelegateDefault"
PSDelegate="$PSDelegateDefault"
RADDecodeDelegate="$RADDecodeDelegateDefault"
RLEEncodeDelegate="$RLEEncodeDelegateDefault"
RMDelegate="$RMDelegateDefault"
SCANDecodeDelegate="$SCANDecodeDelegateDefault"
ShowImageDelegate="$ShowImageDelegateDefault"
TXTDelegate="$TXTDelegateDefault"
WMFDecodeDelegate="$WMFDecodeDelegateDefault"
WWWDecodeDelegate="$WWWDecodeDelegateDefault"
ZipDelegate="$ZipDelegateDefault"
fi
# Delegate substitutions
AC_SUBST(AutotraceDecodeDelegate)
AC_SUBST(BZIPDelegate)
AC_SUBST(BrowseDelegate)
AC_SUBST(CGMDecodeDelegate)
AC_SUBST(CatDelegate)
AC_SUBST(ConvertDelegate)
AC_SUBST(DOTDecodeDelegate)
AC_SUBST(DVIDecodeDelegate)
AC_SUBST(EchoDelegate)
AC_SUBST(EditorDelegate)
AC_SUBST(FIGDecodeDelegate)
AC_SUBST(GnuplotDecodeDelegate)
AC_SUBST(HPGLDecodeDelegate)
AC_SUBST(HTMLDecodeDelegate)
AC_SUBST(ILBMDecodeDelegate)
AC_SUBST(ILBMEncodeDelegate)
AC_SUBST(LPDelegate)
AC_SUBST(LZWDecodeDelegate)
AC_SUBST(LZWEncodeDelegate)
AC_SUBST(LaunchDelegate)
AC_SUBST(MANDelegate)
AC_SUBST(MPEGDecodeDelegate)
AC_SUBST(MPEGEncodeDelegate)
AC_SUBST(MVDelegate)
AC_SUBST(MogrifyDelegate)
AC_SUBST(PCLDelegate)
AC_SUBST(PGPDecodeDelegate)
AC_SUBST(POVDelegate)
AC_SUBST(PSDelegate)
AC_SUBST(RADDecodeDelegate)
AC_SUBST(RLEEncodeDelegate)
AC_SUBST(RMDelegate)
AC_SUBST(SCANDecodeDelegate)
AC_SUBST(ShowImageDelegate)
AC_SUBST(TXTDelegate)
AC_SUBST(WMFDecodeDelegate)
AC_SUBST(WWWDecodeDelegate)
AC_SUBST(ZipDelegate)
#
# RPM support.
#
RPM=''
AC_CHECK_PROGS(RPM,rpmbuild rpm)
AC_SUBST(RPM)
AM_CONDITIONAL(HAS_RPM, test "x$RPM" != "x" )
#
# Ghostscript related configuration.
#
GSColorDevice=pnmraw
GSCMYKDevice=bmpsep8
GSMonoDevice=pbmraw
GSPDFDevice=pdfwrite
GSPSDevice=pswrite
GSEPSDevice=epswrite
GSVersion='unknown'
if test $have_gs = 'yes'
then
AC_MSG_CHECKING(for Ghostscript version)
if GSVersion=`$PSDelegate --version`
then
:
else
GSVersion=`$PSDelegate --help | sed -e '1q' | awk '{ print $3 }'`
fi
AC_MSG_RESULT($GSVersion)
# GSColorDevice
AC_MSG_CHECKING(for gs color device)
if $PSDelegate -q -dBATCH -sDEVICE=$GSColorDevice -sOutputFile=/dev/null < /dev/null 2> /dev/null
then
:
else
GSColorDevice=ppmraw
fi
AC_MSG_RESULT($GSColorDevice)
# GSCMYKDevice
AC_MSG_CHECKING(for gs CMYK device)
if $PSDelegate -q -dBATCH -sDEVICE=$GSColorDevice -sOutputFile=/dev/null < /dev/null 2> /dev/null
then
:
else
GSCMYKDevice=$GSColorDevice
fi
AC_MSG_RESULT($GSCMYKDevice)
# GSMonoDevice
AC_MSG_CHECKING(for gs mono device)
if $PSDelegate -q -dBATCH -sDEVICE=$GSMonoDevice -sOutputFile=/dev/null < /dev/null 2> /dev/null
then
:
else
GSMonoDevice=$GSColorDevice
fi
AC_MSG_RESULT($GSMonoDevice)
# GSPDFDevice
AC_MSG_CHECKING(for gs PDF writing device)
if $PSDelegate -q -dBATCH -sDEVICE=$GSPDFDevice -sOutputFile=/dev/null < /dev/null 2> /dev/null
then
:
else
GSPDFDevice=nodevice
fi
AC_MSG_RESULT($GSPDFDevice)
# GSPSDevice
AC_MSG_CHECKING(for gs PS writing device)
if $PSDelegate -q -dBATCH -sDEVICE=$GSPSDevice -sOutputFile=/dev/null < /dev/null 2> /dev/null
then
:
else
GSPSDevice=nodevice
fi
AC_MSG_RESULT($GSPSDevice)
# GSEPSDevice
AC_MSG_CHECKING(for gs EPS writing device)
if $PSDelegate -q -dBATCH -sDEVICE=$GSEPSDevice -sOutputFile=/dev/null < /dev/null 2> /dev/null
then
:
else
GSEPSDevice=nodevice
fi
AC_MSG_RESULT($GSEPSDevice)
fi
AC_SUBST(GSMonoDevice)
AC_SUBST(GSPDFDevice)
AC_SUBST(GSPSDevice)
AC_SUBST(GSColorDevice)
AC_SUBST(GSCMYKDevice)
AC_SUBST(GSEPSDevice)
AC_SUBST(GSVersion)
#
# PerlMagick-related configuration
#
# Look for PERL if PerlMagick requested
# If name/path of desired PERL interpreter is specified, look for that one first
have_perl='no'
if test "$with_perl" != 'no'
then
if test "$with_perl" != 'yes'
then
AC_CACHE_CHECK(for perl,ac_cv_path_PERL,ac_cv_path_PERL="$with_perl");
PERL=$ac_cv_path_PERL
AC_SUBST(PERL)dnl
have_perl="$ac_cv_path_PERL"
else
AC_PATH_PROGS(PERL,perl perl5,)dnl
if test "$ac_cv_path_PERL"
then
have_perl="$ac_cv_path_PERL"
fi
fi
fi
with_perl_static='no'
with_perl_dynamic='no'
if test "$have_perl" != 'no'
then
if test "$with_perl" != 'no' && test "$libtool_build_shared_libs" = 'no'
then
with_perl_static='yes'
fi
if test "$with_perl" != 'no' && test "$libtool_build_shared_libs" = 'yes'
then
with_perl_dynamic='yes'
fi
# Is PERL's MakeMaker new enough to support DESTDIR?
AC_PROG_PERL_VERSION(5.8.1,[PERL_SUPPORTS_DESTDIR='yes'],[PERL_SUPPORTS_DESTDIR='no'])
fi
AM_CONDITIONAL(WITH_PERL, test "$have_perl" != 'no')
AM_CONDITIONAL(WITH_PERL_STATIC, test $with_perl_static = 'yes')
AM_CONDITIONAL(WITH_PERL_DYNAMIC, test $with_perl_dynamic = 'yes')
AC_SUBST(PERL_SUPPORTS_DESTDIR)
# Determine path to pick up Magick library from for use with building PerlMagick
MAGICKLIBDIR="${LIB_DIR}"
MAGICKLIB="-L${MAGICKLIBDIR} -lMagick"
if test $with_perl_static = 'yes'
then
# Find out where libtool hides its uninstalled libraries (as libtool_objdir)
libtool_objdir=$objdir
# Linker search path to library, followed by -lMagick
MAGICKLIBDIR="${builddir}/magick/${libtool_objdir}"
MAGICKLIB="-L${MAGICKLIBDIR} -lMagick"
fi
AC_SUBST(MAGICKLIB)
AC_SUBST(MAGICKLIBDIR)
# Create a simple string containing format names for all delegate libraries
DELEGATES=''
if test "$have_bzlib" = 'yes' ; then DELEGATES="$DELEGATES bzlib" ; fi
if test "$have_ralcgm" = 'yes' ; then DELEGATES="$DELEGATES cgm" ; fi
if test "$have_fpx" = 'yes' ; then DELEGATES="$DELEGATES fpx" ; fi
if test "$have_hp2xx" = 'yes' ; then DELEGATES="$DELEGATES hpgl" ; fi
# if test "$have_hdf" = 'yes' ; then DELEGATES="$DELEGATES hdf" ; fi
if test "$have_jbig" = 'yes' ; then DELEGATES="$DELEGATES jbig" ; fi
if test "$have_png$have_jpeg" = 'yesyes' ; then DELEGATES="$DELEGATES jng"; fi
if test "$have_jp2" = 'yes' ; then DELEGATES="$DELEGATES jp2" ; fi
if test "$have_jpeg" = 'yes' ; then DELEGATES="$DELEGATES jpeg" ; fi
if test "$have_lcms" = 'yes' ; then DELEGATES="$DELEGATES lcms" ; fi
# if test "$have_mpeg2" = 'yes' ; then DELEGATES="$DELEGATES mpeg2" ; fi
if test "$have_mpeg2decode" = 'yes' && test "$have_mpeg2encode" = 'yes' ; then DELEGATES="$DELEGATES mpeg" ; fi
if test "$have_png" = 'yes' ; then DELEGATES="$DELEGATES png" ; fi
have_ps='no'
if test "$have_dps" = 'yes' || test "$have_gs" = 'yes' ; then have_ps='yes' ; fi
if test "$have_ps" = 'yes' ; then DELEGATES="$DELEGATES ps" ; fi
if test "$have_ra_ppm" = 'yes' ; then DELEGATES="$DELEGATES rad" ; fi
if test "$have_tiff" = 'yes' ; then DELEGATES="$DELEGATES tiff" ; fi
if test "$have_ttf" = 'yes' ; then DELEGATES="$DELEGATES ttf" ; fi
if test "$have_wmf" = 'yes' ; then DELEGATES="$DELEGATES wmf" ; fi
if test "$have_x" = 'yes' ; then DELEGATES="$DELEGATES x" ; fi
if test "$have_fig2dev" = 'yes' && test "$have_ps" = 'yes' ; then DELEGATES="$DELEGATES xfig" ; fi
if test "$have_zlib" = 'yes' ; then DELEGATES="$DELEGATES zlib" ; fi
AC_SUBST(DELEGATES)
#
# Handle special compiler flags
#
# Add '-p' if prof source profiling support enabled
if test "$with_prof" = 'yes'
then
CFLAGS="-p $CFLAGS"
CXXFLAGS="-p $CXXFLAGS"
LDFLAGS="-p $LDFLAGS"
fi
# Add '-pg' if gprof source profiling support enabled
if test "$with_gprof" = 'yes'
then
CFLAGS="-pg $CFLAGS"
CXXFLAGS="-pg $CXXFLAGS"
LDFLAGS="-pg $LDFLAGS"
fi
# Add '-ftest-coverage -fprofile-arcs' if gcov source profiling support enabled
# This is a gcc-specific feature
if test "$with_gcov" = 'yes'
then
CFLAGS="-ftest-coverage -fprofile-arcs $CFLAGS"
CXXFLAGS="-ftest-coverage -fprofile-arcs $CXXFLAGS"
LDFLAGS="-ftest-coverage -fprofile-arcs $LDFLAGS"
fi
#
# Build library dependency list for libMagick
#
if test "$with_modules" != 'no'
then
MAGICK_DEP_LIBS="$LIB_LCMS $LIB_TIFF $LIB_TTF $LIB_JPEG $LIB_GS $LIB_XEXT $LIB_IPC $LIB_X11 $LIB_XT $LIB_BZLIB $LIB_ZLIB $LIB_GDI32 $LIB_THREAD $LIB_MATH $LIB_CCMALLOC $LIB_EFENCE $LIB_THREAD $LIBS_USER"
else
MAGICK_DEP_LIBS="$LIB_JBIG $LIB_LCMS $LIB_TIFF $LIB_TTF $LIB_JP2 $LIB_JPEG $LIB_GS $LIB_PNG $LIB_FPX $LIB_WMF $LIB_DPS $LIB_XEXT $LIB_XT $LIB_IPC $LIB_X11 $LIB_BZLIB $LIB_XML $LIB_DOT $LIB_ZLIB $LIB_GDI32 $LIB_THREAD $LIB_MATH $LIB_CCMALLOC $LIB_EFENCE $LIB_THREAD $LIBS_USER"
fi
AC_SUBST(MAGICK_DEP_LIBS)
#
# Remove extraneous spaces from output variables (asthetic)
#
X_CFLAGS=`echo $X_CFLAGS | sed -e 's/ */ /g'`
X_PRE_LIBS=`echo $X_PRE_LIBS | sed -e 's/ */ /g'`
X_LIBS=`echo $X_LIBS | sed -e 's/ */ /g'`
X_EXTRA_LIBS=`echo $X_EXTRA_LIBS | sed -e 's/ */ /g'`
CC=`echo $CC | sed -e 's/ */ /g'`
CFLAGS=`echo $CFLAGS | sed -e 's/ */ /g'`
CPPFLAGS=`echo $CPPFLAGS | sed -e 's/ */ /g'`
CXXFLAGS=`echo $CXXFLAGS | sed -e 's/ */ /g'`
LDFLAGS=`echo $LDFLAGS | sed -e 's/ */ /g'`
TESTED_LIBS=`echo $LIBS | sed -e 's/ */ /g'`
MAGICK_DEP_LIBS=`echo $MAGICK_DEP_LIBS | sed -e 's/ */ /g'`
#LIBS=`echo $LIBS | sed -e 's/ */ /g'`
# Over-ride LIBS so that libraries are supplied by Makefiles instead
LIBS=""
#AC_SUBST(CPPFLAGS)
AC_SUBST(X_CFLAGS)
#AC_SUBST(LDFLAGS)
#AC_SUBST(X_PRE_LIBS)
#AC_SUBST(X_LIBS)
#AC_SUBST(X_EXTRA_LIBS)
MAGICK_CFLAGS=$CFLAGS
MAGICK_CPPFLAGS=`echo $MAGICK_CPPFLAGS | sed -e 's/ */ /g'`
MAGICK_PCFLAGS=`echo $MAGICK_PCFLAGS | sed -e 's/ */ /g'`
MAGICK_LDFLAGS="-L$LIB_DIR $LDFLAGS"
MAGICK_LIBS="-lMagick $MAGICK_DEP_LIBS"
AC_SUBST(MAGICK_CFLAGS)
AC_SUBST(MAGICK_CPPFLAGS)
AC_SUBST(MAGICK_PCFLAGS)
AC_SUBST(MAGICK_LDFLAGS)
AC_SUBST(MAGICK_LIBS)
# Set configured scripts to executable.
AC_CONFIG_COMMANDS([Magick++-config.in],[chmod +x Magick++/bin/Magick++-config])
AC_CONFIG_COMMANDS([Magick-config.in],[chmod +x magick/Magick-config])
AC_CONFIG_COMMANDS([Wand-config.in],[chmod +x wand/Wand-config])
AC_CONFIG_COMMANDS([magick.sh.in],[chmod +x magick.sh])
AC_OUTPUT( \
coders/Makefile \
config/Makefile \
config/delegates.mgk \
config/configure.mgk \
config/type-ghostscript.mgk \
config/type.mgk \
config/type-solaris.mgk \
config/type-windows.mgk \
filters/Makefile \
ltdl/Makefile \
Magick++/bin/Magick++-config \
Magick++/bin/Makefile \
Magick++/demo/Makefile \
magick/ImageMagick.pc \
Magick++/lib/ImageMagick++.pc \
Magick++/lib/Magick++/Makefile \
Magick++/lib/Makefile \
magick/Magick-config \
magick/Makefile \
Magick++/Makefile \
Magick++/tests/Makefile \
magick/version.h \
magick.sh \
Makefile \
PerlMagick/Magick.pm \
PerlMagick/Makefile.PL \
scripts/ImageMagick.spec \
tests/Makefile \
utilities/Makefile \
wand/Makefile \
wand/Wand-config \
wand/Wand.pc )
echo ""
echo "ImageMagick is configured as follows. Please verify that this configuration"
echo "matches your expectations."
echo ""
echo "Host system type : $host"
echo ""
echo " Option Value"
echo "-------------------------------------------------------------------------"
echo "Shared libraries --enable-shared=$enable_shared $libtool_build_shared_libs"
echo "Static libraries --enable-static=$enable_static $libtool_build_static_libs"
echo "Module support --with-modules=$with_modules $with_modules"
echo "GNU ld --with-gnu-ld=$with_gnu_ld $lt_cv_prog_gnu_ld"
echo "Quantum depth --with-quantum-depth=$with_quantum_depth $with_quantum_depth"
echo ""
echo "Delegate Configuration:"
echo "BZLIB --with-bzlib=$with_bzlib $have_bzlib"
echo "DPS --with-dps=$with_dps $have_dps"
echo "FlashPIX --with-fpx=$with_fpx $have_fpx"
echo "FreeType 2.0 --with-ttf=$with_ttf $have_ttf"
echo "Ghostscript None $PSDelegate ($GSVersion)"
result_ghostscript_font_dir='none'
if test "${ghostscript_font_dir}x" != 'x'
then
result_ghostscript_font_dir="$ghostscript_font_dir"
fi
echo "Ghostscript fonts --with-gs-font-dir=$with_gs_font_dir $result_ghostscript_font_dir"
echo "Ghostscript lib --with-gslib=$with_gslib $have_gslib"
echo "Graphviz --with-dot=$with_dot $have_dot"
echo "JBIG --with-jbig=$with_jbig $have_jbig"
echo "JPEG v1 --with-jpeg=$with_jpeg $have_jpeg"
echo "JPEG-2000 --with-jp2=$with_jp2 $have_jp2"
echo "LCMS --with-lcms=$with_lcms $have_lcms"
echo "Magick++ --with-magick-plus-plus=$with_magick_plus_plus $have_magick_plus_plus"
echo "PERL --with-perl=$with_perl $have_perl"
echo "PNG --with-png=$with_png $have_png"
echo "TIFF --with-tiff=$with_tiff $have_tiff"
result_windows_font_dir='none'
if test "${windows_font_dir}x" != 'x'
then
result_windows_font_dir="${windows_font_dir}"
fi
echo "Windows fonts --with-windows-font-dir=$with_windows_font_dir $result_windows_font_dir"
echo "WMF --with-wmf=$with_wmf $have_wmf"
echo "X11 --with-x=$with_x $have_x"
echo "XML --with-xml=$with_xml $have_xml"
echo "ZLIB --with-zlib=$with_zlib $have_zlib"
echo ""
echo "X11 Configuration:"
if test "$have_x" != 'no'
then
echo " X_CFLAGS = $X_CFLAGS"
echo " X_PRE_LIBS = $X_PRE_LIBS"
echo " X_LIBS = $X_LIBS"
echo " X_EXTRA_LIBS = $X_EXTRA_LIBS"
else
echo ""
echo " Not using X11."
fi
echo ""
echo "Options used to compile and link:"
echo " PREFIX = $PREFIX_DIR"
echo " EXEC-PREFIX = $EXEC_PREFIX_DIR"
echo " VERSION = $PACKAGE_VERSION"
echo " CC = $CC"
echo " CFLAGS = $MAGICK_CFLAGS"
echo " CPPFLAGS = $MAGICK_CPPFLAGS"
echo " DEFS = $DEFS"
echo " LDFLAGS = $MAGICK_LDFLAGS"
echo " LIBS = $MAGICK_LIBS"
echo " CXX = $CXX"
echo " CXXFLAGS = $CXXFLAGS"
echo ""
|