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
|
# Copyright (c) 2011 Autoconf Archive Maintainers <autoconf-archive-maintainers@gnu.org>
#
# Copying and distribution of this file, with or without modification, are
# permitted in any medium without royalty provided the copyright notice and
# this notice are preserved. This file is offered as-is, without any warranty.
2011-12-02 Stephan Sürken <absurd@olurdix.de>
AX_BERKELEY_DB_CXX: Add 'AC_LANG_ASSERT(C++)' (as suggested by Amir Taaki, thanks!).
This will basically improve the error reporting when the macro is called
without LANG=C++; is also suggested in autoconf documentation (see:
http://www.gnu.org/s/hello/manual/autoconf/Language-Choice.html).
2011-11-22 Rhys Ulerich <rhys.ulerich@gmail.com>
Fix inadvertent breakage from commit cfea4ee52f7
2011-11-21 Peter Simons <simons@cryp.to>
AX_PTHREAD: added missing -mt option for Oracle/Sun CC on Solaris
Further details are available at <http://savannah.gnu.org/patch/?7666>.
2011-11-21 Michael Terry <michael.terry@canonical.com>
AX_BOOST_PYTHON: fixed under-quoted use of $CPPFLAGS
See <http://savannah.gnu.org/patch/?7673> for further details.
2011-11-21 Jonathan Wakely <zilla@kayari.org>
AX_CXX_HEADER_STDCXX_0X: updated the list of headers required by C++11 (the standard formerly known as C++0x)
Further details are available at <http://savannah.gnu.org/patch/index.php?7664>.
2011-11-21 Peter Simons <simons@cryp.to>
AX_WITH_CURSES: fixed broken AS_IF() test that prevented $CURSES_LIB from being used
See <http://savannah.gnu.org/patch/index.php?7651> for further details.
2011-10-22 Peter Simons <simons@cryp.to>
AX_EXT: fixed compiler tests and added support for detection of SSE4.1, SSE4.2, AVX extensions
See <http://savannah.gnu.org/patch/?7633> for further details.
2011-10-22 Mateusz Loskot <mateusz@loskot.net>
AX_LIB_GDAL: new submission
This macro provides tests for the availability of the GDAL/OGR library.
Further details are available at <http://savannah.gnu.org/patch/?7639>.
2011-09-26 Peter Simons <simons@cryp.to>
AX_LIB_SQLITE3: replace C++-style commend with C-style to improve portability
See <http://savannah.gnu.org/patch/?7623> for further details.
2011-09-25 Peter Simons <simons@cryp.to>
AX_ENABLE_BUILDDIR: fixed Darwin support
Further details are available at <http://savannah.gnu.org/patch/?7619>.
2011-09-19 Peter Simons <simons@cryp.to>
Dropped obsolete macros from the distribution.
2011-09-17 Peter Simons <simons@cryp.to>
AX_LIB_MYSQLCPPCONN: test for the MySQL Connector/C++ libraries
AX_LIB_TRACE: test for the libtrace libraries
AX_DEFINE_DIR: cosmetic changes to wrap-wrapping
2011-09-16 Reuben Thomas <rrt@sc3d.org>
AX_DEFINE_DIR: Obsolete: it doesn't comply with the GCS.
2011-09-06 Reuben Thomas <rrt@sc3d.org>
AX_FUNC_FORK: Not actually useful. Use AX_CHECK_FUNC(fork) instead.
AX_SNPRINTF_OFLOW: Make obsolete, in favour of gnulib's snprintf module.
2011-09-05 Aaron Griffith <aargri@gmail.com>
AX_PROG_DOXYGEN: cleaned up use of AM_CONDITIONAL
Previously, calls to AM_CONDITIONAL were inside shell flow control
structures. The automake manual notes that running AM_CONDITIONAL
conditionally will confuse automake. In this case, later use of the
AM_COND_IF to check if Doxygen was found would result in the
conditional appearing to be false, even if it's not.
http://www.gnu.org/s/hello/manual/automake/Usage-of-Conditionals.html
2011-09-03 Reuben Thomas <rrt@sc3d.org>
Tidy up assignment to lua_min_version and lua_max_version.
Fix error messages to always use the above vars, not the original
parameters passed to the macros.
2011-08-29 Peter Simons <simons@cryp.to>
AX_LIB_SQLITE3: bumped serial number
AX_LIB_SQLITE3: find the library with the C compiler
2011-08-24 Peter Simons <simons@cryp.to>
AX_CHECK_{GL,GLU,GLUT}: these macro are no longer maintained here; marked obsolete
AX_CHECK_SUNPRO_C: cosmetic, no functional change
AX_LANG_COMPILER_MS: cosmetic, no functional change
2011-08-23 Yusuke Tsutsumi <tsutsumi.yusuke@gmail.com>
AX_CHECK_MYSQL: re-factoring and several bug fixes
2011-08-14 Stanislav Sedov <stas@FreeBSD.org>
AX_RUBY_EXT: initial version
AX_PERL_EXT: initial version
2011-08-02 Chun-Chung Chen <cjj@u.washington.edu>
AX_PTHREAD: fixed mis-placed brackets
2011-08-01 Chun-Chung Chen <cjj@u.washington.edu>
AX_LIB_HDF5: HAVE_HDF5 was defined even when the library is not detected
The following codes are executed unless --without-hdf5 is used, even
when the HDF5 library is not installed or detected:
AC_SUBST([HDF5_VERSION])
AC_SUBST([HDF5_CFLAGS])
AC_SUBST([HDF5_CPPFLAGS])
AC_SUBST([HDF5_LDFLAGS])
AC_SUBST([HDF5_FFLAGS])
AC_SUBST([HDF5_FLIBS])
AC_DEFINE([HAVE_HDF5], [1], [Defined if you have HDF5 support])
To remedy the situation, these have been moved into the conditional
block where HDF5 is actually detected.
AX_PTHREAD: fixed Autoconf warnings about underquoted arguments
2011-07-30 Peter Simons <simons@cryp.to>
AX_GCC_INSTALL_DIR, AX_GCC_LIBRARIES_DIR, AX_GCC_VERSION, and AX_GXX_VERSION are non-functional and have been marked obsolete, because they depend on the obsolete AX_GCC_OPTION macro, which has been removed from the archive.
2011-07-28 John Zaitseff <J.Zaitseff@zap.org.au>
AX_WITH_CURSES: major re-write
I re-wrote the AX_WITH_CURSES macro, and added the macros AX_WITH_CURSES_PANEL,
AX_WITH_CURSES_MENU, and AX_WITH_CURSES_FORM for the following reasons:
- The checks are far more rigorous and now work with many more systems. In
particular, Debian Sid, Debian 6.0 (Squeeze), Ubuntu 11.04 (Natty), Ubuntu
10.04 (Lucid), Fedora 15, FreeBSD 8.2 and Cygwin have all been confirmed as
working.
- The old version required Ncurses to be present even when linking with
NcursesW. This has been fixed.
- Multiple header filenames are checked for each library as these seem to be
different in every system. The old version did not do these checks and hence
failed on many systems (eg, FreeBSD and Cygwin).
- A number of feature checks have been added: X/Open Enhanced functionality
checks, colour function checks, obsolete function checks, etc.
- The additional macros check for auxiliary libraries associated with Curses:
Panel, Menu and Form, again with checks against NcursesW, Ncurses and plain
Curses.
- Extensive documentation has been added, particularly useful for the beginner
(ie, exactly what needs to be put where for a working Curses check).
2011-07-17 Peter Simons <simons@cryp.to>
Fixed minor spelling errors detected by gnulib's QA module.
AX_BOOST_FILESYSTEM: fixed cut-and-paste error
See <http://savannah.gnu.org/patch/?7576> for further details.
2011-07-08 Peter Simons <simons@cryp.to>
Updated serial numbers, and re-formatted the macro to be consistent with the rest of the archive.
2011-07-02 Maarten Bosmans <mkbosmans@gmail.com>
ax_cflags_*: Use AX_APPEND_FLAG macro
Use one implementation for C/C++ in ax_cflags_*.m4
AX_COMPILER_VENDOR: Make the list of vendors and corresponding symbols clearer
Also deprecate the macros AX_CHECK_SUNPRO_C and AX_LANG_COMPILER_MS in favor
of the more generic AX_COMPILER_VENDOR.
ax_append_flag: Split file into one macro per file
2011-06-30 Nick Bowler <nbowler@elliptictech.com>
ax_check_openssl: Fix underquoted macro arguments.
Several of the macros used in AX_CHECK_OPENSSL have underquoted
arguments. In particular, autoconf complains loudly about the
unquoted AC_LANG_PROGRAM argument to AC_LINK_IFELSE:
configure.ac:10: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body
../../lib/autoconf/lang.m4:194: AC_LANG_CONFTEST is expanded from...
../../lib/autoconf/general.m4:2662: _AC_LINK_IFELSE is expanded from...
../../lib/autoconf/general.m4:2679: AC_LINK_IFELSE is expanded from...
m4/ax_check_openssl.m4:38: AX_CHECK_OPENSSL is expanded from...
configure.ac:10: the top level
Fix that up, and fix up the others while we're at it.
2011-06-28 Anders Kaseorg <andersk@mit.edu>
AX_CHECK_FLAG: Fix to work with autoconf 2.59
• AS_VAR_PUSHDEF([FLAGS], [something containing FLAGS]) caused an
infinite loop before v2.65~21.
• AS_VAR_APPEND was new in v2.63b~224.
• AS_VAR_IF was new in v2.63~27.
• AS_ECHO was new in AUTOCONF-2.61a~45, and AC_PROG_GREP in
AUTOCONF-2.59c~744, but their use here is more idiomatically
replaced with a case pattern anyway.
• Before AUTOCONF-2.60b~8, the variable name passed to AC_CACHE_CHECK,
AS_VAR_GET, AS_VAR_SET, and AS_VAR_SET_IF must be left unquoted.
2011-06-25 Peter Simons <simons@cryp.to>
AX_CFLAGS_GCC_OPTION: deprecated in favor of AX_CHECK_COMPILE_FLAG
Added a proper 'obsolete' section to AX_C_CHECK_FLAG, AX_CHECK_LINKER_FLAGS, AX_CPP_CHECK_FLAG, AX_CXX_CHECK_FLAG, AX_CXXCPP_CHECK_FLAG, and AX_LD_CHECK_FLAG.
Bumped serial numbers of AX_CFLAGS_*_OPTION, AX_CHECK_{COMPILER,LINKER}_FLAGS, and edited the formatting of the documentation for consistency. Also documented the recent changes in the NEWS file.
2011-06-25 Maarten Bosmans <mkbosmans@gmail.com>
Implement AX_*_CHECK_FLAG on top of ax_check_flag.m4 macros
The PROLOGUE and BODY arguments were almost never used, so there's no need to
keep them. Just emit a warning if they are nonempty.
Implement AX_CHECK_*_FLAGS on top of ax_check_flag.m4 macros
The implementation takes care to empty the CFLAGS, to mimic previous behaviour,
but the new behaviour of AX_CHECK_COMPILE_FLAG should be better for most situations.
ax_cflags_*_option.m4: Use AX_APPEND_FLAG macro to append the flag
ax_cflags_*_option.m4: Use AX_CHECK_COMPILE_FLAG macro to do most of the work
This gets rid of the for loop and the string splitting using sed. For
gcc_option the logic is now contained in a much easier to follow if statement.
Add ax_check_flag.m4
ax_cflags_*_option.m4: Consolidate CFLAGS and CXXFLAGS macros
Combine duplicate AX_CFLAGS_ and AX_CXXFLAGS_ macros into one AX_FLAGS macro and
change language in the language_specific macro.
ax_cflags_*_option.m4: Consolidate _OLD and _NEW macros
Combine duplicate _OLD and _NEW macros into one _PRIVATE macro and switch
arguments in the main macro.
2011-06-21 Maarten Bosmans <mkbosmans@gmail.com>
AX_PTHREAD: define HAVE_PTHREAD_PRIO_INHERIT if PTHREAD_PRIO_INHERIT is set at compile-time
2011-06-21 Peter Simons <simons@cryp.to>
AX_WITH_RUBY: dropped obsolete macro
AX_WITH_PYTHON: dropped obsolete macro
AX_WITH_PERL: dropped obsolete macro
AX_WITH_GUILE: dropped obsolete macro
AX_GCC_OPTION: dropped obsolete macro
AX_C_PRINTF_THSEP: dropped obsolete macro
AX_C_IFDEF: dropped obsolete macro
AX_CFLAGS_WARN_ALL_ANSI: dropped obsolete macro
2011-06-15 Michael Hofmann <michael.hofmann@informatik.tu-chemnitz.de>
Bugfix in MPI Fortran macros for fixed form code.
2011-06-15 Yusuke Tsutsumi <tsutsumi.yusuke@gmail.com>
AX_CHECK_MYSQL: new submission
I am submitting an Autoconf Macro I've been developing for the past
couple months - ax_check_mysql.m4. I'm aware that multiple other MySQL
macros exist, but mine is specifically geared toward MySQL plugin
development and installation. Specifically:
- Automatically Detects binary, include, and plugin directories for most
typical MySQL installations.
- Provides methods for one to designate the directories manually, or point to
a root directory containing a MySQL installation.
See <http://savannah.gnu.org/patch/?7553> for further details.
2011-06-15 Maarten Bosmans <mkbosmans@gmail.com>
AX_PTHREAD: add check for PTHREAD_PRIO_INHERIT
See <http://savannah.gnu.org/patch/?7552> for further details.
AX_CHECK_DEFINE: various bug fixes
- Change macro names to CHECK_DEFINE and alias the old name CHECK_DEFINED.
This makes the names in sync with the help comments on top.
- Update obsolete AC_TRY_COMPILE to AC_COMPILE_IFELSE.
- Include header name in cache value and in output message.
- Switch #ifndef to #ifdef. That macro could not have worked previously.
See <http://savannah.gnu.org/patch/?7551> for further details.
2011-06-15 Olaf Lenz <olenz@icp.uni-stuttgart.de>
AX_PROG_{CC,CXX,FC}_MPI: new submissions
The new macros AX_PROG_CC_MPI, AX_PROG_CXX_MPI, AX_PROG_F77_MPI, and AX_PROG_FC_MPI
address several shortcomings found in AX_MPI. Further details can be found at
<http://lists.gnu.org/archive/html/autoconf-archive-maintainers/2011-05/msg00004.html>,
<http://lists.gnu.org/archive/html/autoconf-archive-maintainers/2011-06/msg00003.html>.
2011-06-15 Reuben Thomas <rrt@sc3d.org>
Fix trivial comment typo.
2011-05-09 Andreas Röver <andreas_roever@web.de>
AX_BOOST_THREAD: fixes two bugs that prevented cross-compilation for Windows on Unix
- In the OS selection switches, where the special cases for mingw are
selected, it says ming32 but should be mingw32.
- Those switches are supposed to be dependent on the os you compile for but
the switch uses the build_os variable.
2011-04-29 Daniel Richard G <skunk@iSKUNK.ORG>
AX_VAR_TIMEZONE_EXTERNALS: updated for Autoconf 2.68
AX_FUNC_WHICH_GETHOSTBYNAME_R: updated for Autoconf 2.68
AX_PTHREAD: updated for Autoconf 2.68
2011-04-06 Philipp Thomas <pth@suse.de>
AX_HAVE_QT: fixed Autoconf warning
See <http://savannah.gnu.org/patch/index.php?7511> for further details.
2011-04-01 Peter Simons <simons@cryp.to>
AX_HAVE_QT: use AS_HELP_STRING
See <http://savannah.gnu.org/patch/index.php?7510> for further details.
AX_HAVE_QT: remove spurious semicolon
AX_HAVE_QT: libraries come last, not first
The linker call in ax_have_qt.m4 names libraries before the objects.
This will fail when --as-needed is in effect. This patch moves the
libraries to the end of the command line.
See <http://savannah.gnu.org/patch/?7514> for further details.
2011-03-29 Reuben Thomas <rrt@sc3d.org>
Get Lua interpreter version in a more robust way (works with LuaJIT).
2011-03-25 Reuben Thomas <rrt@sc3d.org>
Don't use -a or -o argument to test in ax_lua.m4.
Add missing letter in comment.
2011-03-17 Peter Simons <simons@cryp.to>
AX_PATH_GENERIC has been extended to allow setting LIBRARY_LIBS and LIBRARY_CFLAGS variables on configure command line or in the environment to override the normal values returned by `library-config --libs` and `--cflags` respectively. See <http://savannah.gnu.org/patch/?7490> for further details.
AX_LIB_EXPAT: store found library in EXPAT_LIBS instead if EXPAT_LDFLAGS
This change is necessary to avoid build failures when linking with --as-needed.
See <http://savannah.gnu.org/patch/?7489> for further details.
AX_WITH_PROG, AX_WITH_CURSES: synchronize serial numbers with Git
AX_WITH_PROG, AX_WITH_CURSES: pseudo-bump #serial number
These macros have serial numbers greater than the number of commits that
modified them. Since we cannot decrease serial numbers once they've been
assigned, the macros need two (effectively empty) commits to synchronize
their serial number with Git.
2011-03-17 Murray Cumming <murrayc@murrayc.com>
AX_PKG_SWIG: fix the configure check so it can find swig 2 as swig2.0
Ubuntu Maverick and Ubuntu Natty install swig 2 as /usr/bin/swig2.0
because they do not yet want to upgrade their normal swig package. This
lets our macro find that too.
2011-03-13 Reuben Thomas <rrt@sc3d.org>
Use && not -a in tests.
Quote first argument of AC_DEFINE.
2011-03-01 Henrik Uhrenholt <henrik.uhrenholt.gpl@gmail.com>
AX_PROG_SPLINT: various improvements
* Added splint URL
* Added AC_REQUIRE([AX_ADD_AM_MACRO_STATIC])
* Added support for running splint on LTLIBRARIES
2011-02-27 Peter Simons <simons@cryp.to>
AX_LUA: normalize formatting of the documentation
2011-02-26 Reuben Thomas <rrt@sc3d.org>
Add AX_PROG_LUA macro, and improve behaviour of single version number given to mean “exactly this version” rather than “this verison or greater”.
Add Lua 5.2 support (trivial!).
Remove --with-lua-prefix (use CPPFLAGS &c. instead).
2011-02-06 Mike Frysinger <vapier@gentoo.org>
AX_CREATE_PKGCONFIG_INFO: don't add user CPPFLAGS/LDFLAGS to pc files
CPPFLAGS and LDFLAGS are settings that come from the user. These
should not be placed into .pc files. Since this helper already
provides variables for getting cflags/ldflags into the .pc file,
just punt the user sourcing.
2011-02-03 Henrik Uhrenholt <henrik.uhrenholt.gpl@gmail.com>
AX_PROG_SPLINT: initial version
Further details at <http://savannah.gnu.org/patch/?7453>.
2011-02-02 Peter Simons <simons@cryp.to>
AX_BERKELEY_DB_CXX: fixed transliteration of Sürken from Surken to Suerken
2011-01-27 Gary Funck <gary@intrepid.com>
AX_BOOST_BASE, AX_BOOST_REGEX: improved error messages
2011-01-22 Stephan Sürken <absurd@olurdix.de>
AX_BERKELEY_DB_CXX: variant of AX_BERKELEY_DB, adapted to check for C++ headers and libs
This macro is based on AX_BERKELEY_DB by Vaclav Slavik with small
adaptions to check for C++ header and libs instead of C by Stephan
Sürken. See <http://savannah.gnu.org/patch/?7446> for further details.
2011-01-03 Peter Simons <simons@cryp.to>
AX_EXT_HAVE_LIB: fixed bug introduced in previous patch
2011-01-02 Peter Simons <simons@cryp.to>
AX_LIB_CGAL_CORE: dropped trailing empty line at the end of the file
2010-12-25 Dan Horák <dan@danny.cz>
AX_BOOST_BASE: accept also non-x86 64-bit architectures
See <http://savannah.gnu.org/patch/?7428> for further details.
2010-12-23 Bastien Chevreux <bach@chevreux.org>
AX_CHECK_ZLIB: honor --with-zlib option
See <http://savannah.gnu.org/patch/?7411> for further details.
2010-12-18 Peter Simons <simons@cryp.to>
AX_CHECK_JAVA_HOME: added support for MacOS X
See <http://savannah.gnu.org/patch/?7408> for further details.
2010-12-18 Diego Elio Pettenò <flameeyes@gmail.com>
AX_PROG_FLEX, AX_PROG_BISON: use version information for detection
Rather than reimplementing (partial) basename functionality, follow the
suggestion by the Autoconf manual to check for the output of --version for
the program's name.
Also, make the macro use m4_ifnblank rather than use an unconditional :
no-op operation.
2010-12-18 Sergio Belkin <sebelk@gmail.com>
AX_EXT_HAVE_LIB: allow macro to be called more than one time
See <http://savannah.gnu.org/patch/?7403> for further details.
2010-11-25 Václav Haisman <V.Haisman@sh.cvut.cz>
AX_C_IFDEF: fixed Autoconf warnings
See <http://savannah.gnu.org/patch/?7405> for further details.
AX_CFLAGS_SUN_OPTION: fixed Autoconf warnings
See <http://savannah.gnu.org/patch/?7405> for further details.
2010-11-23 Riccardo Murri <riccardo.murri@gmail.com>
AX_CXX_RESTRICT_THIS: detect whether the C++ compiler can qualify a member function with restricted "this" pointer
See <http://savannah.gnu.org/patch/?7397> for further details.
2010-11-18 Cristian Rodríguez <cristian.rodriguez@opensuse.org>
ax_cxx_compile_stdcxx_0x stopped working since GCC 4.5 due to changes in the standard
Please refer to <http://savannah.gnu.org/patch/?7387> for further details.
2010-11-16 Reuben Thomas <rrt@sc3d.org>
Mark AX_GCC_OPTION obsolete, in agreement with author.
Bump version of GPL, as per authors' request.
Bump version of GPL, as per authors' request.
2010-11-16 Peter Simons <simons@cryp.to>
AX_CREATE_PKGCONFIG_INFO: bumped serial number after recent changes
2010-11-16 Reuben Thomas <rrt@sc3d.org>
Bump version of GPL, as per authors' consent.
Bump version of GPL, as per authors' consent.
2010-11-15 Reuben Thomas <rrt@sc3d.org>
Bump GPL version on Guido Draheim's (sole-author) macros.
2010-11-12 Peter Simons <simons@cryp.to>
AX_CXX_CPPFLAGS_STD_LANG: bumped serial number after recent edits
2010-11-12 Rhys Ulerich <rhys.ulerich@gmail.com>
Correct recent AX_CXX_CPPFLAGS_STD_LANG update
No idea what I was thinking on the mistaken syntax...
2010-11-11 Rhys Ulerich <rhys.ulerich@gmail.com>
Move AX_CXX_{CPP,CXX,LD}FLAGS_STD_LANG to AX_COMPILER_VENDOR
Nested quoting within AX_CXX_COMPILER_VENDOR gives warnings on
newer autoconf versions. Switching which compiler-detection
script these macros use.
Implementation changeover simple-- just need to account for a
difference in 'dec' vs 'compaq' compiler identifier.
2010-11-08 Peter Simons <simons@cryp.to>
Updated the NEWS file describe ax_asm_inline.m4 and ax_forceinline.m4.
Furthermore, updated both macros to use word wrapping boundaries consistent
with the rest of the archive.
2010-11-07 Rhys Ulerich <rhys.ulerich@gmail.com>
Add new macro AX_FORCEINLINE
Merge branch 'master' of ssh://git.sv.gnu.org/srv/git/autoconf-archive
Add new macro AX_ASM_INLINE
2010-11-04 Sebastian Hegler <sebastian.hegler@tu-dresden.de>
AX_LIB_CGAL_CORE: test for the CGAL_Core library
See <http://savannah.gnu.org/patch/?7370> for further details.
2010-11-04 Diego Elio Petteno` <flameeyes@gmail.com>
AX_CHECK_LIBRARY, AX_TLS: correct the spelling of author's surname
2010-11-03 Diego Elio Pettenò <flameeyes@gmail.com>
AX_CHECK_LIBRARY: add a new macro for generic library checking
This macro allows to check a pair of header file and library needed for the
library to be used. This can then be used to replace a number of identical
tests on a number of projects, some of which are simply wrong.
2010-11-03 Peter Simons <simons@cryp.to>
AX_JNI_INCLUDE_DIR: recognize <jni.h> even if it's a symlink (like on Mac OS X)
Further details are available at <http://savannah.gnu.org/patch/?7360>.
2010-10-20 Peter Simons <simons@cryp.to>
m4/ax_tls.m4: avoid non-ASCII character in copyright section
AX_LIB_HDF5: word-wrap documentation to conform to our repository-wide maximum line length
2010-10-20 Rhys Ulerich <rhys.ulerich@gmail.com>
ax_lib_hdf5: improve {C,CPP,LD,F}FLAGS + Fortran
Newer compiler wrapper versions stop providing as
much useful information. After attempting to pull
everything from them, we now look for -L/-I information
in the compiler wrapper's -show output.
This greatly improves HDF5_FFLAGS. Also, added HDF5_FLIBS
to capture the Fortran-specific link line details.
2010-10-14 Rhys Ulerich <rhys.ulerich@gmail.com>
AX_SPLIT_VERSION: add AC_PROG_SED as a prerequisite
2010-10-13 Luke Mewburn <lukem@netbsd.org>
AX_PROG_DOXYGEN: implemented missing "DX_DOT_FEATURE(ON|OFF)" feature
See <http://savannah.gnu.org/patch/?7340> for further details.
2010-10-13 Sebastian Hegler <sebastian.hegler@tu-dresden.de>
AX_BOOST_BASE: improved BOOST_LDFLAGS detection
The macro optimistically assembled BOOST_LDFLAGS from an empty variable,
resulting in a wrong value for BOOST_LDFLAGS, making all following
ax_boost* macros fail.
See <http://savannah.gnu.org/patch/?7337> for further details.
2010-10-13 Rhys Ulerich <rhys.ulerich@gmail.com>
AX_LIB_HDF5: added ability to request either a serial or a parallel HDF5 installation and to detect whether or not a Fortran-ready installation is present.
See http://savannah.gnu.org/patch/?7338 for further details.
2010-10-07 Rhys Ulerich <rhys.ulerich@gmail.com>
AX_CFLAGS_WARN_ALL: removed obsolete Autoconf constructs and added AX_FCFLAGS_WARN_ALL
See <http://savannah.gnu.org/patch/?7335> for further details.
2010-10-05 Reuben Thomas <rrt@sc3d.org>
Obsolete macros that are trivial wrappers of AX_WITH_PROG.
2010-09-24 Václav Haisman <V.Haisman@sh.cvut.cz>
AX_COMPILER_VENDOR: adding support for Clang compiler
2010-09-24 Jaroslav Hajek <hajek@hajek.vzlu.local>
AX_BLAS: avoid caching issues
2010-09-24 Peter Simons <simons@cryp.to>
Updated NEWS file, bumped serial numbers after recent changes, and remedied minor cosmetic issues.
2010-09-24 Jim Meyering <meyering@redhat.com>
build: m4-quote use of AC_LANG_PROGRAM to avoid warning from new autoconf
Using autoconf-2.68 would evoke many new warnings like this:
configure.ac:78: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body
../../lib/autoconf/lang.m4:194: AC_LANG_CONFTEST is expanded from...
../../lib/autoconf/general.m4:2591: _AC_COMPILE_IFELSE is expanded from...
../../lib/autoconf/general.m4:2607: AC_COMPILE_IFELSE is expanded from...
../../lib/m4sugar/m4sh.m4:606: AS_IF is expanded from...
../../lib/autoconf/general.m4:2032: AC_CACHE_VAL is expanded from...
../../lib/autoconf/general.m4:2053: AC_CACHE_CHECK is expanded from...
ax/ax_boost_thread.m4:35: AX_BOOST_THREAD is expanded from...
configure.ac:78: the top level
Autoconf was unable to detect the existing use of AC_LANG_SOURCE
because it was underquoted. Fix that.
replace TAB SP{8} by TAB TAB, repeatedly
replace SP*-TAB by TAB, now that we know there are fewer than 8 SP
git grep -l ' '|xargs perl -pi -e 's/ +\t/\t/'
change SP-TAB inside a [...] expression to TAB-SP
git grep -l '\[ .*\]' \
| xargs perl -pi -e 's/\[ \t([^]]*\])/[\t $1/g'
replace SP{8}TAB by TABTAB
2010-09-22 Reuben Thomas <rrt@sc3d.org>
Add AX_CC_FOR_BUILD for cross-compilation support.
Change AX_LUA_LIB_VERSION to AX_LUA_HEADERS_VERSION, as that's what we're really checking; add AX_LUA_READLINE.
2010-09-17 Harald van Dijk <truedfx@gentoo.org>
AX_PREFIX_CONFIG_H: added support for system shell "dash"
The AX_PREFIX_CONFIG_H macro doesn't work with dash, the bug is already
noted in the source file. As of autoconf 2.62, AS_ECHO can be used to
print strings that may contain backslashes or look like options. This
patch updates AX_PREFIX_CONFIG_H to use it.
The comment in the source file refers to $ECHO from libtool, but this
requires libtool.m4 which is not part of autoconf, and AS_ECHO is. On
the other hand, libtool.m4 (at least the one on my system) only requires
autoconf 2.58 or higher, so depending on how much you value
compatibility with older autoconf versions, that may be a better choice.
See <http://savannah.gnu.org/patch/?7317> for further details.
2010-09-15 Jaroslav Hajek <hajek@hajek.vzlu.local>
AX_BLAS_F77_FUNC: fixed a small typo
AX_BLAS_F77_FUNC: check for correct integer size
AX_BLAS_F77_FUNC: save and restore $LIBS variable
2010-09-07 Diego Elio Pettenò <flameeyes@gmail.com>
AX_TLS: add support for actions on found/not-found
Converts to AS_CASE/AS_IF; update doc to note that ICC is also supported.
2010-08-26 Peter Simons <simons@cryp.to>
AX_CFLAGS_GCC_OPTION: use AS_VAR_COPY() if available, but don't require it
Peter Kjellerstedt noticed a problem when using the updated macro with an older
version of autoconf (e.g. 2.61 as used by debian). AS_VAR_COPY() seems to be a
relatively new addition to the API, and did not exist in 2.61.
2010-08-25 Peter Simons <simons@cryp.to>
AX_CFLAGS_GCC_OPTION: bumped serial number
2010-08-25 Peter Kjellerstedt <pkj@axis.com>
AX_CFLAGS_GCC_OPTION: Use an actually existing gcc option as example
AX_CFLAGS_GCC_OPTION: Correct handling of indirectly named sh vars
With autoconf 2.67 a use of AX_CFLAGS_GCC_OPTION() like this
AX_CFLAGS_GCC_OPTION([-fvisibility=hidden], AM_CFLAGS)
with an option containing a non-literal character like = suddenly
breaks. This was due to directly accessing variables defined with
AS_VAR_PUSHDEF(), rather than using AS_VAR_SET() and AS_VAR_COPY().
2010-08-19 Peter Simons <simons@cryp.to>
AX_LIB_MYSQL: dropped trailing white space
AX_MPI: cosmetic changes to the formatting of the documentaion
2010-08-18 Peter Simons <simons@cryp.to>
AX_BOOST_BASE: prefer more portable `...` syntax over $(...) for running sub-shells
Bumped boost macro serial numbers.
2010-08-18 Jaap Eldering <eldering@A-Eskwadraat.nl>
On x86_64 architecture search both lib64 and lib dirs.
Add check to see if any library is found.
2010-08-18 Peter Simons <simons@cryp.to>
AX_LIB_MYSQL: bumped serial number
2010-08-18 Wim Lewis <wiml@hhhh.org>
AX_LIB_MYSQL: If mysql_config isn't found, see if we can find mysql_config5.
Bug fixes for AX_LIB_MYSQL: - omit spurious "-o test" which would cause $MYSQL_CONFIG to be ignored sometimes - $MYSQL_CONFIG is a precious var - don't set HAVE_MYSQL if we checked the version and discovered it's too old
2010-08-10 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
AX_MPI: Fix recommendation for compiling everything with MPI.
Fix typos when compiling everything with MPI. Update description to
include defaulting CC to MPICC if only the latter was set. See
http://lists.gnu.org/archive/html/autoconf-archive-maintainers/2010-08/msg00000.html
for further details.
2010-08-10 Peter Simons <simons@cryp.to>
AX_LIB_SQLITE3: fixed a trivial typo, no functional change
AX_CHECK_GNU_MAKE: remove extraneous new-line in macro header
According to <http://savannah.gnu.org/patch/?7259>, the extraneous
newline causes trouble in some versions of Autoconf/Automake.
2010-08-10 Jaap Eldering <eldering@a-eskwadraat.nl>
AX_BOOST_BASE: fix under-quoted shell variable
2010-07-16 Olaf Meeuwissen <olaf.meeuwissen@avasys.jp>
The boost macros for iostreams, regex, serialization, signals, system, test_exec_monitor, unit_test_framework, wave, and wserialization have been patched not to rely on being executed by a 'bash' shell.
2010-06-15 Philip Allison <philip.allison@smoothwall.net>
AX_PTHREAD: fix compiler warning in AC_TRY_LINK test program
The test program generated by AX_PTHREAD's AC_TRY_LINK invocation generates a
compiler warning (on Linux, using GCC 4). When building with "-Wall -Werror" in
CFLAGS, as done during development to catch unexpected warnings, this turns
into a compiler error; hence, all of the AC_TRY_LINK invocations fail, and the
macro fails to detect any suitable compiler/linker flags for pthreads usage.
A sample from config.log showing the error follows.
configure:16038: result: no
configure:15936: checking whether pthreads work without any flags
configure:16029: gcc -o conftest -O3 -g -Wall -Werror -pipe -fvisibility=hidden -Wl,-O1 -Wl,--as-needed conftest.c >&5
cc1: warnings being treated as errors
conftest.c: In function 'main':
conftest.c:31: error: 'th' is used uninitialized in this function
This patch fixes the issue by placing pthread_create before pthread_join in the
test program.
2010-06-04 Peter Simons <simons@cryp.to>
AX_CHECK_ZLIB: dropped trailing white space
AX_CHECK_OPENSSL: minor cosmetic change to unbreak the gen-authors.sh script
2010-06-03 Peter Simons <simons@cryp.to>
AX_BOOST_DATE_TIME, AX_BOOST_FILESYSTEM: avoid use of shell constructs that don't work with "dash"
2010-06-02 Peter Simons <simons@cryp.to>
AX_PTHREAD: fixed typo in local variable that broke the macro on Darwin
Thanks to Markus Elfring for pointing that out.
2010-06-02 Timothy Brown <tbrown@freeshell.org>
AX_LIB_HDF5: added support for showconfig output from HDF5 version 1.8.4
2010-06-02 Dustin J. Mitchell <dustin@zmanda.com>
Remove spurious space after -L in ax_check_openssl.m4, thanks to Pavel Volkovitskiy in <https://savannah.gnu.org/patch/?7215>
2010-05-14 Torsten Landschoff <torsten@landschoff.net>
AX_PKG_SWIG: Fix the version detection of AX_PKG_SWIG to support SWIG >= 2.0.
The version detection in the AX_PKG_SWIG macro was incorrect and failed
to accept SWIG 2.0 where SWIG >= 1.3.x is requested.
Patch submitted in <http://savannah.gnu.org/patch/?7187>.
2010-05-12 Timothy Brown <tbrown@freeshell.org>
AX_LIB_HDF5: test whether the HDF5 library is available or not
Submitted in <http://savannah.gnu.org/patch/?7179>.
2010-04-23 Peter Simons <simons@cryp.to>
AX_PYTHON_EMBED: bumped serial number after recent changes
2010-04-22 Ilya Etingof <ilya@glas.net>
Fix typo in ax_python_embed -o correctly defun AX_PYTHON_INSIST
2010-04-20 Peter Simons <simons@cryp.to>
AX_LUA: updated serial number to match the number of commits to this macro
2010-04-20 Mike Park <MikePark.rb@GMail.com>
AX_F90_MODULE_FLAG: test module include path with no space between -I and path
(for compaq alpha fort compiler)
2010-04-02 Joel Smith <js-gnuaca@jk1.net>
AX_PREFIX_CONFIG_H: Removed extra spaces (which break prefixed macros)
2010-03-12 Reuben Thomas <rrt@sc3d.org>
Run Lua with empty LUA_INIT, to avoid picking up user settings.
2010-03-10 Mateusz Loskot <mateusz@loskot.net>
AX_LIB_LIBKML: Detect Google's libkml library <http://code.google.com/p/libkml/>.
Initial version. See <https://savannah.gnu.org/patch/?7109> for further details.
2010-03-04 Peter Johansson <trojkan@gmail.com>
AX_CHECK_ZLIB: fix bogus result message
When calling configure without any --with-zlib or --without-zlib, the
configure output was
checking if zlib is wanted... checking for inflateEnd in -lz... yes
checking zlib.h usability... yes
checking zlib.h presence... yes
while I expected
checking if zlib is wanted... yes
checking for inflateEnd in -lz... yes
checking zlib.h usability... yes
checking zlib.h presence... yes
This patch fixes this.
2010-03-01 Peter Simons <simons@cryp.to>
ALL: update web site URL to http://www.gnu.org/software/autoconf-archive/MACRO-NAME.html
2010-02-23 Peter Simons <simons@cryp.to>
Dropped e-mail address obscuration from the following macros, because the invalid syntax breaks the texi2html generator:
m4/ax_c_arithmetic_rshift.m4
m4/ax_c_referenceable_passed_va_list.m4
m4/ax_prog_fasm.m4
m4/ax_prog_fasm_opt.m4
m4/ax_prog_hla.m4
m4/ax_prog_hla_opt.m4
m4/ax_prog_masm.m4
m4/ax_prog_masm_opt.m4
m4/ax_prog_nasm.m4
m4/ax_prog_nasm_opt.m4
m4/ax_prog_tasm.m4
m4/ax_prog_tasm_opt.m4
m4/ax_prog_yasm.m4
m4/ax_prog_yasm_opt.m4
m4/ax_sys_perlsharpbang.m4
2010-02-19 Peter Simons <simons@cryp.to>
AX_*_JAVA_*: fixed use of $EXEEXT
Further details can be found at <http://savannah.nongnu.org/patch/?6948>.
2010-02-15 Thomas Treichl <Thomas.Treichl@gmx.net>
AX_PTHREAD: provide "-pthreads" on 10.6 OS X systems
See <http://savannah.nongnu.org/patch/?7071> for further details.
2010-02-13 Dustin J. Mitchell <dustin@zmanda.com>
AX_MPIP: add new macro
See https://savannah.nongnu.org/patch/?7092 for further details.
2010-02-08 Francesco Salvestrini <salvestrini@gmail.com>
Replaced obsolete AC_HELP_STRING with AS_HELP_STRING
2010-02-02 Guido U. Draheim <guidod@gmx.de>
AX_SYS_LARGEFILE_SENSITIVE: on x64 targets some largefile tests aren't made -> provide defaults
2010-01-25 Peter Simons <simons@cryp.to>
Assigned all macros a unique serial number.
The serial number corresponds to the number of commits that have
modified the macro in the Archive's Git repository. Refer to
http://www.gnu.org/software/libtool//manual/automake/Serials.html to
find out why these numbers are useful.
2010-01-12 Filippo Giunchedi <filippo@esaurito.net>
AX_RESTORE_FLAGS, AX_SAVE_FLAGS: initial versions
Shamelessly copied from the great VLC.
2010-01-05 Peter Simons <simons@cryp.to>
Augmented the text of the all-permissive license by an express warranty disclaimer.
This has been suggested by the FSF on http://www.gnu.org/prep/maintain/html_node/License-Notices-for-Other-Files.html.
AX_PTHREAD: minor changes to the AC_TRY_LINK command so that the code compiles when -Wall and -Werror are set
AX_CXX_VERBOSE_TERMINATE_HANDLER: replaced by a more generic implementation that's not limited to GNU libstdc++
Submitted by Kevin Locke in <https://savannah.nongnu.org/patch/?7005>.
2010-01-01 Mike Frysinger <vapier@gentoo.org>
AX_BOOST_BASE: fix host boost search when cross-compiling
The AX_BOOST_BASE macro likes to do searches in the host paths (/usr and
such) which is obviously incorrect for cross-compiling. So disable these
fallback searches when cross-compiling.
2009-12-28 Peter Simons <simons@cryp.to>
AX_BOOST_BASE: add ACTION-IF-FOUND/ACTION-IF-NOT-FOUND-style API
Changes on 2009-12-02 by Peter Adolphs:
- fixed broken indentation (tabs/spaces)
- added ACTION-IF-FOUND and ACTION-IF-NOT-FOUND
- notice instead of error when boost was not found
- changed help message
Changes on 2009-11-28 by Tim Niemueller:
- fixed problem with lib dir for 64Bit systems
2009-12-27 Peter Simons <simons@cryp.to>
AX_PATH_BDB: spell Rafal Rzepecki's name correctly
More details can be found in e000442ec25f72576b75ea32e342fb1e503a944e.
AX_C_PRINTF_THSEP: deprecated because of technical flaws
See http://savannah.nongnu.org/patch/?6848 for further details.
2009-12-25 Neil Mayhew <neil_mayhew@users.sourceforge.net>
AX_CHECK_ICU: added support for icu-specific CPPFLAGS
This macro uses the icu-config utility which treats CPPFLAGS separately
from CFLAGS and CXXFLAGS. Clients should be able to obtain the value of
CPPFLAGS, which is not currently possible. This patch fixes that.
Note that this behavior is slightly different from PKG_CHECK_MODULES,
since the underlying pkg-config doesn't distinguish between CFLAGS and
CPPFLAGS. Using CFLAGS instead of CPPFLAGS with icu-config leads to
problems, such as header files not found, and compilation errors since
icu has its own slightly quirky ideas about what kind of strict warnings
should be used, even though these are not required for using the ICU
headers.
Clients should typically use ICU_CPPFLAGS rather than ICU_CFLAGS or
ICU_CXXFLAGS if they just want to be able to find headers.
2009-12-25 Peter Simons <simons@cryp.to>
AX_C_IFDEF: deprecated in favor of the standard Autoconf macro AC_CHECK_DECL
2009-12-23 Peter Simons <simons@cryp.to>
Consistently indent quoted paragraphs with two blanks.
Replaced all tab characters in macro header sections with an appropriate number of blanks.
2009-12-17 Peter Simons <simons@cryp.to>
AX_CXX_HELPFUL_TERMINATE_HANDLER: initial version
Submitted by Kevin Locke in <https://savannah.nongnu.org/patch/index.php?7005>:
| As a compliment (or possibly replacement) to the current
| AX_CXX_VERBOSE_TERMINATE_HANDLER macro, I present the
| AX_CXX_HELPFUL_TERMINATE_HANDLER macro. Rather than specifically looking for
| the GNU libstdc++ verbose_terminate_handler, this macro uses a test program
| which throws an uncaught exception then checks if the output contains
| information about the exception. This way it can detect helpful terminate
| handlers other than the current one provided with GNU libstdc++.
|
| The design of this macro is not perfect. Most importantly, the logic for
| capturing and testing the output of the test program is not very elegant. I
| had first attempted to check for output from within the test program (by
| redirecting std::cerr, capturing SIGABRT, etc.) but it was excessively ugly
| and not very portable. The result is that the logic in the macro itself is a
| little more awkward so that the test program is trivial. I think it was a
| good trade, but feedback is welcome.
2009-12-17 Dustin J. Mitchell <dustin@zmanda.com>
rename occurrences of AC_PROG_SWIG to AX_PKG_SWIG
2009-12-16 Peter Simons <simons@cryp.to>
ax_pkg_swig.m4: cosmetic changes
2009-12-16 Matthew William Cox <matt@mattcox.ca>
modernize the name of cache variables in ax_ext
The name space structure for cache variables should now contain _cv_.
I've left them in the AX name space, so the cache variables used by
ax_ext are now named ax_cv_...
2009-10-25 Alan Jenkins <alan-jenkins@tuffmail.co.uk>
ax_enable_builddir: improve quality of generated top-level Makefile
The top-level Makefile is generated by mangling rules, "a: b". We
already avoid mangling "a := b". But we should also exclude "a = :".
Apparently this was causing unbalanced parenthesis errors on some
systems.
Reported-by: Mike Frysinger <vapier@gentoo.org>
2009-10-08 Dustin J. Mitchell <dustin@zmanda.com>
Rename AC_PROG_SWIG to AX_PKG_SWIG, set SWIG='' when not found, and add action-if-[not-]found options
2009-10-05 Reuben Thomas <rrt@sc3d.org>
Fix incorrect setting of ax_cv_curses when curses was not found.
2009-10-04 Reuben Thomas <rrt@sc3d.org>
Merge branch 'master' of git://git.sv.gnu.org/autoconf-archive
Remove --with-lua-{includes,libraries} as the GNU Coding Standards say CPPFLAGS and LDFLAGS should be used for this sort of thing.
2009-09-21 Peter Simons <simons@cryp.to>
AX_LATEX_*: Deprecated because of licensing issues.
AX_CFLAGS_FORCE_C89: cosmetic, no functional change
AX_GCC_LIBRARIES_DIR: cosmetic, no functional change
2009-09-21 Reuben Thomas <rrt@sc3d.org>
Merge branch 'master' of git://git.sv.gnu.org/autoconf-archive
Add AX_CFLAGS_FORCE_C89.
2009-09-19 Francesco Salvestrini <salvestrini@gmail.com>
Merge branch 'master' of ssh://salvestrini@git.sv.gnu.org/srv/git/autoconf-archive
2009-09-19 Peter Simons <simons@cryp.to>
AX_PROG_PERL_MODULES: cosmetic in the documentation, no functional changes
2009-09-18 Peter Simons <simons@cryp.to>
Fixed trivial typos.
AX_CHECK_ALLOCATED_CTIME: don't cast char* to void* when calling free(2)
The cast is redundant and gnulib complains about it, too.
AX_AM_MACROS_STATIC: drop trailing whitespace
2009-09-18 Francesco Salvestrini <salvestrini@gmail.com>
Fixed AX_GCC_INSTALL_DIR
Fixed AX_GCC_LIBSUPCXX
Introduced AX_GCC_LIBRARIES_DIR
2009-08-24 Peter Simons <simons@cryp.to>
AX_LATEX_*: marked obsolete because of issues with LGPL license
The AX_LATEX_* family of macros is distributed under the LPGL license.
Use of that license is discouraged for Autoconf macros, because it might
impose licensing restrictions on the generated configure script. All
other macros in the Archive that are licensed under LGPL or GPL feature
an explicit Autoconf Exception that lifts those limitations, but the
LaTeX macros did not. Unfortunately, all attempts to contact the author
with a request to remedy the situation have been been unsuccessful.
Dropped obsolete macros from the repository.
These macros have been replaced by newer versions and are no longer required.
Where applicable, the newer versions feature an AU_ALIAS() forwarder that
redirects invocations of the obsolete macro to the current one.
2009-08-20 Peter Johansson <peterandrejohansson@gmail.com>
AX_AM_MACROS_STATIC: include date stamp in the generated file
2009-08-13 Reuben Thomas <rrt@sc3d.org>
Add AU_ALIAS calls to new files for all recently renamed macros.
2009-08-12 Peter Simons <simons@cryp.to>
AX_FUNC_WHICH_GETSERVBYNAME_R: cosmetic, no functional change
2009-08-12 Bogdan Drozdowski <bogdandr # op . pl>
Improved portability.
Re-released these macros under LGPL with an Autoconf exception.
2009-08-11 Peter Simons <simons@cryp.to>
Revert "Add AU_ALIAS calls to obsolete macros."
Commit b456074a0da5f319a512c043e6c5102e078923f4 adds AU_ALIAS calls that
forward from the obsolete macro names to the new ones. However, at this point
it's uncertain whether that usage of AU_ALIAS actually works as intended. In
order to avoid breaking things until the issue has been clarified, the change
is reverted.
2009-08-11 Reuben Thomas <rrt@sc3d.org>
Add AU_ALIAS calls to obsolete macros.
2009-08-10 Peter Simons <simons@cryp.to>
AX_PATH_GENERIC: fixed credits to Angus Lee
2009-08-10 Reuben Thomas <rrt@sc3d.org>
More renamings missed previously.
2009-08-08 Francesco Salvestrini <salvestrini@gmail.com>
AX_WITH_PROG: Fixed excessive quoting accidentally introduced earlier
2009-08-07 Peter Simons <simons@cryp.to>
AX_PROG_PERL_MODULES: add the ability to check for minimum required version
See https://savannah.nongnu.org/patch/?6889 for further details.
Ensure that all LaTeX macros use AX_LATEX_TEST instead of the obsolete _ACLTX_TEST.
_AC_C_IFDEF: rename to AX_C_IFDEF
Center the URL at the top of every file and use consistent word-wrapping.
Dropped renamed versions of those macros that were obsolete to begin with.
The macros AC_CHECK_CURL, AC_CHECK_TAGLIB, AC_COMPILE_WARNINGS,
AC_PROMPT_USER, AC_PROMPT_USER_NO_DEFINE, and VL_PROG_CC_WARNINGS were
obsolete and are about to be deleted. There seems to be no point in
creating renamed, obsolete copies of those macros with an AX_ prefix.
2009-08-07 Reuben Thomas <rrt@sc3d.org>
Merge branch 'master' of git://git.sv.gnu.org/autoconf-archive
Rename macros with no prefix to have an AX_ prefix.
Rename files to match macro names.
Also rename AC_C_COMPILE_VALUE to AX_C_COMPILE_VALUE.
Fix some ax_ to AX_.
Rename SMR_WITH_BUILD_PATH to AX_WITH_BUILD_PATH.
Rename SG_AFS to AX_AFS.
Rename RSSH_* prefixes to AX_* prefixes.
Rename RLC_XERXESC to AX_XERCESC.
Rename MS_* prefixes to AX_* prefixes.
Rename MERK_SIP_DEVEL to AX_SIP_DEVEL.
Also add a FIXME to use AX_COMPARE_VERSION rather than perl.
Rename MDL_* prefixes to AX_* prefixes.
2009-08-06 Reuben Thomas <rrt@sc3d.org>
Rename KLM_SYS_WEAK_ALIAS to AX_SYS_WEAK_ALIAS.
Rename IMMDX_LIB_METIS to AX_LIB_METIS.
2009-08-06 Peter Simons <simons@cryp.to>
VL_*: removed duplicate OBSOLETE MACRO section accidentally introduced earlier
2009-08-06 Reuben Thomas <rrt@sc3d.org>
Rename gl_TRILINOS_ABSOLUTE_HEADER to AX_ABSOLUTE_HEADER.
Rename CT_CHECK_POSTGRES_DB to AX_CHECK_POSTGRES_DB.
Rename BNV_HAVE_QT to AX_HAVE_QT.
Remove inline old revision history.
Rename MNI_CXX_HAVE_KOENIG_LOOKUP to AX_CXX_HAVE_KOENIG_LOOKUP.
Rename file to match macro name.
Rename MP_WITH_CURSES to AX_WITH_CURSES.
Rename AC_ prefixes to AX_ (only in names of aa macros!).
Rename AZ_PYTHON_* to AX_PYTHON_*.
Since there is already an ax_python.m4, use the name
az_python_embed.m4, since the macros are aimed at embedding python.
Punctuate "Mac OS X" with spaces.
Add python2.6 to list of binaries looked for.
Fix 'Renamed to' lines' case of macro names.
Rename AM_ prefixes (those of aa macros only!) to AX_.
Rename ACLTX_ prefixes to AX_LATEX_ prefixes.
Rename ACX_ prefixes to AX_ prefixes.
Rename AG_ prefixes to AX_ prefixes.
Change remaining dps_ and etr_ prefixes to ax_.
Rename ADL_* prefixes to AX_ prefixes.
Rename more occurrences of vl_* to ax_*.
Rename DPS_ prefixed macros to AX_ prefixed macros.
Note: dps_check_plugin.m4 becomes ax_check_java_plugin.m4 to match the
name of the macro.
Rename ETR_ prefixed macros to AX_ prefixed macros.
Remove references to obsoleted macros.
Rename VL_* macros to AX_* macros.
2009-08-04 Peter Simons <simons@cryp.to>
AX_PATH_GENERIC: use consistent word-wrapping
AX_LIB_TAGLIB: use consistent word-wrapping
AX_LIB_ORBIT2: use consistent word-wrapping
AX_LIB_CURL: use consistent word-wrapping
AC_PROMPT_USER_NO_DEFINE: use consistent word-wrapping
AC_PROMPT_USER: use consistent word-wrapping
AC_PATH_GENERIC: use consistent word-wrapping
RSSH_CHECK_OFF64_T: re-released under all-permissive license
In <42fca37f5f6a9deb6fa1d0867359d629.squirrel@wmail.gradsoft.ua>, Ruslan kindly
agreed to distribute his macro under the all-permissive license.
2009-08-03 Peter Simons <simons@cryp.to>
Obsoleted AC_COMPILE_WARNINGS, AX_CFLAGS_WARN_ALL_ANSI, and VL_PROG_CC_WARNINGS.
The functionality provided by these macros overlaps with AX_CFLAGS_WARN_ALL.
See <f92540e30908010651s6ff80471v1b0f43064183aa50@mail.gmail.com> on the
autoconf-archive-maintainers mailing list for further details.
2009-08-03 Dustin J. Mitchell <dustin@zmanda.com>
Merge branch 'master' of git://git.sv.gnu.org/autoconf-archive
2009-08-01 Reuben Thomas <rrt@sc3d.org>
AX_MAINTAINER_MODE_AUTO_SILENT: fixed a few small typos in the documentation
2009-08-01 Francesco Salvestrini <salvestrini@gmail.com>
give credit to the authors of the macros that inspired these improved versions
AC_PATH_GENERIC: work around for 1-dot problem
2009-07-31 Peter Simons <simons@cryp.to>
AC_CHECK_CURL: marked obsolete
AC_CHECK_TAGLIB: marked obsolete
CHECK_SSL: marked obsolete
AC_PATH_GENERIC: marked obsolete
2009-07-31 Francesco Salvestrini <salvestrini@gmail.com>
New ORBit2 related macro (using AX_PATH_GENERIC)
Renewed version of AC_CHECK_TAGLIB (using AX_PATH_GENERIC)
Renewed version of AC_CHECK_CURL (using AX_PATH_GENERIC)
Rearranged AC_PATH_GENERIC in order to use AX_COMPARE_VERSION
2009-07-30 Reuben Thomas <rrt@sc3d.org>
AX_WITH_PROG: fixed handling of '--without-foo' arguments
Submitted in <https://savannah.nongnu.org/patch/?6876>.
2009-07-27 Peter Simons <simons@cryp.to>
AC_CXX_HAVE_STD: removed stray '}' character in comments
AX_HAVE_EPOLL: fixed minor typo in comments
AC_LIBTOOLIZE_CFLAGS: avoid use of non-ascii characters in comments
AC_FUNC_SNPRINTF: avoid use of non-ascii characters in comments
AC_FUNC_MEMMOVE: avoid use of non-ascii characters in comments
AC_CXX_LDFLAGS_STD_LANG: avoid use of non-ascii characters in comments
AC_CXX_CXXFLAGS_STD_LANG: avoid use of non-ascii characters in comments
AC_CXX_CPPFLAGS_STD_LANG: avoid use of non-ascii characters in comments
AC_CXX_COMPILER_VENDOR: avoid use of non-ascii characters in comments
_AC_C_IFDEF: avoid use of non-ascii characters in comments
2009-07-22 Peter Simons <simons@cryp.to>
AX_SPLIT_VERSION: fixed minor two typos in the documentation
Thanks to Reuben Thomas for pointing those out.
2009-07-21 Reuben Thomas <rrt@sc3d.org>
MP_WITH_CURSES: allows the user to set CURSES_LIB in the environment
This patch also fixes a code typo, where LIBS was used instead of
mp_save_LIBS in the last test.
MP_WITH_CURSES: fixed typo in the documentation
2009-07-21 Guido U. Draheim <guidod@gmx.de>
AX_CFLAGS_NO_WRITABLE_STRINGS: bugfix
Imported from ac-archive.cvs.sourceforge.net.
2009-07-20 Peter Simons <simons@cryp.to>
AC_PATH_GENERIC: cosmetic markup fixes
The synopsis must be written in one line (or the HTML generator will fail).
2009-07-18 Dustin J. Mitchell <dustin@zmanda.com>
update copyright years
remove Amanda-specific reference to $LOCSYSPATH
2009-07-17 Filippo Giunchedi <filippo@esaurito.net>
AX_RUBY_DEVEL: use proper variable for error
2009-06-23 Bert Wesarg <bert.wesarg@googlemail.com>
ac_path_generic.m4: make LIBRARY-config, --cflags, and --libs customizable
ac_path_generic.m4: add AC_ARG_VAR()s
Add AC_ARG_VAR() for _CONFIG, _CFLAGS, and _LIBS.
ac_path_generic.m4: use AS_HELP_STRING() in AC_ARG_WITH()
Quoting looks strange but result is correct.
2009-06-22 Diab Jerius <dj@head.cfa.harvard.edu>
VL_LIB_READLINE: set LIBS correctly in case of a cache hit
The macro didn't set LIBS appropriately if there is a cache hit. It only
sets it if there is a cache miss.
I've modified the code to set LIBS in the stanza which checks to see if
$vl_cv_lib_readline has been set. This required resetting LIBS in the
AC_CACHE_CHECK "COMMANDS-TO-SET-IT" argument so that the appropriate
libs wouldn't be included twice if there was a cache miss.
2009-06-16 Dustin J. Mitchell <dustin@zmanda.com>
AX_CHECK_OPENSSL: initial submission
See https://savannah.nongnu.org/patch/?6849 for details.
2009-06-10 Peter Johansson <trojkan@gmail.com>
AX_COMPARE_VERSION: use AC_REQUIRE to declare dependency on AC_PROG_AWK
2009-06-10 Peter Simons <simons@cryp.to>
AC_PYTHON_DEVEL: avoid wiping the user settings of $CPPFLAGS and $LIBS
Submitted by aoz.syn@gmail.com in <http://savannah.nongnu.org/patch/?6847>.
2009-06-04 Krzysztof Burghardt <krzysztof@burghardt.pl>
AX_LIB_NOKALVA: check for the existence of OSS Nokalva
http://savannah.nongnu.org/patch/?6842
2009-06-04 Peter Simons <simons@cryp.to>
MP_WITH_CURSES: use standard word-wrapping boundaries
AX_DIST_RPM: use standard word-wrapping boundaries
2009-04-30 Bill Blough <bblough@gmail.com>
AX_LIB_XALAN: initial version
Detect the Apache Xalan C++ XSLT processor. This is a derivative work based on
AX_LIB_XERCES by Mateusz Loskot.
2009-04-30 Reuben Thomas <rrt@sc3d.org>
MP_WITH_CURSES: add support for ncursesw
http://savannah.nongnu.org/patch/?6819
2009-04-29 Guido U. Draheim <guidod@gmx.de>
AX_CREATE_PKGCONFIG_INFO: add support for datarootdir
Imported from ac-archive.cvs.sourceforge.net.
2009-04-28 Allan Caffee <allan.caffee@gmail.com>
AX_DIST_RPM: Do not break VPATH builds
AX_DIST_RPM was breaking VPATH builds since it was expecting the spec
template to be in the build directory during configure time. Obviously
this breaks distcheck which checks, among other things, VPATH builds.
AX_DIST_RPM: Do not hard code the spec template
The spec template was hard coded in and the macro was ignoring the
template given by the caller.
AX_DIST_RPM: Remove use of @NAME@ and @VER@.
It appears that at one point the previously values were being
substituted in at make time but this is no longer the case. Modify the
example to use the @PACKAGE@ and @VERSION@ variables instead.
AX_DIST_RPM: Update the example spec file in comment.
The example should use the `License' tag rather than the legacy `Copyright'
tag.
2009-04-28 Peter Simons <simons@cryp.to>
all: macro home pages now reside on savannah (but old links still work)
2009-04-27 Peter Simons <simons@cryp.to>
AC_LIB_ID3, AC_LIB_UPNP: release under all-permissive license
Commit 9da70c52df7bf9fa78d8a27465fa6be4b75e586a should have done that
over a years ago, but apparently something went wrong.
2009-04-26 Peter Simons <simons@cryp.to>
ALL: consistency edits (see NEWS)
* Consistently refer to this project as Autoconf Archive.
* Removed the LAST MODIFICATION section, because that information is redundant
in the presence of Git.
* COPYLEFT has been renamed to LICENSE: some licenses, like all-permissive,
are no copylefts.
Dropped obsolete macros.
These macros were marked as obsolete for quite a while and are now
subsequently deleted. This means that the generated distribution archive
longer contains them either. The respective homepage and download URLs
on the web server, however, will remain valid for the foreseeable
future.
2009-04-24 Peter Simons <simons@cryp.to>
Bump last-modified dates.
2009-04-24 Matteo Settenvini <matteo@member.fsf.org>
AC_PYTHON_DEVEL: added support for python 3
2009-04-24 Allan Caffee <allan.caffee@gmail.com>
AX_INSTALL_FILES: fix an improperly escaped double quote
A bug in quotation was causing AX_INSTALL_FILES and dependent macros to
break. This regression was introduced in 9c650e.
2009-04-23 Peter Simons <simons@cryp.to>
AUTHORS: Updated author list and copyright headers.
2009-04-23 Mike Frysinger <vapier@gentoo.org>
AX_CHECK_LINKER_FLAGS: new func based on AX_CHECK_COMPILER_FLAGS
AX_CHECK_COMPILER_FLAGS: quote flag name with []
If a flag contains a comma in it, then it will not be properly passed to
the AS_TR_SH function. The $1 needs to be quoted as [$1] to fix this.
2009-04-20 Gabriele Bartolini <gabriele.bartolini@devise.it>
AX_PROG_MD5SUM: released under all-permissive license
2009-04-20 Peter Simons <simons@cryp.to>
Synchronize last-modified-date with GIT repository.
The last-modified-date of these macros didn't match their respective
last-modified-date in the GIT repository. A version bump remedies this
inconsistency. In hindsight, these dates should have bumped when the
distribution format changed; all macros had to be touched at this point
anyway.
consistency edits
Cosmetic edits to update copyright headers and word-wrap documentation.
2009-04-20 Allan Caffee <allan.caffee@gmail.com>
AX_CVS,AX_DIST_MSI: Rewritten to use AX_ADD_AM_MACRO_STATIC.
These changes have not been tested very well since I don't have the software
setup to use either one. It's also worth mentioning that AX_DIST_MSI appears
to use GNU Make syntax which will cause Automake to complain unless portability
warnings are disabled.
Please feel free to modify this patch and commit message as necessary.
AX_DIST_RPM (and dependent macros) Modified to use AX_ADD_AM_MACRO_STATIC.
The macros AX_UPLOAD, AX_INSTALL_FILES, and AX_EXTRA_DIST which are often used
in conjunction with AX_DIST_RPM were also updated to use
AX_ADD_AM_MACRO_STATIC.
Thanks go to Ralf Wildenhues for the idea of adding local cleanup and
distribution targets as prerequisites the *-local/*-hook targets.
AX_ADD_AM_MACRO_STATIC: Added a new macro and helpers.
This new macro adds some text to the file aminclude_static.am when *Autoconf*
is run. The current macro AX_ADD_AM_MACRO writes text to the file
`aminclude.am' when _configure_ is run. Unfortunately this means that a) the
existing macro append Make code rather than Automake code as the name would
imply and b) only works for implementations of Make which allow includes, BSD
Make and GNU Make are the only ones that come to mind.
Hopefully this new macro will eventually replace the existing one altogether
because it allows Automake to do the actual work thereby offering more portable
Makefiles and pushing logic out of configure conditionals and into
AM_CONDITIONALs. However, in an attempt to avoid breaking existing Autoconf
scripts those macros have been left unchanged for the time being.
2009-04-20 Gabriele Bartolini <gabriele.bartolini@devise.it>
AX_PROG_MD5SUM: initial version
2009-04-19 Peter Simons <simons@cryp.to>
AUTHORS: updated after recent changes to AX_ENABLE_BUILDDIR
2009-04-19 Alan Jenkins <alan-jenkins@tuffmail.co.uk>
AX_ENABLE_BUILDDIR: Add support for "dist-bzip2" target and friends
We already get a special toplevel Makefile rule for "dist", which
copies the tarball from the build directory to the source directory.
Many projects publish tarballs compressed using Bzip2 to save a bit
more bandwidth. Automake provides a "dist-bzip2" rule for this
purpose, and many others for different compression methods.
Unfortunately the rules don't all match the file extensions (dist-bzip
makes .bz2). So for dist-foo rules, just copy *all* the tarballs.
Ugly, but useful.
AX_ENABLE_BUILDDIR: Fix "make distclean" toplevel Makefile target
$ ./configure; make
...
MAKE i686-pc-linux-gnu : 0 * distclean
make[1]: Entering directory `/home/alan/bootup/src/module-init-tools/build'
rm -f doc/*.tmp manpage.refs manpage.links
make[1]: Leaving directory `/home/alan/bootup/src/module-init-tools/build'
MAKE i686-pc-linux-gnu : 0 * distclean (all local builds)
# rm -r .
# (sleep 3)
rm -r .
rm: cannot remove directory `.'
The problem is the method used to determine which builddirs are local,
and therefore should removed by "make distclean". It relies on them
starting with "./", but they don't :-). Instead, we can assume that
non-local directories will start with "/" or "../".
AX_ENABLE_BUILDDIR: Prevent multiple dist-all targets in top-level Makefile
$ ./configure; make
...
Makefile:852: target `dist-all' given more than once in the same rule.
The macro generates additional X-all targets, meaning "make target X in
all build directories". My source Makefile includes a rule like this:
dist dist-all: ...
It gets converted to
dist dist-all dist-all:
When what we really want is this
dist dist-all:
AX_ENABLE_BUILDDIR: Fix ":=" assignments in top-level generated Makefile
The sed script which generates the top-level Makefile from the Makefile
in the build directory is flawed. It treats an assignment of the form
"TESTSUITE := ..." as a makefile rule - because it contains ":".
$ make
...
MAKE : 1 * TESTSUITE
make[1]: Entering directory `/home/alan/bootup/src/module-init-tools/build'
make[1]: *** No rule to make target `TESTSUITE'. Stop.
Fix the sed script to skip the rule-related commands for lines which
contain ":=". As a cleanup, we can also skip the rule-related commands
for lines which do not contain ":". That simplifies those commands,
because they don't need to test for ":" themselves.
AX_ENABLE_BUILDDIR: Fix builds configured from a subdirectory
I would like to be able to bypass ENABLE_BUILDDIR and configure a
subdirectory myself, without generating a toplevel Makefile.
(This is for an unusual automated testsuite which tests behaviour
with different configure options, and compiles with -DJUST_TESTING
to build a testable version of the program).
$ mkdir build; cd build; ../configure
...
config.status: executing buildir commands
config.status: create top_srcdir/Makefile guessed from local Makefile
config.status: build in yes (HOST=)
...
$ cd ..; make
MAKE i686-pc-linux-gnu : 0 * all-all
/bin/bash: line 9: cd: yes: No such file or directory
make: *** [all-all] Error 1
Also:
./configure --disable-builddir
...
config.status: executing buildir commands
config.status: keeping top_srcdir/Makefile from earlier configure
...
Which should really be:
config.status: executing buildir commands
config.status: leaving top_srcdir/Makefile untouched
AX_ENABLE_BUILDDIR: Fix path for config.guess
Using this macro, I get a warning that config.guess can't be found.
It doesn't cause a problem for me because I'm not cross-compiling
for multiple hosts, but it is annoying.
$ ./configure
...
$ make
sh: Can't open ../config.guess
...
Reason: ".." is "$AUX".
The top-level makefile is generated *after* the configure script reruns
itself in the build directory. At that point, AUX is equal to "..".
Solution: use AM_AUX_DIR_EXPAND to generate an absolute version of
ac_aux_dir.
2009-04-19 Toni Corvera <outlyer@gmail.com>
AX_BOOST_{THREAD,PROGRAM_OPTIONS}: replace non-portable shell constructs
The mentioned files contain a non-portable shell construct, brace expansion
(e.g. dash and FreeBSD's sh don't support it). I guess the other ax_boost_<lib>
macro files contain similar stuff but I'm not using any other boost libs so I'd
rather not mess with them.
2009-04-19 Michael McMaster <email@michaelmcmaster.name>
AX_C99_INLINE: initial version
The macro determines whether the "inline" keyword of a C99 compiler is
standards compliant or not. I am using this macro support differences
between gcc 4.2 (and earlier) and gcc 4.3 (and later) when using the
"-std= c99" option. It may also be useful for other compilers. (For
details of the differences between the compiler versions refer to
http:// gcc.gnu.org/gcc-4.3/porting_to.html "Sematic change of extern
inline")
Example configure.ac:
AC_INIT([foo], [0.1])
AM_INIT_AUTOMAKE
AC_PROG_CC
AC_PROG_CC_C99
if test "$ac_cv_prog_cc_c99" == "no"; then
AC_MSG_ERROR([A C99 compiler is required.])
fi
AX_C99_INLINE
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_FILES([Makefile])
AC_OUTPUT
Example source file foo.h:
#ifdef HAVE_C99_INLINE
inline int myFunction(int a) { return a + 1; }
#else
static inline int myFunction(int a) { return a + 1; }
#endif
Example source foo.c:
extern inline int myFunction(int a);
2009-04-19 Reuben Thomas <rrt@sc3d.org>
LUA: minor updates
2009-04-19 Andreas Saebjoernsen <andreas.saebjoernsen@gmail.com>
AX_BOOST: added support for Wave
Updated macros due to link dependencies required in AC_CHECK_LIB.
AX_BOOST_FILESYSTEM requires the BOOST_SYSTEM library while
AX_BOOST_WAVE requires BOOST_THREAD_LIBRARY to link.
2009-04-19 Francesco Salvestrini <salvestrini@users.sourceforge.net>
Improved documentation.
AX_PROG_BISON, AX_PROG_FLEX: bugfixes
2009-04-19 Bogdan <bogdandr@op.pl>
AC_PROTOTYPE: added proper call to AC_SUBST()
This patch updates the AC_PROTOTYPE_DEFINES() function to call
AC_SUBST() to substitute the correct values in the configure-generated
files. This is required if you want to distribute a public header file
that depends on some target system property.
2009-04-19 Francesco Salvestrini <salvestrini@users.sourceforge.net>
AX_GCC_VERSION: bugfix
2009-04-19 Peter Simons <simons@cryp.to>
AX_F90_*: update copyright lines
2009-04-19 Luc Maisonobe <luc@spaceroots.org>
AX_F90_*: fix cached variable warnings
Autoconf 2.63 generates warnings when cached variable names have no _cv_
in them.
2009-04-19 Mats Kindahl <mats@sun.com>
AX_PERL_EXT_FLAGS: embedding Perl into a project using Autotools
2009-04-19 Joshua Judson Rosen <jrosen@ll.mit.edu>
AX_PROG_DOXYGEN: bugfix
A collegue of mine recently ran into a problem: some "[]" syntax appear
to be leaking through when autoconf generated ./configure. Actually, it
was that a string was over-quoted and was thus not being expanded when
it should have. In some circumstances, it looks like the bug is `mostly
silent' (save for some bogus output in config.log), but we have seen
autoconf fail as a result of the "[]" being taken as an (invalid)
regexp.
2009-04-05 Reuben Thomas <rrt@sc3d.org>
lua.m4: initial version
2009-04-05 Francesco Salvestrini <salvestrini@users.sourceforge.net>
AX_PROG_PERL_VERSION, AX_PROG_PYTHON_VERSION: improved documentation
2008-11-07 Sebastian Waschik <sebastian.waschik@gmx.de>
AC_CXX_HAVE_VECTOR_AT: bugfix
Compilation of the test program failed even if the feature is available.
2008-11-07 Rhys Ulerich <rhys.ulerich@gmail.com>
Updated AX_TRILINOS macros.
2008-10-08 Peter Simons <simons@cryp.to>
AX_CHECK_GL: updated to latest versions from Braden McDaniel
2008-08-25 Dennis Felsing <dennis@felsin9.DE>
MP_WITH_CURSES: fix recently introduced bug
2008-08-24 Fabien Coelho <autoconf.archive@coelho.net>
AX_LIB_NETTLE: Support for another cryptographic library, "nettle".
2008-08-19 Rhys Ulerich <rhys.ulerich@gmail.com>
AX_TRILINOS_*: Test for the Trilinos libraries.
AX_TRILINOS_AMESO, AX_TRILINOS_BASE, AX_TRILINOS_EPETRA, and
AX_TRILINOS_TEUCHOS are modeled after the boost library macros.
ACLTX_CLASS_CWEB: various improvements
2008-08-19 Fabien Coelho <fabien.coelho@ensmp.fr>
AC_LIB_*CRYPT*: renamed to ax_lib_*crypt*
Renamed the recently submitted AC_LIB_*CRYPT* macro to use an AX_LIB
prefix. Also, the AX_LIB_CRYPTO macro will now find the IDEA algorithm.
2008-08-06 Fabien COELHO <fabien@coelho.net>
AC_LIB_{BEECRYPT,CRYPTO,GCRYPT}: check for cryptographic libraries
These 3 macros check for cryptographic libraries and list their
available algorithms. It is quite basic, but it fits my needs.
2008-08-06 Rhys Ulerich <rhys.ulerich@gmail.com>
ACLTX_CLASS_CWEB: check the presence of the LaTeX cweb package
This is a one-off version of Boretti's excellent ACLTX_CLASS autoconf
macro. The macro checks for the presence of the LaTeX cweb package
(http://www.ctan.org/tex-archive/help/Catalogue/entries/cweb-latex.html).
The LaTeX cweb package requires some additional boilerplate that would
normally be generated by CWEB:
\input cwebmac
\documentclass{cweb}
\begin{document}
\M{1}
\end{document}
\fi
\fin
2008-07-25 Jaroslav Hajek <highegg@gmail.com>
ACX_LAPACK: fix typo
This patch for Steven Johnson's acx_lapack.m4 fixes a typo and adds a
missing statement. I believe that the BLAS_LIBS="" statement should be
there, so that if BLAS is not found, the rest of the test is skipped and
LAPACK_LIBS is nullified, which makes sense.
2008-06-18 Jaroslav Hajek <highegg@gmail.com>
ACX_BLAS_F77_FUNC: bug fixes
This patch corrects a few cosmetic bugs and adds also the missing checks
for REAL and INTEGER return values (I have recently seen a case when
only REALs were broken due to promoting them to double precision).
2008-06-02 Guido U. Draheim <guidod@gmx.de>
AX_CREATE_PKGCONFIG_INFO: fix misspelled variable name
2008-05-16 Julian Cummings <cummings@cacr.caltech.edu>
AC_COMPILE_CHECK_SIZEOF: bugfix
There was a typo regarding the optional EXTRA_SIZES argument.
2008-05-16 Francesco Salvestrini <salvestrini@users.sourceforge.net>
AX_GCC_INSTALL_DIR and AX_GCC_LIB*: one update and three new submissions
2008-05-07 Peter Simons <simons@cryp.to>
AX_HAVE_EPOLL: cosmetic improvement to error message
2008-05-05 Francesco Salvestrini <salvestrini@gmail.com>
AX_WITH_*: improvements to the documentation
2008-05-03 Peter Simons <simons@cryp.to>
AX_HAVE_EPOLL: bugfix
Don't print a warning when run an a non-Linux machine.
AX_CONFIG_FEATURE: bugfix
2008-05-02 Peter Simons <simons@cryp.to>
AX_HAVE_EPOLL: bugfix
Don't print a warning every time that macro is run on a non-Linux
machine.
AX_HAVE_ADNS: new submission
AX_HAVE_{EPOLL,POLL,SELECT}: new submissions
2008-05-02 Francesco Salvestrini <salvestrini@users.sourceforge.net>
AX_WITH_{GUILE,PERL,PROG,PYTHON,RUBY}: improved documentation
2008-04-28 Peter Simons <simons@cryp.to>
AC_SET_VERSIONLEVEL: obsolete macro
This macro appears to be broken. Any attempt to use, i.e.
AC_SET_VERSIONLEVEL([foo], [1.1.1])
results in an error message: "m4_popdef: undefined macro: foo_MICRO". If
someone knows how to fix this problem, please let me know.
AX_SET_VERSION_INFO: obsolete macro
To the best of my understanding, this macro is based on a misconception
about Libtool's -version-info flag.
Apparently, the macro invocation AX_SET_VERSION_INFO([2.4.18]) is
transformed into "-release 2" and "-version-info 4:18". However, those
two flags contradict each other. The -release option specifies a version
number in the sense that we all know and love, but -version-info does
not: that flag implements a fairly sophisticated scheme meant to express
binary interface compatibility which is supposed to *replace* -release
versions. Deriving settings for both of those flags from one number
doesn't make sense.
See "6.2 Libtool's versioning system" for further details.
2008-04-23 Francesco Salvestrini <salvestrini@gmail.com>
AX_GCC_INSTALL_DIR: updated to use new AX_GCC_OPTION
2008-04-17 Peter Simons <simons@cryp.to>
AC_CXX_*: added various macros for testing C++98 and C++TR1 compliance
Benjamin Kosnik kindly submitted his macro collection from libstdc++,
http://gcc.gnu.org/onlinedocs/libstdc++/manual/backwards.html#backwards.third
..., for inclusion in the archive.
2008-04-12 Peter Simons <simons@cryp.to>
ALL: updated m4 distribution format
The markup format distributed by the Autoconf Macro Archive underwent
the following changes:
* All archive entries use '#' comment delimiters, rather than 'dnl',
because we would like those comments to go into the generated
configure script. It should be simple for everyone to determine
where the macro came from originally, who wrote it, and where the
latest version can be retrieved. To achieve this, every macro used
to start with a distinguished line that shows the URL of its
respective home page, i.e.:
| ##### http://autoconf-archive.cryp.to/ax_prog_acme.html
As it happens, the aclocal utility distributed with Automake
ignores all comment lines that start with a double hash '##', thus
those home page URLs will not make it into any automatically
generated aclocal.m4 file. Duh. To remedy the situation, the
following markup is now used instead:
| # =================================================================
| # http://autoconf-archive.cryp.to/ax_prog_acme.html
| # =================================================================
* The 2.x versions of the GNU GPL and LGPL contain the following
clause:
| You should have received a copy of the <GNU LICENSE NAME> along
| with this program; if not, write to the Free Software Foundation,
| Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
Version 3.x, however, smartly refers the reader to the Web:
| You should have received a copy of the GNU General Public License
| along with this program. If not, see <http://www.gnu.org/licenses/>.
This patch changes all GPL2 and LGPL2 macros to do the same, i.e.
to refer to the GNU web site for the full text of the respective
license.
* Since all m4 files had to be changed in this commit anyway, the
opportunity was used to increase the auto-fill column for
documentation from 65 to 75 characters per line. It's a trivial
change, but it just looks nicer.
2008-03-31 Jaroslav Hajek <highegg@gmail.com>
ACX_BLAS_F77_FUNC, ACX_BLAS_WITH_F77_FUNC: initial submission
Both macros were tested on a machine with gfortran but
g77-compiled (system-supplied) BLAS and worked as expected.
2008-03-31 Steven G. Johnson <stevenj@alum.mit.edu>
ACX_BLAS: added recognition of Intel MKL and Apple vecLib library
2008-03-31 Francesco Salvestrini <salvestrini@users.sourceforge.net>
AX_GCC_VERSION, AX_GXX_VERSION: initial submission
2008-03-30 Sean Geoghegan <seangeo@gmail.com>
AX_LIB_SQLITE3: fixed a bug in the automatic directory detection
The auto-detected CPP flags and LD flags for sqlite3 were being
assigned to the wrong variables.
2008-03-30 Dilyan Palauzov <Dilyan.Palauzov@aegee.org>
BERKELEY_DB: silence autoheader 2.61 warning
2008-03-30 Thomas Porschberg <thomas@randspringer.de>
AX_BOOST_BASE: add support for --with-boost-libdir
This patch originated in the PDFedit project [1]. It adds the capability to
specify the library path explicitly using the `--with-boost-libdir=LIB_DIR'
flag. This is required, for example, on platforms that offer both 32 and 64
bit versions of the libraries, but in different directories.
[1] http://sourceforge.net/projects/pdfedit
2008-03-01 Francesco Salvestrini <salvestrini@users.sourceforge.net>
MP_WITH_CURSES: removed autoheader warnings
AX_PROG_FLEX: test whether AC_PROG_LEX found flex (initial version)
AX_PROG_BISON: test whether AC_PROG_YACC found bison (initial version)
2008-03-01 Mateusz Loskot <mateusz@loskot.net>
AX_LIB_XERCES: updated
2008-02-21 Francesco Salvestrini <salvestrini@gmail.com>
AX_PATH_MISSING: added missing 'unset' and improved documentation
2008-02-20 Peter Simons <simons@cryp.to>
AX_RUBY_DEVEL: Corrected spelling of the author's name.
It's Rafal Rzepecki, where the last 'l' really is an &lslash; from
ISO-8859-2. Unfortunately, that character cannot be used easily in m4
macros.
Note that this macro has been derived from AC_PYTHON_DEVEL, but does not
depend on it.
AX_LIB_XML_SECURITY: added link to project home page
2008-02-20 Alexander Petry <petry@itwm.fhg.de>
AX_LIB_XML_SECURITY: detect Apache Xml-Security C++ library (initial version)
This macro is based on Mateusz Loskot's AX_LIB_XERCES.
2008-02-20 Daniel Casimiro <dan.casimiro@gmail.com>
AX_BOOST_SYSTEM: detect Boost.System library (initial version)
2008-02-20 Francesco Salvestrini <salvestrini@gmail.com>
AX_PATH_MISSING: added missing dereferencing
2008-02-12 Rafa Rzepecki <divided.mind@gmail.com>
AX_RUBY_DEVEL: detect Ruby development environment (initial version)
2008-01-29 Francesco Salvestrini <salvestrini@users.sourceforge.net>
Re-released recent additions under an all-permissive license and added listed Dustin J. Mitchell as joint copyright holder of AX_WITH_PROG.
2008-01-29 Mateusz Loskot <mateusz@loskot.net>
AX_LIB_POSTGRESQL: bugfix
2008-01-28 Francesco Salvestrini <salvestrini@gmail.com>
Major re-factoring of Perl, Guile, Python, and Ruby detection macros.
The new submission AX_WITH_PROG generalizes the technique employed by the
original AX_WITH_PYTHON to allow for detecting generic executables. Based on
that macro, trivial wrappers are provided for finding installed versions of
Perl, Guile, Python, and Ruby.
NOTE: The earlier version of AX_WITH_PYTHON performed a version check. The
AX_WITH_PROG-based macros don't do that. Instead, separate macros are available
for Perl, Guile, Python, and Ruby that check the version of a given executable
in a second, independent step.
2008-01-28 Sven Verdoolaege <skimo@kotnet.org>
AX_CREATE_PKGCONFIG_INFO: updated e-mail address
2008-01-28 Peter Simons <simons@cryp.to>
AX_COMPARE_VERSION: cosmetic change
Removed the reference to AX_PATH_BDB from the documentation in order to
generate a neater cross-reference graph. The macro's HTML page refers to
that macro anyway.
2008-01-28 Duncan Simpson <dps@simpson.demon.co.uk>
DPS_LIBGCJ_JAR: find classpath built into gcj (initial version)
DPS_XTRA_CLASSPATH: detect classpath required to find a class in a jar file (initial version)
DPS_JAVA_CHECK_CLASS: test if a Java class is available (initial version)
DPS_CHECK_PLUGIN: find a compatible version of plugin.jar (initial version)
2008-01-28 Andy Kitchen <agimbleinthewabe@gmail.com>
AX_LLVM: detect LLVM (initial version)
2008-01-28 Francesco Salvestrini <salvestrini@gmail.com>
AX_COMPARE_VERSION: Added AC_PROG_AWK call and replaced use of awk with $AWK.
2008-01-10 Dustin J. Mitchell <dustin@zmanda.com>
AC_CHECK_DOCBOOK_XSLT(_MIN): minor updates
2007-12-18 Jean-Louis Martineau <martineau@zmanda.com>
AC_CHECK_DOCBOOK_DTD: minor portability fix
2007-12-06 Mateusz Loskot <mateusz@loskot.net>
AX_LIB_EXPAT: initial submission
2007-12-06 Francesco Salvestrini <salvestrini@users.sourceforge.net>
AX_MISSING_PROG: improved the documentation
2007-12-03 Francesco Salvestrini <salvestrini@users.sourceforge.net>
AX_MISSING_PROG, AX_PATH_MISSING: re-factored for improved modularity
Added a new macro AX_MISSING_PROG that wraps AM_MISSING_PROG (from
Automake) and modified AX_PATH_MISSING to wrap AX_MISSING_PROG. The
change is transparent for users of the previous version.
The names used in the macro-chain are confusing, but I didn't find a
better solution. Suggestions are welcome.
2007-12-03 Christophe Tournayre <turn3r@users.sourceforge.net>
AX_COUNT_CPUS: added MacOS X support
2007-11-30 Christophe Tournayre <turn3r@users.sourceforge.net>
AX_EXT: new submission to detect the supported SIMD extensions
AX_CPU_VENDOR: new submission to detect the cpu vendor
AX_CPU_FREQ: new submission to detect the cpu frequency
AX_CACHE_SIZE: new submission to detect L1 and L2 cache sizes
2007-11-30 Mateusz Loskot <mateusz@loskot.net>
AX_LIB_FIREBIRD: new submission to detect the Firebird client library
AX_LIB_ORACLE_OCI: various improvements
Users who update from an earlier version should be aware of the fact that the
result variable has been renamed from HAVE_ORACLE to HAVE_ORACLE_OCI.
2007-11-30 Francesco Salvestrini <salvestrini@users.sourceforge.net>
AX_{C,CPP,CXX,CXXPP,LD}_CHECK_FLAG: Check flags supported by the tool-chain.
The new submissions generalize the functionality provided by AX_GCC_OPTION.
2007-11-22 Pierre Hebert <pierrox@pierrox.net>
BNV_HAVE_QT: provide QT_LRELEASE and QT_LUPDATE variables
2007-11-22 Bogdan Drozdowski <bogdandr@op.pl>
AX_GCC_OPTION: improved portability by providing a dummy file to compile
2007-11-22 Thomas Porschberg <thomas@randspringer.de>
AX_BOOST_*: bug fixes for MinGW and FC
2007-11-22 Mateusz Loskot <mateusz@loskot.net>
AX_LIB_XERCES: initial version
2007-09-09 Peter Simons <simons@cryp.to>
New macros to test for various assemblers, like nasm, yasm, etc.
2007-08-21 Peter Simons <simons@cryp.to>
AX_ENABLE_BUILDDIR: Bump modification date to obsolete the reverted version.
AX_ENABLE_BUILDDIR: Revert renaming of variable HOST to BUILD.
Further discussion on the Autoconf mailing list has reached the
following consensus: although BUILD is the right choice in most
cases, in case of cross-compilation it is not. Cross-compilation
needs HOST to be set, so the original version of this macro is
the safer choice. This patch reverts commit
41da8f494cd209a9836ebeae8f211cb84dde9153.
An unpleasant property of HOST is that most shell environments
define that variable to the local hostname. When configure uses
$HOST as a default setting, however, that is not what it expects
to find -- HOST is supposed to be config.guess tripple. Thus, the
user is forced to specify HOST explicitly or to undefine $HOST in
the shell before calling configure. That's a bit of mess. Bright
ideas and patches are welcome.
2007-08-17 Julian Cummings <cummings@cacr.caltech.edu>
AX_COMPILER_VENDOR: added support for Pathscale compiler
2007-08-09 Julian Cummings <cummings@cacr.caltech.edu>
AX_F90_MODULE_FLAG: drop support for -module flag
It turns out that in Version 3.0 of the Pathscale Fortran
compiler they have "clarified" the meaning of the -module flag to
only be for setting the directory where *.mod files are written.
In version 3.0, you can only use -module once in a command line,
and if you use it, then the compiler will look there first for
module files to be read before looking in the -I directories.
Thus, it really is best to just use the -I flag here and let the
user add one specific -module option only if they want or need to
redirect module output files.
This commit reverts 5ba234dd8f69456238e7718d4f3a7c116639e373.
2007-08-04 raf <raf@raf.org>
AC_RAF_FUNC_WHICH_GETSERVBYNAME_R: update to GPL3 (with Autoconf exception)
2007-08-04 Alan Woodland <ajw05@aber.ac.uk>
AX_TLS: update license to GPL3 (with Autoconf exception)
2007-08-04 Oren Ben-Kiki <oren@ben-kiki.org>
AX_PROG_DOXYGEN: re-release all-permissive
2007-08-04 Tal Shalif <tal@shalif.com>
AC_PKG_MICO: re-release all-permissive
2007-08-04 Dustin J. Mitchell <dustin@cs.uchicago.edu>
AZ_PYTHON: re-release all-permissive
Robert White agreed as well.
2007-08-04 Julian Cummings <cummings@cacr.caltech.edu>
AX_F90_MODULE_FLAG: support -module PGI compiler flag
I have "-module " to the list of compiler options that is tried
in order to support the PGI Fortran compiler. Without this
change, the PGI compiler actually accepts "-I" and passes the
test. However, this option is actually meant for setting the
include file search path to find files that are included with the
Fortran INCLUDE statement. Although the -I flag works in this
case because there are no -module options on the command line,
things will not work correctly if the user does bring in the
-module option on the actual compile command line.
2007-08-04 Peter Simons <simons@cryp.to>
AX_ENABLE_BUILDDIR_UNAME: Obsoleted.
This macro duplicates the functionality of the standard Autoconf macro
AC_CANONICAL_BUILD. Kindly pointed out by Julian C. Cummings.
AX_PREFIX_CONFIG_H: stripped invalid e-mail address
Marten Svantesson's e-mail address has become invalid. If anyone
knows how to reach him, please let me know.
2007-08-04 Julian Cummings <cummings@cacr.caltech.edu>
AX_ENABLE_BUILDDIR: Renamed variable HOST to BUILD.
The patch universally replaces "host" with "build" and "HOST"
with "BUILD". The rationale is that typically the user wishes to
segregate builds based upon the BUILD target rather than the
configuration HOST type. Now that these host and build variables
are treated as more fully distinct in Autoconf, it makes sense to
honor this distinction.
2007-07-31 Peter Simons <simons@cryp.to>
AC_PYTHON_DEVEL: re-released under GPL3 (with autoconf exception)
2007-07-31 Mark Pulford <mark@kyne.com.au>
MP_WITH_CURSES: re-released under GPL3 (with autoconf exception)
2007-07-31 Uwe Mayer <merkosh@hadiko.de>
MERK_PROG_TCL: re-released under GPL3 (with autoconf exception)
AX_PROG_TCL: re-released under GPL3 (with autoconf exception)
2007-07-31 Kaveh Ghazi <ghazi@caip.rutgers.edu>
AC_COMPILE_CHECK_SIZEOF: re-released under GPL3 (with autoconf exception)
2007-07-29 Steven G. Johnson <stevenj@alum.mit.edu>
updated from GPL2 to GPL3 (with autoconf exception)
2007-07-29 Ruslan Shevchenko <Ruslan@Shevchenko.Kiev.UA>
RSSH_CHECK_OFF64_T: updated from LGPL2 to LGPL3
2007-07-29 Paul Gilmartin <pg@sweng.stortek.com>
CF_EBCDIC: updated license from gpl2 to gpl3 (with autoconf exception)
2007-07-29 Bruce Korb <bkorb@gnu.org>
AG_CHECK_*: re-released under all-permissive license
2007-07-29 Vaclav Slavik <vaclav.slavik@matfyz.cz>
BERKELEY_DB: re-released under all-permissive license
2007-07-29 Tim Toolan <toolan@ele.uri.edu>
AX_COMPARE_VERSION, AX_PATH_BDB, AX_PATH_MILTER: re-release all-permissive
2007-07-29 Oskar Liljeblad <oskar@osk.mine.nu>
AC_LIB_ID3, AC_LIB_UPNP: re-release under all-permissive license
2007-07-29 Dustin J. Mitchell <dustin@cs.uchicago.edu>
Use author attribution "Dustin J. Mitchell" consistently.
2007-07-29 Ville Laurikari <vl@iki.fi>
AC_LIB_READLINE, AC_PROG_CC_WARNINGS: update license from GPL2 to GPL3
2007-07-29 Peter Simons <simons@cryp.to>
Pruned invalid e-mail addresses.
The following contributors have become unreachable:
Mark Elbrecht <snowball3@bigfoot.com>
Mark R. Bannister <markb@freedomware.co.uk>
Ilguiz Latypov <ilatypov@superbt.com>
Matthew D. Langston <langston@SLAC.Stanford.EDU>
AC_CXX_HAVE_EXT_HASH_MAP, AC_PATH_GENERIC, AC_PATH_LIB: remove invalid e-mail
The e-mail addresses listed for Perceval Anichini and Angus Lees no longer
work. If anyone knows how to reach them, please let me know.
2007-07-29 Dustin Mitchell <dustin@cs.uchicago.edu>
AX_PYTHON_CONFIG_VAR, AX_WITH_APXS, AX_WITH_PYTHON: release all-permissive
2007-07-28 Peter Simons <simons@cryp.to>
ax_c___attribute__.m4: dropped invalid e-mail address
Christian Haggstrom's e-mail address chm@c00.info is unreachable.
2007-07-28 Thomas Porschberg <thomas@randspringer.de>
ax_boost_base.m4: recognize macports installation
The update reflects that boost library is installed in /opt/local
for mac users when using macports (macports.org). I got the
advice from Ernest Turro.
2007-07-27 Peter Simons <simons@cryp.to>
AX_CFLAGS_GCC_OPTION: Cosmetic editing for improved HTML hyper-linking.
2007-07-26 Thomas Porschberg <thomas@randspringer.de>
AX_BOOST: obsoleted in favor of modular macros
The macro AX_BOOST is deprecated. All users should use
AX_BOOST_BASE and the specific macros like ax_boost_date_time.m4,
etc.
AX_BOOST_*: adapted for naming convention in Boost version 1.34
2007-07-26 Pete Greenwell <pete@mu.org>
AX_BOOST_ASIO: initial version
The asio library is not yet a part of the latest boost library
collection, but will be shipped with version 1.35.
2007-07-26 Stepan Kasal <skasal@redhat.com>
AX_C___ATTRIBUTE__: fixed for gcc4
The macro did not work with current gcc. The problem is that gcc4
does not swallow nested function, so the declaration and
definition of the test function had to be moved from the body of
main() to the prologue of conftest.c.
2007-07-24 Mikael Lepistö <mikael.lepisto@tut.fi>
ax_boost*.m4: fix library detection when compiling with -pedantic
When running the Boost macros with the "-pedantic" compiler
switch, they fail. It seems that the problem is a multiply
defined "main" function in the generated test program. I changed
the call to AC_CHECK_LIB to use "exit" instead of "main", which
seems to work reliably.
2007-07-19 Alan Woodland <ajw05@aber.ac.uk>
AX_TLS: initial version
The attached macro attempts to detect compiler support for TLS
storage class extensions and how to use that extension. It then
defines the macro TLS to the keyword it found.
2007-07-18 Peter Simons <simons@cryp.to>
AX_BOOST_*, AX_PYTHON: Michael Tindal's e-mail address is invalid.
The address <mtindal@paradoxpoint.com> no longer works because the
domain name paradoxpoint.com appears to have expired. If anyone knows
how to reach Michael these days, please let me know. Thanks to Mikael
Lepistö for bringing this problem to my attention.
2007-07-18 Mikael Lepistö <mikael.lepisto@tut.fi>
AX_PYTHON: added support for python 2.5
2007-06-27 Dustin J. Mitchell <dustin@zmanda.com>
Bug fix for Solaris 9.
One of our users noticed some strange output on Solaris 9 from
this macro. It looks like it was a fairly trivial typo, executing
$1 (a list of headers) instead of $2 (optional shell commands).
2007-06-01 Peter Simons <simons@cryp.to>
release 2007-06-01
2007-06-01 Noah Slater <nslater@bytesexual.org>
AX_PATH_MISSING: Check whether a given program exists in path.
2007-05-15 Peter Simons <simons@cryp.to>
Use consistent author attribution for Zmanda Inc.
2007-05-12 Alex Pletzer <pletzer@txcorp.com>
There is an error at line:
| if test "$ax_flag" = "not found" ; then
in ax_f90_module_flag.m4. It should read:
if test "$ax_f90_modflag" = "not found" ; then
2007-05-10 Peter Simons <simons@cryp.to>
ax_f90_module_extension.m4: portability fix
Luc Maisonobe <luc.maisonobe@free.fr> wrote:
> Alexander Pletzer <pletzer@txcorp.com> found an error in the
> AX_F90_MODULE_EXTENSION. As far as I understand, due to some
> leading blanks in the fortran code snippet, some compilers
> switched to fixed form fortran and failed to compile the code.
> So he added a simple fortran90-only comment to make sure the
> compiler stay in F90 mode.
2007-05-09 Peter Simons <simons@cryp.to>
AC_CHECK_DOCBOOK_XSLT_MIN: consistency edits
AC_CHECK_DOCBOOK_XSLT_MIN: new submission
2007-04-19 Peter Simons <simons@cryp.to>
Added submissions from Dustin J. Mitchell <dustin@zmanda.com>: AC_CHECK_DOCBOOK_DTD, AC_CHECK_DOCBOOK_XSLT, and AC_PROG_XSLTPROC.
2007-03-23 Peter Simons <simons@cryp.to>
ax_boost_thread.m4: improved platform recognition.
ax_boost_test_exec_monitor.m4: Fixed usage description.
2007-03-22 Peter Simons <simons@cryp.to>
ax_boost_test_exec_monitor.m4: New submission from Dodji Seketeli.
2007-03-15 Peter Simons <simons@cryp.to>
ax_boost.m4, ax_boost_base.m4: Updated help messages.
Thomas Porschberg updated the help messages to reflect the
defaults correctly. Boost is now enabled unless specified
otherwise.
2007-03-12 Peter Simons <simons@cryp.to>
ax_boost*.m4: Portability improvements.
Joerg Sonnenberger reported a problem:
| This fails on a number of systems because in
|
| AC_CHECK_LIB($ax_lib, main, [BOOST_REGEX_LIB=$ax_lib break])
|
| the BOOST_REGEX_LIB a local variable for break. Can you fix
| that macro to use two statements? Try running this with bash3
| in native mode for example.
Thomas Porschberg submitted the new versions in
<20070312215212.6da63127@jeschken.quark.de>.
2007-02-18 Peter Simons <simons@cryp.to>
Received new submission: rssh_check_off64_t.m4.
Imported http://autoconf-archive.cryp.to/ release 2007-02-14.
|