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
|
Thu Mar 19 16:24:22 1998 Jason Molenda (crash@bugshack.cygnus.com)
* obstack.c (_obstack_memory_used): Elide this function if we're
on a system with GNU libc.
Sun Feb 1 02:52:32 1998 Mike Stump <mrs@wrs.com>
* config.table (vxworks configs): Default to VxWorks 5.x, as that is
the currently shipping OS.
Tue Jan 27 16:08:20 1998 Pat Rankin <rankin@eql.caltech.edu>
* vmsbuild.com [REQUIRE_OFILES]: Synchronized with Makefile.in:
Add fnmatch.o and objalloc.o; remove vasprintf.o.
[config.h]: Define NEED_strsignal.
Mon Jan 19 12:20:01 1998 Ian Lance Taylor <ian@cygnus.com>
* functions.def: Correct argument types for strerror and
strsignal. Reported by Alex Gutman <agutman@emc.com>.
Sun Jan 18 15:57:28 1998 Michael Snyder <msnyder@cleaver.cygnus.com>
* vasprintf.c (int_vasprintf): Increase buffer size for float/double
values.
Sat Jan 17 22:28:38 1997 Mumit Khan <khan@xraylith.wisc.edu>
J.J. VanderHeijden <J.J.vanderHeijden@student.utwente.nl>
Add mingw32 support.
* pexecute.c (pexecute): New function for mingw32. Supports pipes.
(pwait): New function for mingw32.
* config.table (i[3456]86-*-mingw32*): Support for i386-mingw32.
* config/mt-mingw32: New file.
* xmalloc.c (first_break): Not used for mingw32.
(xmalloc_set_program_name): Don't use sbrk on mingw32.
(xmalloc): Likewise.
(xrealloc): Likewise.
Sat Jan 17 22:28:05 1998 Jeffrey A Law (law@cygnus.com)
* choose-temp.c: Sync with gcc version.
Tue Jan 13 18:34:39 1998 Jim Wilson <wilson@cygnus.com>
* Makefile.in (install_to_libdir, install_to_tooldir): Add MULTISUBDIR
to all filenames in libdir and tooldir.
(distclean): Do MULTICLEAN before deleting Makefile.
(stamp-needed, stamp-config): Add MULTISRCTOP to
pathname for move-if-change.
Thu Dec 4 17:25:19 1997 Jeffrey A Law (law@cygnus.com)
* strsignal.c (sys_nsig): Try NSIG and _NSIG.
Wed Nov 19 13:37:06 1997 Michael Meissner <meissner@cygnus.com>
* alloca-norm.h (alloca, GCC case): Don't redefine alloca if it
was already defined previously.
Mon Nov 10 12:48:03 1997 Philippe De Muyter <phdm@macqel.be>
* Makefile.in (INSTALL): Use ../install-sh, not install.
Tue Oct 28 23:41:15 1997 Judy Goldberg <jodyg@idt.net>
* Makefile.in (CFILES): Add pexecute.c.
Wed Oct 15 19:13:48 1997 Ian Lance Taylor <ian@cygnus.com>
* asprintf.c: Consistently use either stdarg or varargs.
Tue Oct 14 12:01:00 1997 Mark Mitchell <mmitchell@usa.net>
* cplus-dem.c (demangle_signature): Don't look for return types on
constructors. Handle member template constructors.
Fri Oct 3 17:53:30 1997 Ian Lance Taylor <ian@cygnus.com>
* README: Fix configuration instructions.
Mon Sep 29 12:28:41 1997 Ian Lance Taylor <ian@cygnus.com>
* pexecute.c: Update to current version from /gd/gnu/lib:
Mon Sep 29 12:27:59 1997 Ian Lance Taylor <ian@cygnus.com>
* pexecute.c: Use spawn if __CYGWIN32__.
1997-08-08 Paul Eggert <eggert@twinsun.com>
* pexecute.c: Include "config.h" first, as per autoconf manual.
Fri Jun 27 15:20:29 1997 Scott Christley <scottc@net-community.com>
* pexecute.c (fix_argv): New function.
(pexecute): Win32 but not Cygwin32 needs its arguments fixed.
Add underscore to cwait function call.
Sun Sep 28 12:00:52 1997 Mark Mitchell <mmitchell@usa.net>
* cplus-dem.c (demangle_template): Add new parameter. Handle new
template-function mangling.
(consume_count_with_underscores): New function.
(demangle_signature): Handle new name-mangling scheme.
Wed Sep 24 00:31:59 1997 Felix Lee <flee@yin.cygnus.com>
* asprintf.c: stdarg.h when ALMOST_STDC
* config/mh-windows (EXTRA_OFILES): add asprintf.o and
strncasecmp.o.
Thu Aug 28 14:27:15 1997 Andrew Cagney <cagney@b1.cygnus.com>
* vasprintf.c (vasprintf): Allow for _BSD_VA_LIST_.
* config.table: Add case for FreeBSD 2.1 and 2.2, needs mh-fbsd21.
* config/mh-fbsd21 (EXTRA_OFILES): Force vasprintf.o
Wed Sep 10 12:43:10 1997 Jason Merrill <jason@yorick.cygnus.com>
* cplus-dem.c (demangle_fund_type): Change "complex" to "__complex".
Fri Sep 5 16:34:42 1997 Andrew Cagney <cagney@b1.cygnus.com>
* asprintf.c (asprintf): New file.
* Makefile.in (CFILES): Add asprintf.c
* functions.def: Ditto.
Thu Aug 28 18:53:34 1997 Andrew Cagney <cagney@b1.cygnus.com>
* argv.c (dupargv): New function, duplicate an argument vector.
Tue Aug 19 20:28:45 1997 Geoffrey Noer <noer@cygnus.com>
* config/mh-cygwin32: also build random.o
Tue Aug 19 17:10:56 1997 Jason Merrill <jason@yorick.cygnus.com>
* cplus-dem.c: Add 'extern' to prepends_underscore.
Wed Jul 30 11:42:19 1997 Per Bothner <bothner@cygnus.com>
* cplus-dem.c: Various changes to produce Java output when passed
DMGL_JAVA. Thus "::" becomes "." and "JArray<Foo>" becomes "Foo[]".
(main): Support --java and -j flags to set DMGL_JAVA.
Tue Jul 22 19:05:23 1997 Robert Hoehne <robert.hoehne@Mathematik.TU-Chemnitz.DE>
* config/mh-go32 (CC, AR, RANLIB): Don't define.
Tue Jul 22 17:49:54 1997 Ian Lance Taylor <ian@cygnus.com>
* Makefile.in (REQUIRED_OFILES): Add pexecute.o.
(pexecute.o): New target.
* Makefile.in (stamp-needed): New target, replacing needed-list.
(needed-list): Just depend upon stamp-needed.
(stamp-config): New target, replacing config.h.
(config.h): Just depend upon stamp-config.
(mostlyclean): Remove stamp-*.
Thu Jun 12 11:00:18 1997 Angela Marie Thomas (angela@cygnus.com)
* Makefile.in (FLAGS_TO_PASS): pass INSTALL, INSTALL_PROGRAM and
INSTALL_DATA for multilibbed installs
Tue Jun 3 13:21:05 1997 Doug Evans <dje@canuck.cygnus.com>
Tue Dec 10 09:44:57 1996 Paul Eggert <eggert@twinsun.com>
* choose-temp.c (choose_temp_base): Don't dump core if TMPDIR is empty.
* choose-temp.c (try): Insist that temp dir be searchable.
Wed Oct 23 17:36:39 1996 Doug Rupp (rupp@gnat.com)
* choose-temp.c (choose_temp_base): On VMS, use proper syntax
for current directory.
Sat Feb 15 19:03:48 1997 Geoffrey Noer (noer@cygnus.com)
* pexecute.c: Remove special cases for cygwin32.
(pwait): Remove local definition of `pid'.
Tue Nov 12 18:26:15 1996 Doug Rupp (rupp@gnat.com)
* pexecute.c (vfork): Supply new definition for VMS.
(pwait): Use waitpid instead of wait for VMS.
Tue May 20 14:02:20 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
* cplus-dem.c (do_type): Handle `J'.
(demangle_fund_type): Print "complex" for it.
Wed Apr 30 12:15:45 1997 Jason Merrill <jason@yorick.cygnus.com>
* configure.in: Don't turn on multilib here.
Mon Apr 28 19:04:31 1997 Michael Snyder <msnyder@cleaver.cygnus.com>
* obstack.c: move _obstack_memory_used outside of ifdef. Cannot be
elided; needed by gdb and not present in libc.
Thu Apr 24 19:33:47 1997 Ian Lance Taylor <ian@cygnus.com>
* Makefile.in (clean): Remove tmpmulti.out.
Tue Apr 22 10:25:15 1997 Fred Fish <fnf@cygnus.com>
* floatformat.c (floatformat_ieee_double_littlebyte_bigword):
Add new floatformat, mainly for ARM doubles.
Mon Apr 14 12:11:16 1997 Ian Lance Taylor <ian@cygnus.com>
* config.table: Use ${config_shell} with ${moveifchange}. From
Thomas Graichen <graichen@rzpd.de>.
Fri Apr 4 03:09:24 1997 Ulrich Drepper <drepper@cygnus.com>
* configure.in: Enable multilibing by default.
Update multilib template to read config-ml.in.
Tue Apr 1 16:26:39 1997 Klaus Kaempf <kkaempf@progis.de>
* makefile.vms: Add objalloc.
Mon Mar 31 23:57:51 1997 H.J. Lu <hjl@gnu.ai.mit.edu>
* cplus-dem.c (demangle_it): Add prototype declaration.
(usage, fatal): Likewise.
* xexit.c (_xexit_cleanup): Add prototype.
* strerror.c (init_error_tables): Declare.
Fri Mar 28 11:43:20 1997 H.J. Lu <hjl@lucon.org>
* functions.def: Add DEF of vasprintf, and DEFFUNC of strsignal.
* strsignal.c: Only define strsignal if NEED_strsignal.
* Makefile.in (REQUIRED_OFILES): Remove vasprintf.o.
* configure.in: Add NEED_strsignal to xconfig.h. Add vasprintf.o
to xneeded-list.
* config/mh-cygwin32 (HDEFINES): Add -DNEED_strsignal.
(EXTRA_OFILES): Define to vasprintf.o.
* config/mh-windows (HDEFINES): Add -DNEED_strsignal.
(EXTRA_OFILES): Add vasprintf.o.
* config/mt-vxworks5 (vxconfig.h): Define NEED_strsignal.
(vxneeded-list): Add vasprintf.o.
Thu Mar 20 17:02:09 1997 Ian Lance Taylor <ian@cygnus.com>
* objalloc.c: Include <stdio.h>.
Mon Mar 17 19:23:11 1997 Ian Lance Taylor <ian@cygnus.com>
* objalloc.c: New file.
* Makefile.in (CFILES): Add objalloc.c
(REQUIRED_OFILES): Add objalloc.o.
(objalloc.o): New target.
Sat Mar 15 18:49:41 1997 Ian Lance Taylor <ian@cygnus.com>
* obstack.c: Update to current FSF version.
Fri Mar 14 14:18:47 1997 Ian Lance Taylor <ian@cygnus.com>
* cplus-dem.c: Add prototypes for all static functions.
(mystrstr): Make static. Make arguments and result const.
(cplus_match): Remove; not used.
Tue Mar 11 14:20:31 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
* cplus-dem.c (gnu_special): Call demangled_fund_type for other
__t* symbols.
Tue Mar 11 15:41:21 1997 H.J. Lu <hjl@lucon.org>
* spaces.c: Declare malloc and free properly.
* strsignal.c (init_signal_tables): Add prototype.
* xatexit.c (_xexit_cleanup): Add parameter declarations.
Wed Feb 19 15:43:24 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
* Makefile.in (lneeded-list): If alloca.o is needed, xexit.o is
also required because of xmalloc.o.
Fri Feb 14 13:43:38 1997 Ian Lance Taylor <ian@cygnus.com>
* strsignal.c: Unconditionally redefine sys_siglist around the
inclusion of the system header files.
Thu Feb 13 22:01:04 1997 Klaus Kaempf <kkaempf@progis.de>
* makefile.vms: Remove 8 bit characters. Update to latest
gcc release.
Tue Feb 4 11:52:19 1997 Ian Lance Taylor <ian@cygnus.com>
* strsignal.c: Use NEED_sys_siglist instead of
LOSING_SYS_SIGLIST.
* config.table: Don't use mh-lynxos.
* config/mh-lynxos: Remove.
Thu Jan 16 14:51:03 1997 Bob Manson <manson@charmed.cygnus.com>
* cplus-dem.c: Fix indenting; make identical to the copy
in GCC.
(do_type, case 'M'): Check for a template as well as a class.
Thu Dec 19 13:51:33 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
* config/mt-vxworks5 (vxneeded-list): Remove sigsetmask.o, since
vxworks 5.[0-3] all have sigsetmask in them; the one provided by
libiberty is incorrect, as well.
Mon Dec 2 15:03:42 1996 Michael Meissner <meissner@tiktok.cygnus.com>
* alloca.c (alloca): When compiled with an ANSI/ISO compiler,
alloca takes a size_t argument, not just unsigned.
Mon Nov 18 15:42:08 1996 Jason Merrill <jason@yorick.cygnus.com>
* cplus-dem.c: Note that this file also lives in GCC.
Mon Nov 18 15:19:00 1996 Dawn Perchik <dawn@critters.cygnus.com>
* alloca.c: Remove include of libiberty.h for hpux.
* argv.c: Replace defs from libiberty.h.
* spaces.c: Put back externs from removed from libiberty.h.
* vasprintf.c: Remove include of libiberty.h for hpux.
Mon Nov 18 14:08:00 1996 Dawn Perchik <dawn@critters.cygnus.com>
* cplus-dem.c: Checking in again; last checkin filed due to sticky tag.
Wed Nov 13 08:22:00 1996 Dawn Perchik <dawn@critters.cygnus.com>
* cplus-dem.c: Revert last two commits due to conflicts with
hpux system headers.
Wed Nov 13 08:22:00 1996 Dawn Perchik <dawn@critters.cygnus.com>
* alloca.c, argv.c, spaces.c, strcasecmp.c, vasprintf.c, vprintf.c:
Revert last commit due to conflicts with hpux system headers.
Wed Nov 13 10:36:50 1996 Michael Meissner <meissner@tiktok.cygnus.com>
* cplus-dem.c (x{m,re}alloc): Make declarations compatibile with
libiberty.h when compiled with a standard compiler.
Tue Nov 12 16:31:00 1996 Dawn Perchik <dawn@critters.cygnus.com>
* alloca.c: Include libiberty.h for definition of xmalloc.
Don't redefine NULL.
* argv.c: Move prototypes to libiberty.h.
* cplus-dem.c: Include libiberty.h for definition of xmalloc.
Don't redefine NULL.
Use casts to eliminate compiler warnings.
* spaces.c: Remove prototypes for malloc and free which are
already in libibrty.h.
* strcasecmp.c: Use casts to eliminate compiler warnings.
* vasprintf.c: Include libiberty.h for definition of malloc.
Don't redefine NULL.
* vprintf.c: Include stdarg.h if __STDC__.
Fri Oct 11 15:42:12 1996 Stu Grossman (grossman@critters.cygnus.com)
* config/mh-windows: Add strcasecmp.o to EXTRA_OFILES.
Fri Oct 11 11:16:31 1996 Stan Shebs <shebs@andros.cygnus.com>
* mpw.c (mpwify_filename): Rewrite to simplify, and to handle
upward components correctly.
Tue Oct 8 08:55:34 1996 Stu Grossman (grossman@critters.cygnus.com)
* config.table, config/mh-windows: Add support for building under
MSVC (the Microsoft build environment).
Mon Oct 7 10:50:27 1996 Ian Lance Taylor <ian@cygnus.com>
* fnmatch.c: Undef const if not __STDC__.
Thu Oct 3 13:46:39 1996 Ian Lance Taylor <ian@cygnus.com>
* fnmatch.c: New file.
* Makefile.in (CFILES): Add fnmatch.c.
(REQUIRED_OFILES): Add fnmatch.o.
(fnmatch.o): New target.
Wed Sep 18 14:49:13 1996 Jason Merrill <jason@yorick.cygnus.com>
* cplus-dem.c (demangle_template): Fix handling of address args.
(gnu_special): Handle type_info stuff.
Fri Sep 13 17:52:55 1996 Stan Shebs <shebs@andros.cygnus.com>
* mpw.c (DebugPI): Make settable from the env var DEBUG_PATHNAMES.
(mpwify_filename): Handle "::/" case.
Thu Sep 12 13:30:40 1996 Geoffrey Noer <noer@cygnus.com>
* config/mh-cygwin32: new file (need -DNEED_basename and
-DNEED_sys_siglist for native NT rebuilding)
* config.table (*-*-cygwin32): new entry
* choose-temp.c: bring in sync with gcc (revert Aug 17 change)
Thu Aug 29 16:48:45 1996 Michael Meissner <meissner@tiktok.cygnus.com>
* config.table (i[345]86-*-*): Recognize i686 for pentium pro.
Tue Aug 27 13:47:58 1996 Stan Shebs <shebs@andros.cygnus.com>
* pexecute.c (pexecute) [MPW]: Remove old bogus code that
messed with arguments that included a '/', add escape chars
to double quotes, remove const decl from arg that Mac
compilers don't seem to like.
Sat Aug 17 04:44:27 1996 Geoffrey Noer <noer@cygnus.com>
* pexecute.c: Update test for win32 (&& ! cygwin32).
* choose-temp.c: fix WIN32 preprocessor defines
Thu Aug 15 12:26:48 1996 Stan Shebs <shebs@andros.cygnus.com>
* mpw-make.sed: Add @DASH_C_FLAG@ and @SEGMENT_FLAG({Default})@
to editing of default makefile rule.
Sun Aug 11 21:03:27 1996 Stu Grossman (grossman@critters.cygnus.com)
* alloca-norm.h: Include <malloc.h> if _WIN32.
* argv.c: Include non-prototyped decls for malloc and string
functions if ! _WIN32 or if __GNUC__.
Thu Aug 8 12:42:40 1996 Klaus Kaempf <kkaempf@progis.de>
* config.h-vms: New file.
* makefile.vms: Use it.
Wed Aug 7 17:16:12 1996 Stu Grossman (grossman@critters.cygnus.com)
* getopt.c (_getopt_internal): If argc is 0, just return (before
we reference *argv and segfault).
Mon Aug 5 01:29:08 1996 Jason Merrill <jason@yorick.cygnus.com>
* Makefile.in (distclean): Add multilib.out.
Thu Jul 18 17:40:55 1996 Ian Lance Taylor <ian@cygnus.com>
* alloca-norm.h: Change #ifdef sparc to #if defined (sparc) &&
defined (sun). From Andrew Gierth <ANDREWG@microlise.co.uk>.
Mon Jul 1 13:40:44 1996 Ken Raeburn <raeburn@cygnus.com>
Tue May 28 15:29:03 1996 Pat Rankin <rankin@eql.caltech.edu>
* vmsbuild.com (REQUIRD_OFILES): Add choose-temp.o and xstrdup.o.
Thu Jan 25 18:20:04 1996 Pat Rankin <rankin@eql.caltech.edu>
* vmsbuild.com: Changes to handle DEFFUNC(on_exit).
(do_ofiles): Allow nonexistent source file in pass 3.
(chk_deffunc): New routine.
Tue Jun 25 19:24:43 1996 Doug Evans <dje@canuck.cygnus.com>
* pexecute.c (PEXECUTE_VERBOSE): Define.
(MPW pexecute): Check flags & PEXECUTE_VERBOSE instead of verbose_flag.
Tue Jun 25 23:11:48 1996 Jason Molenda (crash@godzilla.cygnus.co.jp)
* Makefile.in (docdir): Removed.
Tue Jun 25 23:01:07 1996 Jason Molenda (crash@godzilla.cygnus.co.jp)
* Makefile.in (oldincludedir): Removed.
Tue Jun 25 22:50:07 1996 Jason Molenda (crash@godzilla.cygnus.co.jp)
* Makefile.in (datadir): Set to $(prefix)/share.
Thu Jun 20 21:17:52 1996 Ian Lance Taylor <ian@cygnus.com>
* cplus-dem.c (demangle_arm_pt): Reindent. Avoid endless loop by
checking for errors from do_type.
Tue Jun 18 14:36:19 1996 Klaus Kaempf <kkaempf@progis.de>
* makefile.vms: New file.
* xmalloc.c: If VMS, include <stdlib.h> and <unixlib.h> rather
than declaring malloc, realloc, and sbrk.
Mon Jun 10 13:17:17 1996 Doug Evans <dje@canuck.cygnus.com>
* pexecute.c: New file.
Wed Jun 5 16:57:45 1996 Richard Henderson <rth@tamu.edu>
* xmalloc.c: Declare sbrk.
Sat May 4 05:08:45 1996 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
* alloca-norm.h: Add SPARCworks cc compatible __builtin_alloca
declaration.
Mon Apr 22 18:41:49 1996 Ian Lance Taylor <ian@cygnus.com>
* xstrerror.c: Include <stdio.h>.
Sun Apr 21 11:55:12 1996 Doug Evans <dje@canuck.cygnus.com>
* Makefile.in (CFILES): Add atexit.c.
Sun Apr 21 09:50:09 1996 Stephen L Moshier (moshier@world.std.com)
* choose-temp.c: Include sys/types.h before sys/file.h for sco3.2v5.
Wed Apr 17 11:17:55 1996 Doug Evans <dje@canuck.cygnus.com>
* choose-temp.c: Don't #include sys/file.h ifdef NO_SYS_FILE_H.
#include <stdio.h>
* config/mt-vxworks5 (HDEFINES): Define NO_SYS_FILE_H.
Tue Apr 16 11:27:16 1996 Jeffrey A Law (law@cygnus.com)
* Makefile.in (lneeded-list): If alloca.o is needed, so is xmalloc.o.
Reverts Feb 8, 1995 change.
Mon Apr 15 12:53:26 1996 Doug Evans <dje@canuck.cygnus.com>
* choose-temp.c: New file.
* Makefile.in (CFILES): Add choose-temp.c.
(REQUIRED_OFILES): Add choose-temp.o.
Sat Apr 13 14:19:30 1996 Stu Grossman (grossman@critters.cygnus.com)
* floatformat.c (floatformat_to_double): Don't bias exponent when
handling zero's, denorms or NaNs.
Thu Apr 11 13:36:56 1996 Stu Grossman (grossman@critters.cygnus.com)
* floatformat.c (floatformat_to_double): Fix bugs with handling
numbers with fractions < 32 bits.
Mon Apr 8 14:48:34 1996 Ian Lance Taylor <ian@cygnus.com>
* config.table: Permit --enable-shared to specify a list of
directories.
Tue Mar 19 22:02:07 1996 Jason Merrill <jason@yorick.cygnus.com>
* cplus-dem.c (demangle_template): Fix for non-mangled pointer
arguments.
Fri Mar 8 17:24:18 1996 Ian Lance Taylor <ian@cygnus.com>
* configure.in: If srcdir is `.' and with_target_subdir is not
`.', then set MULTISRCTOP before calling config-ml.in.
Thu Mar 7 13:37:10 1996 Stan Shebs <shebs@andros.cygnus.com>
* mpw.c (mpw_open): Add debugging output option.
Wed Mar 6 17:36:03 1996 Jason Merrill <jason@yorick.cygnus.com>
* cplus-dem.c (demangle_template): Fix for address-of-extern arguments.
Tue Feb 27 12:00:50 1996 Raymond Jou <rjou@mexican.cygnus.com>
* mpw.c (mpwify_filename): Change 6 to 5 in
strncmp (unixname, "/tmp/", 5).
Tue Feb 20 10:55:53 1996 Ian Lance Taylor <ian@cygnus.com>
* cplus-dem.c (demangle_template): Initialize is_bool. Correctly
handle 0 as a pointer value parameter.
Mon Feb 5 16:41:44 1996 Ian Lance Taylor <ian@cygnus.com>
* Makefile.in (all): Depend upon required-list.
(required-list): New target.
(clean): Remove required-list.
Wed Jan 31 10:19:41 1996 Steve Chamberlain <sac@slash.cygnus.com>
* win32.c: Deleted.
* config.table (i386-*-win32): Deleted.
* config/mh-i386win32: Deleted.
Thu Jan 18 11:34:17 1996 Ian Lance Taylor <ian@cygnus.com>
* cplus-dem.c (cplus_demangle_opname): Change opname parameter to
const char *.
(cplus_mangle_opname): Change return type and opname parameter to
const char *. Don't cast return value.
Tue Jan 16 12:13:11 1996 Stan Shebs <shebs@andros.cygnus.com>
* mpw.c: Include Timer.h, in order to get m68k Microseconds trap
definition.
Wed Jan 3 13:15:04 1996 Fred Fish <fnf@cygnus.com>
* obstack.c: Update copyright to 1996.
(_obstack_memory_used): Define new function. Called via
obstack_memory_used macro.
Thu Dec 28 11:39:40 1995 Ian Lance Taylor <ian@cygnus.com>
* xstrdup.c: New file.
* Makefile.in (CFILES): Add xstrdup.c.
(REQUIRED_OFILES): Add xstrdup.o.
(xstrdup.o): New target.
Mon Dec 11 18:18:52 1995 Mike Stump <mrs@cygnus.com>
* atexit.c: New stub to provide atexit on systems that have
on_exit, like SunOS 4.1.x systems.
* functions.def (on_exit, atexit): Ditto.
Mon Dec 11 15:42:14 1995 Stan Shebs <shebs@andros.cygnus.com>
* mpw.c (mpw_abort): Remove decl.
(mpw_access): Move debugging printf.
Sat Dec 2 01:25:23 1995 Ian Lance Taylor <ian@cygnus.com>
* config.table: Consistently use ${host} rather than ${xhost} or
${target}.
* configure.in: Don't bother to set ${xhost} before calling
config.table.
Tue Nov 28 14:16:57 1995 Brendan Kehoe <brendan@lisa.cygnus.com>
* Makefile.in (.c.o): Use test instead of the left bracket, to
avoid problems with some versions of make.
Tue Nov 28 11:45:17 1995 Stan Shebs <shebs@andros.cygnus.com>
* mpw-make.sed: Fix INCDIR edit to work with Nov 14 change.
Tue Nov 21 11:26:34 1995 Fred Fish <fnf@rtl.cygnus.com>
* config/mh-hpux: Remove. It was only used to define EXTRA_OFILES,
which was set to just alloca.o, which is now automatically marked
as needed by the autoconfiguration process.
Tue Nov 21 14:15:06 1995 Ian Lance Taylor <ian@cygnus.com>
* config.table: Check ${with_cross_host} rather than comparing
${host} and ${target}.
Thu Nov 16 14:34:42 1995 Ian Lance Taylor <ian@cygnus.com>
* configure.in: If with_target_subdir is empty, set xhost to
${host} rather than ${target} before calling config.table.
Tue Nov 14 01:38:30 1995 Doug Evans <dje@canuck.cygnus.com>
* Makefile.in (MULTITOP): Deleted.
(MULTISRCTOP, MULTIBUILDTOP): New.
(FLAGS_TO_PASS): Delete INCDIR.
(INCDIR): Add $(MULTISRCTOP).
(install_to_libdir): Add $(MULTISUBDIR). Call $(MULTIDO).
* configure.in: Delete call to cfg-ml-com.in. Call config-ml.in
instead of cfg-ml-pos.in.
(cross-compile check): Change to test for with_target_subdir.
(EXTRA_LINKS): Delete.
Sun Nov 12 12:13:04 1995 Stan Shebs <shebs@andros.cygnus.com>
* mpw-make.sed: Add getpagesize.c.o to needed-list.
* mpw.c [USE_MW_HEADERS]: Conditionalize compiling of
functions that are supplied by Metrowerks libraries.
(fstat): Clean up descriptor->pointer conversion code.
(InstallConsole, etc): Empty definitions, for when linking
with SIOUX.
Sun Nov 5 19:25:27 1995 Per Bothner <bothner@kalessin.cygnus.com>
* Makefile.in (FLAGS_TO_PASS): Also pass PICFLAGS.
(.c.o): Stylistic change.
Thu Nov 2 12:06:29 1995 Ian Lance Taylor <ian@cygnus.com>
* strtol.c, strtoul.c: Don't include <stdlib.h>. From
phdm@info.ucl.ac.be (Philippe De Muyter).
Wed Nov 1 11:59:36 1995 Ian Lance Taylor <ian@cygnus.com>
* configure.in: Correct sed call.
Mon Oct 30 13:03:45 1995 Per Bothner <bothner@kalessin.cygnus.com>
* configure.in: Clean up / simplify for native.
* configure.in: Merge in stuff from ../xiberty/configure.in.
* Makefile.in (CC): Add definition (so it can be overrridden
by ../configure).
Tue Oct 24 17:57:27 1995 Stan Shebs <shebs@andros.cygnus.com>
* mpw-make.sed: Leave strerror.c.o in standard list of functions.
* mpw.c (R_OK, ENOENT, EACCESS, ENOSYS): Remove.
(link): Remove useless definition with error return.
(last_microseconds, warn_if_spin_delay, record_for_spin_delay):
Use UnsignedWide type for microsecond counts.
Thu Oct 19 10:52:07 1995 Michael Meissner <meissner@wogglebug.tiac.net>
* memcmp.c (memcmp): Argument types are const void *, not void
*const.
* strncasecmp.c (strncasecmp): Include ansidecl.h/stdarg.h, not
sys/types.h.
* strcasecmp.c (strcasecmp): Ditto.
Tue Oct 10 11:03:24 1995 Fred Fish <fnf@cygnus.com>
* Makefile.in (BISON): Remove macro.
Tue Sep 26 15:06:46 1995 Stan Shebs <shebs@andros.cygnus.com>
* Makefile.in (HFILES): Add default empty definition.
* mpw-config.in (config.h): Only update if changed.
* mpw-make.in: Remove.
* mpw-make.sed: New file, edits Makefile.in into MPW makefile.
* mpw.c: Remove semi-clone of strerror code.
(sys_nerr, sys_errlist): Define here.
(Microseconds): Only define as A-line trap if m68k Mac.
Wed Sep 20 12:53:32 1995 Ian Lance Taylor <ian@cygnus.com>
* Makefile.in (maintainer-clean): New synonym for distclean.
Mon Aug 28 19:47:52 1995 Per Bothner <bothner@kalessin.cygnus.com>
* config.table: For host, generalize rs6000-ibm-aix*
to *-ibm-aix* so we also include powerpc.
Tue Aug 22 03:18:05 1995 Ken Raeburn <raeburn@kr-laptop.cygnus.com>
Fri Jun 16 18:35:40 1995 Pat Rankin (rankin@eql.caltech.edu)
* xstrerror.c: New file.
* Makefile.in, vmsbuild.com: Compile it.
Mon Jul 31 12:16:32 1995 steve chamberlain <sac@slash.cygnus.com>
* config.table (i386-*-win32): New.
Fri Jul 21 11:35:52 1995 Doug Evans <dje@canuck.cygnus.com>
* Makefile.in (MULTITOP): New variable.
(MULTIDIRS, MULTISUBDIR, MULTIDO, MULTICLEAN): Likewise.
(all): Add multilib support.
(install_to_tooldir, *clean): Likewise.
Mon Jul 10 11:47:27 1995 Ken Raeburn <raeburn@cygnus.com>
* makefile.dos (OBJS): Add hex.o. From DJ Delorie.
Fri Jun 30 17:28:59 1995 Pat Rankin (rankin@eql.caltech.edu)
* vmsbuild.com: create "new-lib.olb", build libiberty under that
name, and then make it become "liberty.olb" when done, so that an
incomplete build attempt never leaves behind something which looks
like a complete library.
Thu Jun 29 00:22:02 1995 Steve Chamberlain <sac@slash.cygnus.com>
* config/mh-i386pe: New file for PE hosts.
* config.table: Understand PE hosts.
Wed Jun 28 19:13:23 1995 Jason Merrill <jason@phydeaux.cygnus.com>
* cplus-dem.c: Update from gcc.
* argv.c, dummy.c: If __STDC__, #include "alloca-conf.h" after
<stddef.h>.
* alloca-norm.h: If __STDC__, declare alloca with its parameter.
Thu Jun 22 18:57:47 1995 Stan Shebs <shebs@andros.cygnus.com>
* mpw-make.in (ALL_CFLAGS): Define NEED_basename.
* mpw.c: Only test DebugPI once whenever printing debug info.
(mpwify_filename): If filename is /tmp/foo, change it into :_foo,
also fix to not write on input filename buffer.
(mpw_access): Use stat() instead of open(), works for directories
as well as files.
Mon Jun 19 00:33:22 1995 Jason Merrill <jason@phydeaux.cygnus.com>
* Makefile.in: Massage broken shells that require 'else true'.
Sat Jun 17 23:21:58 1995 Fred Fish <fnf@cygnus.com>
* alloca-norm.h: Declare alloca as type "PTR" to match functions.def.
Declare __builtin_alloca in the sparc case, as argv.c did.
* argv.c: Replace inline version of alloca-norm.h at start of file with
a #include of alloca-conf.h. Precede it with an include of ansidecl.h
because alloca-norm.h needs to declare alloca as "PTR".
Mon Jun 12 14:24:26 1995 Steve Chamberlain <sac@slash.cygnus.com>
* win32.c: New file.
Fri Jun 9 15:16:14 1995 Jason Merrill <jason@phydeaux.cygnus.com>
* dummy.c: #include "alloca-conf.h".
Wed Jun 7 11:46:23 1995 Jason Merrill <jason@phydeaux.cygnus.com>
* Makefile.in (mostlyclean): Remove stamp-picdir.
(clean): Don't.
Mon Jun 5 18:46:06 1995 Jason Merrill <jason@phydeaux.cygnus.com>
* config.table (frags): Use toplevel pic frags.
* Makefile.in (PICFLAG): New macro.
(all): Depend on stamp-picdir.
(needed-list): Ditto.
(.c.o): Also build pic object.
(stamp-picdir): New rule.
(mostlyclean): Remove pic.
(clean): Remove stamp-picdir.
Fri Mar 24 16:55:48 1995 Pat Rankin (rankin@eql.caltech.edu)
* vmsbuild.com (config.h): Add `#define NEED_basename'.
Tue May 23 10:12:46 1995 Per Bothner <bothner@kalessin.cygnus.com>
* clock.c, getopt.c, strtod.c, vsprintf.c: Change from using LGPL
to libio-style copyright.
* getpagesize.c: Remove FSF copyright.
Sat May 20 12:30:23 1995 Ken Raeburn <raeburn@kr-laptop.cygnus.com>
Added improved VMS support from Pat Rankin:
Fri Mar 17 18:40:36 1995 Pat Rankin (rankin@eql.caltech.edu)
* vmsbuild.com: new file.
* getpagesize.c (getpagesize): implement for VMS;
* strerror.c (strerror, strerrno, strtoerrno): add rudimentary
support for EVMSERR.
Thu May 18 17:01:42 1995 Ken Raeburn <raeburn@kr-laptop.cygnus.com>
Wed May 10 14:28:16 1995 Richard Earnshaw (rearnsha@armltd.co.uk)
* floatformat.c (floatformat_arm_ext): Define.
Tue May 16 13:30:59 1995 Per Bothner <bothner@kalessin.cygnus.com>
* basename.c, bcmp.c, getcwd.c, insque.c, rename.c, sigsetmask.c,
strerror.c, strsignal.c: Remove FSF copyright.
* sigsetmask.c: #include <sys/types.h> - seems to be needed by ISC.
Mon May 15 19:53:17 1995 Per Bothner <bothner@kalessin.cygnus.com>
* bcopy.c, bzero.c, memcmp.c, memcpy.c, memset.c, strchr.c,
strrchr.c, strstr.c, vfork.c: Remove FSF Copyright, because this
might contaminate libstdc++ with the LGPL. (OK'd by RMS 11 Oct 94.)
* strchr.c, strrchr.c: Add cast to suppress const warning.
Thu May 4 14:36:42 1995 Jason Merrill <jason@phydeaux.cygnus.com>
* cplus-dem.c: Use const instead of CONST. Don't include
ansidecl.h directly.
Wed Apr 19 01:30:27 1995 Jason Merrill <jason@phydeaux.cygnus.com>
* cplus-dem.c: Don't include libiberty.h. Do declare xmalloc and
xrealloc.
(-DMAIN): Don't rely on an externally-defined version number;
instead, require the version number to be defined as a
preprocessor macro. Handle the RS/6000 leading dot. Define
xmalloc, xrealloc and fatal. Don't strip a leading underscore
if we couldn't demangle the word.
Tue Apr 4 13:03:51 1995 Stan Shebs <shebs@andros.cygnus.com>
(Old mpw.c change descriptions retained for informational value.)
* mpw.c (warning_threshold): Default to .4 sec.
(overflow_count, current_progress): New globals.
(warn_if_spin_delay): Include current progress type,
such as program name, in message.
(mpw_start_progress): Set current_progress variable from arg.
(mpw_end_progress): Report spin delays by power-of-two-size
buckets instead of constant-size buckets.
* mpw.c: Clean up formatting, types, returns, etc.
(ENOSYS): Define.
(mpw_fread, mpw_fwrite): Define.
(sleep): Define correctly.
* mpw.c: New code to implement cursor spinning support.
(umask): New function.
(mpw_fopen, mpw_fseek, stat, fstat): Call PROGRESS.
* mpw.c (mpw_basename, mpw_mixed_basename): New functions, find
basenames for MPW and MPW/Unix filenames.
(mpw_special_init): New function, calls Macsbug if desired.
* mpw.c: Add GPL notice.
(mpwify_filename): Add more transformations.
(mpw_fopen): Call mpwify_filename on file names.
(rename): Remove.
(chdir, getcwd): Add simple definitions.
* mpw.c: Random cleanups, remove unused code bits.
Added copy of strerror.c for gcc's use.
(stat, fstat, _stat): New versions based on Guido van Rossum code.
* mpw.c (mpw_fseek): Make it work correctly when doing SEEK_CUR.
* mpw.c (stat): Remove hack definition, get from sys/stat.h.
(fork, vfork, etc): Print error messages if called.
(getrusage, sbrk, environ, isatty, link, utime, mkdir, rmdir,
rename, chown): Define.
* mpw-config.in: New file, MPW version of configure.in.
* mpw-make.in: New file, MPW version of Makefile.in.
* mpw.c: New file, MPW compatibility routines.
Fri Mar 24 14:10:30 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
* basename.c: Include config.h before checking for NEED_basename.
Thu Mar 23 19:09:54 1995 Jason Merrill <jason@phydeaux.cygnus.com>
* functions.def: Add DEFFUNC for basename.
* basename.c: Only define basename if NEED_basename.
Thu Mar 16 13:36:05 1995 Jason Merrill <jason@phydeaux.cygnus.com>
* config.table: Fix --enable-shared logic for native builds.
Mon Mar 13 11:05:11 1995 Jason Merrill <jason@phydeaux.cygnus.com>
* cplus-dem.c (demangle_template): Demangle bool literals properly.
Mon Mar 6 23:57:28 1995 Stu Grossman (grossman@cygnus.com)
* strtol.c strtoul.c: Replace these with less buggy versions from
NetBSD. (strtoul in particular couldn't handle base 16.)
Wed Mar 1 15:59:01 1995 Ian Lance Taylor <ian@cygnus.com>
* config/mt-vxworks5 (HDEFINES): Define NO_SYS_PARAM_H.
* clock.c: If NO_SYS_PARAM_H is defined, don't include
<sys/param.h>.
* getcwd.c, getpagesize.c, getruntime.c: Likewise.
Fri Feb 17 15:40:55 1995 Ian Lance Taylor <ian@cygnus.com>
* getruntime.c (get_run_time): Don't assume that CLOCKS_PER_SEC is
a number; ANSI appears to permit any expression, including a
function call.
* config.table (*-*-vxworks5*): Use mt-vxworks5 when configuring
xiberty.
* config/mt-vxworks5: New file.
Thu Feb 9 14:19:45 1995 Ian Lance Taylor <ian@cygnus.com>
* basename.c (basename): Change argument to be const.
Wed Feb 8 18:06:52 1995 Jason Merrill <jason@phydeaux.cygnus.com>
* Makefile.in (lneeded-list): Don't worry about xmalloc.
Sun Jan 15 00:40:36 1995 Jeff Law (law@snake.cs.utah.edu)
* Makefile.in (distclean): Delete xhost-mkfrag.
Thu Jan 12 16:54:18 1995 Jason Merrill <jason@phydeaux.cygnus.com>
* Makefile.in (lneeded-list): If alloca.o is needed, so is xmalloc.o.
Wed Jan 11 22:39:56 1995 Ken Raeburn <raeburn@cujo.cygnus.com>
* hex.c: New file.
* Makefile.in (REQUIRED_OFILES, CFILES): List it.
(hex.o): Add dependencies.
* cplus-dem.c (demangle_prefix): For GNU style constructor and
destructor names, try demangling the remainder of the string.
Wed Dec 28 00:49:15 1994 Ian Lance Taylor <ian@tweedledumb.cygnus.com>
* vasprintf.c (int_vasprintf): New static function.
(vasprintf): Use int_vasprintf. Removes assumption that va_list
is assignment compatible.
Sat Nov 5 19:29:12 1994 Jason Merrill (jason@phydeaux.cygnus.com)
* Makefile.in (LIBCFLAGS): New variable.
(FLAGS_TO_PASS): Pass it.
(.c.o): Use it.
Thu Nov 3 19:09:47 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
* getopt.c, getopt1.c: Do compile these functions under Linux,
since many native versions are based on glibc but are buggy.
Mon Oct 24 15:16:46 1994 Per Bothner <bothner@kalessin.cygnus.com>
* vasprintf.c: Make 'format' arg be const, to avoid a mismatch
with prototype in GNU libc. Support stdarg.h as well as varargs.h.
Tue Oct 11 17:48:27 1994 Jason Merrill (jason@phydeaux.cygnus.com)
* Makefile.in (REQUIRED_OFILES): Add vasprintf.o.
* functions.def: Remove vasprintf.
Wed Sep 14 17:04:55 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
* xmalloc.c (first_break): New static variable.
(xmalloc_set_program_name): Record sbrk (0) in first_break.
(xmalloc): If memory allocation fails, try to report how much
memory was allocated by the program up to this point.
(xrealloc): Likewise.
Sun Sep 04 17:58:10 1994 Richard Earnshaw (rwe@pegasus.esprit.ec.org)
* Makefile.in (ERRORS_CC): New variable, defaulted to $(CC). Use it
when linking dummy.
* config.table: Add host RISCiX Makefile frag.
* config/mh-riscix: New file.
Thu Aug 25 17:29:44 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
* Makefile.in (FLAGS_TO_PASS): Define.
($(RULE1)): Use $(FLAGS_TO_PASS).
Wed Aug 24 17:08:47 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
* vasprintf.c: Include <string.h>.
(vasprintf): Add casts to void for va_arg to avoid gcc warnings.
* xatexit.c: Declare malloc.
Fri Aug 19 15:29:12 1994 Kung Hsu (kung@mexican.cygnus.com)
* cplus-dem.c (demangle_args): Fix a bug in previous patch (the
one below).
Thu Aug 18 14:37:14 1994 Kung Hsu (kung@mexican.cygnus.com)
* cplus-dem.c (demangle args): Handle ARM repeat encoding where
the type index is greater than 9.
Wed Aug 17 16:13:49 1994 Kung Hsu (kung@mexican.cygnus.com)
* cplus-dem.c (demangle_qualified): accept optional '_' between
qualified name. This is baecause the template name may end with
numeric and can mixed up with the length of next qualified name.
Wed Aug 3 05:52:14 1994 D. V. Henkel-Wallace (gumby@cygnus.com)
* config/mt-sunos4: Use our standard location for cross-includes
and cross-libs when the target is also a "host" environment (ie no
newlib; includes and such don't belong to us). This is specific
to the Cygnus Support environment.
Tue Aug 2 15:25:12 1994 Kung Hsu (kung@mexican.cygnus.com)
* cplus-dem.c (demangle_template): demangle as xxx<'Q'> not
xxx<ch=81>.
Mon Aug 1 17:02:48 1994 Kung Hsu (kung@mexican.cygnus.com)
* cplus-dem.c (main): flush stdout to make pipe work.
Sat Jul 16 12:56:32 1994 Stan Shebs (shebs@andros.cygnus.com)
* config.table (*-*-cxux7*): Recognize.
* floatformat.c (floatformat_m88110_ext) [HARRIS_FLOAT_FORMAT]:
Harris-specific float format.
* config/mh-cxux7: New file.
Wed Jun 29 00:26:17 1994 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
* cplus-dem.c (demangle_template): Make sure that the result of
consume_count doesn't index beyond the end of the string.
Mon Jun 20 23:54:37 1994 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
* cplus-dem.c (gnu_special): Handle vtable mangling of gcc-2.4.5 and
earlier. Improve test for new vtable mangling. Change output back
to `virtual table'.
Mon Jun 20 11:37:30 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
* obstack.c: Always compile this code, even if using the GNU
library. Avoids problems with relatively recent binary
incompatibility.
Thu Jun 16 17:54:01 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
* cplus-dem.c: Include libiberty.h.
(xmalloc, xrealloc, free): Don't declare.
(strstr): Don't declare parameters.
(xmalloc, xrealloc): Don't define.
(long_options): Add no-strip-underscores.
(main): Call xmalloc_set_program_name. Pass n in short options to
getopt_long. Handle option 'n' to not strip underscores.
(usage): Mention -n and --no-strip-underscores.
Sun Jun 12 01:37:09 1994 Jason Merrill (jason@deneb.cygnus.com)
* cplus-dem.c (demangle_template): Separate consecutive >'s with a
space.
(gnu_special): Demangle template and qualified names in a vtable name.
Fri May 27 12:27:52 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
From gas-2.3 and binutils-2.4 net releases:
Wed May 11 22:32:00 1994 DJ Delorie (dj@ctron.com)
* makefile.dos: [new] Makefile for dos/go32
* configure.bat: update for latest files
* msdos.c: remove some functions now in libc.a
Fri May 20 18:53:32 1994 Per Bothner (bothner@kalessin.cygnus.com)
* cplus-dem.c (gnu_special): Recognize thunks, as well as
the new naming style for vtables (when -fvtable-thunks).
Wed May 18 13:34:06 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
* Makefile.in (XTRAFLAGS): Don't define.
(.c.o, dummy.o): Don't use XTRAFLAGS.
($(RULE1)): Don't pass XTRAFLAGS down in recursive call.
Fri May 13 16:02:12 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
* vasprintf.c: New file.
* Makefile.in, functions.def: Add it.
Fri May 13 16:20:28 1994 Jason Merrill (jason@deneb.cygnus.com)
* cplus-dem.c (demangle_fund_type): Grok bool.
Fri May 6 14:44:21 1994 Steve Chamberlain (sac@cygnus.com)
* config.table: Add go32
* config/mh-go32: New template.
Fri May 6 11:01:59 1994 D. V. Henkel-Wallace (gumby@rtl.cygnus.com)
* config.table, config/mt-sunos4: config for when sun4 is cross target.
Mon Apr 11 00:54:33 1994 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* getopt.c [not __GNU_LIBRARY__] [__GCC__] [not __STDC__]:
Declare strlen to return int. Don't include stddef.h.
Fri Apr 1 00:38:17 1994 Jim Wilson (wilson@mole.gnu.ai.mit.edu)
* getopt.c: Delete use of IN_GCC to control whether
stddef.h or gstddef.h is included.
Thu Apr 14 14:00:56 1994 Kung Hsu (kung@mexican.cygnus.com)
* cplus-dem.c (demangle_signature): Fix a bug in template function
type numbering.
Wed Apr 13 17:23:03 1994 Kung Hsu (kung@mexican.cygnus.com)
* cplus-dem.c (demangle_signature): Fix template function with arm
style argument type number, Tn.
Wed Apr 13 17:11:15 1994 Jason Merrill (jason@deneb.cygnus.com)
* cplus-dem.c (optable): Add new[] and delete[].
Fri Apr 8 11:21:42 1994 Jim Kingdon (kingdon@deneb.cygnus.com)
* argv.c (buildargv): Don't produce empty argument just because
there is trailing whitespace.
Wed Apr 6 11:42:14 1994 Kung Hsu (kung@mexican.cygnus.com)
* cplus-dem.c (demangle_template): fix 'Q' qualified name bug.
Handle 'p' same as 'P'.
* cplus-dem.c (do_type): Handle 'p' same as 'P'.
Sat Mar 26 12:00:13 1994 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
* floatformat.c (get_field, put_field): Fix off by one error in
little endian case.
Thu Mar 24 10:40:19 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
* floatformat.c (floatformat_from_double): Pass unsigned char *,
not char *, to put_field.
Fri Mar 18 12:34:33 1994 Per Bothner (bothner@kalessin.cygnus.com)
* memmove.c: Re-wrote; placed in public domain.
Wed Mar 16 10:33:07 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
* cplus-dem.c (demangle_prefix): If ARM demangling, don't treat
__Q* as a constructor.
Mon Mar 14 12:26:02 1994 Ian Lance Taylor (ian@cygnus.com)
* ieee-float.c: Removed; no longer used.
* Makefile.in: Changed accordingly.
Mon Mar 7 12:28:17 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
* floatformat.c (get_field): Removed unused local variable i.
(put_field): Removed unused local variable i.
Sun Feb 27 21:50:11 1994 Jim Kingdon (kingdon@deneb.cygnus.com)
* floatformat.c: New file, intended to replace ieee-float.c.
* Makefile.in: Change accordingly.
Thu Feb 24 11:51:12 1994 David J. Mackenzie (djm@rtl.cygnus.com)
* getopt.c: Remove #ifdef GETOPT_COMPAT and #if 0 code.
(_getopt_initialize): New function, broken out of _getopt_internal.
(_getopt_internal):
If long_only and the ARGV-element has the form "-f", where f is
a valid short option, don't consider it an abbreviated form of
a long option that starts with f. Otherwise there would be no
way to give the -f short option.
Thu Feb 10 14:44:16 1994 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* getopt.c [not __GNU_LIBRARY__] [__GNUC__] [not IN_GCC]:
Test just __STDC__, not emacs.
Wed Feb 9 00:14:00 1994 Richard Stallman (rms@mole.gnu.ai.mit.edu)
* getopt.c [not __GNU_LIBRARY__] [__GNUC__] [not IN_GCC]
[emacs] [not __STDC__]: Don't include stddef.h. Don't declare strlen.
Fri Dec 24 19:43:00 1993 Noah Friedman (friedman@nutrimat.gnu.ai.mit.edu)
* getopt.c (_NO_PROTO): Define before config.h is included.
Mon Sep 20 15:59:03 1993 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
* getopt.c, getopt1.c [emacs || CONFIG_BROKETS]: Include
<config.h> only under these, else "config.h".
Thu Aug 12 18:16:49 1993 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
* getopt.c, getopt1.c [HAVE_CONFIG_H]: Include
<config.h> instead of "config.h".
Sun Feb 20 17:17:01 1994 Ian Lance Taylor (ian@lisa.cygnus.com)
* concat.c: Check ANSI_PROTOTYPES rather than __STDC__ to decide
whether to use prototypes or not.
* strerror.c (const): Never undefine; let ansidecl.h handle it.
* strsignal.c (const): Likewise.
Thu Feb 17 13:27:35 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
* xatexit.c (_xexit_cleanup): Declare as extern; don't initialize.
Merging common and initialized variables need not be supported by
ANSI C compilers.
(xatexit): Initialize _xexit_cleanup if not already set.
* xexit.c: Comment fix.
Wed Feb 16 01:15:36 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
* xmalloc.c: Don't declare xexit; it's declared in libiberty.h.
(xrealloc): If oldmem is NULL, allocate with malloc, rather than
assuming that realloc works correctly.
Tue Feb 15 09:26:16 1994 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
* concat.c, ieee-float.c: Replace inclusion of <string.h>
with explicit function declarations, as recommended by Ian Taylor.
Sat Feb 12 10:31:11 1994 David J. Mackenzie (djm@rtl.cygnus.com)
* xmalloc.c (xmalloc, xrealloc): Use PTR and size_t throughout.
(malloc, realloc): Declare.
Thu Feb 10 17:08:19 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
* argv.c, basename.c: Include ansidecl.h and libiberty.h.
* concat.c, fdmatch.c, getruntime.c, spaces.c: Likewise.
* strerror.c, strsignal.c, xatexit.c, xexit.c: Likewise.
* xmalloc.c: Likewise.
* concat.c: Don't declare xmalloc. If __STDC__, use <stdarg.h>
macros, not <varargs.h> macros.
* spaces.c (spaces): Make return type const. Don't crash if
malloc returns NULL.
* strerror.c (struct error_info): Make name and msg fields const.
(error_names): Make const.
(strerrno): Make const.
(strtoerrno): Make argument const.
* strsignal.c (struct signal_info): Make name and msg fields
const.
(signal_names, sys_siglist): Make const.
(strsignal, strsigno): Make const.
(strtosigno): Make argument const.
* xatexit.c: Declare parameter types.
* xmalloc.c (name): Make const.
(xmalloc_set_program_name): Make argument const.
* Makefile.in (INCDIR): Define.
(.c.o): Use $(INCDIR).
(dummy.o): Likewise.
(argv.o, basename.o): New targets; depend on libiberty.h.
(concat.o, fdmatch.o, getruntime.o, spaces.o): Likewise.
(strerror.o, strsignal.o, xatexit.o, xexit.o): Likewise.
(xmalloc.o): Likewise.
(cplus-dem.o): New target; depend on demangle.h.
(getopt.o, getopt1.o): New targets; depend on getopt.h.
(ieee-float.o): New target; depend on ieee-float.h.
(obstack.o): New target; depend on obstack.h.
Tue Feb 8 05:29:08 1994 David J. Mackenzie (djm@thepub.cygnus.com)
Handle obstack_chunk_alloc returning NULL. This allows
obstacks to be used by libraries, without forcing them
to call exit or longjmp.
* obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
If CALL_CHUNKFUN returns NULL, set alloc_failed, else clear it.
(_obstack_begin, _obstack_begin_1): Return 1 if successful, 0 if not.
Tue Feb 8 00:32:28 1994 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
* concat.c, ieee-float.c: Include <string.h>.
Sun Feb 6 21:28:46 1994 David J. Mackenzie (djm@thepub.cygnus.com)
* xmalloc.c (xmalloc_set_program_name): New function.
(xmalloc, xrealloc): Include the name in the error message, if set.
* Replace atexit.c with xatexit.c.
* Makefile.in (CFILES), functions.def: Change references.
Sat Feb 5 14:02:32 1994 Stan Shebs (shebs@andros.cygnus.com)
* getruntime.c (get_run_time): Use getrusage or times if
HAVE_GETRUSAGE or HAVE_TIMES are defined.
Fri Feb 4 15:49:38 1994 David J. Mackenzie (djm@thepub.cygnus.com)
* atexit.c: New file.
* Makefile.in (CFILES), functions.def: Add it.
* xexit.c: New file.
* Makefile.in (CFILES, REQUIRED_OFILES): Add it.
* xmalloc.c (xmalloc, xrealloc): Call xexit instead of exit.
Change request for 0 bytes into request for 1 byte.
Wed Feb 2 11:36:49 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
* xmalloc.c (xmalloc, xrealloc): Print size using %lu, and cast to
unsigned long, to avoid warnings.
Fri Jan 28 17:49:06 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
* dummy.c: Don't include time.h ever; always define clock_t as
"unsigned long". Until gcc/fixincludes ensures that clock_t
exists, __STDC__ isn't a sufficient test. And if clock() doesn't
exist, clock_t probably doesn't either.
Mon Jan 24 11:52:31 1994 Stan Shebs (shebs@andros.cygnus.com)
* clock.c, getruntime.c: New files.
* Makefile.in: Add to file lists.
* functions.def (clock): Add to list.
* dummy.c (time.h): Add if __STDC__.
(clock_t): #define as "unsigned long" if not __STDC__.
Tue Jan 11 11:27:44 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
* strtod.c: Declare atof. From edler@jan.ultra.nyu.edu (Jan
Edler).
Tue Dec 28 14:17:30 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
* Makefile.in (errors): Use CFLAGS as well as LDFLAGS when
linking.
Fri Dec 17 12:26:07 1993 Kung Hsu (kung@cirdan.cygnus.com)
* cplus-dem.c (demangle_arm_pt): New function. Common code
for ARM template demangling.
* cplus-dem.c (demangle_class_name): Use demangle_arm_pt.
* cplus-dem.c (demangle_prefix): Likewise.
Tue Nov 30 15:47:48 1993 Jason Merrill (jason@deneb.cygnus.com)
* cplus-dem.c (cplus_demangle_opname): Add CONST to please gcc.
Sat Nov 27 11:05:50 1993 Fred Fish (fnf@cygnus.com)
Merge changes from tom@basil.icce.rug.nl (Tom R.Hageman)
* strerror.c, strsignal.c: As a small space optimization, don't
include messages when they aren't actually used.
Merge changes from takefive.co.at!joe (Josef Leherbauer)
* cplus-dem.c (demangle_prefix, demangle_function_name,
cplus_demangle_opname): Fixes for systems where cplus_marker
is something other than '$'.
Fri Nov 26 13:51:11 1993 Per Bothner (bothner@kalessin.cygnus.com)
* waitpid.c: Simple-minded approcimation to waitpid
using vanilla wait.
* functions.def, Makefile.in: Update accordingly,
Thu Nov 18 18:01:15 1993 Kung Hsu (kung@cirdan.cygnus.com)
* cplus-dem.c(demangle_template): fix bug template instantiation
with value of user defined type.
Wed Nov 17 18:30:21 1993 Kung Hsu (kung@cirdan.cygnus.com)
* cplus-dem.c(cplus_demangle_opname): add the subject new function
to support unified search of operator in class.
Wed Nov 10 09:47:22 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
gcc -Wall lint:
* strtoul.c (strtoul): use "(digit = *s) != '\0'" not just
"digit = *s" as condition in while loop.
Tue Nov 9 15:52:22 1993 Mark Eichin (eichin@cygnus.com)
* Makefile.in: pass SHELL to recursive make
Thu Nov 4 12:09:26 1993 Per Bothner (bothner@kalessin.cygnus.com)
* vfprintf.c, vprintf.c, vsprintf.c: Make format arg
be (const char*), for ANSI (and gcc w/fixproto) consistency.
Thu Nov 4 08:29:04 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
* config.table: Make *-*-hiux* use mh-hpux.
Fri Oct 22 07:53:15 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
* config.table: Add * to end of all OS names.
Tue Oct 19 17:12:01 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
* Makefile.in (lneeded-list): ensure that object file names are
not duplicated, as multiple instances of the same object file in
a library causes problems on some machines
Mon Oct 18 21:59:28 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
* strcasecmp.c, strncasecmp.c: Change u_char to unsigned char.
Fri Oct 15 22:17:11 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
* strncasecmp.c: new file, implements strncasecmp
* strcasecmp.c: new file, implement strcasecmp
* Makefile.in (CFILES): list these two new source files
* functions.def: add strcasecmp and strncasecmp entries
Fri Oct 15 14:53:05 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
* strtoul.c (strtoul), strtol.c (strtol): Handle overflow
according to ANSI C.
Thu Oct 14 16:34:19 1993 Kung Hsu (kung@cirdan.cygnus.com)
* cplus-dem.c: add support of ARM global constructor/destructor,
and 'G' for passing record or union in parameter.
Wed Oct 13 13:36:19 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
* Makefile.in: Fix comment to clarify that stuff in REQUIRED_OFILES
should not be in functions.def.
Wed Oct 13 13:13:38 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
* functions.def: Removed xmalloc. Stuff in REQUIRED_OFILES should
not be in functions.def.
Mon Oct 4 18:26:39 1993 Kung Hsu (kung@cirdan.cygnus.com)
* cplus-dem.c: change globl constructor/destructor to proper name
Tue Sep 28 18:11:07 1993 Kung Hsu (kung@cirdan.cygnus.com)
* cplus-dem.c: fix bug in constructor/destructor
Tue Sep 28 16:20:49 1993 Kung Hsu (kung@cirdan.cygnus.com)
* cplus-dem.c: support both old and new _vt$... vtbl mangled names
Fri Sep 24 19:07:16 1993 Jason Merrill (jason@deneb.cygnus.com)
* cplus-dem.c: Fix demangle_template prototype
Fri Sep 24 17:32:55 1993 Kung Hsu (kung@cirdan.cygnus.com)
* cplus-dem.c: fix template demangling
* cplus-dem.c: fix const type demangling
* cplus-dem.c: fix constructor/destructor, virtual table,
qualifier, global constructor/destructor demangling
Wed Sep 1 23:13:11 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
* strsignal.c, strerror.c: Use fully-bracketed initializer to
keep gcc -Wall happy.
Fri Aug 27 10:30:09 1993 Jason Merrill (jason@deneb.cygnus.com)
* cplus-dem.c (do_type): Add CONSTS to make gcc happy with last
patch.
Fri Aug 27 11:24:54 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
Patch from Paul Flinders:
* cplus-dem.c (do_type): Deal with arrays.
Tue Aug 24 14:23:50 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
* cplus-dem.c (demangle_qualified: Deal with GNU format for more
than 9 classes.
Wed Aug 18 19:50:29 1993 Jason Merrill (jason@deneb.cygnus.com)
* Makefile.in (dummy.o): Redirect to /dev/null to avoid "variable
not initialized" warnings under HP/UX
Sun Aug 15 20:42:40 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
* strerror.c: Move include of stdio.h after sys_errlist #define.
Also remove NULL definition (stdio.h always defines NULL, so it
never did anything but clutter up the code).
Sat Aug 14 14:21:49 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
* Makefile.in, functions.def: handle xmalloc.c
* xmalloc.c: provide xmalloc and xrealloc functions
Thu Aug 12 17:38:57 1993 David J. Mackenzie (djm@thepub.cygnus.com)
* cplus-dem.c: Fix a comment.
Sat Aug 7 13:56:35 1993 David J. Mackenzie (djm@thepub.cygnus.com)
* getopt1.c: Declare const the way getopt.c does.
Fri Aug 6 17:03:13 1993 David J. Mackenzie (djm@thepub.cygnus.com)
* obstack.c, alloca.c: Update from FSF.
* getopt.c, getopt1.c: Update to current FSF version, which
doesn't use alloca.
Tue Jul 27 14:03:57 1993 Brendan Kehoe (brendan@lisa.cygnus.com)
* Makefile.in (demangle): Add the target with a message saying
where demangle went.
Mon Jul 26 15:49:54 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
* Makefile.in: Remove obsolete `demangle' target.
Thu Jul 22 08:31:01 1993 Fred Fish (fnf@deneb.cygnus.com)
* cplus-dem.c (arm_special): Apply patch from arg@lucid.com to
avoid infinite loop on vtbl symbols with disambiguating "junk"
tacked on the end.
Mon Jul 19 14:10:37 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
* strsignal.c: work around some systems losing definitions of
sys_siglist
* config/mh-lynxos: this system has a losing definition of
sys_siglist
* config.table: use mh-lynxos for *-*-lynxos
Mon Jul 19 17:08:52 1993 Ken Raeburn (raeburn@rtl.cygnus.com)
* config.table: Add support for HPPA BSD hosts.
* config/mh-hpbsd: New file.
Mon Jul 12 18:00:40 1993 K. Richard Pixley (rich@cygnus.com)
* Makefile.in (TAGS): make work when srcdir != objdir.
Sun Jun 27 15:35:31 1993 David J. Mackenzie (djm@thepub.cygnus.com)
* cplus-dem.c (main): Add long options, including --help and
--version.
(usage): New function from code in main.
Tue Jun 22 11:37:38 1993 Per Bothner (bothner@deneb.cygnus.com)
* config.table: New shell scipt, sourced by both ./configure,in
and ../xiberty/configure.in, to avoid maintainance lossages.
* configure.in and ../xiberty/configure.in: Use config.table.
* configure.in: Don't use mh-aix for AIX 3.2, only for 3.1.
* configure.in: Map *-*-irix* (except irix4) to mh-sysv.
* ../xiberty/configure.in: Update from ./configure.in.
Tue Jun 15 17:05:31 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
* Makefile.in: remove parentdir support
Wed May 26 12:59:09 1993 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
* cplus-dem.c (xrealloc): Match definition with prototype.
Tue May 25 14:27:51 1993 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
* cplus-dem.c (demangle_prefix): Demangle cfront
local variables as an extension to ARM demangling.
Fri May 21 09:53:57 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
* ieee-float.c: Don't require pointers to double to be aligned.
Tue May 18 17:12:10 1993 Fred Fish (fnf@cygnus.com)
(merge changes from dlong@cse.ucsc.edu)
* cplus-dem.c (consume_count): Simplify.
* cplus-dem.c (arm_pt, demangle_class_name): New functions.
* cplus-dem.c (various): Calls to arm_pt, demangle_class_name.
* cplus-dem.c (xmalloc, xrealloc, strstr): Make extern decls into
full prototypes.
* cplus-dem.c (free): Add prototype.
* cplus-dem.c (optable): Fully bracketize initializer.
Fri May 14 17:13:05 1993 Per Bothner (bothner@cygnus.com)
* cplus-dem.c: Whether initial underscores are stripped
depends on the external variable prepends_underscore
(which is generated by the binutils Makefile).
Fri May 14 07:32:20 1993 Ken Raeburn (raeburn@deneb.cygnus.com)
* cplus-dem.c (mop_up, arm_special): Remove some unused variables.
Tue May 4 20:31:59 1993 Fred Fish (fnf@cygnus.com)
* cplus-dem.c (consume_count): Return zero if arg does not
start with digit, and don't consume any input.
Tue May 4 08:10:28 1993 Jim Kingdon (kingdon@cygnus.com)
* Makefile.in (demangle): Use ${srcdir} not $^.
* strtod.c: New file, needed at least for BSD 4.3.
Sun May 2 11:30:42 1993 Fred Fish (fnf@cygnus.com)
* strsignal.c (sys_siglist): For ANSI compilations, type is
"const char *const". Also remove conditionalization on __STDC__
since const is defined away for non-ANSI.
Wed Apr 28 19:29:55 1993 Ken Raeburn (raeburn@deneb.cygnus.com)
* configure.in: Recognize *-*-hpux.
* config/mh-hpux: New file.
Tue Apr 27 15:22:19 1993 Per Bothner (bothner@cygnus.com)
* tmpnam.c: Added ANSI tmpnam() function.
* functions.def, Makefile.in: Update accordingly.
Tue Apr 27 13:38:38 1993 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
* cplus-dem.c (demangle_function_name): Get the demangling of
stop__1A right.
Fri Apr 16 23:48:24 1993 Jim Kingdon (kingdon at calvin)
* cplus-dem.c: Declare strstr return type.
Fri Mar 26 12:01:26 1993 Jim Kingdon (kingdon@cygnus.com)
* strsignal.c: Add some AIX signals.
Thu Mar 25 15:17:23 1993 Ian Lance Taylor (ian@cygnus.com)
* Makefile.in (MAKEOVERRIDES): Define to be empty.
Wed Mar 24 01:59:25 1993 david d `zoo' zuhn (zoo at poseidon.cygnus.com)
* Makefile.in: add installcheck & dvi targets
Thu Mar 18 14:05:44 1993 Per Bothner (bothner@rtl.cygnus.com)
* ieee-float.c: New file, moved from ../gdb (since it is
needed by ../opcode/m68k-dis.c).
Tue Mar 2 17:47:31 1993 Fred Fish (fnf@cygnus.com)
* cplus-dem.c: Replace all references to cfront with ARM.
Fri Feb 26 00:17:07 1993 Per Bothner (bothner@rtl.cygnus.com)
* cplus-dem.c: Fix main program (when compiled with -DMAIN)
to be more useful as a filter.
Sat Feb 20 21:41:39 1993 Brendan Kehoe (brendan@lisa.cygnus.com)
* Makefile.in (install_to_libdir, install_to_tooldir): Go into the
destination directory before running $(RANLIB), in case that
program tries to create a file in the current directory as part of
its work.
Thu Feb 18 23:00:19 1993 John Gilmore (gnu@cygnus.com)
* strsignal.c (sys_siglist): Remove yet another *%^&%&$# "const"
because BSD 4.4 lacks one. Isn't this fun?
Thu Feb 18 11:24:25 1993 Fred Fish (fnf@cygnus.com)
* cplus-dem.c (demangle_signature): Set func_done after
demangling a template.
* cplus-dem.c (demangle_template): Fix several small bugs
in demangling GNU style templates.
* cplus-dem.c (demangle_prefix): Fix for templates in GNU
style constructors.
* cplus-dem.c (gnu_special): Fix for templates in GNU style
static data members.
Tue Feb 16 17:28:35 1993 Fred Fish (fnf@cygnus.com)
* cplus-dem.c (demangle_signature): Modify to include type
modifiers like static and const in remembered types.
Thu Feb 11 22:20:47 1993 Fred Fish (fnf@cygnus.com)
* cplus-dem.c (demangled_qualified): Add new parameter that tells
whether to prepend or append the qualifiers.
* cplus-dem.c (string_prepends): Used now, remove #if 0.
* cplus-dem.c (demangle_signature): Call demangle_qualified
with prepending.
* cplus_dem.c (gnu_special): Recognize static data members that
use qualified names.
* cplus-dem.c (demangle_qualified): Accumulate qualifiers in a
temporary buffer and the prepend or append them to the result,
as specified by the new "append" flag.
* cplus-dem.c (do_type): Call demangled_qualified with
appending.
Mon Dec 28 10:47:19 1992 Ken Raeburn (raeburn@cygnus.com)
* strsignal.c (signal_table): Now const.
(init_signal_tables): Variable eip now points to const.
* strerror.c (error_table): Now const.
(init_error_tables): Variable eip now points to const.
Tue Dec 15 15:36:50 1992 Per Bothner (bothner@cygnus.com)
* memchr.c (memchr): New (ANSI standard) function.
* Makefile.in, functions.def: Added memchr.
* Makefile.in (AR_FLAGS): Use rc instad of non-standard cq.
Wed Dec 2 22:49:10 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
* getopt.c: remove use of USG around <alloca.h>, which never meant
anything anyway
* config/mh-{aix,apollo68,ncr3000,sysv,sysv4}: removed definitions
of USG and USGr4
Thu Nov 19 03:09:33 1992 Brendan Kehoe (brendan@lisa.cygnus.com)
* cplus-dem.c (demangle_fund_type): Recognize `w', a wide character;
it's now a type according to the ANSI X3J16 working paper; output
"wchar_t" for it.
(demangle_template): Accept `w' as an integral type.
(xmalloc, xrealloc): Use `char *', not `PTR'. Cast calls to their
counterparts malloc and realloc to `char *'.
(main): Exit with a 0 status.
* Makefile.in (demangle): Don't expect the user to define
DEMANGLE, instead force to be cplus-dem.c. Look in $(srcdir)/../include
for demangle.h. Pass it any HDEFINES or XTRAFLAGS.
Wed Nov 18 18:56:20 1992 John Gilmore (gnu@cygnus.com)
* Makefile.in (AR_FLAGS): Avoid verbosity.
* config/mh-sysv4: Remove AR_FLAGS override, use INSTALL=cp,
replace USGr4 with HAVE_SYSCONF.
* config/mh-solaris: Remove; mh-sysv4 works now.
* getpagesize.c: Replace USGr4 with HAVE_SYSCONF.
* configure.in: Simplify host matching table, remove separate
solaris config file.
Sun Nov 15 09:35:16 1992 Fred Fish (fnf@cygnus.com)
* configure.in (i[34]86-*-solaris2*): Add, use mh-sysv4.
Tue Nov 3 21:27:03 1992 Brendan Kehoe (brendan@cygnus.com)
* cplus-dem.c (xmalloc, xrealloc): Add decls.
(remember_type): Don't cast xmalloc.
(string_need): Likewise; don't cast xrealloc either.
Fri Oct 23 08:52:01 1992 Ian Lance Taylor (ian@cygnus.com)
* Makefile.in, functions.defs, rename.c: added simple
implementation of rename, since some binutils programs use it.
Thu Oct 15 15:18:22 1992 Per Bothner (bothner@cygnus.com)
* strsignal.c: Add appropriate 'const' to sys_siglist
extern declaration (if __STDC__). (Needed for Linux.)
* strsignal.c (strsignal): Add cast to remove const-ness.
Fri Oct 9 03:22:55 1992 John Gilmore (gnu@cygnus.com)
* Makefile.in (needed.awk, needed2.awk): Remove erroneous \'s
before "'s, diagnosed by BSD 4.4 awk.
Thu Oct 8 15:25:12 1992 Ian Lance Taylor (ian@cygnus.com)
* Makefile.in: create config.h and needed-list through $(CONFIG_H)
and $(NEEDED_LIST), to give some hooks for xiberty.
Thu Oct 1 23:31:42 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
* configure.in: use cpu-vendor-triple instead of nested cases
Wed Sep 30 11:26:59 1992 Per Bothner (bothner@rtl.cygnus.com)
* Makefile.in, argv.c, basename.c, bcmp.c, bcopy.c, bzero.c,
concat.c, cplus-dem.c, fdmatch.c, getcwd.c, getopt.c, getopt1.c,
getpagesize.c, insque.c, memcmp.c, memcpy.c, memmove.c, memset.c,
obstack.c, sigsetmask.c, spaces.c, strchr.c, strerror.c,
strrchr.c, strsignal.c, strstr.c, vfork.c, vsprintf.c:
Convert from using GPL to LGPL.
Sat Sep 26 04:01:30 1992 John Gilmore (gnu@cygnus.com)
* Makefile.in (errors): Leave dummy.o and dummy around so that
we can see how the needed list was generated (it's sometimes wrong).
(mostlyclean): Remove them.
Mon Sep 21 14:50:42 1992 Ian Lance Taylor (ian@cygnus.com)
* getcwd.c: supply a default if MAXPATHLEN is not defined.
* config/mh-irix4: set EXTRA_OFILES to alloca.o, from WRS.
Wed Sep 9 12:41:48 1992 Ian Lance Taylor (ian@cygnus.com)
* Makefile.in: Use XTRAFLAGS when compiling, so that xiberty works
when cross-compiling.
Thu Sep 3 13:29:39 1992 K. Richard Pixley (rich@sendai.cygnus.com)
* cplus-dem.c: (demangle_prefix): reduction in strength of strstr
as a time optimization.
* cplus-dem.c (cplus_demangle): remove strpbrk test. Appears to
be more expensive than simply demangling.
* cplus-dem.c (cplus_match): new function.
Tue Sep 1 15:24:04 1992 Per Bothner (bothner@rtl.cygnus.com)
* cplus-dem.c: #include <stdio.h>, to define NULL.
Define current_demangling_style.
Sun Aug 30 17:58:19 1992 Per Bothner (bothner@rtl.cygnus.com)
* cplus-dem.c: New file, moved from ../gdb.
* cplus-dem.c (set_cplus_marker_for_demangling): New exported
function, to avoid compiling in target-dependency for CPLUS_MARKER.
* cplus-dem.c (cplus_demangle): Allow demangling style option
to be passed as a parameter, but using the global variable
current_demangling_style as a default.
* Makefile.in: Update for cplus-dem.c
Sat Aug 29 10:44:09 1992 Fred Fish (fnf@cygnus.com)
* obstack.c: Merge in comment changes from FSF version. Now
matches the FSF version exactly.
Fri Aug 28 18:39:08 1992 John Gilmore (gnu@cygnus.com)
* obstack.c (CALL_FREEFUN): Can't use ?: with void values (at
least on losing DECstations!); use if-then-else instead.
Wed Aug 19 14:40:34 1992 Ian Lance Taylor (ian@cygnus.com)
* Makefile.in: always create installation directories.
Mon Aug 10 17:33:40 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
* Makefile.in: clean up definition of CFILES, more comments
Sat Aug 8 23:10:59 1992 Fred Fish (fnf@cygnus.com)
* getopt.c (my_index): Make first arg const to match strchr,
which it sometimes is remapped to.
Sat Aug 1 13:48:50 1992 Fred Fish (fnf@cygnus.com)
* obstack.c (DEFAULT_ALIGNMENT): Update to match FSF version.
* obstack.c (_obstack_begin): Initialize use_extra_arg.
* obstack.c (_obstack_begin_1): New, from FSF version.
Mon Jul 20 21:07:58 1992 Fred Fish (fnf@cygnus.com)
* obstack.c (CALL_CHECKFUN, CALL_FREEFUN): Use use_extra_arg and
extra_arg.
* obstack.c (_obstack_begin): Remove area_id and flags arguments
(previously added for mmalloc support, interface has changed).
Also convert flags usage to use use_extra_arg and maybe_empty_object.
Fri Jul 10 00:41:53 1992 Fred Fish (fnf@cygnus.com)
* argv.c: Move expandargv inline and eliminate static variables.
Rewrite to always allocate in powers of two. Fix to return an
argv with a single null string arg if passed a null string.
Fri Jul 3 20:27:29 1992 Fred Fish (fnf@cygnus.com)
* random.c, sigsetmask.c, strerror.c, strsignal.c: Remove
"(void)" casts from function calls where the return value is
ignored, in accordance with GNU coding standards.
Mon Jun 29 10:54:19 1992 Fred Fish (fnf at cygnus.com)
* bcopy.c, strerror.c, strsignal.c: Lint.
Thu Jun 25 09:18:41 1992 K. Richard Pixley (rich@rtl.cygnus.com)
* getopt.c: merge changes from make.
Thu Jun 25 04:43:22 1992 John Gilmore (gnu at cygnus.com)
* alloca.c: Incorporate fixes from gdb/alloca.c.
FIXME: Eventually move gdb's alloca configuration files here,
and remove gdb/alloca.c and its Makefile.in support.
Tue Jun 23 21:56:30 1992 Fred Fish (fnf@cygnus.com)
* dummy.c: Define NOTHING to /*nothing*/, change return type
of main to int and return zero.
* functions.def: Supply NOTHING as the fourth arg to macros
that don't have an explicit arg, to satisfy picky preprocessors.
Wed Jun 17 18:13:58 1992 Per Bothner (bothner@rtl.cygnus.com)
* Makefile.in: Clean up *clean rules, as per standards.texi.
Tue Jun 16 16:11:59 1992 K. Richard Pixley (rich@rtl.cygnus.com)
* getopt.c, getopt1.c: merged largely gratuitous, mostly
whitespace diffs from other prep distributions.
Mon Jun 15 12:25:46 1992 Fred Fish (fnf@cygnus.com)
* config/mh-ncr3000 (INSTALL): Don't use /usr/ucb/install,
it is broken on ncr 3000's.
Mon Jun 15 01:03:26 1992 John Gilmore (gnu at cygnus.com)
* sigsetmask.c: Rewrite. Old one was very confused about its
arguments and result. New one can't do much, but at least knows
what it can't do, and it's good enough for GDB's use.
Sun Jun 14 15:17:40 1992 Stu Grossman (grossman at cygnus.com)
* functions.def: Use proper prototype for strtoul.
Fri Jun 12 19:22:40 1992 John Gilmore (gnu at cygnus.com)
* Makefile.in: Add random.c.
* config/mh-*: Use "true" rather than "echo >/dev/null" for ranlib.
* configure.in: update solaris2 config.
Wed Jun 10 16:31:29 1992 Fred Fish (fnf@cygnus.com)
* random.c: Add for random() and srandom().
* functions.def: Add random
Tue Jun 9 17:27:18 1992 Fred Fish (fnf@cygnus.com)
* config/{mh-ncr3000, mh-sysv4}: Add definition for INSTALL
using /usr/ucb/install.
Mon Jun 1 13:20:17 1992 Per Bothner (bothner@rtl.cygnus.com)
* strerror.c: Kludge to guard against a conflict with
possible declaration of sys_errlist in errno.h.
Sun May 31 15:07:47 1992 Mark Eichin (eichin at cygnus.com)
* configure.in, config/mh-solaris: add solaris2 config support.
Fri May 29 17:23:23 1992 Per Bothner (bothner@rtl.cygnus.com)
* sigsetmask.c: #ifdef out sigsetmask if SIG_SETMASK
is not defined (should be defined in signal.h, says Posix.).
Mon May 18 17:35:04 1992 K. Richard Pixley (rich@cygnus.com)
* getopt.c: merged changes from make-3.62.11.
Fri May 8 14:53:07 1992 K. Richard Pixley (rich@cygnus.com)
* getopt.c: merged changes from bison-1.18.
Tue May 5 11:51:40 1992 Per Bothner (bothner@rtl.cygnus.com)
* Makefile.in: Don't have $(EXTRA_OFILES) depend on config.h,
since that introduces a circular dependency.
($(EXTRA_OFILES) are used to build config.h.)
* strtoul.c: Fixes to handle non-decimal bases better.
Wed Apr 22 09:27:51 1992 Fred Fish (fnf@cygnus.com)
* config/mh-ncr3000: Replace MINUS_G with CFLAGS.
* Makefile.dos: Finish MINUS_G eradication.
* Makefile.in (CFILES): Add strsignal.c.
* Makefile.in (REQUIRED_OFILES): Add strerror.o strsignal.o
* Makefile.in (needed-list): Split creation of errors file to
separate make target.
* Makefile.in (config.h, needed2.awk, errors): New targets.
* Makefile.in (clean): Split to multiple lines, add needed2.awk
and config.h.
* dummy.c (DEFFUNC, DEFVAR): Add defines and undefs.
* functions.def (strerror): Remove from optional list.
* functions.def (sys_nerr, sys_errlist, sys_siglist): DEFVAR's
* functions.def (strerror, psignal): DEFFUNC's
* strerror.c: Rewrite from scratch to use sys_errlist only if
available, add errno_max(), add strerrno(), add strtoerrno(),
add test driver.
* strsignal.c: New file, signal equivalent to strerror.c.
Uses sys_siglist if available, defines signo_max(), strsignal(),
strsigno(), strtosigno(), psignal(), and test driver.
Mon Apr 20 20:49:32 1992 K. Richard Pixley (rich@cygnus.com)
* Makefile.in: do not print recursion line.
* Makefile.in: allow CFLAGS to be passed in from command line.
Removed MINUS_G. Default CFLAGS to -g.
Mon Apr 20 12:57:46 1992 Per Bothner (bothner@rtl.cygnus.com)
* config/mh-aix: New. EXTRA_OFILES lists copysign.o,
so libg++ users don't have to be inconvenienced by a
libc.a bug (libc.a needs copysign, but doesn't define it!).
* configure.in: Use config/mh-aix.
* strtoul.c: Handle '-' as required by ANSI.
Clean up radix handling.
* strstr.c: Fix buggy algorithm.
* Makefile.in: Change so that ${EXTRA_OFILES} is
appended to needed-list (which is used by libg++).
Fri Apr 10 22:51:41 1992 Fred Fish (fnf@cygnus.com)
* configure.in: Recognize new ncr3000 config.
* config/mh-ncr3000: New config file.
Wed Apr 1 23:31:43 1992 John Gilmore (gnu at cygnus.com)
* argv.c, dummy.c: Lint.
Tue Mar 31 18:46:44 1992 Fred Fish (fnf@cygnus.com)
* config/mh-sysv4: New config file.
* configure.in (host_makefile_frag): Set to config/mh-sysv4 for
host_os == sysv4.
* getpagesize.c: For SVR4, use sysconf(_SC_PAGESIZE) to get
pagesize.
Sun Mar 29 12:26:42 1992 John Gilmore (gnu at cygnus.com)
* getopt.c: Lint.
Fri Mar 27 08:32:55 1992 Fred Fish (fnf@cygnus.com)
* functions.def (alloca): Fix return type and args to avoid
type clash with gcc's builtin alloca.
Tue Mar 24 23:33:42 1992 K. Richard Pixley (rich@cygnus.com)
* configure.in, config/mh-irix4: irix4 support.
* Makefile.in, functions.def, alloca.c: added alloca.
Tue Mar 24 17:34:46 1992 Stu Grossman (grossman at cygnus.com)
* obstack.c (CALL_FREEFUN): Make it compile on DECstations.
Thu Mar 19 13:57:42 1992 Fred Fish (fnf@cygnus.com)
* argv.c: Fix various external function definitions to be
correct in an ANSI compilation environment.
Sat Mar 14 17:28:17 1992 Fred Fish (fnf@cygnus.com)
* obstack.c: Changes to support calling mmalloc functions,
which take an additional argument over malloc functions.
Fri Mar 6 22:01:10 1992 K. Richard Pixley (rich@cygnus.com)
* added check target.
Thu Feb 27 22:19:39 1992 Per Bothner (bothner@cygnus.com)
* argv.c: #include alloca-conf.h (needed by AIX).
Wed Feb 26 18:04:40 1992 K. Richard Pixley (rich@cygnus.com)
* Makefile.in, configure.in: removed traces of namesubdir,
-subdirs, $(subdir), $(unsubdir), some rcs triggers. Forced
copyrights to '92, changed some from Cygnus to FSF.
Sat Feb 22 01:09:21 1992 Stu Grossman (grossman at cygnus.com)
* argv.c: Check in Fred's version which fixes problems with
alloca().
Fri Feb 7 21:46:08 1992 Stu Grossman (grossman at cygnus.com)
* makefile.dos: Remove NUL to keep patch from failing.
Thu Jan 30 22:48:41 1992 Stu Grossman (grossman at cygnus.com)
* getopt.c (_getopt_internal): Fix usage of enum has_arg.
Mon Jan 20 18:53:23 1992 Stu Grossman (grossman at cygnus.com)
* getopt.c, getopt1.c, ../include/getopt.h: Get latest versions.
Sat Jan 18 16:53:01 1992 Fred Fish (fnf at cygnus.com)
* argv.c: New file to build and destroy standard argument
vectors from a command string.
* Makefile.in: Add argv.c and argv.o to appropriate macros.
Fri Dec 20 12:12:57 1991 Fred Fish (fnf at cygnus.com)
* configure.in: Change svr4 references to sysv4.
* rindex.c: Declare return type of externally used function
strrchr().
Thu Dec 19 18:35:03 1991 John Gilmore (gnu at cygnus.com)
* Makefile.in: Remove "***" in normal output, since Make produces
this on errors, and it's convenient to search for.
Tue Dec 17 23:21:30 1991 Per Bothner (bothner at cygnus.com)
* memcmp.c, memcpy.c, memmove.c, memset.c, strchr.c, strrchr.c:
New ANSI functions. The old non-ANSI functions (such as bcopy)
should be avoided.
* bcopy.c: Fix to correctly handle overlapping regions.
* index.c, rindex.c: Re-write in terms of strchr() and strrchr().
* functions.def: Add the new functions.
* functions.def: Add 4th parameter to DEF macro,
an ansidecl.h-style prototype.
* dummy.c: Use expanded DEF macro to create a dummy function
call, with correct parameter types. (This avoids some
complaints from gcc about predefined builtins.)
Move the functionality of config/mh-default into Makefile.in.
This avoid duplication, and simplifies things slightly.
* Makefile.in: Tweak so we don't need config/mh-default.
* README: Update.
* configure.in: No longer need config/mh-default.
* config/mh-default: Deleted.
* config/mh-sysv: Remove lines copied from old mh-default.
Tue Dec 17 05:46:46 1991 John Gilmore (gnu at cygnus.com)
* fdmatch.c (fdmatch): Don't compare st_rdev, which is for
'mknod' device numbers.
Mon Dec 16 12:25:34 1991 Fred Fish (fnf at cygnus.com)
* fdmatch.c, Makefile.in: Add new function that takes two
open file descriptors and returns nonzero if they refer to
the same file, zero otherwise. (used in gdb)
Wed Dec 11 17:40:39 1991 Steve Chamberlain (sac at rtl.cygnus.com)
From DJ:
* msdos.c: stub functions for dos.
* makefile.dos, configdj.bat: new.
* getopt.c: Don't include alloca-conf.h in a GO32 world.
Tue Dec 10 04:14:49 1991 K. Richard Pixley (rich at rtl.cygnus.com)
* Makefile.in: infodir belongs in datadir.
Fri Dec 6 23:26:45 1991 K. Richard Pixley (rich at rtl.cygnus.com)
* Makefile.in: remove spaces following hyphens because bsd make
can't cope. added standards.text support. install using
INSTALL_DATA.
* configure.in: remove commontargets as it is no longer a
recognized hook.
Thu Dec 5 22:46:46 1991 K. Richard Pixley (rich at rtl.cygnus.com)
* Makefile.in: idestdir and ddestdir go away. Added copyrights
and shift gpl to v2. Added ChangeLog if it didn't exist. docdir
and mandir now keyed off datadir by default.
Fri Nov 22 19:15:29 1991 John Gilmore (gnu at cygnus.com)
* Makefile.in: find-needed.awk does not fit in 14 chars.
* Makefile.in: Suppress error checking when compiling the test
program, because Ultrix make/sh aborts there due to a bug.
Fri Nov 22 12:23:17 1991 Per Bothner (bothner at cygnus.com)
* Makefile.in: Re-did how EXTRA_OFILES is used to be more useful.
* README: Explained how the auto-configuration works,
and how to add new files and/or configurations.
Fri Nov 22 09:45:23 1991 John Gilmore (gnu at cygnus.com)
* strtoul.c: Avoid defining ULONG_MAX if already defined;
cast a const char * to char * for pedants.
* getopt.c: Only define "const" after local include files get to,
and only if they haven't defined it.
Thu Nov 21 16:58:53 1991 John Gilmore (gnu at cygnus.com)
* getcwd.c (remove getwd.c): GNU code should call getcwd(). We
emulate it with getwd() if available. This avoids callers having
to find a MAXPATHLEN or PATH_MAX value from somewhere.
* Makefile.in, functions.def: getwd->getcwd.
* configure.in: Use generic case for every system.
* config/mh-{delta88,mach,rs6000,svr4}: Remove.
* config/mh-sysv: Use default handling, just add -DUSG.
Thu Nov 14 10:58:05 1991 Per Bothner (bothner at cygnus.com)
* Makefile.in, config/mh-default: Re-do make magic
so that for the default ("automatic") mode we only
compile the files we actually need. Do this using
a recursive make: The top-level generates the list
of needed files (loosely, the ones missing in libc),
and then passes that list to the recursive make.
* config/mh-mach: Remove obsolete STRERROR-{C,O} macros.
Tue Nov 12 19:10:57 1991 John Gilmore (gnu at cygnus.com)
RS/6000 host support (grumble).
* configure.in: Build alloca-conf.h file from alloca-norm.h
(everything else) or alloca-botch.h (rs/6000).
* Makefile.in: Include . on the include path.
* getopt.c: Use alloca-conf.h.
* alloca-norm.h: How to declare alloca on reasonable machines.
* alloca-botch.h: How to declare alloca on braindead machines.
Tue Nov 12 09:21:48 1991 Fred Fish (fnf at cygnus.com)
* concat.c : New file, like concat() in gdb but can take a
variable number of arguments rather than fixed at 3 args. For
now, client applications must supply an xmalloc(), which is a
front end function to malloc() that deals with out-of-memory
conditions.
* Makefile.in: Add concat.c and concat.o to appropriate macros.
Sat Nov 9 13:29:59 1991 Fred Fish (fnf at cygnus.com)
* config/mh-svr4: Add sigsetmask to list of required functions.
Sun Nov 3 11:57:56 1991 Per Bothner (bothner at cygnus.com)
* vsprintf.c: New file.
* functions.def, Makefile.in: Add vsprintf.
Sun Oct 27 16:31:22 1991 John Gilmore (gnu at cygnus.com)
* configure.in, config/mh-rs6000: Add rs/6000 host support.
* Makefile.in: Compile with debug info.
Fri Oct 25 17:01:12 1991 Per Bothner (bothner at cygnus.com)
* Makefile.in, configure.in, and new files: dummy.c, functions.def,
config/mf-default: Added a default configuration mode,
which includes into libiberty.a functions that are "missing" in libc.
* strdup.c, vprintf.c, vfprintf.c: New files.
Thu Oct 24 02:29:26 1991 Fred Fish (fnf at cygnus.com)
* config/hmake-svr4: New file.
* config/hmake-sysv: Add HOST_CFILES and HOST_OFILES.
* basename.c, bcmp.c, bcopy.c, bzero.c, getpagesize.c getwd.c,
index.c, insque.c, rindex.c, spaces.c, strstr.c, vfork.c: New
files containing either portable C versions or emulations using
native library calls.
* strerror.c: Add copyright, internal documentation, etc.
* strtol.c: Replace hardwired hex constants with some more
portable macros. Remove illegal (according to gcc) cast.
* strtoul.c: Replace hardwired hex constant with more portable
macro.
* Makefile.in: Move TARGETLIB and CFLAGS where makefile fragments
can override them. Add new source and object file names to CFILES
and OFILES respectively.
* configure.in: Add support for SVR4 makefile fragments.
Tue Oct 22 19:00:23 1991 Steve Chamberlain (steve at cygnus.com)
* Makefile.in: Move RANLIB, AR and AR_FLAGS to where they can be
over-ridden by config/hmake-*
* configure.in: added m88kcvs to sysv list
Fri Oct 4 01:29:08 1991 John Gilmore (gnu at cygnus.com)
* Makefile.in: Most hosts need strerror, but one or two don't,
and they override these definitions in the host-dependent makefile
fragment.
* config/hmake-mach: The odd man out on strerror -- it's supplied.
* strerror.c: New file.
* strtol.c, strtoul.c: Add strtol to libiberty, since Mach lacks
it and bfd uses it.
* configure.in, Makefile.in, config/hmake-mach: Only configure
strtol & strotoul in on Mach.
Tue Sep 3 06:36:23 1991 John Gilmore (gnu at cygint.cygnus.com)
* obstack.c: Merge with latest FSF version.
Local Variables:
version-control: never
End:
|