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
|
Please note: This file provides a complete, temporally ordered log of
changes that went into every version of Perl. If you'd like more
detailed information, please consult the comments in the individual
patches posted to the perl5-porters mailing list. Patches for each
individual change may also be obtained through ftp and rsync--see
pod/perlhack.pod for the details.
For information on what's new in this release, see pod/perldelta.pod.
[The "CAST AND CREW" list has been moved to AUTHORS.]
NOTE: Each change entry shows the change number; who checked it into the
repository; when; description of the change; which branch the change
happened in; and the affected files. The file lists have a short symbolic
indicator:
! modified
+ added
- deleted
+> branched (from elsewhere)
!> merged changes (from elsewhere)
The Message-Ids in the change entries refer to the email messages sent
to the perl5-porters mailing list. You can retrieve the messages for
example from http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/
--------------
Version v5.8.3 Maintenance release working toward v5.8.3
--------------
____________________________________________________________________________
____________________________________________________________________________
[ 22151] By: nicholas on 2004/01/14 17:54:36
Log: Integrate:
[ 22149]
Subject: Doc patches for File::Find
From: Andy Lester <andy@petdance.com>
Date: Mon, 12 Jan 2004 00:10:50 -0600
Message-Id: <20040112061050.GB7308@petdance.com>
[ 22150]
Bump version number as file has changed since 5.8.2
Branch: maint-5.8/perl
!> lib/File/Find.pm
____________________________________________________________________________
[ 22148] By: nicholas on 2004/01/14 16:53:02
Log: Update Changes
Branch: maint-5.8/perl
! Changes
____________________________________________________________________________
[ 22147] By: nicholas on 2004/01/14 16:51:39
Log: Update sample config to 5.8.3
Branch: maint-5.8/perl
! Porting/config.sh Porting/config_H
____________________________________________________________________________
[ 22146] By: nicholas on 2004/01/14 16:32:27
Log: Subject: arm patches to rc1
From: Redvers Davies <red@criticalintegration.com>
Message-Id: <1073949147.10300.143.camel@ragefire>
Date: Mon, 12 Jan 2004 18:12:27 -0500
Branch: maint-5.8/perl
! Cross/Makefile Cross/Makefile.SH.patch
____________________________________________________________________________
[ 22145] By: nicholas on 2004/01/14 15:14:51
Log: All pigs are fed, watered and ready to fly.
Branch: maint-5.8/perl
! patchlevel.h
____________________________________________________________________________
[ 22144] By: nicholas on 2004/01/14 14:48:32
Log: Update Changes
Branch: maint-5.8/perl
! Changes patchlevel.h
____________________________________________________________________________
[ 22143] By: nicholas on 2004/01/14 14:47:49
Log: We're planning on making history today. Mind you, not that much -
only 1 line.
Branch: maint-5.8/perl
! pod/perlhist.pod
____________________________________________________________________________
[ 22142] By: nicholas on 2004/01/14 14:45:07
Log: Mention that bug 24846 is fixed (utf8 join)
Branch: maint-5.8/perl
! pod/perl583delta.pod
____________________________________________________________________________
[ 22141] By: nicholas on 2004/01/14 14:40:59
Log: Update changes
Branch: maint-5.8/perl
! Changes patchlevel.h
____________________________________________________________________________
[ 22140] By: nicholas on 2004/01/14 14:37:50
Log: rebuild pod/perltoc.pod
Branch: maint-5.8/perl
! pod/perltoc.pod
____________________________________________________________________________
[ 22139] By: nicholas on 2004/01/14 14:34:46
Log: Note that I failed to integrate the suidperl patch. me--
Branch: maint-5.8/perl
! pod/perl583delta.pod
____________________________________________________________________________
[ 22138] By: nicholas on 2004/01/14 13:51:23
Log: Revert 21936 (which solves leaks with threads and weak references)
because it can introduce new SEGVs, and I'd prefer to ship with
the same bugs as 5.8.2, rather than different bugs.
Same bugs feels like the lesser of two evils.
Branch: maint-5.8/perl
! mg.c sv.c
____________________________________________________________________________
[ 22137] By: nicholas on 2004/01/14 13:20:47
Log: Integrate CGI::Fast and CGI::Util from CGI 3.03
(just version number changes)
I don't want to integratre CGI.pm 3.03 as it also has functionality
changes, and is less than 48 hours old.
Branch: maint-5.8/perl
!> lib/CGI/Fast.pm lib/CGI/Util.pm
____________________________________________________________________________
[ 22135] By: nicholas on 2004/01/14 12:25:57
Log: Some more updates
Branch: maint-5.8/perl
! pod/perl583delta.pod
____________________________________________________________________________
[ 22134] By: nicholas on 2004/01/13 23:07:41
Log: Integrate:
[ 22133]
Add VMS to the list of "don't fork" OSes
[In the most simple way possible. Fix this properly post 5.8.3
to use $Config{d_fork} or something more robust]
Branch: maint-5.8/perl
!> ext/threads/shared/t/wait.t
____________________________________________________________________________
[ 22132] By: nicholas on 2004/01/13 21:55:59
Log: Integrate:
[ 21644]
Document the fact that keys() and values() are optimized
for void context (as suggested by Liz.)
[ 22108]
documentation nit
[ 22125]
Document usage of $_ and pos() inside /(?{...})/.
(see change #2367.)
Branch: maint-5.8/perl
!> pod/perlfunc.pod pod/perlop.pod pod/perlre.pod
____________________________________________________________________________
[ 22131] By: nicholas on 2004/01/13 21:16:27
Log: Back out 22144.
(Craig Berry informs us that the official name is
"OpenVMS Industry Standard 64"
which may be shortened to "OpenVMS I64"
Bah. Marketrdroids)
Branch: maint-5.8/perl
! pod/perl583delta.pod
____________________________________________________________________________
[ 22127] By: nicholas on 2004/01/13 08:55:10
Log: Integrate:
[ 22122]
Subject: Re: 5.8.3-RC1, ext/threads/shared/t/wait still hanging
From: Mike Pomraning <mjp@pilcrow.madison.wi.us>
Message-ID: <Pine.LNX.4.58.0401121127210.15844@benevelle.wi.securepipe.com>
Date: Mon, 12 Jan 2004 12:41:52 -0600 (CST)
Branch: maint-5.8/perl
!> ext/threads/shared/t/wait.t
____________________________________________________________________________
[ 22118] By: nicholas on 2004/01/12 12:43:13
Log: Integrate:
[ 22117]
Subject: Re: [perl #24846] [PATCH] Apparent utf8 bug in join() in 5.8.[012]
From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
Date: Mon, 12 Jan 2004 11:19:37 +0900
Message-Id: <20040112111007.EB69.BQW10602@nifty.com>
Branch: maint-5.8/perl
!> doop.c t/op/join.t
____________________________________________________________________________
[ 22116] By: nicholas on 2004/01/11 23:55:36
Log: Integrate:
[ 22115]
Subject: Re: 5.8.3-RC1, ext/threads/shared/t/wait still hanging
From: Mike Pomraning <mjp@pilcrow.madison.wi.us>
Message-ID: <Pine.LNX.4.58.0401111548010.6679@localhost.localdomain>
Date: Sun, 11 Jan 2004 16:24:18 -0600 (CST)
Branch: maint-5.8/perl
!> ext/threads/shared/t/wait.t
____________________________________________________________________________
[ 22114] By: nicholas on 2004/01/11 23:27:27
Log: Typo spotted by Jarkko
Branch: maint-5.8/perl
! pod/perl583delta.pod
____________________________________________________________________________
[ 22111] By: nicholas on 2004/01/11 19:57:50
Log: Subject: Re: [PATCH win32/makefile.mk] (was Re: 5.8.3 RC1)
From: Abe Timmerman <abe@ztreet.demon.nl>
Message-Id: <200401111813.40829.abe@ztreet.demon.nl>
Date: Sun, 11 Jan 2004 18:13:40 +0100
plus revert 22092 and 22080
Branch: maint-5.8/perl
! pod/buildtoc win32/Makefile win32/makefile.mk
____________________________________________________________________________
[ 22105] By: nicholas on 2004/01/09 22:10:43
Log: Integrate:
[ 22104]
Bah. Makefile.PL still tests the sub-MANIFEST
Branch: maint-5.8/perl
!> ext/Storable/MANIFEST
____________________________________________________________________________
[ 22099] By: nicholas on 2004/01/08 16:52:35
Log: Update META.yml
ext/threads and ext/PerlIO now aren't in the list - is this correct?
Branch: maint-5.8/perl
! META.yml
____________________________________________________________________________
[ 22098] By: nicholas on 2004/01/08 15:24:15
Log: Integrate:
[ 22096]
Subject: [PATCH pod/perlhist.pod] Mention 5.8.3-RC1
From: Abigail <abigail@abigail.nl>
Message-ID: <20040107230027.GC393@abigail.nl>
Date: Thu, 8 Jan 2004 00:00:27 +0100
Branch: maint-5.8/perl
!> pod/perlhist.pod
____________________________________________________________________________
[ 22097] By: nicholas on 2004/01/08 14:44:17
Log: That was RC1. With some bonus bits
Branch: maint-5.8/perl
! patchlevel.h
____________________________________________________________________________
[ 22095] By: nicholas on 2004/01/08 13:13:10
Log: Remove duplicated entries, spotted by Enache Adrian
Branch: maint-5.8/perl
! Changes
____________________________________________________________________________
[ 22094] By: nicholas on 2004/01/08 13:09:12
Log: Fixes from Petras Kudaras and Gisle Aas, plus document the addition
to perldiag.pod
Branch: maint-5.8/perl
! pod/perl583delta.pod
____________________________________________________________________________
[ 22093] By: nicholas on 2004/01/08 12:46:09
Log: Graham says that the search.cpan.org pod finder hashes on name
The 4 files all thinking they are perldelta.pod confuses it.
Branch: maint-5.8/perl
! pod/perl581delta.pod pod/perl582delta.pod pod/perl58delta.pod
____________________________________________________________________________
[ 22092] By: nicholas on 2004/01/08 12:33:11
Log: Subject: Re: [PATCH win32/makefile.mk] (was Re: 5.8.3 RC1)
From: Abe Timmerman <abe@ztreet.demon.nl>
Message-Id: <200401080156.01280.abe@ztreet.demon.nl>
Date: Thu, 8 Jan 2004 01:56:01 +0100
Branch: maint-5.8/perl
! win32/makefile.mk
____________________________________________________________________________
[ 22090] By: nicholas on 2004/01/07 13:30:14
Log: Correct timestamp on ext/IO/IO.xs
Branch: maint-5.8/perl
! ext/IO/IO.xs
____________________________________________________________________________
[ 22089] By: nicholas on 2004/01/07 13:19:41
Log: Seems to be an off-by-4-years in Perforce on MacOS. Fix it. Grr.
Branch: maint-5.8/perl
! ext/Digest/MD5/hints/MacOS.pl ext/Filter/t/call.t
! ext/POSIX/t/taint.t lib/AutoSplit.t lib/Devel/SelfStubber.pm
! lib/Devel/SelfStubber.t lib/File/DosGlob.t lib/Pod/t/Usage.t
! lib/blib.pm lib/charnames.t lib/diagnostics.t lib/subs.t
! t/comp/cpp.t t/comp/use.t t/io/inplace.t t/io/iprefix.t
! t/lib/compmod.pl t/lib/filter-util.pl t/lib/warnings/mg
! t/op/glob.t t/op/method.t t/op/mkdir.t t/op/read.t
! t/op/recurse.t t/op/srand.t t/op/study.t t/op/subst_wamp.t
! t/pod/testp2pt.pl t/run/exit.t t/run/switchI.t
! t/run/switchPx.t t/run/switchx.t t/x2p/s2p.t utils/splain.PL
____________________________________________________________________________
[ 22088] By: nicholas on 2004/01/07 13:10:22
Log: Attempt timestamp fixup
Branch: maint-5.8/perl
! ext/IO/IO.xs
____________________________________________________________________________
[ 22087] By: nicholas on 2004/01/07 12:10:19
Log: This is RC1
Branch: maint-5.8/perl
! patchlevel.h
____________________________________________________________________________
[ 22086] By: nicholas on 2004/01/07 12:09:16
Log: Update Changes
Branch: maint-5.8/perl
! Changes patchlevel.h
____________________________________________________________________________
[ 22085] By: nicholas on 2004/01/07 12:08:00
Log: Cargo cult upgrade to 5.8.3
Branch: maint-5.8/perl
! NetWare/Makefile cygwin/perlld.in epoc/createpkg.pl
! patchlevel.h plan9/config.plan9 vos/build.cm
! vos/config.alpha.def vos/config.alpha.h vos/config.ga.def
! vos/config.ga.h vos/install_perl.cm win32/Makefile
! win32/config_H.bc win32/config_H.gc win32/config_H.vc
! win32/config_H.vc64 win32/makefile.mk wince/Makefile.ce
____________________________________________________________________________
[ 22081] By: nicholas on 2004/01/06 14:33:15
Log: Move pod/perldelta.pod to pod/perl583delta.pod, and arrange for
a copy to be made at build time.
Branch: maint-5.8/perl
+> pod/perl583delta.pod
- pod/perldelta.pod
! MANIFEST Makefile.SH pod.lst pod/buildtoc pod/perltoc.pod
! vms/descrip_mms.template win32/Makefile win32/makefile.mk
! win32/pod.mak
____________________________________________________________________________
[ 22080] By: nicholas on 2004/01/06 12:50:45
Log: Integrate:
[ 22079]
Jarkko didn't move the cd ..\pod correctly. Given that it's been
like this pre 5.8.1, I suspect that no-one has used it recently.
Branch: maint-5.8/perl
!> win32/makefile.mk
____________________________________________________________________________
[ 22078] By: nicholas on 2004/01/06 12:13:08
Log: Subject: [PATCH maintperl] copy reentr.inc to CORE on VMS
From: "Craig A. Berry" <craigberry@mac.com>
Message-ID: <3FFA4A86.6090607@mac.com>
Date: Mon, 05 Jan 2004 23:41:26 -0600
Branch: maint-5.8/perl
! vms/descrip_mms.template
____________________________________________________________________________
[ 22077] By: nicholas on 2004/01/06 11:23:38
Log: http://www.perforce.com/perforce/technotes/note014.html
I want a disintegrate command, and right now I know where I want to
aim it.
(Missing un-adds from reversing back to MM 6.17)
Branch: maint-5.8/perl
- lib/ExtUtils/t/parse_version.t
- t/lib/MakeMaker/Test/Setup/BFD.pm
- t/lib/MakeMaker/Test/Setup/Problem.pm
____________________________________________________________________________
[ 22073] By: nicholas on 2004/01/05 22:44:03
Log: Update pod/perltoc.pod
Branch: maint-5.8/perl
! pod/perltoc.pod
____________________________________________________________________________
[ 22072] By: nicholas on 2004/01/05 22:39:35
Log: Revert to MM 6.17 (same as 5.8.2)
Branch: maint-5.8/perl
+ lib/ExtUtils/t/00setup_dummy.t
+ lib/ExtUtils/t/zz_cleanup_dummy.t
! MANIFEST lib/ExtUtils/Changes lib/ExtUtils/Command.pm
! lib/ExtUtils/Command/MM.pm lib/ExtUtils/Install.pm
! lib/ExtUtils/Liblist/Kid.pm lib/ExtUtils/MANIFEST.SKIP
! lib/ExtUtils/META.yml lib/ExtUtils/MM.pm
! lib/ExtUtils/MM_Any.pm lib/ExtUtils/MM_Cygwin.pm
! lib/ExtUtils/MM_NW5.pm lib/ExtUtils/MM_Unix.pm
! lib/ExtUtils/MM_VMS.pm lib/ExtUtils/MM_Win32.pm
! lib/ExtUtils/MM_Win95.pm lib/ExtUtils/MakeMaker.pm
! lib/ExtUtils/MakeMaker/Tutorial.pod
! lib/ExtUtils/MakeMaker/bytes.pm
! lib/ExtUtils/MakeMaker/vmsish.pm lib/ExtUtils/Manifest.pm
! lib/ExtUtils/README lib/ExtUtils/TODO lib/ExtUtils/instmodsh
! lib/ExtUtils/t/Command.t lib/ExtUtils/t/INST.t
! lib/ExtUtils/t/INST_PREFIX.t lib/ExtUtils/t/Install.t
! lib/ExtUtils/t/MM_Cygwin.t lib/ExtUtils/t/MM_Unix.t
! lib/ExtUtils/t/MM_Win32.t lib/ExtUtils/t/Manifest.t
! lib/ExtUtils/t/basic.t lib/ExtUtils/t/postamble.t
! lib/ExtUtils/t/prefixify.t lib/ExtUtils/t/prereq_print.t
! lib/ExtUtils/t/problems.t lib/ExtUtils/t/writemakefile_args.t
! pod/perldelta.pod t/lib/MakeMaker/Test/Setup/Recurs.pm
____________________________________________________________________________
[ 22070] By: nicholas on 2004/01/05 21:57:23
Log: Resort MANIFEST (the way perltoc likes it)
Branch: maint-5.8/perl
! MANIFEST
____________________________________________________________________________
[ 22069] By: nicholas on 2004/01/05 21:56:17
Log: Integrate:
[ 22064]
Fix bug with MANIFEST generation when we also regenerate perltoc.pod
[ 22067]
Change the flag logic in buildtoc
Branch: maint-5.8/perl
!> pod.lst pod/buildtoc
____________________________________________________________________________
[ 22059] By: nicholas on 2004/01/05 09:29:29
Log: Integrate:
[ 22058]
Subject: [PATCH] skip num.t #47 on VMS
From: "Craig A. Berry" <craigberry@mac.com>
Date: Sun, 04 Jan 2004 23:16:26 -0600
Message-ID: <3FF8F32A.5000108@mac.com>
Branch: maint-5.8/perl
!> t/base/num.t
____________________________________________________________________________
[ 22054] By: nicholas on 2004/01/03 20:56:11
Log: Integrate:
[ 22052]
Upgrade to PerlIO::via::QuotedPrint 0.06
Branch: maint-5.8/perl
!> lib/PerlIO/via/QuotedPrint.pm
____________________________________________________________________________
[ 22053] By: nicholas on 2004/01/03 20:16:23
Log: Integrate:
[ 22049]
Fix minor problems with the CPAN release
1: Make Storable.xs to work on 5.8.2 and later (already in the core)
2: Ship the linux hints file
3: Ship Test::More for the benefit of Perls pre 5.6.2
4: Correct Makefile.PL to install in core for 5.8.0 and later
[ 22050]
No matter how hard you proof read it, something always slips through.
Branch: maint-5.8/perl
!> ext/Storable/ChangeLog ext/Storable/MANIFEST
!> ext/Storable/Makefile.PL ext/Storable/README
!> ext/Storable/Storable.pm
____________________________________________________________________________
[ 22048] By: nicholas on 2004/01/03 18:00:31
Log: Changes suggested by Merijn (but his words mangled by me)
Branch: maint-5.8/perl
! pod/perldelta.pod
____________________________________________________________________________
[ 22046] By: nicholas on 2004/01/02 16:57:17
Log: Integrate:
[ 21981]
Subject: PATCH: *DB*_File
From: "Paul Marquess" <Paul.Marquess@btinternet.com>
Date: Sat, 27 Dec 2003 20:02:30 -0000
Message-ID: <AIEAJICLCBDNAAOLLOKLIEAOPGAA.Paul.Marquess@btinternet.com>
Branch: maint-5.8/perl
!> XSUB.h ext/DB_File/Changes ext/DB_File/DB_File.pm
!> ext/DB_File/DB_File.xs ext/DB_File/t/db-btree.t
!> ext/DB_File/t/db-hash.t ext/DB_File/t/db-recno.t
!> ext/DB_File/typemap ext/GDBM_File/typemap
!> ext/NDBM_File/typemap ext/ODBM_File/typemap
!> ext/SDBM_File/typemap
____________________________________________________________________________
[ 22045] By: nicholas on 2004/01/02 16:36:54
Log: Integrate:
[ 22030]
Document that detached threads aren't supported on Windows yet.
[ 22031]
Document that /[\W]/ doesn't work, unicode-wise (see bug #18281)
[ 22036]
Document the quirks of SUPER, especially the fact that it it
relative to the current package and not to the invoking object.
[ 22037]
addition to 22036 (document SUPER better): superclass may be plural
[ 22044]
Bump $threads::VERSION as the documentation has changed. Tweak the
documentaiton, update Arthur's e-mail address
Branch: maint-5.8/perl
!> ext/threads/threads.pm pod/perlboot.pod pod/perlbot.pod
!> pod/perlobj.pod pod/perltoot.pod pod/perlunicode.pod
____________________________________________________________________________
[ 22042] By: nicholas on 2004/01/02 00:42:36
Log: Waah. This is a mess. The debugger is forked, with maint's $VERSION
2 higher than blead's. No idea how much code is forked.
Integrate:
[ 21940]
Fix a side-effect of bug #24674 in the perl debugger.
Subject: [perl #24674] 5.x odd taint bug
From: Dominique Quatravaux (via RT) <perlbug-followup@perl.org>
Date: 16 Dec 2003 15:03:24 -0000
Message-ID: <rt-3.0.7_01-24674-68456.11.3124667849085@perl.org>
[ 22041]
Update debugger version number and Changes file
Branch: maint-5.8/perl
! lib/perl5db.pl
____________________________________________________________________________
[ 22040] By: nicholas on 2004/01/02 00:21:57
Log: Integrate:
[ 22033]
Subject: Perl 5.8.3 patches from the BS2000 port - part 2
From: Dorner Thomas <tdorner@amadeus.net>
Message-ID: <6727B1DACFCDD311A757009027CA8D69044B6740@Ex02.inhouse.start.de>
Date: Fri, 19 Dec 2003 07:16:47 +0100
Branch: maint-5.8/perl
!> t/io/utf8.t t/op/pat.t
____________________________________________________________________________
[ 22039] By: nicholas on 2004/01/01 23:59:34
Log: Integrate:
[ 22034]
Fix bug #24383, where hashes with the :unique attribute weren't
getting made readonly on interpreter clone. Also, remove the
:unique attribute from the hashes in warnings.pm, since they may
later be modified by warnings::register. Finally, adds tests for
the :unique attribute.
Branch: maint-5.8/perl
!> ext/threads/t/problems.t lib/warnings.pm sv.c warnings.pl
____________________________________________________________________________
[ 22038] By: nicholas on 2004/01/01 23:35:15
Log:
Subject: [PATCH 5.8.2 @21574] OS/2 update
From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
Date: Thu, 18 Dec 2003 14:10:29 -0800
Message-ID: <20031218221029.GA7898@math.berkeley.edu>
Branch: maint-5.8/perl
! installperl
!> README.os2 hints/os2.sh lib/ExtUtils/MM_Unix.pm makedef.pl
!> os2/Changes os2/OS2/REXX/DLL/Changes os2/OS2/REXX/DLL/DLL.pm
!> os2/os2.c os2/os2ish.h os2/perl2cmd.pl
____________________________________________________________________________
[ 22035] By: nicholas on 2004/01/01 21:30:41
Log: Corrections from Yitzchak Scott-Thoennes and Randy W. Sims
Message-ID: <20040101195205.GA3212@efn.org>
Message-ID: <20031230183815.GC8164@penkwe.pair.com>
Branch: maint-5.8/perl
! pod/perldelta.pod
____________________________________________________________________________
[ 22028] By: nicholas on 2003/12/31 18:19:46
Log: Integrate:
[ 21951]
re-fix [perl #24508] without speed regression.
keep an eye on this.
Branch: maint-5.8/perl
!> op.c opcode.h opcode.pl
____________________________________________________________________________
[ 22027] By: nicholas on 2003/12/31 15:41:04
Log: Integrate:
[ 22025]
Subject: [PATCH] "piconv -C 512" badly broken
From: Autrijus Tang <autrijus@autrijus.org>
Message-Id: <1072870210.769.5.camel@localhost>
Date: Wed, 31 Dec 2003 19:30:10 +0800
[ 22026]
Tweak 00compile.t to avoid splatting a DIAG over core perl's
beautiful clean run of OKs. You are all getting a clean run of OKs,
aren't you?
Branch: maint-5.8/perl
!> ext/Encode/bin/piconv lib/Test/Harness/t/00compile.t
____________________________________________________________________________
[ 22024] By: nicholas on 2003/12/31 15:05:22
Log: Integrate:
[ 21798]
Implement C<use Exporter 'import'> :
Branch: maint-5.8/perl
!> lib/Exporter.pm lib/Exporter.t
____________________________________________________________________________
[ 22023] By: nicholas on 2003/12/31 14:25:32
Log: Integrate:
[ 22020]
C++ comments, bad.
Branch: maint-5.8/perl
!> ext/Cwd/Cwd.xs
____________________________________________________________________________
[ 22022] By: nicholas on 2003/12/31 13:41:17
Log: Integrate:
[ 22021]
Upgrade to Test::Harness 2.40.
Branch: maint-5.8/perl
!> lib/Test/Harness.pm lib/Test/Harness/Changes
!> lib/Test/Harness/Iterator.pm lib/Test/Harness/Straps.pm
!> lib/Test/Harness/bin/prove lib/Test/Harness/t/00compile.t
!> lib/Test/Harness/t/assert.t lib/Test/Harness/t/callback.t
!> lib/Test/Harness/t/prove-switches.t
!> lib/Test/Harness/t/strap-analyze.t lib/Test/Harness/t/strap.t
!> lib/Test/Harness/t/test-harness.t
____________________________________________________________________________
[ 22019] By: nicholas on 2003/12/31 00:19:24
Log: Integrate:
[ 22018]
Bump VERSION numbers
Branch: maint-5.8/perl
!> ext/POSIX/POSIX.pm lib/Benchmark.pm lib/File/CheckTree.pm
!> lib/Getopt/Std.pm lib/PerlIO.pm lib/Tie/Hash.pm
!> lib/diagnostics.pm
____________________________________________________________________________
[ 22017] By: nicholas on 2003/12/30 22:10:24
Log: Integrate:
[ 22016]
A patch for Test::Harness on VMS by Craig Berry
(see RT CPAN bug #4745)
Branch: maint-5.8/perl
!> lib/Test/Harness/Straps.pm
____________________________________________________________________________
[ 22015] By: nicholas on 2003/12/30 19:08:19
Log: Integrate:
[ 21999]
Add Mike Pomraning
[ 22009]
bug #24757 perlrun.pod's description of find -mtime was ambiguous
[ 22013]
Subject: more uni doc tweakage
From: Jarkko Hietaniemi <jhi@iki.fi>
Message-ID: <20031230133755.GA23118@vipunen.hut.fi>
Date: Tue, 30 Dec 2003 15:37:55 +0200
Subject: one more pod fix
From: Jarkko Hietaniemi <jhi@iki.fi>
Message-ID: <20031230135641.GA24516@vipunen.hut.fi>
Date: Tue, 30 Dec 2003 15:56:41 +0200
Branch: maint-5.8/perl
!> AUTHORS lib/PerlIO.pm pod/perlrun.pod pod/perlunicode.pod
____________________________________________________________________________
[ 22014] By: nicholas on 2003/12/30 18:48:08
Log: Integrate:
[ 21937]
after back-references, restricted hashes.
see http://nntp.perl.org/group/perl.perl5.porters/86497
this is hopefully only a temporary solution.
[ 22005]
Subject: Re: [perl #24774] eval + format - \n = pp_ctl.c assertion
heuristics for calculating buffer size needed to compile a format
didn't allow for \0
Branch: maint-5.8/perl
!> perl.c pp_ctl.c t/op/write.t
____________________________________________________________________________
[ 22012] By: nicholas on 2003/12/30 17:53:35
Log: Integrate:
[ 22007]
Upgrade to Math::BigInt 1.68.
Branch: maint-5.8/perl
+> lib/Math/BigInt/t/bigroot.t
!> MANIFEST lib/Math/BigFloat.pm lib/Math/BigInt.pm
!> lib/Math/BigInt/Calc.pm lib/Math/BigInt/CalcEmu.pm
!> lib/Math/BigInt/t/alias.inc lib/Math/BigInt/t/bare_mbi.t
!> lib/Math/BigInt/t/bigfltpm.inc lib/Math/BigInt/t/bigintpm.inc
!> lib/Math/BigInt/t/bigintpm.t lib/Math/BigInt/t/sub_mbi.t
____________________________________________________________________________
[ 22011] By: nicholas on 2003/12/30 17:37:54
Log: $expletive perforce. Why can't you integrate an add with an edit?
Integrate:
[ 21956]
Subject: BigInt v1.68 - pre-release
From: Tels <perl_dummy@bloodgate.com>
Date: Tue, 23 Dec 2003 01:09:23 +0100
Message-Id: <200312230106.27661@bloodgate.com>
Branch: maint-5.8/perl
+> lib/Math/BigInt/CalcEmu.pm lib/Math/BigInt/t/alias.inc
+> lib/Math/BigInt/t/mbf_ali.t lib/Math/BigInt/t/mbi_ali.t
+> lib/Math/BigInt/t/sub_ali.t
!> MANIFEST lib/Math/BigFloat.pm lib/Math/BigInt.pm
!> lib/Math/BigInt/Calc.pm lib/Math/BigInt/t/bigfltpm.inc
!> lib/Math/BigInt/t/bigintc.t lib/Math/BigInt/t/bigintpm.inc
!> lib/Math/BigInt/t/upgrade.inc
____________________________________________________________________________
[ 22010] By: nicholas on 2003/12/30 17:16:42
Log: $expletive perforce
Mop up, due to perforce's inexplicable inability to SILENTLY FAIL to
integrate two changes, where the first adds and the second edits a
file.
Integrate:
[ 21882]
Subject: [PATCH] Math::BigInt v1.67 released
From: Tels <perl_dummy@bloodgate.com>
Date: Fri, 12 Dec 2003 18:47:43 +0100
Message-Id: <200312121847.49039@bloodgate.com>
Branch: maint-5.8/perl
!> lib/Math/BigInt/t/fallback.t
____________________________________________________________________________
[ 22008] By: nicholas on 2003/12/30 16:17:16
Log: Integrate:
[ 21970]
Allow overriding of the p4 settings via environment variables
Make regexp more robust to parse FreeBSD's patch output
[ 22002]
Updates the notes about byacc in pumpkin.pod.
Branch: maint-5.8/perl
!> Porting/apply Porting/pumpkin.pod
____________________________________________________________________________
[ 22006] By: nicholas on 2003/12/30 15:23:04
Log: Integrate:
[ 21986]
Fix bug [perl #24762] : C<*foo{CODE} ? 1 : 0> was a syntax error
[ 21988]
Regenerate the perly.c patch for byacc output painless fixing
[ 22003]
Add a regression test for bug #24762
Plus tweaks for maint
Branch: maint-5.8/perl
! perly.c perly_c.diff vms/perly_c.vms
!> perly.y t/comp/parser.t
____________________________________________________________________________
[ 22004] By: nicholas on 2003/12/30 12:59:19
Log: Changes following feedback from p5p
Branch: maint-5.8/perl
! pod/perldelta.pod
____________________________________________________________________________
[ 22000] By: nicholas on 2003/12/30 00:17:01
Log: First stab at a perldelta for 5.8.3
Branch: maint-5.8/perl
! pod/perldelta.pod
____________________________________________________________________________
[ 21998] By: nicholas on 2003/12/29 21:28:25
Log: Update changes
Branch: maint-5.8/perl
! Changes patchlevel.h
____________________________________________________________________________
[ 21995] By: nicholas on 2003/12/29 18:25:43
Log: Integrate:
[ 21991]
Upgrade to Encode 1.99.
Branch: maint-5.8/perl
!> ext/Encode/Changes ext/Encode/Encode.pm ext/Encode/META.yml
!> ext/Encode/Unicode/Unicode.xs ext/Encode/encoding.pm
!> ext/Encode/t/enc_eucjp.t ext/Encode/t/enc_utf8.t
!> ext/Encode/t/mime-header.t ext/Encode/ucm/gsm0338.ucm
!> ext/Encode/ucm/macArabic.ucm ext/Encode/ucm/macFarsi.ucm
!> ext/Encode/ucm/macHebrew.ucm
____________________________________________________________________________
[ 21994] By: nicholas on 2003/12/29 17:53:46
Log:
Subject: [PATCH] win32_chsize buglet
From: "Kevin Chase" <kevincha99@hotmail.com>
Date: Sun, 28 Dec 2003 15:48:56 -0800
Message-ID: <BAY2-F90usv0ccZRh8Z0005683d@hotmail.com>
[ 21993]
Windows hasn't getuid/setuid and friends.
Therefore disable the code related to them in POSIX.xs.
Subject: [PATCH: ext/POSIX/POSIX.xs] Re: Smoke [5.8.2] 21979 FAIL(Xt) MSWin32 5.1 Service Pack 1 (x86/1 cpu)
From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
Date: Mon, 29 Dec 2003 04:51:19 +0100
Message-ID: <03d401c3cdbf$05730ee0$d500a8c0@R2D2>
Branch: maint-5.8/perl
!> ext/POSIX/POSIX.xs win32/win32.c
____________________________________________________________________________
[ 21987] By: nicholas on 2003/12/27 23:17:19
Log: Integrate:
[ 21985]
Subject: Cross compilation patches for arm.
From: Redvers Davies <red@criticalintegration.com>
Message-Id: <1072098653.4789.6.camel@ragefire>
Date: Mon, 22 Dec 2003 08:11:34 -0500
Branch: maint-5.8/perl
! Cross/README
!> Cross/Makefile Cross/Makefile.SH.patch
!> Cross/config.sh-arm-linux Cross/installperl.patch
____________________________________________________________________________
[ 21984] By: nicholas on 2003/12/27 22:17:18
Log: Integrate:
[ 21983]
Fix bug [perl #24735] : make sure that the range (..) operator
treats an undefined argument as 0 for numerical ranges and as ""
for magical string ranges.
Branch: maint-5.8/perl
!> pp_ctl.c t/op/range.t
____________________________________________________________________________
[ 21982] By: nicholas on 2003/12/27 21:10:07
Log: Integrate:
[ 21962]
Subject: [PATCH: sv.c] Re: GCC bug breaking Perl_sv_catpvfn()?
From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
Date: Fri, 26 Dec 2003 02:47:09 +0100
Message-ID: <03ca01c3cb52$2d509b40$5700a8c0@R2D2>
[ 21967]
Subject: [PATCH: sv.c] Turn Quad_t to Uquad_t in unsigned branch
From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
Date: Sat, 27 Dec 2003 02:48:19 +0100
Message-ID: <010001c3cc1b$813763a0$d500a8c0@R2D2>
[ 21971]
Subject: [PATCH] Remove Win32 compiler warnings
From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
Date: Sat, 27 Dec 2003 17:39:20 +0100
Message-ID: <018901c3cc97$fa976660$d500a8c0@R2D2>
Branch: maint-5.8/perl
!> ext/XS/APItest/APItest.xs ext/threads/shared/shared.xs sv.c
____________________________________________________________________________
[ 21980] By: nicholas on 2003/12/27 19:55:01
Log: Integrate:
[ 20734]
Subject: [PATCH] Taint problems in Cwd::abs_path
From: Michael G Schwern <schwern@pobox.com>
Date: Fri, 15 Aug 2003 18:43:45 -0700
Message-ID: <20030816014345.GE4023@windhund.schwern.org>
[ 21972]
Assimilate Cwd 2.12 from CPAN. Cwd wasn't in Maintainers, so change
21646 was only applied to core (must punt this back and thereby unfork)
Need to fix test boilerplate properly for PERL_CORE
[ 21974]
Assimilate File::Spec 0.87
[ 21978]
Straggler from Cwd
Branch: maint-5.8/perl
+> ext/Cwd/Changes
! ext/Cwd/t/taint.t
!> MANIFEST Porting/Maintainers.pl ext/Cwd/Cwd.xs ext/Cwd/t/cwd.t
!> lib/Cwd.pm lib/File/Spec.pm lib/File/Spec/t/Spec.t
____________________________________________________________________________
[ 21979] By: nicholas on 2003/12/27 19:30:17
Log: Integrate:
[ 21548]
Sync with Pod::Perldoc 3.12
[ 21973]
Assimilate Digest 1.05
[ 21975]
Assimilate PodParser-1.26
[ 21976]
Assimilate Unicode::Collate 0.33
[ 21977]
Straggler from Unicode::Collate.
We need to automate this.
For some value of we. (tr/w/m/ I suspect)
Branch: maint-5.8/perl
+> lib/Unicode/Collate/t/altern.t
+> lib/Unicode/Collate/t/rearrang.t lib/Unicode/Collate/t/view.t
!> MANIFEST lib/Digest.pm lib/Digest/t/digest.t
!> lib/Pod/Checker.pm lib/Pod/Find.pm lib/Pod/InputObjects.pm
!> lib/Pod/ParseUtils.pm lib/Pod/Parser.pm lib/Pod/Perldoc.pm
!> lib/Pod/PlainText.pm lib/Pod/Select.pm lib/Pod/Usage.pm
!> lib/Unicode/Collate.pm lib/Unicode/Collate/Changes
!> lib/Unicode/Collate/README lib/Unicode/Collate/keys.txt
!> lib/Unicode/Collate/t/contract.t
!> lib/Unicode/Collate/t/illegal.t lib/Unicode/Collate/t/test.t
!> lib/Unicode/Collate/t/version.t pod/pod2usage.PL
!> pod/podselect.PL t/pod/pod2usage.xr t/pod/podselect.xr
____________________________________________________________________________
[ 21969] By: nicholas on 2003/12/27 16:37:27
Log: Integrate:
[ 21958]
Fix bug [perl #24641] : when POSIX::set[ug]id() are called,
update the perl variables PL_uid and PL_euid (resp. PL_gid
and PL_egid) with the new values.
[ 21968]
Subject: [PATCH] perl 5.8.0, FindBin::again
From: Slaven Rezic <slaven@rezic.de>
Date: 01 May 2003 21:28:10 +0200
Message-ID: <873cjy31rp.fsf@vran.herceg.de>
Branch: maint-5.8/perl
!> ext/POSIX/POSIX.xs lib/FindBin.pm lib/FindBin.t
____________________________________________________________________________
[ 21966] By: nicholas on 2003/12/26 21:30:11
Log: Integrate:
[ 21957]
Subject: [PATCH 5.8.2 @21574] INSTALL_PREFIX from C
From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
Date: Thu, 18 Dec 2003 12:30:06 -0800
Message-ID: <20031218203006.GA7772@math.berkeley.edu>
Branch: maint-5.8/perl
!> config_h.SH
____________________________________________________________________________
[ 21965] By: nicholas on 2003/12/26 20:49:47
Log: Integrate:
[ 21955]
Subject: [perl #24506] [PATCH] cannot weaken refs to read only values
From: Fergal Daly <fergal@esatclear.ie>
Date: Tue, 2 Dec 2003 23:18:18 +0000
Message-Id: <200312022318.18353.fergal@esatclear.ie>
(tweaked so the test is skipped on perls < 5.9.0)
[ 21964]
Change minimum perl version where the test is run from 5.9.0 to 5.8.3
as I'm going to integrate the core patch
Branch: maint-5.8/perl
!> ext/List/Util/t/weak.t sv.c
____________________________________________________________________________
[ 21963] By: nicholas on 2003/12/26 19:56:31
Log: Integrate:
[ 21950]
sanitize some macros - based on Chip Salzenberg suggestions and
on the way GNU people use the gcc-ish 'blocks in parens'
[ 21960]
Refactor the code that checks whether a range is numeric
or string-magical.
Branch: maint-5.8/perl
! sv.h
!> XSUB.h pp_ctl.c
____________________________________________________________________________
[ 21961] By: nicholas on 2003/12/26 17:54:21
Log: Integrate:
[ 21959]
Restore ext/SDBM_File/sdbm/Makefile to its pre-21655 state.
This fixes building SDBM_File on AIX.
Branch: maint-5.8/perl
!> ext/SDBM_File/sdbm/Makefile.PL
____________________________________________________________________________
[ 21954] By: nicholas on 2003/12/24 15:32:55
Log: Integrate:
[ 21952]
Subject: [patch t/test.pl] comment fix
From: Stas Bekman <stas@stason.org>
Message-ID: <3FE8C65A.4060708@stason.org>
Date: Tue, 23 Dec 2003 14:48:58 -0800
[ 21953]
Subject: [PATCH: perl@21949] document patch for VMS port on new file systems
From: PPrymmer@factset.com
Date: Tue, 23 Dec 2003 17:27:44 -0500
Message-Id: <OF32243F10.A592C9A9-ON85256E05.007B1741-85256E05.007B63CB@factset.com>
Branch: maint-5.8/perl
!> README.vms t/test.pl
____________________________________________________________________________
[ 21949] By: nicholas on 2003/12/22 21:55:52
Log: Integrate:
[ 21948]
Subject: Re: Smoke [5.8.2] 21930 FAIL(t) MSWin32 5.1 Service Pack 1 (x86/1 cpu)
Message-ID: <Pine.LNX.4.58.0312220116520.17374@localhost.localdomain>
Date: Mon, 22 Dec 2003 01:52:08 -0600 (CST)
From: Mike Pomraning <mjp@pilcrow.madison.wi.us>
Branch: maint-5.8/perl
!> ext/threads/shared/shared.xs
____________________________________________________________________________
[ 21947] By: nicholas on 2003/12/22 20:35:11
Log: Integrate:
[ 21942]
Subject: [perl #24651] Taint bug with multiple backticks in ref consturctors
From: Mike Guy <mjtg@cam.ac.uk>
Date: Fri, 19 Dec 2003 17:17:11 +0000
Message-Id: <E1AXOFT-0007DE-7q@draco.cus.cam.ac.uk>
[ 21946]
Subject: doc nits
From: Jarkko Hietaniemi <jhi@iki.fi>
Date: Mon, 22 Dec 2003 21:57:34 +0200
Message-Id: <20031222195734.GA29441@vipunen.hut.fi>
Branch: maint-5.8/perl
!> pod/perlsec.pod pod/perltodo.pod pod/perlunicode.pod
____________________________________________________________________________
[ 21945] By: nicholas on 2003/12/22 20:07:07
Log: Integrate:
[ 21944]
Subject: [PATCH] configure.com archname tweak
From: "Craig A. Berry" <craigberry@mac.com>
Date: Sun, 21 Dec 2003 23:07:13 -0600
Message-ID: <3FE67C01.1000704@mac.com>
Branch: maint-5.8/perl
!> configure.com
____________________________________________________________________________
[ 21943] By: nicholas on 2003/12/21 22:41:21
Log: Make reentrant functions work with C++
Patch by Jan Dubois, bug report and testing by Chip Salzenberg
Branch: maint-5.8/perl
! reentr.inc reentr.pl
____________________________________________________________________________
[ 21941] By: nicholas on 2003/12/21 20:42:53
Log: Integrate:
[ 21936]
fix [perl #24660], [perl #24663].
Branch: maint-5.8/perl
!> mg.c sv.c
____________________________________________________________________________
[ 21939] By: nicholas on 2003/12/20 23:40:37
Log: Integrate:
[ 21933]
Subject: [PATCH] OpenVMS I64 support
From: "Craig A. Berry" <craigberry@mac.com>
Message-ID: <3FE2441F.2070603@mac.com>
Date: Thu, 18 Dec 2003 18:19:43 -0600
[ 21938]
Subject: Perl 5.8.3 patches from the BS2000 port
From: Dorner Thomas <tdorner@amadeus.net>
Date: Wed, 17 Dec 2003 15:41:17 +0100
Message-ID: <6727B1DACFCDD311A757009027CA8D69044B673A@Ex02.inhouse.start.de>
Branch: maint-5.8/perl
!> configure.com hints/posix-bc.sh t/base/num.t t/comp/parser.t
!> vms/gen_shrfls.pl
____________________________________________________________________________
[ 21934] By: nicholas on 2003/12/20 20:21:46
Log: Integrate:
[ 21931]
Solaris gconvert() doesn't like ndigits == 0. Currently we have no
Configure test for troublesome gconvert(), so for now simply avoid
the optimisation that calls gconvert() in this case.
[ 21932]
remove duplicate PERL_HASH (as spotted by Enache Adrian in
<20031220124854.GA1265@ratsnest.hole> )
Branch: maint-5.8/perl
!> hv.c sv.c
____________________________________________________________________________
[ 21930] By: nicholas on 2003/12/19 19:46:46
Log: Integrate:
[ 21921]
Subject: [PATCH] 2-arg cond_wait, cond_timedwait, tests
From: Mike Pomraning <mjp@pilcrow.madison.wi.us>
Date: Wed, 17 Dec 2003 00:05:58 -0600 (CST)
Message-ID: <Pine.LNX.4.58.0312092202040.13494@benevelle.wi.securepipe.com>
[ 21922]
Subject: [PATCH: embed.fnc] arguments for perl_clone()
From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
Date: Wed, 17 Dec 2003 13:26:52 +0100
Message-ID: <055701c3c499$11144f90$8cecfe91@R2D2>
Branch: maint-5.8/perl
+> ext/threads/shared/t/wait.t
! embed.h
!> MANIFEST embed.fnc ext/threads/shared/shared.pm
!> ext/threads/shared/shared.xs global.sym
____________________________________________________________________________
[ 21929] By: nicholas on 2003/12/19 19:06:10
Log: Integrate:
[ 21915]
Add the macros dAX and dITEMS to PPPort.
[ 21927]
Subject: [DOCPATCH] base.pm
From: Elizabeth Mattijsen <liz@dijkmat.nl>
Date: Thu, 18 Dec 2003 22:30:52 +0100
Message-Id: <p05111b12bc07cc596977@[192.168.56.3]>
Plus, remove leftover mentions of pseudo-hashes
[ 21928]
Upgrade to CGI.pm 3.01
Branch: maint-5.8/perl
!> ext/Devel/PPPort/PPPort.pm lib/CGI.pm lib/CGI/Carp.pm
!> lib/CGI/Cookie.pm lib/CGI/Fast.pm lib/CGI/Pretty.pm
!> lib/CGI/Util.pm lib/CGI/t/carp.t lib/CGI/t/request.t
!> lib/base.pm
____________________________________________________________________________
[ 21926] By: nicholas on 2003/12/18 20:49:11
Log: Integrate:
[ 21883]
Modify the common guard for the signal.h header, because
C99 compilers don't like it.o
see :
Subject: UNIX03 & C99 issue with 5.8.2
From: Alan Burlison <Alan.Burlison@sun.com>
Date: Fri, 12 Dec 2003 23:04:52 +0000
Message-ID: <3FDA4994.6050209@sun.com>
[ 21916]
Remove incorrect guards around inclusion of <signal.h>
Causes problems with UNIX03/SUSv3
[ 21917]
Remove incorrect guards around inclusion of <signal.h>
Causes problems with UNIX03/SUSv3
Part 2 of change 21916 - oops!
See:
Message-Id: <3FDD06A5.8010004@sun.com>
Subject: Re: UNIX03 & C99 issue with 5.8.2
From: Alan Burlison <Alan.Burlison@sun.com>
Date: Mon, 15 Dec 2003 00:56:05 +0000
Branch: maint-5.8/perl
!> doio.c doop.c mg.c mpeix/mpeixish.h plan9/plan9ish.h unixish.h
!> util.c
____________________________________________________________________________
[ 21925] By: nicholas on 2003/12/18 20:26:39
Log: Integrate:
[ 21912]
Subject: [DOCPATCH] perlfunc delete
From: Elizabeth Mattijsen <liz@dijkmat.nl>
Date: Sun, 14 Dec 2003 20:25:07 +0100
Message-Id: <p05111b07bc0269065a99@[192.168.56.3]>
[ 21914]
Subject: [patch Porting/pumpkin.pod] trying to ensure that PPPort is up-to-date on each new release
From: Stas Bekman <stas@stason.org>
Date: Sun, 14 Dec 2003 15:12:40 -0800
Message-ID: <3FDCEE68.3080509@stason.org>
[ 21923]
Perl 1.0.16 has been released.
[ 21924]
"Richard" - who he? (Add "Richard Clamp" to the list of pumpkings)
Branch: maint-5.8/perl
!> Porting/pumpkin.pod pod/perlfunc.pod pod/perlhist.pod
____________________________________________________________________________
[ 21920] By: nicholas on 2003/12/16 23:32:48
Log: Integrate:
[ 21875]
fix bug #24605.
substr() wasn't working when used repeatedly on the same utf-8
string.
Branch: maint-5.8/perl
! sv.c
!> t/op/substr.t
____________________________________________________________________________
[ 21919] By: nicholas on 2003/12/16 23:11:18
Log: Integrate:
[ 21866]
plumb a leak with pos().
#! perl
while (1) {
my $a = "\x{1ff}"; $a =~ /\x{1ff}/g; pos($a);
}
__END__
[ 21867]
yet another 2 leaks. example for the second:
#! perl
eval q{ open $p{q}, "foo" } while 1
__END__
[ 21868]
yet another leak. bigger fish still swimming around.
#!perl
eval q{ $_ = "x"; s/x/"in subst"/e } while 1;
__END__
[ 21876]
#21866 was wrong. another try to plumb that damn leak.
Branch: maint-5.8/perl
! sv.c
!> mg.c op.c pp_ctl.c
____________________________________________________________________________
[ 21913] By: nicholas on 2003/12/14 22:50:47
Log: Update Changes
Branch: maint-5.8/perl
! Changes patchlevel.h
____________________________________________________________________________
[ 21911] By: nicholas on 2003/12/14 20:25:18
Log: Integrate:
[ 21898]
Add Perl_ceil
[ 21910]
Forgot to remove a comment
Branch: maint-5.8/perl
!> perl.h pp.c
____________________________________________________________________________
[ 21909] By: nicholas on 2003/12/14 19:53:35
Log: Integrate:
[ 21647]
Subject: [PATCH] Re: PERL_VERSION, SUBVERSION, PATCHLEVEL
From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
Date: Mon, 3 Nov 2003 20:53:33 +0100
Message-ID: <023a01c3a244$2a1dd5a0$0c2f1fac@R2D2>
[ 21902]
Subject: Re: 5.6.2-RC1 on Cygwin
From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
Date: Sat, 6 Dec 2003 22:32:59 -0800
Message-ID: <20031207063259.GA3004@efn.org>
(with tweaks to cleanup code)
Branch: maint-5.8/perl
!> ext/Devel/PPPort/PPPort.pm t/op/taint.t
____________________________________________________________________________
[ 21908] By: nicholas on 2003/12/14 19:16:51
Log: Integrate:
[ 21872]
temporary fix to avoid t/op/tie.t failures on Win32
[ 21904]
Clean up a bug I introduced into caseless ENV hv_delete
(should be the proper fix for 21870 and 21872's band aid)
[ 21905]
Subject: Re: Change 21862
From: Enache Adrian <enache@rdslink.ro>
Date: Wed, 10 Dec 2003 06:05:58 +0200
Message-ID: <20031210040558.GC1584@ratsnest.hole>
(1st hunk), plus the equivalent for hv_delete_common
[ 21906]
Some fool missed a letter n.
(and then "optimised" code based on its absense. D'oh)
Restore the correct behaviour - fetch with uppercase key, then if
still not found store with mixed/lowercase key.
[ 21907]
S_save_hek_flags should honour the "free" flag.
Ought to mask the flag bits that shouldn't be stored.
Branch: maint-5.8/perl
!> hv.c
____________________________________________________________________________
[ 21903] By: nicholas on 2003/12/13 23:02:59
Log: Integrate:
[ 21834]
Subject: Re: [perl #24574] find2perl provides different results to find
From: Slaven Rezic <slaven@rezic.de>
Date: 30 Nov 2003 22:16:59 +0100
Message-ID: <8765h1pnec.fsf@vran.herceg.de>
(plus a note about find2perl now defaulting to -print in perldelta)
[ 21891]
Make the XSRETURN macro evaluate its argument only once.
Branch: maint-5.8/perl
!> XSUB.h pod/perldelta.pod x2p/find2perl.PL
____________________________________________________________________________
[ 21901] By: nicholas on 2003/12/13 21:22:15
Log: Integrate:
[ 21892]
Subject: Patch for: [perl #24650] File::CheckTree should list Larry Wall as author, not unknown
From: David Dyck <david.dyck@fluke.com>
Date: Sat, 13 Dec 2003 00:01:34 -0800 (PST)
Message-ID: <Pine.LNX.4.51.0312122351450.8825@dd.tc.fluke.com>
[ 21895]
alarm() is now implemented on Win32.
[ 21897]
Reformat a long line in perlembed.pod (bug #24623).
Branch: maint-5.8/perl
!> lib/File/CheckTree.pm pod/perlembed.pod pod/perlport.pod
____________________________________________________________________________
[ 21900] By: nicholas on 2003/12/13 21:08:12
Log: Integrate:
[ 21855]
Subject: [PATCH] SCALAR/FIRSTKEY for tied hashes in scalar context
From: Tassilo von Parseval <tassilo.parseval@post.rwth-aachen.de>
Date: Sat, 06 Dec 2003 11:50:59 +0100
Message-id: <20031206105059.GA13989@ethan>
[ 21856]
Clarify the description of SCALAR in perltie
[ 21857]
Remove the "Can't provide tied hash usage" error from perldiag.
Mention the new tied hash SCALAR method in perldelta.
[ 21863]
Missing thingies.
[ 21865]
Subject: [PATCH] documenting SCALAR gotcha
From: Tassilo von Parseval <tassilo.parseval@post.rwth-aachen.de>
Date: Sun, 07 Dec 2003 16:41:16 +0100
Message-id: <20031207154116.GA825@ethan>
[ 21869]
Subject: [PATCH] iterator reset moved to hv.c (was: [PATCH] SCALAR/FIRSTKEY for tied hashes in scalar context)
From: Tassilo von Parseval <tassilo.parseval@post.rwth-aachen.de>
Date: Mon, 08 Dec 2003 08:17:46 +0100
Message-id: <20031208071746.GA594@ethan>
[ 21896]
The binary compatibility notes say that new global functions should
go at the end. Not that I'm anything more than "trainee" when it
comes to this bincompat stuff.
Branch: maint-5.8/perl
! pp.c pp_hot.c
!> embed.fnc embed.h global.sym hv.c lib/Tie/Hash.pm mg.c
!> pod/perlapi.pod pod/perldiag.pod pod/perlfunc.pod
!> pod/perltie.pod proto.h t/op/tie.t
____________________________________________________________________________
[ 21899] By: nicholas on 2003/12/13 20:26:39
Log: Refactor to use t/test.pl
Branch: maint-5.8/perl
! t/op/avhv.t
____________________________________________________________________________
[ 21894] By: nicholas on 2003/12/13 17:59:41
Log: regenerate perltoc.pod and Integrate:
[ 21884]
Subject: RE: [perl #24610] Pod::Html infinite recursion
From: Anders Johnson <ajohnson@nvidia.com>
Date: Fri, 12 Dec 2003 14:07:40 -0800
Message-ID: <33171CC36240D94EAF1FE584B1D14E0A06EC6F51@mail-sc-11.nvidia.com>
(with tweaks)
[ 21885]
Fix some of the pods to produce more standard manpages,
as reported by Eric S. Raymond.
[ 21886]
More POD fixes ; regenerate perltoc and perlmodlib.
[ 21893]
foreach qw() { # not valid syntax for 5.005. So fix it.
Branch: maint-5.8/perl
! pod/perltoc.pod
!> README.ce README.netware ext/DynaLoader/DynaLoader_pm.PL
!> lib/Getopt/Std.pm lib/Pod/Html.pm lib/diagnostics.pm
!> pod/buildtoc pod/perlmodlib.pod
____________________________________________________________________________
[ 21890] By: nicholas on 2003/12/13 16:19:29
Log: Integrate:
[ 21826]
Upgrade to Test::Harness 2.38.
Introduce the prove(1) utility.
(The prove-switches test is disabled for now.)
[ 21836]
The prove utility should also be installed on VMS and on Windows.
Haven't we regression tests for installations yet ?
[ 21871]
Upgrade to Digest-MD5 2.33.
[ 21874]
Suppress a C< $DB::single = 1 > from Switch.pm, as noticed
by Jan Dubois.
Branch: maint-5.8/perl
+> lib/Test/Harness/bin/prove lib/Test/Harness/t/inc_taint.t
+> lib/Test/Harness/t/prove-switches.t t/lib/Dev/Null.pm
+> t/lib/sample-tests/inc_taint t/lib/sample-tests/taint_warn
+> utils/prove.PL
! installperl
!> MANIFEST ext/Digest/MD5/Changes ext/Digest/MD5/MD5.pm
!> ext/Digest/MD5/MD5.xs ext/Digest/MD5/Makefile.PL
!> ext/Digest/MD5/t/files.t ext/Digest/MD5/typemap lib/Switch.pm
!> lib/Test/Harness.pm lib/Test/Harness/Assert.pm
!> lib/Test/Harness/Changes lib/Test/Harness/Iterator.pm
!> lib/Test/Harness/Straps.pm lib/Test/Harness/t/00compile.t
!> lib/Test/Harness/t/assert.t lib/Test/Harness/t/callback.t
!> lib/Test/Harness/t/pod.t lib/Test/Harness/t/strap-analyze.t
!> lib/Test/Harness/t/strap.t lib/Test/Harness/t/test-harness.t
!> utils.lst utils/Makefile vms/descrip_mms.template
!> win32/Makefile win32/makefile.mk
____________________________________________________________________________
[ 21889] By: nicholas on 2003/12/13 15:55:57
Log: Integrate:
[ 21859]
Math::BigInt::Scalar is only for tests.
Move it under t/lib.
[ 21860]
Forgot to update the MANIFEST.
[ 21861]
Subject: [PATCH] Math::BigInt v1.67 (pre-release)
From: Tels <perl_dummy@bloodgate.com>
Date: Sat, 6 Dec 2003 20:19:44 +0100
Message-Id: <200312062016.50484@bloodgate.com>
[ 21882]
Subject: [PATCH] Math::BigInt v1.67 released
From: Tels <perl_dummy@bloodgate.com>
Date: Fri, 12 Dec 2003 18:47:43 +0100
Message-Id: <200312121847.49039@bloodgate.com>
Branch: maint-5.8/perl
+> lib/Math/BigInt/t/const_mbf.t lib/Math/BigInt/t/fallback.t
+> t/lib/Math/BigInt/Scalar.pm
- lib/Math/BigInt/Scalar.pm
!> MANIFEST lib/Math/BigFloat.pm lib/Math/BigInt.pm
!> lib/Math/BigInt/Calc.pm lib/Math/BigInt/t/bare_mbf.t
!> lib/Math/BigInt/t/bare_mbi.t lib/Math/BigInt/t/bigfltpm.inc
!> lib/Math/BigInt/t/bigfltpm.t lib/Math/BigInt/t/bigintc.t
!> lib/Math/BigInt/t/bigintpm.inc lib/Math/BigInt/t/bigintpm.t
!> lib/Math/BigInt/t/bigints.t lib/Math/BigInt/t/biglog.t
!> lib/Math/BigInt/t/constant.t lib/Math/BigInt/t/downgrade.t
!> lib/Math/BigInt/t/sub_mbf.t lib/Math/BigInt/t/sub_mbi.t
!> lib/Math/BigInt/t/with_sub.t
____________________________________________________________________________
[ 21888] By: nicholas on 2003/12/13 14:42:15
Log: Integrate:
[ 21858]
Subject: [PATCH] casting bug in VMS part of Perl_start_glob
From: "Craig A. Berry" <craigberry@mac.com>
Date: Sat, 06 Dec 2003 12:44:40 -0600
Message-ID: <3FD22398.1060506@mac.com>
[ 21864]
Subject: [PATCH] setenv tweak for VMS
From: "Craig A. Berry" <craigberry@mac.com>
Date: Sat, 06 Dec 2003 18:13:32 -0600
Message-ID: <3FD270AC.3000106@mac.com>
[ 21879]
Subject: [PATCH] environ array fix for VMS
From: "Craig A. Berry" <craigberry@mac.com>
Date: Thu, 11 Dec 2003 14:35:29 -0600
Message-ID: <3FD8D511.2030805@mac.com>
[ 21881]
Subject: [PATCH] d_u32align for win32
From: Gisle Aas <gisle@ActiveState.com>
Date: 11 Dec 2003 01:33:39 -0800
Message-ID: <lrzndzr958.fsf@caliper.activestate.com>
Branch: maint-5.8/perl
!> doio.c vms/vms.c win32/config.bc win32/config.gc
!> win32/config.vc
____________________________________________________________________________
[ 21887] By: nicholas on 2003/12/13 14:12:49
Log: Integrate:
[ 21873]
Subject: [PATCH perlunicode.pod, encoding.pm] Implicit upgrading docs
From: Autrijus Tang <autrijus@autrijus.org>
Date: Tue, 9 Dec 2003 20:39:16 +0800
Message-ID: <20031209123915.GA1454@not.autrijus.org>
[ 21877]
Add a mention of the error "DESTROY created new reference
to dead object" in perldiag.
[ 21878]
Subject: [PATCH] Perl 5.9.0 AUTHORS
From: Mark Leighton Fisher <mark-fisher@mindspring.com>
Message-ID: <3FD8E74F.7000202@mindspring.com>
Date: Thu, 11 Dec 2003 16:53:19 -0500
Branch: maint-5.8/perl
!> AUTHORS ext/Encode/encoding.pm pod/perldiag.pod
!> pod/perlunicode.pod
____________________________________________________________________________
[ 21862] By: nick on 2003/12/06 21:16:01
Log: Win32/MinGW tweaks
A. ENV_IS_CASELESS has trys to free(keysave) when
keysave isn't in scope yet.
B. For default makefile.mk which build with perlhost.h
stuff "live" need to link with g++ to find new/delete etc.
Branch: maint-5.8/perl
! hv.c win32/makefile.mk
____________________________________________________________________________
[ 21852] By: nicholas on 2003/12/05 21:09:27
Log: Integrate:
[ 21851]
Back out the Makefile.PL part of 21808 as requested by Gisle Aas
Branch: maint-5.8/perl
!> ext/Digest/MD5/Makefile.PL
____________________________________________________________________________
[ 21850] By: nicholas on 2003/12/05 19:44:34
Log: Integrate:
[ 21843]
Subject: [PATCH] another ext/SDBM_File/sdbm build fix
From: "Craig A. Berry" <craigberry@mac.com>
Date: Thu, 04 Dec 2003 16:00:03 -0600
Message-ID: <3FCFAE63.1080106@mac.com>
[ 21844]
Subject: [REPATCH lib/AutoLoader.t] Test can() with AutoLoader
From: chromatic <chromatic@wgz.org>
Date: Mon, 01 Dec 2003 09:20:21 -0800
Message-Id: <1070299221.1275.19.camel@localhost>
Branch: maint-5.8/perl
!> ext/SDBM_File/sdbm/Makefile.PL lib/AutoLoader.t
____________________________________________________________________________
[ 21849] By: nicholas on 2003/12/05 19:26:44
Log: Integrate:
[ 21837]
Subject: Re: XS modules having problems with CLONE and ithreads unless PERL_NO_GET_CONTEXT is defined
From: Stas Bekman <stas@stason.org>
Date: Wed, 03 Dec 2003 01:41:42 -0800
Message-ID: <3FCDAFD6.9050106@stason.org>
[ 21842]
Subject: [PATCH] $^P, eval and caller
From: Paul Johnson <paul@pjcj.net>
Date: Fri, 5 Dec 2003 00:57:21 +0100
Message-ID: <20031204235721.GJ26355@pjcj.net>
Branch: maint-5.8/perl
! mg.c
!> sv.c
____________________________________________________________________________
[ 21848] By: nicholas on 2003/12/05 18:43:44
Log: Integrate:
[ 21840]
Subject: Re: a2p.pod not being installed in 5.8.2?
From: Alan Burlison <Alan.Burlison@sun.com>
Date: Thu, 04 Dec 2003 12:14:30 +0000
Message-ID: <3FCF2526.3030905@sun.com>
[ 21846]
Subject: [PATCH] Configure gets d_u32align wrong
From: Gisle Aas <gisle@ActiveState.com>
Date: 05 Dec 2003 03:47:01 -0800
Message-ID: <lr4qwfbi6i.fsf_-_@caliper.activestate.com>
Branch: maint-5.8/perl
!> Configure installperl
____________________________________________________________________________
[ 21847] By: nicholas on 2003/12/05 18:25:53
Log: Integrate:
[ 21841]
Fix File::Copy with hard links on Windows.
Subject: [PATCH] Re: perl @ 21830
From: Steve Hay <steve.hay@uk.radan.com>
Date: Wed, 03 Dec 2003 10:53:02 +0000
Message-ID: <3FCDC08E.7080800@uk.radan.com>
and
Date: Thu, 04 Dec 2003 11:02:22 +0000
Message-ID: <3FCF143E.1040905@uk.radan.com>
Branch: maint-5.8/perl
!> lib/File/Copy.pm lib/File/Copy.t
____________________________________________________________________________
[ 21839] By: nicholas on 2003/12/03 21:51:48
Log: Integrate:
[ 21832]
Better docs for the special code blocks, based on :
Subject: [DOCPATCH] BEGIN, CHECK, INIT, END explained more
From: Elizabeth Mattijsen <liz@dijkmat.nl>
Date: Sat, 29 Nov 2003 23:15:56 +0100
Message-Id: <p05111b01bbeec2e8bf30@[192.168.56.3]>
[ 21835]
FAQ sync.
Branch: maint-5.8/perl
!> pod/perlfaq1.pod pod/perlfaq2.pod pod/perlfaq3.pod
!> pod/perlfaq4.pod pod/perlfaq5.pod pod/perlmod.pod
!> pod/perlsub.pod
____________________________________________________________________________
[ 21838] By: nicholas on 2003/12/03 19:13:35
Log: Remove duplicate call to PERL_HASH in delete
Transpires that in maint there just aren't enough shared hash SVs
to make the check in hv.c worth it.
Branch: maint-5.8/perl
! hv.c
____________________________________________________________________________
[ 21831] By: nicholas on 2003/12/02 20:35:22
Log: Integrate:
(The hv.c changes of 17740)
[ 17740]
Clean up copy-on-write macros and debug facilities (new flag 'C').
Handle CoW in hashes:
Subject: Re: why would tr/// be performing hash copies?
From: Nicholas Clark <nick@unfortu.net>
Date: Sun, 18 Aug 2002 23:17:01 +0100
Message-id: <20020818221700.GD294@Bagpuss.unfortu.net>
[ 21747]
merge hv_exists and hv_exists_ent into S_hv_exists_common
[ 21750]
integrate hv_delete and hv_delete_ent into hv_delete_common
[ 21753]
merge hv_fetch and hv_fetch_ent into hv_fetch_common
remove S_hv_fetch_flags
hv.c now 13% smaller than when I started. hv_store TODO
[ 21758]
Merge sv_store_flags and sv_store_ent into sv_store_common
[ 21760]
Shift negative klen/flags games from hv_fetch_common out to hv_fetch
[ 21765]
Tweaks to S_hv_delete_common:
make the magic call hv_fetch_common rather than ent-or-not
grab the hash from a shared hash key scalar if possible
use masked flags rather than flags for the comparison
[ 21766]
Move the negative key -> utf8 flag conversion out to hv_delete
[ 21768]
Shift negative klen/flags games from hv_exists_common out to hv_exists
[ 21769]
Shift negative klen/flags games from hv_store_common out to hv_store
[ 21770]
Farewell hv_exists_common - exists is now a call to fetch
(with the exists magic handling moved into fetch)
[ 21771]
"Space Is a Province of Brazil"
Farewell, hv_store_common. Store is now part of Fetch.
All tests pass. hv.c 15% smaller than when I started all this
[ 21772]
Reorder functions in hv.c so that callers of hv_fetch_common are all
close to it.
[ 21779]
D'oh. Mistake in the DYNAMIC_ENV_FETCH conditional code
reported by Craig Berry
[ 21781]
Tweak the order of initialisation of oentry in hv_fetch_common -
C source now cleaner, but optimised object file still the same size.
[ 21782]
Should fix the infinite loop on a dynamic %ENV fetch
Branch: maint-5.8/perl
! hv.c
!> embed.fnc embed.h proto.h
____________________________________________________________________________
[ 21830] By: nicholas on 2003/11/30 21:36:13
Log: Update Changes
Branch: maint-5.8/perl
! Changes patchlevel.h
____________________________________________________________________________
[ 21829] By: nicholas on 2003/11/30 21:35:03
Log: Integrate:
[ 21827]
Keep installing xsubpp in lib/ExtUtils,
so MakeMaker can find it.
Branch: maint-5.8/perl
! installperl
____________________________________________________________________________
[ 21825] By: nicholas on 2003/11/30 20:19:43
Log: Update Changes
Branch: maint-5.8/perl
! Changes patchlevel.h
____________________________________________________________________________
[ 21824] By: nicholas on 2003/11/30 19:00:33
Log: Integrate:
[ 21802]
POSIX::isXXX(undef) segfaulted. (bug #24554.)
[ 21823]
Subject: Re: [perl #24554] Segfault in POSIX module
From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
Date: Sat, 29 Nov 2003 23:32:38 +0900
Message-Id: <20031129233010.8E2F.BQW10602@nifty.com>
(plus a test for the stringification of references
passed to POSIX::isXXX())
Branch: maint-5.8/perl
!> ext/POSIX/POSIX.xs ext/POSIX/t/is.t ext/POSIX/t/posix.t
____________________________________________________________________________
[ 21822] By: nicholas on 2003/11/30 10:35:31
Log: Integrate:
[ 21810]
Update Unicode::Collate to 0.31 (Only the .pm version for now)
[ 21812]
Update Unicode::Normalize to 0.28
Branch: maint-5.8/perl
+> ext/Unicode/Normalize/t/illegal.t
+> ext/Unicode/Normalize/t/null.t ext/Unicode/Normalize/t/short.t
+> lib/Unicode/Collate/t/illegal.t
+> lib/Unicode/Collate/t/illegalp.t
!> MANIFEST ext/Unicode/Normalize/Changes
!> ext/Unicode/Normalize/Normalize.pm
!> ext/Unicode/Normalize/Normalize.xs
!> ext/Unicode/Normalize/README lib/Unicode/Collate.pm
!> lib/Unicode/Collate/Changes lib/Unicode/Collate/README
!> lib/Unicode/Collate/t/version.t
____________________________________________________________________________
[ 21821] By: nicholas on 2003/11/30 10:24:55
Log: Integrate:
[ 21807]
Update Digest to 1.03
[ 21808]
Update to Digest::MD5 2.31
[ 21809]
D'oh! Forgot to lib/Digest/base.pm
[ 21811]
D'oh! This has been moved to lib/Digest/t/digest.t but not deleted.
Branch: maint-5.8/perl
+> ext/Digest/MD5/t/bits.t lib/Digest/base.pm lib/Digest/t/base.t
+> lib/Digest/t/digest.t
- lib/Digest.t
!> MANIFEST Porting/Maintainers.pl ext/Digest/MD5/Changes
!> ext/Digest/MD5/MD5.pm ext/Digest/MD5/Makefile.PL
!> ext/Digest/MD5/t/badfile.t ext/Digest/MD5/t/files.t
!> lib/Digest.pm
____________________________________________________________________________
[ 21820] By: nicholas on 2003/11/30 10:11:14
Log: Integrate all the t/op/readline.t changes:
[ 19069]
Subject: [PATCH] Re: [perl #21614] 5.8.0 Unbalanced string table refcount
From: Nicholas Clark <nick@unfortu.net>
Date: Tue, 25 Mar 2003 22:59:17 +0000
Message-ID: <20030325225917.GE284@Bagpuss.unfortu.net>
[ 19069]
Subject: [PATCH] Re: [perl #21614] 5.8.0 Unbalanced string table refcount
From: Nicholas Clark <nick@unfortu.net>
Date: Tue, 25 Mar 2003 22:59:17 +0000
Message-ID: <20030325225917.GE284@Bagpuss.unfortu.net>
[ 19071]
Better version of change #19069
Subject: [PATCH] Re: [PATCH] Re: [perl #21614] 5.8.0 Unbalanced string table refcount
From: Nicholas Clark <nick@unfortu.net>
Date: Wed, 26 Mar 2003 23:01:46 +0000
Message-ID: <20030326230145.GC279@Bagpuss.unfortu.net>
[ 19267]
Subject: [PATCH] readline.t tweak for VMS
From: "Craig A. Berry" <craigberry@mac.com>
Date: Thu, 17 Apr 2003 17:18:19 -0500
Message-ID: <3E9F282B.6090603@mac.com>
[ 20431]
More runperl(switches => ...) finds (bleadperl only).
[ 21787]
Subject: [PATCH] Re: bug or a feature?
From: Torsten Foertsch <torsten.foertsch@gmx.net>
Date: Sat, 22 Nov 2003 13:15:53 +0100
Message-Id: <200311221315.58539.torsten.foertsch@gmx.net>
and
Date: Sat, 22 Nov 2003 14:21:45 +0100
Message-Id: <200311221421.48940.torsten.foertsch@gmx.net>
(test moved to t/op/readline.t)
[ 21794]
Arguments to skip were the wrong way round, hence why all the *BSDs
were failing
Branch: maint-5.8/perl
! sv.c t/op/readline.t
!> pp_hot.c
____________________________________________________________________________
[ 21819] By: nicholas on 2003/11/30 09:57:11
Log: Integrate:
[ 21805]
Silence gcc 2.95 warning
(Its trace flow isn't good enough to realise that there is no problem)
Branch: maint-5.8/perl
!> pp_hot.c
____________________________________________________________________________
[ 21818] By: nicholas on 2003/11/30 09:43:55
Log: Integrate:
[ 21800]
Fix a regression introduced by change #21694 on sprintf()
with long doubles, by disabling the specific optimisation
path in this case ; remove a unnecessary cast ; add a new
test file for miscellaneous sprintf() test that don't fit
in the t/op/sprintf.t framework.
[ 21804]
Gconvert actually takes type NV, while nv may be either double
or long double (depending on some conditional code)
Rafael and I think that this cast should work.
[ 21806]
When Gconvert is a macro around sprintf with a .* format we need
to cast to int (in case STRLEN isn't the same size as int)
gcc issues a warning even when it is the same size
Branch: maint-5.8/perl
+> t/op/sprintf2.t
!> MANIFEST sv.c
____________________________________________________________________________
[ 21817] By: nicholas on 2003/11/30 09:25:20
Log: Copy SvIsCOW(sv) and SvIsCOW_shared_hash(sv) from blead
(Each is part of separate much larger changes, so can't integrate)
Branch: maint-5.8/perl
! sv.h
____________________________________________________________________________
[ 21816] By: nicholas on 2003/11/29 21:15:29
Log: Integrate:
[ 21799]
Subject: [patch pod/perlsec.pod] (was Re: why PERL5LIB is ignored when -T is in effect)
From: Stas Bekman <stas@stason.org>
Date: Fri, 28 Nov 2003 14:42:25 -0800
Message-ID: <3FC7CF51.7060804@stason.org>
[ 21813]
Remove whitespace from ends of lines (simply because it irritates me)
Branch: maint-5.8/perl
!> pod/perlsec.pod utils/h2xs.PL
____________________________________________________________________________
[ 21815] By: nicholas on 2003/11/29 21:15:05
Log: Integrate:
[ 21797]
Subject: Re: [perl #24245] File::Copy::copy damages hard linked files
From: Slaven Rezic <slaven@rezic.de>
Date: 19 Oct 2003 19:11:31 +0200
Message-ID: <87smlprw3g.fsf@vran.herceg.de>
(with further tweaks)
Branch: maint-5.8/perl
!> lib/File/Copy.pm lib/File/Copy.t
____________________________________________________________________________
[ 21803] By: nicholas on 2003/11/29 13:09:40
Log: Integrate:
It's back!
[ 21449]
Subject: [PATCH] SIGN => 1 support for MakeMaker
From: Autrijus Tang <autrijus@autrijus.org>
Date: Tue, 14 Oct 2003 18:32:28 +0800
Message-Id: <1066127547.65845.35.camel@localhost>
[ 21652]
Upgrade to ExtUtils::MakeMaker 6.19
[ 21675]
Upgrade to MakeMaker 6.20.
[ 21702]
Upgrade to MakeMaker 6.21.
Branch: maint-5.8/perl
+> lib/ExtUtils/t/parse_version.t
+> t/lib/MakeMaker/Test/Setup/BFD.pm
+> t/lib/MakeMaker/Test/Setup/Problem.pm
- lib/ExtUtils/t/00setup_dummy.t
- lib/ExtUtils/t/zz_cleanup_dummy.t
! lib/ExtUtils/MM_Any.pm lib/ExtUtils/MM_Unix.pm
!> (integrate 37 files)
____________________________________________________________________________
[ 21801] By: nicholas on 2003/11/29 11:05:18
Log: Integrate:
[ 21655]
Temporary kludge to allow SDBM_File being built
with MakeMaker 6.19.
[ 21657]
Subject: Re: [ANNOUNCE] ExtUtils::MakeMaker 6.19
From: Michael G Schwern <schwern@pobox.com>
Date: Tue, 4 Nov 2003 17:59:13 -0800
Message-ID: <20031105015913.GL15406@localhost.comcast.net>
Replaces the temporary kludge (#21655).
[ 21710]
Subject: [PATCH] Last stab at sdbm/Makefile.PL
From: Michael G Schwern <schwern@pobox.com>
Date: Tue, 11 Nov 2003 21:02:30 -0800
Message-ID: <20031112050230.GO6874@localhost.comcast.net>
Branch: maint-5.8/perl
!> ext/SDBM_File/sdbm/Makefile.PL
____________________________________________________________________________
[ 21796] By: nicholas on 2003/11/28 20:05:30
Log: Integrate:
[ 21788]
Add Torsten Foertsch to AUTHORS (patches plus tests are what we like)
[ 21789]
Marcus Holland-Moritz is now the maintainer of Devel::PPPort.
PerlIO and threads are not on CPAN.
[ 21795]
Subject: [PATCH] Fix perl 5.8 and 5.9 to build on latest VOS
From: "Green, Paul" <Paul.Green@stratus.com>
Date: Thu, 27 Nov 2003 21:51:26 -0500
Message-ID: <A2A34F15EE916148BC4C4748223E67A4069FB815@exna4.stratus.com>
Branch: maint-5.8/perl
!> AUTHORS Porting/Maintainers.pl hints/vos.sh
____________________________________________________________________________
[ 21786] By: nicholas on 2003/11/25 19:48:30
Log: re-run pod/buildtoc
Branch: maint-5.8/perl
! pod.lst pod/perl.pod pod/perltoc.pod vms/descrip_mms.template
! win32/pod.mak
____________________________________________________________________________
[ 21785] By: nicholas on 2003/11/25 19:42:14
Log: Re-order entries
Branch: maint-5.8/perl
! MANIFEST
____________________________________________________________________________
[ 21784] By: nicholas on 2003/11/25 19:25:25
Log: Integrate:
[ 21780]
Subject: Re: [perl #24439] 64 bit build failure on Solaris 9
From: Andy Dougherty <doughera@lafayette.edu>
Date: Thu, 20 Nov 2003 09:38:05 -0500 (EST)
Message-ID: <Pine.SOL.4.53.0311200926550.25274@maxwell.phys.lafayette.edu>
and :
Date: Fri, 21 Nov 2003 09:36:24 -0500 (EST)
Message-ID: <Pine.SOL.4.53.0311210927460.1876@maxwell.phys.lafayette.edu>
[ 21783]
Subject: remove hardcoded version number from cygwin/perlld.in
From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
Date: Mon, 24 Nov 2003 08:11:36 -0800
Message-ID: <20031124161136.GC2656@efn.org>
Branch: maint-5.8/perl
!> cygwin/Makefile.SHs cygwin/perlld.in hints/solaris_2.sh
____________________________________________________________________________
[ 21778] By: nicholas on 2003/11/22 23:21:32
Log: Integrate:
[ 21706]
Subject: Re: [perl #24460] [DOC PATCH] the begincheck program
From: Tom Phoenix <rootbeer@redcat.com>
Date: Tue, 11 Nov 2003 15:50:35 -0800 (PST)
Message-Id: <Pine.BSO.4.53.0311111547500.9242@blue.stonehenge.com>
[ 21751]
Update the runops stuff in perlguts
[ 21754]
Subject: [docpatch] PerlIO layers in perlrun.pod and PerlIO.pm
From: Iain Truskett <spoon@cpan.org>
Date: Thu, 20 Nov 2003 00:41:33 +1100
Message-ID: <20031119134132.GG21314@gytha.anu.edu.au>
Branch: maint-5.8/perl
!> lib/PerlIO.pm pod/perlguts.pod pod/perlmod.pod pod/perlrun.pod
____________________________________________________________________________
[ 21777] By: nicholas on 2003/11/22 23:17:43
Log: Integrate:
[ 21697]
Subject: [PATCH 5.8.2 @21574] make install: line noise
From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
Date: Tue, 4 Nov 2003 20:10:16 -0800
Message-ID: <20031105041016.GA2639@math.berkeley.edu>
and part of
Subject: [PATCH 5.8.2 @21574] make install: PREFIX and DESTDIR
From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
Date: Tue, 4 Nov 2003 20:18:37 -0800
Message-ID: <20031105041836.GA2649@math.berkeley.edu>
(I've left out the PREFIX part for now)
[ 21708]
Subject: [PATCH 5.8.2 @21574] make install not installing fully
From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
Date: Tue, 4 Nov 2003 20:07:25 -0800
Message-ID: <20031105040725.GA2629@math.berkeley.edu>
[ 21723]
Include "SCCS" in the list of directory names that should
be ignored by installperl.
[ 21739]
Subject: Re: [perl #24493] install.html not working
From: Slaven Rezic <slaven@rezic.de>
Date: 16 Nov 2003 20:52:29 +0100
Message-ID: <87d6bsw0oy.fsf@vran.herceg.de>
[ 21740]
Install instmodsh and xsubpp in bin/ along the other utilities.
[ 21741]
Complement of change #21740 for Windows.
(I have the feeling that it's already subtly broken on VMS)
Branch: maint-5.8/perl
+> utils/instmodsh.PL utils/xsubpp.PL
!> MANIFEST Makefile.SH installhtml installperl os2/Makefile.SHs
!> utils.lst utils/Makefile win32/Makefile win32/makefile.mk
____________________________________________________________________________
[ 21776] By: nicholas on 2003/11/22 22:48:49
Log: Integrate:
[ 21663]
Subject: Re: Smoke [5.9.0] 21474 FAIL(F) darwin 6.8 (darwin/1 cpu)
From: Slaven Rezic <slaven@rezic.de>
Date: 20 Oct 2003 22:39:28 +0200
Message-Id: <87oewbiqyn.fsf@vran.herceg.de>
Branch: maint-5.8/perl
!> lib/filetest.t
____________________________________________________________________________
[ 21775] By: nicholas on 2003/11/22 22:35:25
Log: Integrate:
[ 21732]
Subject: [PATCH] configpm, our $summary : unique
From: Elizabeth Mattijsen <liz@dijkmat.nl>
Date: Sat, 15 Nov 2003 22:18:32 +0100
Message-Id: <p05111b03bbdc478d10cb@[192.168.56.3]>
(plus comments)
[ 21733]
Subject: [PATCH] Re:ext/threads/t/problem.t (was: Problems with mod_perl 1.12 (?) and ActivePerl 5.8.1)
From: Elizabeth Mattijsen <liz@dijkmat.nl>
Date: Sat, 15 Nov 2003 23:22:16 +0100
Message-Id: <p05111b04bbdc49076950@[192.168.56.3]>
[ 21752]
Fix bug [perl #24508] Wrong assignment in nested assignment
together with subroutine call
Apparently concat still doesn't deal correctly with lexicals
in all cases. Disable the whole TARGET_MY optimisation for it.
(and remove the corresponding code from the peephole optimiser.)
Branch: maint-5.8/perl
! opcode.h
!> configpm ext/threads/t/problems.t op.c opcode.pl t/op/concat.t
____________________________________________________________________________
[ 21763] By: nicholas on 2003/11/21 21:38:15
Log: Test all permuations of utf8 flags on hashes and keys
Branch: maint-5.8/perl
! ext/XS/APItest/t/hash.t
____________________________________________________________________________
[ 21762] By: nicholas on 2003/11/21 20:41:03
Log: Refactor hash API tests (prior to some additions)
Branch: maint-5.8/perl
! ext/XS/APItest/t/hash.t
____________________________________________________________________________
[ 21761] By: nicholas on 2003/11/21 20:20:04
Log: Integrate:
[ 21742]
Whoops. We weren't actually testing hv_store_ent
We are now. Plus test hv_store for an initially empty hash.
Branch: maint-5.8/perl
!> ext/XS/APItest/APItest.xs ext/XS/APItest/t/hash.t
____________________________________________________________________________
[ 21759] By: nicholas on 2003/11/20 22:17:24
Log: perforce-- # Can't integrate a brange and an edit in one shot
mop up the file it failed on.
Integrate:
[ 21735]
utf8 keys now work for tied hashes via hv_fetch, hv_store, hv_delete
(pp functions use the _ent variants, and as the implementation is
duplicated, these bugs aren't tested, and aren't noticed)
Branch: maint-5.8/perl
!> ext/XS/APItest/t/hash.t
____________________________________________________________________________
[ 21757] By: nicholas on 2003/11/20 19:23:15
Log: Integrate:
[ 21756]
Subject: [PATCH] promote hv_clear_placeholders to perl API
From: Alan Burlison <Alan.Burlison@sun.com>
Date: Thu, 20 Nov 2003 10:34:30 +0000
Message-ID: <3FBC98B6.6090909@sun.com>
Branch: maint-5.8/perl
!> embed.fnc embed.h global.sym hv.c pod/perlapi.pod proto.h
!> universal.c
____________________________________________________________________________
[ 21749] By: nicholas on 2003/11/19 20:08:42
Log: Integrate:
[ 21748]
Subject: [PATCH] clear of empty locked hash SEGVs
From: Alan Burlison <Alan.Burlison@sun.com>
Date: Wed, 19 Nov 2003 14:39:03 +0000
Message-ID: <3FBB8087.20206@sun.com>
Branch: maint-5.8/perl
!> hv.c lib/Hash/Util.t
____________________________________________________________________________
[ 21745] By: nicholas on 2003/11/19 18:42:14
Log: Integrate:
[ 21743]
Restore errno after having read $^E (like for $!)
to preserve errno from unfortunate side-effects.
Branch: maint-5.8/perl
!> mg.c
____________________________________________________________________________
[ 21738] By: nicholas on 2003/11/16 21:49:45
Log: Integrate:
[ 21737]
Ooops. left an XXX comment in, and worse still it's a // comment
Branch: maint-5.8/perl
!> hv.c
____________________________________________________________________________
[ 21736] By: nicholas on 2003/11/16 21:27:24
Log: Integrate:
[ 21734]
Accessing unicode keys in tie hashes via hv_exists was broken.
(pp_exists uses hv_exists_ent, which isn't broken)
I expect an equivalent bug in hv_delete
[ 21735]
utf8 keys now work for tied hashes via hv_fetch, hv_store, hv_delete
(pp functions use the _ent variants, and as the implementation is
duplicated, these bugs aren't tested, and aren't noticed)
Branch: maint-5.8/perl
+> ext/XS/APItest/t/hash.t
!> MANIFEST ext/XS/APItest/APItest.pm ext/XS/APItest/APItest.xs
!> ext/XS/APItest/MANIFEST hv.c
____________________________________________________________________________
[ 21731] By: nicholas on 2003/11/15 22:25:53
Log: Integrate:
[ 21712]
Enable hints to create call-back units that can act when
a specific variable is *not* set (like -Uuselargefiles)
[ 21713]
Simplified the reading
Branch: maint-5.8/perl
!> Configure hints/README.hints hints/solaris_2.sh
____________________________________________________________________________
[ 21730] By: nicholas on 2003/11/15 14:42:58
Log: Integrate:
[ 21728]
Update perlhist with 5.6.2.
Branch: maint-5.8/perl
!> pod/perlhist.pod
____________________________________________________________________________
[ 21721] By: nicholas on 2003/11/13 21:25:56
Log: Integrate:
[ 21673]
Subject: [PATCH] Be sure to use -fPIC not -fpic on Linux/SPARC
From: Andy Dougherty <doughera@lafayette.edu>
Date: Wed, 5 Nov 2003 17:19:03 -0500 (EST)
Message-ID: <Pine.SOL.4.53.0311051715140.24878@maxwell.phys.lafayette.edu>
Branch: maint-5.8/perl
!> hints/linux.sh
____________________________________________________________________________
[ 21720] By: nicholas on 2003/11/13 21:07:58
Log: Integrate:
[ 21677]
Subject: [PATCH 5.8.2 @21574] OS/2 docu
From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
Date: Thu, 6 Nov 2003 23:26:18 -0800
Message-ID: <20031107072618.GA4370@math.berkeley.edu>
[ 21687]
Subject: [PATCH 5.6.2-RC1 pod/perlhist.pod] Updated.
From: Abigail <abigail@abigail.nl>
Date: Sat, 8 Nov 2003 18:51:30 +0100
Message-Id: <20031108175130.GA22273@abigail.nl>
[ 21691]
Update the list of pumpkings in perlhist.pod.
Branch: maint-5.8/perl
!> os2/Changes pod/perlhist.pod
____________________________________________________________________________
[ 21719] By: nicholas on 2003/11/13 20:59:26
Log: Integrate:
[ 21718]
Subject: Re: Empty subroutine as object method segfaults in 5.8.2 (sometimes)
From: Enache Adrian <enache@rdslink.ro>
Date: Tue, 11 Nov 2003 15:25:29 +0200
Message-ID: <20031111132529.GB1271@ratsnest.hole>
Branch: maint-5.8/perl
! op.c
____________________________________________________________________________
[ 21717] By: nicholas on 2003/11/13 20:29:04
Log: Integrate:
[ 21674]
Subject: [PATCH blead] Re: [perl #24248] taint propagation regression,
tests fail to spot this
From: Rick Delaney <rick@bort.ca>
Date: Wed, 5 Nov 2003 23:02:41 -0500
Message-Id: <20031105230241.D13585@biff.bort.ca>
[ 21676]
bugid #24407: numeric key for shared hash got stringified using
wrong interpreter, and thus got malloced into the wrong thread
memory pool
[ 21694]
Subject: [PATCH 5.8.2 @21574] sprintf() painfully slow
From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
Date: Mon, 3 Nov 2003 20:27:39 -0800
Message-ID: <20031104042739.GA1697@math.berkeley.edu>
Subject: Re: [PATCH 5.8.2 @21574] sprintf() painfully slow
From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
Date: Mon, 3 Nov 2003 20:57:48 -0800
Message-ID: <20031104045748.GA1826@math.berkeley.edu>
[ 21714]
Fix bug [perl #24380] : assigning to a hash in list
or scalar context yielded a wrong value if the list
contained duplicated keys for the hash. This is fixed
by counting the number of duplicate keys and trimming
the stack by the corresponding number of items.
Branch: maint-5.8/perl
! t/op/taint.t
!> ext/threads/shared/shared.xs ext/threads/shared/t/hv_simple.t
!> pp_ctl.c pp_hot.c sv.c t/op/hashassign.t
____________________________________________________________________________
[ 21715] By: nicholas on 2003/11/13 19:57:33
Log: Integrate:
[ 21662]
Subject: Re: 'make minitest' fails for op/cproto and op/pat
From: Michael G Schwern <schwern@pobox.com>
Date: Wed, 5 Nov 2003 06:26:36 -0800
Message-Id: <20031105142635.GA22761@localhost.comcast.net>
[ 21671]
Subject: Re: [perl #24398] Benchmark.pm cmpthese segfault
From: Stas Bekman <stas@stason.org>
Date: Wed, 05 Nov 2003 00:50:25 -0800
Message-ID: <3FA8B9D1.2020806@stason.org>
[ 21672]
Subject: [patch t/op/hash.t] extending the hash attack test
From: Stas Bekman <stas@stason.org>
Date: Tue, 04 Nov 2003 14:33:09 -0800
Message-ID: <3FA82925.7020703@stason.org>
Branch: maint-5.8/perl
!> lib/Benchmark.pm t/op/cproto.t t/op/hash.t
____________________________________________________________________________
[ 21704] By: nicholas on 2003/11/11 20:48:54
Log: Integrate:
[ 21693]
Subject: [PATCH-5.8.2 for WinCE] must copy changes from win32/makeifle.mk to wince/makefile.ce
From: Vadim Konovalov <konovalo@mail.wplus.net>
Date: Sun, 9 Nov 2003 13:31:59 +0300
Message-ID: <93187393948.20031109133159@mail.wplus.net>
Branch: maint-5.8/perl
!> wince/Makefile.ce
____________________________________________________________________________
[ 21703] By: nicholas on 2003/11/11 20:21:13
Log: Update changes
Branch: maint-5.8/perl
! Changes Changes5.8.2
____________________________________________________________________________
[ 21701] By: nicholas on 2003/11/11 20:08:50
Log: Remove carriage returns (which had slipped in)
Branch: maint-5.8/perl
! win32/Makefile win32/makefile.mk wince/compile-all.bat
! wince/registry.bat
____________________________________________________________________________
[ 21700] By: nicholas on 2003/11/11 19:28:07
Log: perldelta changeover
Branch: maint-5.8/perl
! pod/perldelta.pod
____________________________________________________________________________
[ 21699] By: nicholas on 2003/11/11 19:21:20
Log: Disarm the maint branch
Branch: maint-5.8/perl
+> Changes5.8.2 pod/perl582delta.pod
! Changes MANIFEST patchlevel.h
|