summaryrefslogtreecommitdiff
path: root/Changes
blob: 6a515fcb99a7d1f3cea2e2a3fbed0a7a683c2335 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
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.8		Maintenance release working toward v5.8.8
--------------
____________________________________________________________________________
[ 25817] By: nicholas                              on 2005/10/21  15:28:21
        Log: Re-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.
             
             Integrate:
             [ 21918]
             Sync with the latest MakeMaker snapshot.
             But set the $VERSION to 6.21_01.
             
             [ 22032]
             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>
             
             [ 22258]
             Subject: Re: [perl #15063] /tmp issues
             From: Solar Designer <solar@openwall.com> 
             Date: Mon, 26 Jan 2004 01:22:18 +0300
             Message-ID: <20040125222218.GA13499@openwall.com>
             
             Remove insecure usage of /tmp from code and documentation
             
             [ 22409]
             Bump version numbers of moules affected by change #22258
             (removing /tmp and other insecurities)
             
             [ 22476]
             Subject: [PATCH] bleadperl/MM/VMS (was Re: perl@22413)
             From: "Craig A. Berry" <craigberry@mac.com>
             Date: Mon, 08 Mar 2004 08:18:43 -0600
             Message-ID: <404C80C3.6090009@mac.com>
             
             Avoid to build everything twice on VMS.
             This is done by renaming the blibdirs target to blibdirs.exists.
             No, I don't understand why.
             
             [ 22480]
             Change 22476 left out a similar fix for ExtUtils::MM_Win32
             (noticed by Steve Hay.)
             Also, update MANIFEST.SKIP to be in line with the renaming
             "blibdirs" to "blibdirs.exists".
             
             [ 23183]
             Remove empty rpath from .so files
             
             [ 23186]
             Subject: [perl #30914] ExtUtils::Embed should use libperl name from Config 
             From: Marek Rouchal (via RT) <perlbug-followup@perl.org>
             Date: 2 Aug 2004 07:00:33 -0000
             Message-ID: <rt-3.0.11-30914-93038.14.5123598132685@perl.org>
             
             [ 23437]
             Skip tests that require Data::Dumper if it is not built
             
             [ 23653]
             Upgrade to ExtUtils::MakeMaker 6.25
             
             [ 23849]
             Subject: [perl #33892] Add Interix support 
             From: Todd Vierling (via RT) <perlbug-followup@perl.org>
             Date: 21 Jan 2005 14:36:31 -0000
             Message-ID: <rt-3.0.11-33892-106280.17.6407478352545@perl.org>
             
             (except the Configure chunk)
             (and bump version numbers of modules)
             
             [ 24185]
             Upgrade to ExtUtils::MakeMaker 6.27,
             plus a patch to restore functioning of 'distclean'
             for the perl core
             
             [ 24189]
             Tabs not spaces in MANIFEST
             
             [ 24200]
             MM_AIX needs neatvalue
             
             [ 24212]
             Subject: Re: [ANNOUNCE] ExtUtils::MakeMaker 6.27
             From: Michael G Schwern <schwern@pobox.com>
             Date: Thu, 7 Apr 2005 15:15:00 -0700
             Message-ID: <20050407221500.GB6223@windhund.schwern.org>
             
             Fix duplicate target warnings
             
             [ 24232]
             Upgrade to ExtUtils::MakeMaker 6.28
             
             [ 24271]
             Subject: [PATCH] Symbian port of Perl
             From: <jarkko.hietaniemi@nokia.com>
             Date: Mon, 18 Apr 2005 13:18:30 +0300
             Message-ID: <B356D8F434D20B40A8CEDAEC305A1F2453D653@esebe105.NOE.Nokia.com>
             
             [ 24334]
             Subject: Win32 MM test fix
             From: Michael G Schwern <schwern@pobox.com>
             Date: Mon, 18 Apr 2005 14:30:19 -0700
             Message-ID: <20050418213019.GA15797@windhund.schwern.org>
             
             Subject: Re: Win32 MM test fix
             From: demerphq <demerphq@gmail.com>
             Date: Tue, 19 Apr 2005 00:57:59 +0200
             Message-ID: <9b18b31105041815573e10dc10@mail.gmail.com>
             
             [ 24510]
             Upgrade to MakeMaker 6.29
             
             [ 24524]
             Update to MakeMaker 6.30
     Branch: maint-5.8/perl
	  +> lib/ExtUtils/MM_AIX.pm lib/ExtUtils/MM_QNX.pm
	  +> lib/ExtUtils/MM_VOS.pm lib/ExtUtils/MakeMaker/Config.pm
	  +> lib/ExtUtils/t/FIRST_MAKEFILE.t lib/ExtUtils/t/PL_FILES.t
	  +> lib/ExtUtils/t/config.t lib/ExtUtils/t/dir_target.t
	  +> lib/ExtUtils/t/installbase.t lib/ExtUtils/t/parse_version.t
	  +> lib/ExtUtils/t/xs.t t/lib/MakeMaker/Test/Setup/BFD.pm
	  +> t/lib/MakeMaker/Test/Setup/PL_FILES.pm
	  +> t/lib/MakeMaker/Test/Setup/Problem.pm
	   - 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_Cygwin.pm lib/ExtUtils/MM_NW5.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/Embed.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
	   ! t/lib/MakeMaker/Test/Setup/Recurs.pm
	  !> lib/ExtUtils/Embed.pm lib/ExtUtils/MM_Any.pm
	  !> lib/ExtUtils/MM_BeOS.pm lib/ExtUtils/MM_MacOS.pm
	  !> lib/ExtUtils/MM_OS2.pm lib/ExtUtils/MM_Unix.pm
	  !> lib/ExtUtils/MakeMaker/FAQ.pod lib/ExtUtils/NOTES
	  !> lib/ExtUtils/PATCHING lib/ExtUtils/t/00compile.t
	  !> lib/ExtUtils/t/Installed.t lib/ExtUtils/t/Liblist.t
	  !> lib/ExtUtils/t/hints.t lib/ExtUtils/t/oneliner.t
	  !> lib/ExtUtils/t/recurs.t lib/ExtUtils/t/split_command.t
	  !> lib/ExtUtils/xsubpp t/lib/MakeMaker/Test/Utils.pm
____________________________________________________________________________
[ 25807] By: nicholas                              on 2005/10/19  14:59:18
        Log: Integrate:
             [ 25291]
             Subject: [patch@25289] Add sig_count to CONFIGURE.COM
             From: "John E. Malmberg" <wb8tyw@qsl.net>
             Date: Fri, 12 Aug 2005 13:39:25 -0400
             Message-ID: <42FCDECD.8090009@qsl.net>
             
             [ 25293]
             Subject: [PATCH configure.com] Make "prove" available on VMS
             From: Abe Timmerman <abe@ztreet.demon.nl>
             Date: Sat, 13 Aug 2005 18:16:29 +0200
             Message-Id: <200508131816.29092.abe@ztreet.demon.nl>
             
             [ 25294]
             Subject: Re: [PATCH@25292] add nonxs_ext to configure.com
             From: "John E. Malmberg" <wb8tyw@qsl.net>
             Date: Sat, 13 Aug 2005 12:20:34 -0400
             Message-ID: <42FE1DD2.8050803@qsl.net>
             
             [ 25315]
             Subject: Re: Building 25309 on VAX (OpenVMS 7.2) not ok
             From: Abe Timmerman <abe@ztreet.demon.nl>
             Date: Sun, 21 Aug 2005 16:28:42 +0200
             Message-Id: <200508211628.42409.abe@ztreet.demon.nl>
             
             [ 25474]
             Subject: [patch@25452] VMS fix required by Change 25387
             From: "John E. Malmberg" <wb8tyw@qsl.net>
             Date: Sun, 18 Sep 2005 14:53:09 -0400
             Message-ID: <432DB795.8050801@qsl.net>
             
             [ 25683]
             We lied about strtoq way back in #8120
             
             [ 25740]
             disarm unsetenv() on VMS for now (function is present
             but %ENV is more complicated)
     Branch: maint-5.8/perl
	  !> configure.com
____________________________________________________________________________
[ 25806] By: nicholas                              on 2005/10/19  13:29:02
        Log: Integrate:
             [ 24613]
             Subject: [PATCH] VMS build update for blead
             From: "Craig A. Berry" <craigberry@mac.com>
             Date: Sat, 28 May 2005 23:18:46 -0500
             Message-Id: <429942A6.10601@mac.com>
             
             (and the gen_shrfls.pl parts of)
             [ 25217]
             Subject: [PATCH] blead help for VMS
             From: "Craig A. Berry" <craigberry@mac.com>
             Message-ID: <42E3FABB.1020900@mac.com>
             Date: Sun, 24 Jul 2005 15:31:55 -0500
             
             [ 25680]
             assorted blead build help for VMS (mostly ithreads-related)
             
             [ 25710]
             Parse symbols for the linker when more than one declaration
             on the same line (the way PERLVARISC now throws at us).
     Branch: maint-5.8/perl
	  !> doio.c vms/descrip_mms.template vms/gen_shrfls.pl
____________________________________________________________________________
[ 25791] By: nicholas                              on 2005/10/18  13:23:09
        Log: VMS also wants these casts.
     Branch: maint-5.8/perl
	   ! ext/POSIX/POSIX.xs
____________________________________________________________________________
[ 25787] By: nicholas                              on 2005/10/18  08:36:47
        Log: VMS appears to want this cast.
             "appears", because I can't test it there currently.
     Branch: maint-5.8/perl
	   ! ext/Data/Dumper/Dumper.xs
____________________________________________________________________________
[ 25785] By: nicholas                              on 2005/10/17  16:17:13
        Log: Integrate:
             [ 25781]
             Correct precedence from and to && in an expression with assignment.
     Branch: maint-5.8/perl
	  !> ext/IO/t/io_sock.t
____________________________________________________________________________
[ 25773] By: nicholas                              on 2005/10/16  20:03:58
        Log: Suggestion from Yitzchak Scott-Thoennes that correctly fixes
             platform specific segfaults due to bad destruction ordering
             assumptions.
     Branch: maint-5.8/perl
	   ! av.c
____________________________________________________________________________
[ 25762] By: nicholas                              on 2005/10/15  12:05:53
        Log: Presumably this lack of const is what the VMS compiler is complaining
             about in the "assignment", not that these three function calls are
             actually assignments.
     Branch: maint-5.8/perl
	   ! pp_sys.c
____________________________________________________________________________
[ 25715] By: nicholas                              on 2005/10/08  17:38:56
        Log: Another cast VMS needs.
     Branch: maint-5.8/perl
	   ! doio.c
____________________________________________________________________________
[ 25714] By: nicholas                              on 2005/10/08  15:52:58
        Log: Cleanups for VMS (including reverting the prototype of cando)
     Branch: maint-5.8/perl
	   ! doio.c embed.fnc mg.c pp_ctl.c proto.h
____________________________________________________________________________
[ 25713] By: nicholas                              on 2005/10/08  15:19:54
        Log: Integrate:
             [ 25709]
             Avoid a cast
     Branch: maint-5.8/perl
	  !> perl.c
____________________________________________________________________________
[ 25692] By: nicholas                              on 2005/10/05  14:20:45
        Log: 25673 broke Windows (and possibly other platforms) by elimiating the
             declaration of sig_trapped
     Branch: maint-5.8/perl
	   ! util.c
____________________________________________________________________________
[ 25673] By: nicholas                              on 2005/09/30  17:13:04
        Log: Integrate:
             *.c from
             [ 24271]
             Subject: [PATCH] Symbian port of Perl
             From: <jarkko.hietaniemi@nokia.com>
             Date: Mon, 18 Apr 2005 13:18:30 +0300
             Message-ID: <B356D8F434D20B40A8CEDAEC305A1F2453D653@esebe105.NOE.Nokia.com>
             
             [ 24276]
             Fix my_chsize() for systems having chsize(), broken by change #24271
     Branch: maint-5.8/perl
	   ! sv.c
	  !> (integrate 27 files)
____________________________________________________________________________
[ 25671] By: nicholas                              on 2005/09/30  14:39:47
        Log: Casts to make Win32 and -DDEBUGGING quieter.
     Branch: maint-5.8/perl
	   ! mg.c pp_sys.c
____________________________________________________________________________
[ 25670] By: nicholas                              on 2005/09/30  14:15:43
        Log: Integrate:
             [ 24919]
             No need to set flags twice.
     Branch: maint-5.8/perl
	  !> av.c
____________________________________________________________________________
[ 25669] By: nicholas                              on 2005/09/30  14:00:04
        Log: Integrate:
             [ 24784]
             $r = do {my @a; \$#a}; $$r = 503 # is also naughty and now warns
     Branch: maint-5.8/perl
	   ! scope.c
	  !> pod/perldiag.pod t/op/array.t
____________________________________________________________________________
[ 25668] By: nicholas                              on 2005/09/30  11:07:09
        Log: Integrate:
             [ 24783]
             Fixes the case of $a = \$#{[]}; and then accessing $$a
             (but not \$#a after local @a or my @a leave a block)
     Branch: maint-5.8/perl
	   ! av.c mg.c
	  !> t/op/array.t
____________________________________________________________________________
[ 25667] By: nicholas                              on 2005/09/30  10:29:54
        Log: Integrate:
             [ 25211]
             Silence Win32 warnings when not using USE_LARGE_FILES
     Branch: maint-5.8/perl
	  !> win32/win32.c
____________________________________________________________________________
[ 25661] By: nicholas                              on 2005/09/29  14:17:12
        Log: Integrate:
             [ 24380]
             Fix getting prototype of builtins mkdir and setpgrp.
             Hardcode special exceptions for exec and system, instead
             of trying to be clever and failing.
     Branch: maint-5.8/perl
	  !> opcode.h opcode.pl pp.c t/op/cproto.t
____________________________________________________________________________
[ 25655] By: nicholas                              on 2005/09/29  10:52:39
        Log: Casts and prototype changes needed to remove warnings in pp_pack.c
             TODO - merge Ton's structural changes in a compatible way.
     Branch: maint-5.8/perl
	   ! embed.fnc pp_pack.c proto.h
____________________________________________________________________________
[ 25654] By: nicholas                              on 2005/09/29  09:45:08
        Log: Casts to fix warnings in pp.c, pp_ctl.c and pp_sys.c
     Branch: maint-5.8/perl
	   ! pp.c pp_ctl.c pp_sys.c
____________________________________________________________________________
[ 25653] By: steveh                                on 2005/09/29  08:57:31
        Log: Put back half a comment that got lost during recent integrations
     Branch: maint-5.8/perl
	   ! win32/config_H.vc64
____________________________________________________________________________
[ 25648] By: nicholas                              on 2005/09/28  22:04:24
        Log: Casts to stop warnings in sv.c and xsutils.c
     Branch: maint-5.8/perl
	   ! sv.c xsutils.c
____________________________________________________________________________
[ 25647] By: nicholas                              on 2005/09/28  21:32:24
        Log: Casts to stop warnings in perl*.c
     Branch: maint-5.8/perl
	   ! perl.c writemain.SH
____________________________________________________________________________
[ 25646] By: nicholas                              on 2005/09/28  21:32:01
        Log: Casts to stop warnings in toke.c
     Branch: maint-5.8/perl
	   ! toke.c utf8.h
____________________________________________________________________________
[ 25645] By: nicholas                              on 2005/09/28  21:15:17
        Log: Casts to stop warnings in op.c
     Branch: maint-5.8/perl
	   ! op.c
____________________________________________________________________________
[ 25644] By: nicholas                              on 2005/09/28  21:02:37
        Log: Casts to stop warnings in reg*.c
     Branch: maint-5.8/perl
	   ! regcomp.c regexec.c
____________________________________________________________________________
[ 25643] By: nicholas                              on 2005/09/28  20:54:51
        Log: Integrate (the numeric.c tweak):
             [ 25304]
             Subject: [PATCH] 5.9.x (and 5.8.x): Symbian update
             From: <jarkko.hietaniemi@nokia.com>
             Date: Thu, 18 Aug 2005 13:43:46 +0300
             Message-ID: <B356D8F434D20B40A8CEDAEC305A1F24E7A41B@esebe105.NOE.Nokia.com>
     Branch: maint-5.8/perl
	  !> numeric.c
____________________________________________________________________________
[ 25642] By: nicholas                              on 2005/09/28  20:27:21
        Log: Casts to fix warnings in gv.c, locale.c and mg.c
     Branch: maint-5.8/perl
	   ! gv.c locale.c mg.c utf8.h
____________________________________________________________________________
[ 25641] By: nicholas                              on 2005/09/28  20:19:53
        Log: Casts to stop warnings in d*.c
     Branch: maint-5.8/perl
	   ! doio.c doop.c dump.c
____________________________________________________________________________
[ 25639] By: nicholas                              on 2005/09/28  19:51:11
        Log: Casts to stop warnings in u*.c
     Branch: maint-5.8/perl
	   ! universal.c utf8.c util.c
____________________________________________________________________________
[ 25636] By: nicholas                              on 2005/09/28  16:24:51
        Log: Integrate:
             [ 25083]
             Subject: [PATCH] Pod::Html - correctly link to =item's on the same page
             From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
             Date: Mon, 4 Jul 2005 02:07:38 -0700
             Message-ID: <20050704090738.GA4056@efn.org>
             
             (plus a new test, although it is currently marked TODO)
             
             [ 25181]
             Subject: [perl #36526] Incorrect (X)HTML generated by Pod::Html 
             From: Earl Hood (via RT) <perlbug-followup@perl.org>
             Date: Tue, 12 Jul 2005 23:55:28 -0700
             Message-ID: <rt-3.0.11-36526-117155.10.6496168983897@perl.org>
             
             (with old code deleted rather than commented out)
             
             [ 25186]
             Fix test following change #25181
     Branch: maint-5.8/perl
	  +> lib/Pod/t/htmllink.pod lib/Pod/t/htmllink.t
	  !> MANIFEST lib/Pod/Html.pm lib/Pod/t/htmlview.t
____________________________________________________________________________
[ 25635] By: nicholas                              on 2005/09/28  16:08:00
        Log: Integrate:
             [ 25130]
             Subject: [perl #6749] Perl debugger outputs ctrl-\ wrongly 
             From: "Michael G Schwern via RT" <perlbug-followup@perl.org>
             Date: Tue, 12 Jul 2005 15:36:54 -0700
             Message-ID: <rt-3.0.11-6749-117055.16.4354496694007@perl.org>
             
             (perl5db.pl)
             [ 25261]
             Subject: [PATCH] Typos in *.p[lm]
             From: "Piotr Fusik" <pfusik@op.pl>
             Date: Sun, 31 Jul 2005 12:50:04 +0200
             Message-ID: <001401c595bd$dccb5d80$0bd34dd5@piec>
     Branch: maint-5.8/perl
	  !> lib/dumpvar.pl lib/perl5db.pl
____________________________________________________________________________
[ 25633] By: nicholas                              on 2005/09/28  15:03:48
        Log: Integrate:
             [ 25271]
             Upgrade to Encode 2.11, plus a patch to PerlIO::encoding
             by Dan Kogai to fix encoding(utf-8-strict) with partial
             characters.
             
             [ 25273]
             Add files missed in change 25271
             
             [ 25609]
             Upgrade to Encode 2.12
     Branch: maint-5.8/perl
	  +> ext/Encode/lib/Encode/MIME/Header/ISO_2022_JP.pm
	  +> ext/Encode/t/mime_header_iso2022jp.t
	  !> MANIFEST ext/Encode/AUTHORS ext/Encode/Changes
	  !> ext/Encode/Encode.pm ext/Encode/Encode.xs
	  !> ext/Encode/Encode/encode.h ext/Encode/MANIFEST
	  !> ext/Encode/META.yml ext/Encode/encoding.pm
	  !> ext/Encode/lib/Encode/Alias.pm ext/Encode/lib/Encode/Config.pm
	  !> ext/Encode/lib/Encode/MIME/Header.pm
	  !> ext/Encode/lib/Encode/PerlIO.pod
	  !> ext/Encode/lib/Encode/Supported.pod ext/Encode/t/fallback.t
	  !> ext/Encode/ucm/8859-7.ucm ext/PerlIO/encoding/encoding.pm
____________________________________________________________________________
[ 25632] By: nicholas                              on 2005/09/28  14:38:23
        Log: Integrate:
             [ 25136]
             Make -V "Compile-time options" list everything used in makedef.pl
             
             [ 25209]
             Make makedef.pl read "miniperl -V" on Win32
             
             Perhaps other platforms that use makedef.pl also need a similar
             change (currently required to pick up PERL_DONT_CREATE_GVSV),
             but it also requires them to have minimal canned configs (if they
             are using canned configs like Win32 does) and I don't have any
             of the affected platforms (AIX, WinCE, OS/2, MacOS Classic and
             NetWare) for testing, so play it safe instead
             
             [ 25210]
             I *DO* have AIX, and extending #25209 like this make it happy again
             Thank you Steve!
             
             [ 25212]
             Tidy up options / defines output from makedef.pl
             and change Win32-specific comments to say "On Win32 ..." now
             that AIX is using the same code too
     Branch: maint-5.8/perl
	  !> makedef.pl perl.c
____________________________________________________________________________
[ 25631] By: nicholas                              on 2005/09/28  14:25:09
        Log: Avoid a warning about redefing carp. (Caused by sucking in a hunk
             that isn't needed in maint)
     Branch: maint-5.8/perl
	   ! lib/File/Copy.pm
____________________________________________________________________________
[ 25630] By: nicholas                              on 2005/09/28  14:10:21
        Log: Integrate:
             [ 24993]
             Subject: [PATCH] XSLoader for Sys::Syslog
             From: Alexey Tourbin <at@altlinux.ru>
             Date: Sun, 26 Jun 2005 08:32:05 +0400
             Message-ID: <20050626043204.GA31585@solemn.turbinal.org>
             
             [ 25309]
             Subject: [PATCH ext/POSIX/POSIX.xs] Whitespace
             From: Abigail <abigail@abigail.nl>
             Message-ID: <20050723003235.GJ15093@abigail.nl>
             Date: Sat, 23 Jul 2005 02:32:35 +0200
     Branch: maint-5.8/perl
	  !> ext/POSIX/POSIX.xs ext/Sys/Syslog/Syslog.pm
____________________________________________________________________________
[ 25629] By: nicholas                              on 2005/09/28  13:59:11
        Log: Integrate:
             [ 24359]
             Subject: [PATCH] undo pod utilities regression in 24034
             From: "Craig A. Berry" <craigberry@mac.com>
             Date: Fri, 29 Apr 2005 17:22:48 -0500
             Message-ID: <4272B3B8.6030603@mac.com>
     Branch: maint-5.8/perl
	  !> pod/pod2usage.PL pod/podselect.PL
____________________________________________________________________________
[ 25628] By: nicholas                              on 2005/09/28  13:24:14
        Log: Integrate:
             [ 25120]
             Subject: Re: [perl #36502] File::Copy::mv fails to replicate behavior of Unix mv
             From: Michael G Schwern <schwern@pobox.com>
             Date: Mon, 11 Jul 2005 17:35:14 -0700
             Message-ID: <20050712003514.GA20132@windhund.schwern.org>
             
             [ 25122]
             Subject: [perl #36502] File::Copy::mv fails to replicate behavior of Unix mv 
             From: "Michael G Schwern via RT" <perlbug-followup@perl.org>
             Date: Mon, 11 Jul 2005 19:16:10 -0700
             Message-ID: <rt-3.0.11-36502-116917.0.56038652013207@perl.org>
             
             [ 25143]
             Subject: Re: [perl #36507] File::Copy::copy($foo, $foo) dies
             From: Michael G Schwern <schwern@pobox.com>
             Date: Tue, 12 Jul 2005 15:51:18 -0700
             Message-ID: <20050712225118.GA944@windhund.schwern.org>
             
             (and update SKIP counts)
     Branch: maint-5.8/perl
	  !> lib/File/Copy.pm lib/File/Copy.t
____________________________________________________________________________
[ 25622] By: steveh                                on 2005/09/27  16:39:01
        Log: Save bcc 5.5.1 from its own internal compiler error
     Branch: maint-5.8/perl
	   ! util.c
____________________________________________________________________________
[ 25620] By: nicholas                              on 2005/09/27  14:45:20
        Log: Integrate:
             [ 25605]
             const sausage const const bacon const tomato and const
             The search_ext parameter to find_script can be a little more const.
     Branch: maint-5.8/perl
	  !> embed.fnc proto.h util.c
____________________________________________________________________________
[ 25607] By: nicholas                              on 2005/09/26  18:38:06
        Log: Re-run regen.pl
     Branch: maint-5.8/perl
	   ! pod/perlapi.pod pod/perlintern.pod
____________________________________________________________________________
[ 25606] By: nicholas                              on 2005/09/26  18:00:40
        Log: Missed embed.pl products.
     Branch: maint-5.8/perl
	   ! embedvar.h reentr.inc
____________________________________________________________________________
[ 25603] By: nicholas                              on 2005/09/26  15:40:42
        Log: Fix prototype of my_setenv on Win32, as identfied by Steve Hay
     Branch: maint-5.8/perl
	   ! util.c
____________________________________________________________________________
[ 25598] By: nicholas                              on 2005/09/26  10:44:41
        Log: Integrate:
             [ 24595]
             Subject: [PATCH] add PERL_CALLCONV to PERL_CKDEF and PERL_PPDEF
             From: <jarkko.hietaniemi@nokia.com>
             Date: Fri, 27 May 2005 13:15:36 +0300
             Message-ID: <B356D8F434D20B40A8CEDAEC305A1F24E7A1CD@esebe105.NOE.Nokia.com>
     Branch: maint-5.8/perl
	  !> perl.h
____________________________________________________________________________
[ 25596] By: nicholas                              on 2005/09/24  17:25:11
        Log: Integrate:
             [ 24711]
             Subject: [PATCH] Tru64: allow creating perl.pixie even with optimized Perl
             From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
             Date: Sun, 05 Jun 2005 18:28:08 +0300
             Message-ID: <42A31A08.3070601@gmail.com>
     Branch: maint-5.8/perl
	  !> Makefile.SH
____________________________________________________________________________
[ 25595] By: nicholas                              on 2005/09/24  16:45:08
        Log: Integrate:
             [ 24596]
             Subject: [PATCH] Do not install change logs, READMEs, etc...
             From: Michael G Schwern <schwern@pobox.com>
             Date: Thu, 26 May 2005 13:43:05 -0700
             Message-ID: <20050526204305.GH11558@windhund.schwern.org>
             
             [ 24610]
             Subject: Re: [PATCH] Do not install change logs, READMEs, etc...
             From: Michael G Schwern <schwern@pobox.com>
             Date: Fri, 27 May 2005 12:33:27 -0700
             Message-ID: <20050527193327.GC17504@windhund.schwern.org>
             
             [ 25560]
             Add an option --ignore to installhtml
             and use it to avoid to install doc in Porting/.
             Skip also test modules.
     Branch: maint-5.8/perl
	  !> Makefile.SH installhtml installperl
____________________________________________________________________________
[ 25594] By: nicholas                              on 2005/09/24  15:29:40
        Log: Integrate:
             (the threads parts of)
             [ 24175]
             Casting to/from (void *) sufficient to make a C++ compiler happy.
             
             [ 25123]
             Subject: Re: Scalar leaked in 'local $0' under ithreads + taint mode
             From: Steve Hay <steve.hay@uk.radan.com>
             Date: Mon, 11 Jul 2005 13:29:37 +0100
             Message-ID: <42D26631.1070500@uk.radan.com>
             
             [ 25307]
             Subject: [PATCH] make threads.xs emit warnings properly
             From: Tassilo von Parseval <tassilo.von.parseval@rwth-aachen.de>
             Date: Aug 7, 2005 7:10 AM
             Message-id: <20050807051041.GA3924@ethan>
             
             [ 25442]
             Holding a mutex then croak()ing strikes me as deadlock.
     Branch: maint-5.8/perl
	  !> ext/threads/shared/shared.xs ext/threads/threads.pm
	  !> ext/threads/threads.xs pod/perldiag.pod
____________________________________________________________________________
[ 25593] By: nicholas                              on 2005/09/24  15:10:18
        Log: Integrate:
             [ 24869]
             Subject: [perl #36237] IO::File $fh->binmode($layer) is broken 
             From: "Alexander Foken" (via RT) <perlbug-followup@perl.org>
             Date: 10 Jun 2005 12:46:41 -0000
             Message-ID: <rt-3.0.11-36237-115536.13.400290704223@perl.org>
             
             and bump version number
             
             [ 25016]
             Subject: Re: [PATCH]Re: [perl #36417] IO::Handle::getline() doco should note an important difference from <$io>
             From: Steve Peters <steve@fisharerojo.org>
             Date: Wed, 29 Jun 2005 21:47:23 -0500
             Message-ID: <20050630024723.GA3786@mccoy.peters.homeunix.org>
             
             [ 25355]
             Upgrade to IO 1.22 from gbarr
             - Adjust the regression tests to use t/test.pl from bleadperl
             when $ENV{PERL_CORE} is defined
             - Add can_ok and isa_ok to t/test.pl from the implementation
             found in the IO CPAN distribution
             
             [ 25359]
             Revert Makefile.PL change from #25355
     Branch: maint-5.8/perl
	  !> ext/IO/ChangeLog ext/IO/IO.pm ext/IO/IO.xs ext/IO/Makefile.PL
	  !> ext/IO/README ext/IO/lib/IO/Dir.pm ext/IO/lib/IO/File.pm
	  !> ext/IO/lib/IO/Handle.pm ext/IO/lib/IO/Pipe.pm
	  !> ext/IO/lib/IO/Poll.pm ext/IO/lib/IO/Seekable.pm
	  !> ext/IO/lib/IO/Select.pm ext/IO/lib/IO/Socket.pm
	  !> ext/IO/lib/IO/Socket/INET.pm ext/IO/lib/IO/Socket/UNIX.pm
	  !> ext/IO/t/IO.t ext/IO/t/io_file.t ext/IO/t/io_linenum.t
	  !> ext/IO/t/io_pipe.t ext/IO/t/io_sel.t ext/IO/t/io_sock.t
	  !> ext/IO/t/io_utf8.t t/test.pl
____________________________________________________________________________
[ 25592] By: nicholas                              on 2005/09/24  09:56:14
        Log: Integrate:
             [ 25110]
             no code before declarations!
     Branch: maint-5.8/perl
	  !> doio.c
____________________________________________________________________________
[ 25589] By: nicholas                              on 2005/09/23  16:14:59
        Log: Integrate:
             [ 25397]
             Subject: [PATCH] The return of the consting
             From: Andy Lester <andy@petdance.com>
             Date: Tue, 13 Sep 2005 01:08:36 -0500
             Message-ID: <20050913060835.GA1037@petdance.com>
     Branch: maint-5.8/perl
	   ! proto.h
	  !> embed.fnc lib/overload.pm util.c
____________________________________________________________________________
[ 25587] By: nicholas                              on 2005/09/23  15:40:22
        Log: Integrate:
             [ 25277]
             Subject: [PATCH] Post-OSCON NN/NULLOK-ing
             From: Andy Lester <andy@petdance.com>
             Date: Sun, 7 Aug 2005 00:59:11 -0500
             Message-ID: <20050807055911.GA6384@petdance.com>
     Branch: maint-5.8/perl
	  !> embed.fnc op.c
____________________________________________________________________________
[ 25585] By: nicholas                              on 2005/09/23  15:04:55
        Log: Integrate:
             [ 25243]
             Subject: [PATCH] More embed.fnc goodness
             From: Andy Lester <andy@petdance.com>
             Date: Thu, 28 Jul 2005 14:09:56 -0500
             Message-ID: <20050728190956.GB607@petdance.com>
     Branch: maint-5.8/perl
	   ! proto.h
	  !> doio.c embed.fnc embed.h op.c pp_ctl.c regcomp.c regexec.c
	  !> sv.c util.c
____________________________________________________________________________
[ 25584] By: nicholas                              on 2005/09/23  14:26:21
        Log: Integrate:
             [ 25197]
             croak() accepts Nullch as a parameter.
             (spotted by Stas Bekman)
             
             [ 25237]
             Subject: [PATCH] tidy up DieNull and DIE_NULL
             From: Robin Barker <Robin.Barker@npl.co.uk>
             Date: Thu, 28 Jul 2005 14:05:51 +0100
             Message-ID: <533D273D4014D411AB1D00062938C4D90849C75C@hotel.npl.co.uk>
     Branch: maint-5.8/perl
	   ! perl.h pp.h
	  !> embed.fnc mg.c pp_sys.c proto.h
____________________________________________________________________________
[ 25583] By: nicholas                              on 2005/09/23  14:02:03
        Log: Integrate:
             [ 25172]
             Subject: [PATCH] The continuing plod through embed.fnc
             From: Andy Lester <andy@petdance.com>
             Date: Mon, 18 Jul 2005 10:37:38 -0500
             Message-ID: <20050718153738.GB20193@petdance.com>
     Branch: maint-5.8/perl
	   ! proto.h
	  !> embed.fnc op.c pad.c pod/perlapi.pod regcomp.c utf8.c
____________________________________________________________________________
[ 25580] By: nicholas                              on 2005/09/23  13:21:57
        Log: Integrate:
             [ 25156]
             Subject: [PATCH] more embed cleanup
             From: Andy Lester <andy@petdance.com>
             Date: Fri, 15 Jul 2005 10:51:15 -0500
             Message-ID: <20050715155115.GC29983@petdance.com>
             
             (and run regen.pl)
     Branch: maint-5.8/perl
	   ! embed.fnc proto.h
	  !> dump.c embed.h hv.c mg.c op.c perl.c pp_ctl.c pp_hot.c
	  !> regcomp.c sv.c utf8.c
____________________________________________________________________________
[ 25577] By: nicholas                              on 2005/09/23  12:25:23
        Log: Pesky lax compilers that let me assign to a const variable, so that
             my build (and make test) pass.
     Branch: maint-5.8/perl
	   ! gv.c
____________________________________________________________________________
[ 25576] By: nicholas                              on 2005/09/23  10:45:45
        Log: Integrate:
             [ 25138]
             Subject: [PATCH] More embed.fnc plowing
             From: Andy Lester <andy@petdance.com>
             Date: Wed, 13 Jul 2005 10:49:19 -0500
             Message-ID: <20050713154919.GA24586@petdance.com>
     Branch: maint-5.8/perl
	   ! proto.h
	  !> embed.fnc gv.c hv.c op.c pad.c perlio.c pp_ctl.c pp_hot.c
	  !> toke.c
____________________________________________________________________________
[ 25575] By: nicholas                              on 2005/09/23  10:14:05
        Log: Integrate:
             [ 25126]
             get_?v have side effects, so their return values may be ignored
             
             [ 25127]
             S_pad_findlex has side effects, so its return value may be ignored
     Branch: maint-5.8/perl
	   ! proto.h
	  !> embed.fnc pad.c
____________________________________________________________________________
[ 25574] By: nicholas                              on 2005/09/23  09:52:15
        Log: Integrate:
             [ 25107]
             Subject: [PATCH] Making my way thru embed.fnc
             From: Andy Lester <andy@petdance.com>
             Date: Sun, 10 Jul 2005 14:36:35 -0500
             Message-ID: <20050710193635.GC8081@petdance.com>
     Branch: maint-5.8/perl
	   ! embed.fnc embed.h proto.h util.c
	  !> doio.c doop.c gv.c hv.c op.c perl.c pp_ctl.c pp_hot.c
	  !> regexec.c toke.c
____________________________________________________________________________
[ 25572] By: nicholas                              on 2005/09/22  16:46:28
        Log: Integrate:
             [ 25101]
             Subject: Re: janitorial work ? [patch]
             From: Jim Cromie <jcromie@divsol.com>
             Date: Wed, 06 Jul 2005 14:19:53 -0600
             Message-ID: <42CC3CE9.5050606@divsol.com>
             
             (reverted all dual-lived modules since they must work with older
             perls too so must wait for a new Devel::PPPort)
             
             [ 25116]
             Change New*() to Newx*() in various comments and documentation
             
             [ 25117]
             Fix worrying typo in handy.h :-s
             
             [ 25196]
             Fix Newz() backwards-compatibility macro
     Branch: maint-5.8/perl
	   ! hv.c
	  !> (integrate 55 files)
____________________________________________________________________________
[ 25569] By: nicholas                              on 2005/09/22  12:44:27
        Log: Integrate:
             [ 25087]
             [perl #36470] 'undef $@; die' gives uninint value warning
             
             [ 25088]
             [perl #34171] bytes pragma error in substitution operator
             
             [ 25093]
             Subject: [PATCH] bug with charnames::viacode("0x1234") and optimize it
             From: Tels <nospam-abuse@bloodgate.com>
             Date: Wed, 6 Jul 2005 21:11:59 +0200
             Message-Id: <200507062112.12159@bloodgate.com>
             
             [ 25158]
             Subject: Re: [perl #36569] chop fails on decoded string with trailing nul 
             From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
             Date: Sat, 16 Jul 2005 22:05:13 +0900
             Message-Id: <20050716220041.2BDD.BQW10602@nifty.com>
             
             [ 25160]
             $SIG{__WARN__} = sub { goto &foo } could recurse infinitely
             
             [ 25163]
             perl -Dstv -e'... for min..max' displayed wrong stack elements
             
             [ 25270]
             Subject: [PATCH] Re: [PATCH] Re: [perl #36819] perlbug AutoReply: Bleadperl: abs() busted outside integer range
             From: Dominic Dunlop <shouldbedomo@mac.com>
             Date: Sat, 6 Aug 2005 17:47:40 +0200
             Message-Id: <EF62D3CF-8B54-4C7B-973E-C259F487AE32@mac.com>
             
             [ 25299]
             Subject: Re: [perl #36654] Inconsistent treatment of NaN
             From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
             Date: Aug 7, 2005 8:03 PM
             Message-ID: <20050807180308.GA2112@efn.org>
             
             Subject: Re: [perl #36654] Inconsistent treatment of NaN
             From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
             Date: Wed, 10 Aug 2005 22:53:51 -0700
             Message-ID: <20050811055351.GA2296@efn.org>
             
             [ 25302]
             Subject: autouse.pm: remove unneeded eval
             From: Alexey Tourbin <at@altlinux.ru>
             Date: Thu, 18 Aug 2005 08:13:24 +0400
             Message-ID: <20050818041324.GO19097@solemn.turbinal.org>
             
             Subject: autouse.pm: check stub, use goto in stub
             From: Alexey Tourbin <at@altlinux.ru>
             Date: Thu, 18 Aug 2005 09:06:20 +0400
             Message-ID: <20050818050620.GP19097@solemn.turbinal.org>
     Branch: maint-5.8/perl
	  !> doop.c lib/autouse.pm lib/charnames.pm numeric.c
	  !> pod/perlop.pod pp.c pp_ctl.c pp_sys.c t/op/arith.t t/op/chop.t
	  !> t/op/die.t t/op/goto.t t/op/subst.t util.c
____________________________________________________________________________
[ 25568] By: nicholas                              on 2005/09/22  12:22:36
        Log: Integrate:
             (the tests from)
             [ 24044]
             Subject: Re: Reworked Trie Patch
             From: demerphq <demerphq@gmail.com>
             Date: Mon, 14 Mar 2005 08:55:39 +0100
             Message-ID: <9b18b31105031323557019ae1@mail.gmail.com>
             
             Subject: Re: Reworked Trie Patch
             From: demerphq <demerphq@gmail.com>
             Date: Wed, 16 Mar 2005 19:48:18 +0100
             Message-ID: <9b18b31105031610481025a080@mail.gmail.com>
             
             Plus minor nits in the documentation of re.pm,
             a version bump, and addition of an OPTIMIZE alias
             
             [ 25095]
             [perl #36207] UTF8/Latin 1/i regexp "Malformed character" warning
             $utf8 =~ /latin/i didn't match. 
             Also added TODO for $latin =~ /utf8/i which also fails
             
             [ 25106]
             Re: [perl #36207] UTF8/Latin 1/i regexp "Malformed character" warning
             From: demerphq <demerphq@gmail.com>
             Message-ID: <9b18b3110507080807f16d1eb@mail.gmail.com>
             Date: Fri, 8 Jul 2005 17:07:26 +0200
             
             Fix trie codepath of mixed utf8/latin1 pattern matches
     Branch: maint-5.8/perl
	  !> regexec.c t/op/pat.t t/op/re_tests utf8.c
____________________________________________________________________________
[ 25567] By: nicholas                              on 2005/09/22  10:46:26
        Log: Integrate:
             [ 24959]
             Add a define PERL_POISON which tries to trip up anything accessing
             freed or uninitialised memory. Currently only Poison()s freed
             pointers.
     Branch: maint-5.8/perl
	  !> ext/PerlIO/encoding/encoding.xs gv.c handy.h pp_ctl.c scope.c
	  !> sv.c
____________________________________________________________________________
[ 25566] By: nicholas                              on 2005/09/22  10:00:19
        Log: Integrate:
             [ 25068]
             Borland's .pdb files are called .tds
             
             [ 25150]
             Fix static extensions when building with nmake on Win32
             
             They were broken because change 24806 forgot to add -DWITH_STATIC
             to the recipe for compiling perllib.c which meant that perllibst.h
             was not included and hence although they built OK, the static
             extensions could not actually be used!
             
             In fact, since perllibst.h is always created (it is more or less
             empty when static extensions are not being used), there is no need
             for -DWITH_STATIC at all. So rather than adding it to Makefile,
             just drop it from makefile.mk and perllib.c.
             
             Also add the missing cleanup of perllibst.h to Makefile.
             
             [ 25169]
             1. Typo detected by Schwern (#25151)
             2. Added proza about patches (#25152)
             3. dirfd got the wrong define based on previous tests (#25168)
             
             [ 25206]
             Rearrange win32/config_H.* to match config_h.SH
             
             No actual changes, just reordering the contents of the files so that
             diff works better.
             
             [ 25208]
             Make the canned config.h files used on Win32 more minimal
             
             These are used in their unedited form to build miniperl, so should
             represent a minimal configuration
             
             The plan is to use miniperl's "-V" output in makedef.pl, so it is
             important that it doesn't include any of the optional things in the
             makefiles that the user might have chosen to disable
             
             (The actual config.h used to build perl itself is, of course, an
             edited version of these canned configs produced by using miniperl
             to run config_h.PL so these changes won't affect perl itself)
             
             [ 25214]
             Add missing entries to win32/config.*
             
             No existing entries changed, just adding some missing ones based
             on Porting/config.sh
             
             [ 25215]
             Tweak the canned win32/config.* files
             
             uselargefiles, usemultiplicity, useperlio and useithreads are now
             off in the canned win32/config_H.* files, so change these to match.
             
             Also scrap the misleading ~USE_PERLIO~ and ~USE_SITECUST~ tags
             which don't actually work since no such CFG_VARS are passed in to
             config_sh.PL. (The useperlio and usesitecustomize entries actually
             get substituted by the more general "if (/^([\w_]+)=(.*)$/)" case.)
             
             [ 25216]
             Fix USE_LARGE_FILES with bcc32 on Win32?
             
             Trawling through all these config files, I think I've found the
             reason why bcc32 builds with USE_LARGE_FILES were failing (e.g.
             (see http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2005-06/msg00809.html):
             lseeksize and lseektype were set to 8 and __int64, but Borland's
             <io.h> suggests that they should be 4 and long respectively.
             
             Changing them accordingly makes all tests pass. And I see that
             win32/win32.c has special handling for __BORLANDC__ + USE_LARGE_FILES,
             presumably to cope with this difference?
             
             [ 25226]
             Reinstate PERL_MALLOC_WRAP for bcc32 on Win32
             
             This was disabled by change 22689 because it was severely broken
             at the time.  See the thread starting here:
             
             http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2004-04/msg00370.html
             
             The PERL_MALLOC_WRAP code in handy.h has since changed along the
             lines of what was discussed in that thread (in particular, by change
             25034) and I find that everything is now fine with PERL_MALLOC_WRAP
             re-enabled.
             
             [ 25289]
             Supply same libs for bcc32 builds as cl and gcc builds have
             
             It makes life easier for third-party extensions if perl provides a
             decent set of libs to link against. cl and gcc builds already have
             this (except that gcc was missing one lib), but bcc32 builds only
             have one or two libs supplied.  In particular, the ODBC libs
             required for building libwin32 were not specified.  One of these
             doesn't exist in the Borland lib dirs by default, so generate it
             from the DLL if it is missing.
     Branch: maint-5.8/perl
	   ! win32/config_H.bc win32/config_H.gc
	  !> Configure win32/Makefile win32/config.bc win32/config.gc
	  !> win32/config.vc win32/config.vc64 win32/config_H.vc
	  !> win32/config_H.vc64 win32/makefile.mk win32/perllib.c
____________________________________________________________________________
[ 25565] By: nicholas                              on 2005/09/22  09:28:31
        Log: Integrate:
             [ 25086]
             Subject: [PATCH] File::Basename doc overhaul
             From: Michael G Schwern <schwern@pobox.com>
             Date: Tue, 5 Jul 2005 20:11:27 -0700
             Message-ID: <20050706031127.GL9227@windhund.schwern.org>
             
             (with some minor changes)
             
             [ 25089]
             Subject: [PATCH] Further lies in the File::Basename docs
             From: Michael G Schwern <schwern@pobox.com>
             Date: Wed, 6 Jul 2005 09:22:32 -0700
             Message-ID: <20050706162232.GA14495@windhund.schwern.org>
             
             (plus some minor POD changes and a bug fix)
             
             [ 25090]
             Subject: [perl #22236] File::Basename behavior is misleading 
             From: "Michael G Schwern via RT" <perlbug-followup@perl.org>
             Date: 6 Jul 2005 19:45:40 -0000
             Message-ID: <rt-3.0.11-22236-116656.1.59163789180809@perl.org>
             
             [ 25091]
             Subject: [PATCH] Mention File::Spec in File::Basename
             From: Michael G Schwern <schwern@pobox.com>
             Date: Wed, 6 Jul 2005 13:06:20 -0700
             Message-ID: <20050706200620.GE15644@windhund.schwern.org>
             
             (plus bump $VERSION)
             
             [ 25096]
             Subject: Re: [perl #36477] File::Basename basename() bug
             From: Michael G Schwern <schwern@pobox.com>
             Date: Thu, 7 Jul 2005 14:16:01 -0700
             Message-ID: <20050707211601.GA3769@windhund.schwern.org>
             
             [ 25097]
             Subject: [PATCH] basename() and suffixes
             From: Michael G Schwern <schwern@pobox.com>
             Date: Thu, 7 Jul 2005 15:38:32 -0700
             Message-ID: <20050707223832.GA4782@windhund.schwern.org>
     Branch: maint-5.8/perl
	  !> lib/File/Basename.pm lib/File/Basename.t
____________________________________________________________________________
[ 25564] By: nicholas                              on 2005/09/22  09:15:24
        Log: Integrate:
             [ 25009]
             First stab at not automatically creating an unused SV for GvSV
             Enable it with -DPERL_DONT_CREATE_GVSV.
             Currently if enabled 22 test scripts have failures, so still some way
             to go.
             
             [ 25010]
             Fixes to -DPERL_DONT_CREATE_GVSV to make more tests pass
             
             [ 25011]
             Make warnings.t pass with -DPERL_DONT_CREATE_GVSV
             
             [ 25012]
             All tests pass (for me) with -DPERL_DONT_CREATE_GVSV
             
             [ 25099]
             DEFSV causes GvSVn() to be used in lvalue context.
             Not sure if instead we should recode DEFSV to avoid this, and leave
             GvSVn() as rvalue only, like its namesakes.
             
             [ 25141]
             Subject: [PATCH] was Re: perldoc segfaulting in XS_UNIVERSAL_VERSION
             From: John Peacock <jpeacock@rowman.com>
             Message-ID: <42D55C46.5030905@rowman.com>
             Date: Wed, 13 Jul 2005 14:24:06 -0400
             
             [ 25146]
             Subject: [PATCH] Re: [PATCH] was Re: perldoc segfaulting in XS_UNIVERSAL_VERSION
             From: Michael G Schwern <schwern@pobox.com>
             Date: Fri, 15 Jul 2005 00:49:12 -0700
             Message-ID: <20050715074911.GA16512@windhund.schwern.org>
     Branch: maint-5.8/perl
	   ! t/op/universal.t
	  !> doio.c embed.fnc embed.h global.sym gv.c gv.h makedef.pl
	  !> perl.c perl.h pp.c pp_hot.c pp_sys.c proto.h sv.c universal.c
____________________________________________________________________________
[ 25562] By: nicholas                              on 2005/09/21  22:36:00
        Log: Integrate:
             [ 25007]
             Convert strcpy to memcpy where we already know the length.
             
             [ 25022]
             Replace newSVpv(...,0) with newSVpvn where we know the length.
             
             [ 25023]
             -V:... would get upset (syntax error) if ... contained unbalanced ().
             
             [ 25024]
             The core shouldn't be using PL_na
             
             [ 25026]
             Use Perl_sv_catpvf to shorten the code (source and object) needed for
             commandline -V options that q\0...\0.
             
             [ 25027]
             Avoid using PL_Sv in the -V argument processing.
             Express the embedded perl program in a slightly terser way.
             
             [ 25028]
             We know the length, so use sv_setpvn rather than sv_setpv.
             
             [ 25029]
             A terser way of implementing require_pv.
             
             [ 25045]
             Don't check the pointer is non-NULL before calling Safefree() in
             little used code, code used only once per run (such as interpreter
             construction and destruction), and cases where the pointer nearly
             never is NULL. Safefree does its own non-NULL check, and even that
             isn't strictly necessary as all conformant free()s accept a NULL
             pointer.
             
             [ 25047]
             Don't inline offer_nice_chunk, as it's rarely called.
             
             [ 25062]
             Fix change 25045
             
             [ 25076]
             Add regression test for change 25062
     Branch: maint-5.8/perl
	  !> doio.c embed.fnc embed.h gv.c hv.c locale.c mg.c perl.c perl.h
	  !> proto.h regcomp.c sv.c t/op/magic.t universal.c util.c
____________________________________________________________________________
[ 25561] By: nicholas                              on 2005/09/21  21:47:11
        Log: Integrate:
             [ 25067]
             Subject: [PATCH] Post-YAPC consting, now with an attachment!
             From: Andy Lester <andy@petdance.com>
             Date: Sun, 3 Jul 2005 18:31:56 -0500
             Message-ID: <20050703233156.GA20967@petdance.com>
             
             [ 25073]
             Regen after change 25067
             
             [ 25079]
             Subject: [PATCH] Remove unnecessary null check
             From: Andy Lester <andy@petdance.com>
             Date: Mon, 4 Jul 2005 14:12:00 -0500
             Message-ID: <20050704191200.GA2614@petdance.com>
     Branch: maint-5.8/perl
	   ! proto.h
	  !> deb.c embed.fnc gv.c hv.c pad.c sv.c toke.c util.c
____________________________________________________________________________
[ 25559] By: nicholas                              on 2005/09/21  21:04:54
        Log: Integrate:
             [ 24915]
             Subject: [PATCH perl.h] FPTR2DPTR/DPTR2FPTR
             From: Robin Barker <Robin.Barker@npl.co.uk>
             Date: Mon, 20 Jun 2005 13:47:37 +0100
             Message-ID: <533D273D4014D411AB1D00062938C4D90849C6E4@hotel.npl.co.uk>
             
             [ 25042]
             the PAD_SET_CUR macro expanded too much for AIX compilers
             
             [ 25046]
             missed one PAD_SET_CUR
     Branch: maint-5.8/perl
	  !> pad.h perl.h pp_ctl.c pp_hot.c pp_sort.c pp_sys.c
____________________________________________________________________________
[ 25558] By: nicholas                              on 2005/09/21  20:50:26
        Log: Integrate:
             [ 24987]
             Suppress warnings about a clash between redefined malloc and the
             use of __attribute__malloc__
             
             Subject: Re: Fun with __attribute__malloc__
             From: Andy Lester <andy@petdance.com>
             Date: Fri, 24 Jun 2005 12:11:59 -0500
             Message-ID: <20050624171159.GB29590@petdance.com>
             
             [ 24997]
             Subject: [PATCH] We're going round in circles with pp_sys.c
             From: Andy Lester <andy@petdance.com>
             Date: Mon, 27 Jun 2005 13:06:59 -0500
             Message-ID: <20050627180659.GB29744@petdance.com>
             
             (edited)
             
             [ 25001]
             Stop "suspicious pointer conversion" warning following change 24997
             
             [ 25003]
             Stop "Possible use before definition" warning following change 24997
             
             [ 25014]
             Silence MinGW warnings about system headers when building Errno
             
             Thanks to Mike Guy for the suggested fix.
             
             [ 25033]
             Silence some cast warnings from bcc32 on Win32
             
             See the thread starting here for arguments:
             http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2005-06/msg00994.html
             
             [ 25034]
             silence gcc 'comparison is always false' warning in MEM_WRAP_CHECK
             Only a partial fix: works where sizeof(type)==1; since we
             can never wraparound in that case, disarm the check
             
             [ 25035]
             silence a warning in Perl_sv_compile_2op
             
             [ 25038]
             Remove unreferenced local variable (and the warning about it)
             
             [ 25041]
             Silence MinGW warning about "'noreturn' function does return"
             
             (Thanks to Nicholas Clark)
             
             [ 25055]
             Andy suggests this tweak to Dave's fix for MEM_WRAP_CHECK to shut up
             a different compiler warnings. I guess we need a waterbed theory of
             compiler warnings.
             
             [ 25063]
             Subject: Re: How to suppress warnings when building Errno with gcc
             From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
             Date: Fri, 1 Jul 2005 10:56:23 -0700
             Message-ID: <20050701175623.GD216@efn.org>
             
             [ 25103]
             extend MEM_WRAP_CHECK supress warning hack to MEM_WRAP_CHECK_*
     Branch: maint-5.8/perl
	  !> embed.fnc ext/Errno/Errno_pm.PL ext/XS/APItest/APItest.xs gv.c
	  !> handy.h hv.c iperlsys.h perl.c perl.h pp_ctl.c pp_hot.c
	  !> pp_sys.c proto.h regexec.c sv.c toke.c win32/win32.c
____________________________________________________________________________
[ 25557] By: nicholas                              on 2005/09/21  20:28:20
        Log: Integrate:
             [ 24940]
             Add facility to fork() early in perl_destruct and use the child to
             dump out leaked scalars (enabled with DEBUG_LEAKING_SCALARS_FORK_DUMP
             when DEBUG_LEAKING_SCALARS is already in force)
             
             [ 24976]
             Extend DEBUG_LEAKING_SCALARS_FORK_DUMP so it can also dump scalars
             which become unreferenced. This is less likely to be successful.
             The #define needs a better name.
             
             [ 24979]
             If forking during global destruction, the child needs to close all
             unused file descriptors, else it can cause other processes to hang
             because it accidentally holds open pipes and sockets.
             
             [ 24980]
             Need to skip exporting PL_dumper_fd unless it is used.
             
             [ 24984]
             When using DEBUG_LEAKING_SCALARS_FORK_DUMP it's possible to cause
             indefinite hangs when the debugging child holds open Perl_debug_log,
             and it happens to be a file descriptor that is one end of a pipe,
             with a process sitting at the other end waitng for EOF.
             So close all descriptors in the child *including* Perl_debug_log,
             and pass it back in over the control socket if it's needed.
             
             [ 24986]
             Tweak the child dump socket protocol to return error messages to the
             parent so that it can display what went wrong.
     Branch: maint-5.8/perl
	   ! intrpvar.h perl.c
	  !> embed.fnc embed.h embedvar.h makedef.pl perlapi.h proto.h sv.c
____________________________________________________________________________
[ 25556] By: nicholas                              on 2005/09/21  20:05:39
        Log: Integrate:
             [ 24969]
             Workaround localtime edge case where TZ makes time go beyond
             the defined working range (AIX 5.2)
             
             [ 24983]
             Need to pass a my_perl to S_my_localtime to make threaded builds build.
             
             [ 25173]
             Subject: Re: AIX 5.2 localtime bug attack
             From: Campo Weijerman <rfc822@nl.ibm.com>
             Date: Mon, 18 Jul 2005 17:34:55 +0200
             Message-ID: <20050718153455.GA29381@python>
             
             mday++ is also wday++ and yday++
             
             [ 25287]
             Fix lib/Time/Local.t for bcc32 in non GMT time zones
             
             See comments at:
             http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2005-08/msg00115.html
             
             [ 25300]
             Subject: Your bug reports for Time::Local
             From: Dave Rolsky <autarch@urth.org>
             Date: Tue, 16 Aug 2005 11:22:20 -0500 (CDT)
             Message-ID: <Pine.LNX.4.61.0508161120520.26270@urth.org>
             
             An improvement on change 25287 from Dave Rolsky
     Branch: maint-5.8/perl
	  !> lib/Time/Local.t pp_sys.c
____________________________________________________________________________
[ 25555] By: nicholas                              on 2005/09/21  19:54:07
        Log: Integrate:
             [ 24965]
             Subject: [PATCH] Pre-YAPC consting fun
             From: Andy Lester <andy@petdance.com>
             Date: Jun 23, 2005 9:04 PM
             Message-ID: <20050623190423.GA13835@petdance.com>
     Branch: maint-5.8/perl
	   ! embed.fnc locale.c proto.h
	  !> embed.h mg.c perlio.c pp_ctl.c pp_sys.c scope.c taint.c util.c
____________________________________________________________________________
[ 25554] By: nicholas                              on 2005/09/21  19:31:30
        Log: Integrate:
             [ 24945]
             Subject: [PATCH] Const Boy II: The Localizing
             From: Andy Lester <andy@petdance.com>
             Date: Wed, 22 Jun 2005 09:41:00 -0500
             Message-ID: <20050622144059.GA19598@petdance.com>
     Branch: maint-5.8/perl
	   ! sv.c
	  !> autodoc.pl embed.fnc embed.pl perl.c perlio.c pod/perlapi.pod
	  !> pp.c pp.h pp_ctl.c pp_sys.c util.c
____________________________________________________________________________
[ 25553] By: nicholas                              on 2005/09/21  18:57:22
        Log: Integrate:
             [ 24910]
             Remove signature test, which is always skipped
     Branch: maint-5.8/perl
	   - lib/Test/Simple/t/00signature.t
	  !> MANIFEST
____________________________________________________________________________
[ 25552] By: nicholas                              on 2005/09/21  18:43:51
        Log: Integrate:
             [ 24916]
             Subject: Re: [perl #36310] sv_vcatpvfn() fails on some (very limited) situations 
             From: Tsutomu IKEGAMI <t-ikegami@aist.go.jp>
             Date: Fri, 17 Jun 2005 17:55:10 +0900 (JST)
             Message-Id: <20050617.175510.21285350.t-ikegami@aist.go.jp>
             
             [ 24920]
             Subject: [PATCH] ternary operator cond ? foo : bar being parsed as ?...?
             From: Salvador Fandiño <sfandino@yahoo.com>
             Date: Fri, 17 Jun 2005 14:06:30 +0100
             Message-ID: <20050617130548.18776.qmail@lists.develooper.com>
             
             with wordings improvements suggested by Ronald J Kimball
             
             [ 24951]
             Subject: Re: [perl #36350] unstable sorting for use integer; sort { $b <=> $a } @foo 
             From: Salvador Fandino <sfandino@yahoo.com>
             Date: Tue, 21 Jun 2005 19:50:35 +0200
             Message-ID: <20050621181658.5977.qmail@lists.develooper.com>
             
             [ 24952]
             Re-initialise PL_curcop to &PL_compiling before destroying the optree.
             
             [ 24962]
             The current implementation of :unique is fundamentally flawed,
             because declaring a scalar READONLY does not stop it being modified.
             Hence the current implementation of :unique is *not threadsafe*
             D'oh!
             Better implementations welcome.
     Branch: maint-5.8/perl
	  !> embed.fnc embed.h ext/threads/t/problems.t perl.c
	  !> pod/perldiag.pod pod/perltodo.pod pp_sort.c proto.h sv.c
	  !> toke.c
____________________________________________________________________________
[ 25551] By: nicholas                              on 2005/09/21  18:21:10
        Log: Integrate:
             [ 24907]
             Silence warning in debug printf
             
             [ 24937]
             Silence some bcc32 compiler warnings
             
             ("Superfluous & with function")
             
             [ 24938]
             Silence some more bcc32 compiler warnings
             
             ("Suggest parentheses to clarify precedence")
             
             [ 24939]
             Silence yet more bcc32 compiler warnings
             
             ("Code has no effect")
             
             [ 24944]
             Silence another bcc32 compiler warning
             
             ("Possible use of '%s' before definition")
             
             [ 24946]
             More bcc32 compiler warnings to silence
             
             ("Suspicious pointer conversion")
             
             [ 24947]
             Silence bcc32 compiler warnings from win32/fcrypt.c (almost)
             
             It still whines about 'in' and 'b' being assigned values that are
             never used on lines 348 and 505 respectively (as side effects of the
             calls to c2l and l2c respectively), but I'm not sure how to shut
             them up.
             
             [ 24950]
             Oops! Change 24946 wasn't quite right
             
             [ 24953]
             Silence bcc32 compiler warnings following change 24945
             
             ("Possible use of '%s' before definition")
             
             [ 24963]
             Warning suppression.
             
             [ 24977]
             Fix typo in win32.c
             
             Doesn't fix bcc32 + USE_LARGE_FILES, though :-(
             
             [ 24994]
             Silence compiler warning in SDBM_File
             
             Unless I'm missing something it looks like "key" actually is used,
             and the "key = key" assignment causes bcc32 to complain about use
             before definition!
             
             [ 24999]
             From: Mattia Barbon <mattia.barbon@libero.it>
             Subject: [PATCH] Avoid redefinition warning for MinGW
             Date: Jun 27, 2005 10:07 PM
             Message-ID: <Mahogany-0.66.0-1232-20050627-220727.00@rbnet.it>
     Branch: maint-5.8/perl
	  !> doio.c doop.c ext/SDBM_File/SDBM_File.xs perlvars.h pp.c
	  !> pp_ctl.c pp_hot.c pp_sys.c toke.c warnings.h warnings.pl
	  !> win32/fcrypt.c win32/win32.c win32/win32io.c win32/win32iop.h
____________________________________________________________________________
[ 25550] By: nicholas                              on 2005/09/21  18:04:56
        Log: Integrate:
             [ 24913]
             Subject: [PATCH] The continuing adventures of Constman and Localize Boy
             From: Andy Lester <andy@petdance.com>
             Date: Mon, 20 Jun 2005 10:22:37 -0500
             Message-ID: <20050620152237.GA5032@petdance.com>
     Branch: maint-5.8/perl
	  !> XSUB.h doop.c embed.fnc embed.h global.sym gv.c mg.c pad.c
	  !> perl.h proto.h sv.c universal.c util.c
____________________________________________________________________________
[ 25549] By: nicholas                              on 2005/09/21  17:38:28
        Log: Integrate:
             [ 24906]
             Subject: [PATCH] More random cleanups
             From: Andy Lester <andy@petdance.com>
             Date: Fri, 17 Jun 2005 09:50:29 -0500
             Message-ID: <20050617145029.GC11769@petdance.com>
     Branch: maint-5.8/perl
	   ! proto.h
	  !> embed.fnc embed.h pp_ctl.c pp_sort.c scope.c
____________________________________________________________________________
[ 25548] By: nicholas                              on 2005/09/21  16:20:59
        Log: Integrate:
             [ 24854]
             Subject: Re: [PATCH] make -f invalid when USE_SITECUSTOMIZE isn't set
             From: Steve Peters <steve@fisharerojo.org>
             Date: Wed, 15 Jun 2005 11:30:41 -0500
             Message-ID: <20050615163040.GA14745@mccoy.peters.homeunix.org>
             
             [ 24861]
             Revert part of change #24854
             
             [ 24864]
             Add -f in perl synopsys, sync perl.pod and perlrun.pod synopses
     Branch: maint-5.8/perl
	  !> ext/Devel/DProf/t/DProf.t perl.c pod/perl.pod pod/perlrun.pod
____________________________________________________________________________
[ 25546] By: nicholas                              on 2005/09/21  16:02:53
        Log: Integrate:
             [ 24860]
             Don't export Perl_stashpv_hvname_match when !USE_ITHREADS
             
             (Fixes a linker error on Win 32 introduced by change #24847)
     Branch: maint-5.8/perl
	  !> makedef.pl
____________________________________________________________________________
[ 25545] By: nicholas                              on 2005/09/21  16:01:36
        Log: Integrate:
             [ 24845]
             Subject: [PATCH] S_emulate_eaccess() does return a value
             From: Steve Peters <steve@fisharerojo.org>
             Message-ID: <20050614193052.GA1898@mccoy.peters.homeunix.org>
             Date: Tue, 14 Jun 2005 14:30:52 -0500
             
             [ 24847]
             Subject: [PATCH] CopSTASH_eq again
             From: Andy Lester <andy@petdance.com>
             Date: Tue, 14 Jun 2005 23:49:26 -0500
             Message-ID: <20050615044926.GA29087@petdance.com>
     Branch: maint-5.8/perl
	   ! embed.h global.sym proto.h
	  !> cop.h embed.fnc util.c
____________________________________________________________________________
[ 25542] By: nicholas                              on 2005/09/21  15:31:01
        Log: Integrate:
             [ 24694]
             Bump version number
             
             [ 24828]
             Comment nit to help Devel::Cover, spotted by Steve Peters
     Branch: maint-5.8/perl
	  !> ext/Devel/DProf/DProf.pm ext/POSIX/POSIX.xs
____________________________________________________________________________
[ 25540] By: nicholas                              on 2005/09/21  15:18:49
        Log: Integrate:
             [ 24898]
             Add a Configure test to see if NV 0.0 is stored as all bits zero, and
             #define NV_ZERO_IS_ALLBITS_ZERO if so.  This is always true on VMS:
             
             Subject: Re: Configure check for whether 0.0 is stored as all bits zero
             From: "Craig A. Berry" <craigberry@mac.com>
             Message-Id: <p06210214beda5bf31c4c@[172.16.52.1]>
             Date: Sat, 18 Jun 2005 18:23:59 -0500
             
             [ 24905]
             Support NV_ZERO_IS_ALLBITS_ZERO on Win32 (re: change 24898)
             
             The try.c test program added to Configure by change 24898 outputs
             "Yes" using each of VC++, GCC and BCC32, so here goes...
             
             [ 24934]
             Redo generation of change #24898
             Do not forget to run Porting/config_h.pl!
             
             [ 24949]
             Add handling of NV_ZERO_IS_ALLBITS_ZERO for Netware and epoc
     Branch: maint-5.8/perl
	  !> Configure NetWare/config.wc NetWare/config_H.wc
	  !> Porting/Glossary config_h.SH configure.com epoc/config.sh
	  !> win32/config.bc win32/config.gc win32/config.vc
	  !> win32/config.vc64 win32/config_H.bc win32/config_H.gc
	  !> win32/config_H.vc win32/config_H.vc64
____________________________________________________________________________
[ 25539] By: nicholas                              on 2005/09/21  15:02:51
        Log: Integrate:
             [ 24679]
             Subject: DynaLoader dl_unload_file for win32 ( dl_win32.xs )
             From: DH <crazyinsomniac@yahoo.com>
             Date: Tue, 31 May 2005 08:33:27 -0700 (PDT)
             Message-ID: <20050531153327.85145.qmail@unknown-209-73-178-237.yahoo.com>
             
             (with a couple of minor tweaks)
             
             [ 24806]
             Subject: improve static build for win32/Makefile
             From: vadim <vadim@vkonovalov.ru>
             Date: Sun, 12 Jun 2005 14:09:11 -0400
             Message-Id: <1118599750.2732.2.camel@mdk10>
             
             [ 24825]
             Subject: [PATCH @ 24819] Re: Change 24806: improve static build for win32/Makefile
             From: vadim <vadim@vkonovalov.ru>
             Date: Mon, 13 Jun 2005 15:41:41 -0400
             Message-Id: <1118691701.6333.32.camel@mdk10>
             
             [ 24830]
             Add BUILDOPTEXTRA to Win32 makefiles
             
             This allows extra build options, e.g. -DNO_HASH_SEED, to be
             specified on the command line, which is otherwise not possible
             under nmake using the existing BUILDOPT macro
             
             Suggested by Jan Dubois <jand@ActiveState.com>
             
             [ 24852]
             Fix win32/makefile.mk for building with bcc32 5.5.1 and dmake 4.4
             
             [ 24855]
             Fix $Config{ccversion} for Borland C++ 5.5.1
             
             This pattern match seems a little saner, and stops " for Win32"
             getting picked up from the following output:
             
             Borland C++ 5.5.1 for Win32 Copyright (c) 1993, 2000 Borland
             
             Maybe it breaks older versions, but at least the latest now works
             correctly. If anyone knows what older versions' messages look like
             then speak up!
             
             [ 24862]
             Enable static extensions with Borland compiler on Win32
             
             [ 24863]
             Simplify win32/makefile.mk for static extensions with GCC
             
             [ 24866]
             Fix changes 24862 and 24863 for Sarathy's old dmake
             
             [ 24880]
             Subject: [PATCH] Strip \\?\ prefix from Perl path in win32/win32.c:set_w32_module_name()
             From: "Jan Dubois" <jand@ActiveState.com>
             Date: Thu, 16 Jun 2005 11:43:15 -0700
             Message-Id: <200506161843.j5GIhKhL024472@smtp3.ActiveState.com>
             
             [ 24883]
             Silence STDERR grumblings from Borland's math library.
             
             This fixes failures in ext/B/t/deparse.t and lib/warnings.t (and
             renders change 24870 obsolete, hence it is reverted here).
     Branch: maint-5.8/perl
	  !> lib/warnings.t makedef.pl win32/Makefile win32/buildext.pl
	  !> win32/config_sh.PL win32/dl_win32.xs win32/makefile.mk
	  !> win32/win32.c
____________________________________________________________________________
[ 25538] By: nicholas                              on 2005/09/21  14:40:13
        Log: Integrate:
             [ 24364]
             Subject: Re: [perl #31793] Data::Dumper: Useqq interacts badly with overloading
             From: Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>
             Date: Wed, 3 Nov 2004 16:38:01 +0100
             Message-ID: <20041103163801.6839be30@valis.local>
             
             [ 24917]
             Fix [perl #36102] Data::Dumper Doesn't Stringify Numeric Labels
             
             [ 25308]
             Subject: Re: Data::Dumper bug?
             From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
             Date: Mon, 8 Aug 2005 20:33:02 -0700
             Message-ID: <20050809033301.GA3804@efn.org>
             
             [ 25347]
             Regression test for the fix in change #25308,
             based on code by Troy Loveday
     Branch: maint-5.8/perl
	  +> ext/Data/Dumper/t/bugs.t
	  !> MANIFEST ext/Data/Dumper/Dumper.pm ext/Data/Dumper/Dumper.xs
	  !> ext/Data/Dumper/t/dumper.t
____________________________________________________________________________
[ 25536] By: nicholas                              on 2005/09/21  14:09:01
        Log: Integrate:
             [ 24796]
             Add SvGROW_mutable
             
             [ 24800]
             More SvPV consting. And other related drive-by refactoring.
             
             [ 24801]
             Propagate const/mutable/not into the SvPV call for retrieving an
             overloaded value.
             
             [ 24826]
             More SvPV consting
             
             [ 24829]
             Pay attention to the comments that Dave writes.
             
             [ 24838]
             Subject: [PATCH] Fix for SEGV in ext/B/t/xref.t on OpenBSD
             From: Steve Peters <steve@fisharerojo.org>
             Date: Tue, 14 Jun 2005 08:16:38 -0500
             Message-ID: <20050614131638.GA24771@mccoy.peters.homeunix.org>
             
             [ 24843]
             Change 24838 breaks deparse.t, which checks that embedded NULs work.
             Here's a temporary hack, pending a way for B to correctly identify
             PVs that are variable names in pads.
             
             [ 24846]
             Fix warning nits, by Jarkko
             
             [ 24850]
             Protect Perl_sv_2pvbyte () to NULL length pointers
             Thanks Nick!
             
             [ 24871]
             Subject: [PATCH] Removing /*SUPPRESS xxx*/
             From: Andy Lester <andy@petdance.com>
             Date: Thu, 16 Jun 2005 09:13:42 -0500
             Message-ID: <20050616141342.GA22188@petdance.com>
             
             [ 24873]
             Subject: [PATCH] Lint support
             From: Andy Lester <andy@petdance.com>
             Date: Thu, 16 Jun 2005 09:35:21 -0500
             Message-ID: <20050616143521.GB22188@petdance.com>
     Branch: maint-5.8/perl
	  !> XSUB.h av.c doio.c doop.c ext/B/B.xs perl.c perl.h pp.c
	  !> pp_hot.c pp_sys.c regcomp.c regexec.c sv.c sv.h taint.c toke.c
	  !> universal.c utf8.c util.c xsutils.c
____________________________________________________________________________
[ 25535] By: nicholas                              on 2005/09/21  13:16:07
        Log: Integrate:
             [ 24780]
             Subject: [PATCH] regcomp.c and more
             From: Andy Lester <andy@petdance.com>
             Date: Thu, 9 Jun 2005 10:05:56 -0500
             Message-ID: <20050609150556.GA30554@petdance.com>
     Branch: maint-5.8/perl
	   ! regcomp.c
	  !> embed.fnc mg.c perly.c proto.h sv.c
____________________________________________________________________________
[ 25531] By: nicholas                              on 2005/09/21  11:03:15
        Log: Integrate:
             [ 24765]
             const-ize pp_formline
             
             [ 24769]
             More SvPV consting
             
             [ 24778]
             More SvPV consting
             
             [ 24798]
             Move SvPV consting, remove an n_a, and correct one error in Move()
             
             [ 24799]
             More SvPV consting, including some code cleanup and living dangerously
             with socket API calls.
     Branch: maint-5.8/perl
	  !> doio.c doop.c dump.c mg.c op.c perlio.c pp.c pp_ctl.c pp_hot.c
	  !> pp_pack.c pp_sort.c pp_sys.c sv.c
____________________________________________________________________________
[ 25529] By: nicholas                              on 2005/09/21  10:42:13
        Log: Integrate:
             [ 24754]
             Subject: [PATCH] regexec.c utf8 loading
             From: Andy Lester <andy@petdance.com>
             Date: Wed, 8 Jun 2005 00:03:32 -0500
             Message-ID: <20050608050332.GA31059@petdance.com>
     Branch: maint-5.8/perl
	  !> regexec.c
____________________________________________________________________________
[ 25528] By: nicholas                              on 2005/09/21  10:26:41
        Log: Correct errors in global.sym that seem to be the cause of Win32 build
             failures.
     Branch: maint-5.8/perl
	   ! embed.fnc embed.h global.sym proto.h
____________________________________________________________________________
[ 25527] By: nicholas                              on 2005/09/21  09:53:54
        Log: Integrate:
             [ 24760]
             Nuke some more n_a, and convert S_gv_ename from char * to const char *
             
             [ 24761]
             Add and use MgPV_nolen_const
             
             [ 24762]
             Remove the n_a
             
             [ 24763]
             Remove repeated C<n_a>s
     Branch: maint-5.8/perl
	  !> doop.c dump.c embed.fnc malloc.c mg.c mg.h op.c perl.c
	  !> pp_hot.c pp_pack.c pp_sys.c proto.h regcomp.c taint.c toke.c
____________________________________________________________________________
[ 25525] By: nicholas                              on 2005/09/21  09:32:33
        Log: Integrate:
             [ 24748]
             Convert POPpx POPpconstx and POPpbytex to use nolen macros.
             Elminate a lot of C<n_a>s
             
             [ 24749]
             Better sv_2pv_flags implementation (avoid writing to n_a)
             
             [ 24750]
             Remove two more unused C<n_a>s
             
             [ 24757]
             Eliminate more C<n_a>s
             
             [ 24758]
             n_a no more
             
             [ 24759]
             Allow a null length pointer to sv_pvn_force_flags.
             Add SvPV_force_nolen and use it to remove some C<n_a>s
     Branch: maint-5.8/perl
	   ! XSUB.h pp_sys.c
	  !> embed.fnc perl.c pp.c pp.h pp_ctl.c proto.h sv.c sv.h
	  !> universal.c
____________________________________________________________________________
[ 25524] By: nicholas                              on 2005/09/21  07:04:42
        Log: Integrate:
             [ 24740]
             More SvPV consting.
             
             [ 24742]
             More consting of SvPV
             
             [ 24743]
             More SvPV consting
             
             [ 24744]
             More SvPV consting
             
             [ 24752]
             One more SvPV_const
     Branch: maint-5.8/perl
	  !> doio.c doop.c embed.fnc gv.c mg.c perl.c perlio.c pp.c
	  !> pp_ctl.c pp_hot.c pp_pack.c pp_sort.c pp_sys.c proto.h
	  !> regexec.c sv.c toke.c universal.c util.c
____________________________________________________________________________
[ 25522] By: nicholas                              on 2005/09/20  17:03:38
        Log: Integrate:
             [ 24735]
             Subject: [PATCH] Random cleanups #47
             From: Andy Lester <andy@petdance.com>
             Date: Mon, 6 Jun 2005 10:11:07 -0500
             Message-ID: <20050606151107.GC7022@petdance.com>
             
             [ 24737]
             Remove unused variable (thanks to Andy's lint)
     Branch: maint-5.8/perl
	  !> README.aix embed.fnc mg.c numeric.c op.c pad.c
	  !> pod/perldebug.pod pp_ctl.c proto.h sv.c toke.c util.c
____________________________________________________________________________
[ 25521] By: nicholas                              on 2005/09/20  16:41:56
        Log: Integrate:
             [ 24729]
             Subject: [PATCH] util.c: S_vdie_common() should be static
             From: Alexey Tourbin <at@altlinux.ru>
             Date: Sun, 5 Jun 2005 03:08:30 +0400
             Message-ID: <20050604230830.GS5867@solemn.turbinal.org>
             
             [ 24734]
             make some more functions static
             
             Subject: [PATCH] B/C/C.xs: static my_runops()
             Message-ID: <20050604232451.GT5867@solemn.turbinal.org>
             
             Subject: [PATCH] Devel/Peek/Peek.xs: make plain C functions static
             Message-ID: <20050604232952.GU5867@solemn.turbinal.org>
             
             Subject: [PATCH] File/Glob/Glob.xs: errfunc() should be static
             Message-ID: <20050604233414.GV5867@solemn.turbinal.org>
             
             all being :
             From: Alexey Tourbin <at@altlinux.ru>
             Date: Sun, 5 Jun 2005
             
             [ 24745]
             Mark a static function as static
     Branch: maint-5.8/perl
	   ! util.c
	  !> ext/B/C/C.xs ext/Devel/Peek/Peek.xs ext/File/Glob/Glob.xs
	  !> utf8.c
____________________________________________________________________________
[ 25520] By: nicholas                              on 2005/09/20  16:23:35
        Log: Integrate:
             [ 24733]
             Simplify the implementation of SvPV*nolen functions
             
             [ 24736]
             Change 24733 allows several pointers to be NULL. Therefore this
             should be reflected in their attributes.
             
             [ 24738]
             Add MgPV_const
             
             [ 24739]
             Add SvPV_nolen_const and SvPV_nomg_const
             
             [ 24741]
             The definition of SvPVx_nolen_const is missing for non GNU-C compilers
             
             [ 24747]
             Add SvPVx_nolen and SvPVbytex_nolen
             
             [ 24767]
             Add SvPV_mutable for use by the old COW code.
     Branch: maint-5.8/perl
	  !> embed.fnc mg.h proto.h sv.c sv.h
____________________________________________________________________________
[ 25519] By: nicholas                              on 2005/09/20  16:03:14
        Log: Integrate:
             [ 24592]
             Subject: [PATCH] Documentation nits and fixes for Sv*_set() macros
             From: Steve Peters <steve@fisharerojo.org>
             Date: Thu, 26 May 2005 14:58:50 -0500
             Message-ID: <20050526195850.GA1308@mccoy.peters.homeunix.org>
             
             [ 24728]
             Fix apidoc for newSVhek
             
             [ 24776]
             Update API docs.
     Branch: maint-5.8/perl
	  !> pod/perlapi.pod sv.c sv.h
____________________________________________________________________________
[ 25518] By: nicholas                              on 2005/09/20  15:43:57
        Log: Integrate:
             [ 24722]
             Make a start at consting calls to SvPV. SV conversion and upgrade
             routines need to be mutable, as it's permitted to change the type of
             a READONLY SV, or cache the string or number conversion.
             Other routines are mostly const.
             
             [ 24727]
             make pp_split const
     Branch: maint-5.8/perl
	  !> pp.c sv.c
____________________________________________________________________________
[ 25517] By: nicholas                              on 2005/09/20  13:38:10
        Log: Integrate:
             [ 24721]
             Need const versions of SvPV(), so that its callers can indicate
             whether they are read/write or read only
             Also provide a mutable version, for the internals to use where it
             needs a non-const pointer, but will be writing. Callers of this are
             assumed to be aware of how copy on write is working, and to keep
             track of core changes.
             
             For now check that SVs are not READONLY when const versions are used.
             (with DEBUG_COW > 1). COW is going to have to be orthogonal to Perl's
             READONLY flag, but for now it provides a good test indicator.
             
             [ 24723]
             POPpx needs a const equivalent.
             
             [ 24724]
             XS_VERSION_BOOTCHECK is read only.
             
             [ 24725]
             The FBM compile code is mutable, because it's permissible to FBM
             compile a read-only value.
             
             [ 24726]
             Lots of consting
     Branch: maint-5.8/perl
	  !> XSUB.h doio.c doop.c gv.c hv.c op.c pp.c pp.h pp_ctl.c
	  !> pp_hot.c pp_pack.c pp_sys.c sv.h util.c
____________________________________________________________________________
[ 25516] By: nicholas                              on 2005/09/20  12:24:41
        Log: Integrate:
             [ 24715]
             SvIsCOW_shared_hash is declared all the time, so use it.
             
             [ 24716]
             Abstract all access to the shared hash value through SvSHARED_HASH()
             
             [ 24804]
             This isn't an LVALUE, so make the compiler enforce that.
     Branch: maint-5.8/perl
	  !> hv.c pp_hot.c sv.c sv.h
____________________________________________________________________________
[ 25514] By: nicholas                              on 2005/09/20  09:48:28
        Log: Integrate:
             [ 24708]
             Subject: PATCH for [perl #36043] '@foo = sort { $a <=> $b } @bar' uses too much memory
             From: Salvador Fandiño <sfandino@yahoo.com>
             Date: Jun 5, 2005 4:25 AM
             Message-ID: <20050605022436.21982.qmail@lists.develooper.com>
             
             [ 24853]
             Subject: sort optimization
             From: Salvador Fandiño <sfandino@yahoo.com>
             Date: Mon, 06 Jun 2005 12:05:05 +0100
             Message-ID: <20050606110425.22941.qmail@lists.develooper.com>
     Branch: maint-5.8/perl
	  !> pp_sort.c
____________________________________________________________________________
[ 25510] By: nicholas                              on 2005/09/20  08:56:39
        Log: Integrate:
             [ 24701]
             Subject: [PATCH] Clean up UNI* macros in toke.c
             From: Andy Lester <andy@petdance.com>
             Date: Jun 3, 2005 7:14 PM
             Message-ID: <20050603171448.GA5834@petdance.com>
             
             [ 24702]
             Subject: [PATCH] Consting IO and Devel::Peek
             From: Andy Lester <andy@petdance.com>
             Reply-To: Perl 5 Porters <perl5-porters@perl.org>
             Message-ID: <20050531212621.GA12117@petdance.com>
             
             [ 24705]
             Silence a const warning
             
             [ 24712]
             We still need an "i" in the PERL_IMPLICIT_SYS case
             
             (Fix compilation error following change #24689)
             
             [ 24713]
             NORETURN_FUNCTION_END is not a complete statement
             
             (Fix compilation error following change #24702)
     Branch: maint-5.8/perl
	   ! toke.c
	  !> ext/Devel/Peek/Peek.xs ext/IO/IO.xs sv.c
____________________________________________________________________________
[ 25509] By: nicholas                              on 2005/09/20  08:35:19
        Log: Integrate:
             [ 24692]
             Create newSVpv_hek to reduce code duplication where HEKs need to be
             turned into SVs
             
             [ 24696]
             s/newSVpv_hek/newSVhek/g; # Lousy choice of name
             
             (just the tweak to newSVhek for passing in NULL from)
             [ 24697]
             Use newSVhek where we're generating SVs from package names
     Branch: maint-5.8/perl
	   ! embed.fnc
	  !> embed.h global.sym hv.c op.c pp.c proto.h sv.c toke.c
____________________________________________________________________________
[ 25508] By: nicholas                              on 2005/09/20  08:19:03
        Log: Integrate:
             [ 24689]
             Subject: [PATCH] Random consting
             From: Andy Lester <andy@petdance.com>
             Date: Thu, 2 Jun 2005 12:19:43 -0500
             Message-ID: <20050602171943.GA16553@petdance.com>
     Branch: maint-5.8/perl
	   ! embed.fnc sv.c
	  !> doio.c dump.c embed.h global.sym gv.c hv.c malloc.c perl.c
	  !> perlio.c pp_ctl.c pp_hot.c pp_sys.c proto.h toke.c util.c
____________________________________________________________________________
[ 25506] By: nicholas                              on 2005/09/19  22:41:35
        Log: Clean up breakages accidentally introduced by 25428 (declaration out
             of order) and 25503 (is_utf8_string_loclen missing from embed.fnc)
     Branch: maint-5.8/perl
	   ! embed.fnc embed.h embedvar.h mg.c proto.h
____________________________________________________________________________
[ 25505] By: nicholas                              on 2005/09/19  22:20:52
        Log: Integrate:
             [ 24303]
             Convert to test.pl
             
             [ 24927]
             Drag t/op/gv.t kicking and screaming into the century of the fruitbat
             (or at least into the decade of t/test.pl)
             
             [ 24964]
             Take a larger margin to prevent 'X' failures in smokes
             I was able to get warnings on HP-UX 10.20 every 2nd to 3rd run
             when reps was still 10000. With 15000 I didn't get a single warning
             
             [ 25017]
             Subject: Re: [PATCH] Convert File::Basename tests to Test::More
             From: Michael G Schwern <schwern@pobox.com>
             Date: Thu, 30 Jun 2005 01:02:30 -0700
             Message-ID: <20050630080230.GC17965@windhund.schwern.org>
             
             [ 25020]
             Subject: [PATCH] make t/uni/class.t faster
             From: Tels <nospam-abuse@bloodgate.com>
             Date: Wed, 29 Jun 2005 21:19:52 +0200
             Message-Id: <200506292120.05519@bloodgate.com>
             
             [ 25071]
             Subject: [PATCH] Skip nit in t/op/lfs.t
             From: Steve Peters <steve@fisharerojo.org>
             Date: Mon, 4 Jul 2005 10:10:13 -0500
             Message-ID: <20050704151013.GA18468@mccoy.peters.homeunix.org>
             
             [ 25121]
             Subject: [PATCH] Cleanup File::Copy tests
             From: Michael G Schwern <schwern@pobox.com>
             Date: Mon, 11 Jul 2005 18:45:42 -0700
             Message-ID: <20050712014542.GB20855@windhund.schwern.org>
             
             (and fix the SKIP: {} blocks to say $how_many)
             
             [ 25139]
             Subject: Re: Smoke [5.9.3] 25093 FAIL(F) openbsd 3.7 (macppc/1 cpu)
             From: Steve Peters <steve@fisharerojo.org>
             Date: Fri, 8 Jul 2005 16:42:56 -0500
             Message-ID: <20050708214256.GA14164@mccoy.peters.homeunix.org>
             
             [ 25140]
             Subject: [perl #9565] [PATCH] /op/groups.t bug 
             From: "Steve Peters via RT" <perlbug-followup@perl.org>
             Date: Wed, 13 Jul 2005 06:51:45 -0700
             Message-ID: <rt-3.0.11-9565-117185.14.6331240065229@perl.org>
             
             [ 25144]
             Subject: Typo in t/op/stat.t
             From: Gisle Aas <gisle@ActiveState.com>
             Date: 14 Jul 2005 23:20:18 -0700
             Message-ID: <lr64vcfv4t.fsf@caliper.activestate.com>
             
             [ 25162]
             delete a non-fucntioning chown in stat.t: it didn't have gid arg.
             Spotted by Gisle Aas.
     Branch: maint-5.8/perl
	  !> lib/File/Basename.t lib/File/Copy.t t/io/dup.t t/io/open.t
	  !> t/op/groups.t t/op/gv.t t/op/lfs.t t/op/rand.t t/op/stat.t
	  !> t/op/substr.t t/uni/class.t
____________________________________________________________________________
[ 25504] By: nicholas                              on 2005/09/19  21:32:36
        Log: Integrate:
             [ 24608]
             is() is better than ok()
             
             [ 24612]
             Subject: [PATCH] Re: t/uni/class.t has a lot to warn about
             From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
             Date: Sat, 28 May 2005 11:47:47 +0300
             Message-Id: <42983033.5050509@gmail.com>
             
             (the t/op/magic.t change in)
             [ 24660]
             Store the xhv_aux structure after the main array.
             This reduces the size of HV bodies from 24 to 20 bytes on a 32 bit
             build. It has the side effect of defined %symbol_table:: now always
             being true. defined %hash is already deprecated.
             
             [ 24764]
             Cygwin fails to open $^X on many occasion here
             afile is still available from the previous test
             
             [ 24773]
             Make minitest pass (must skip if no dynaloading)
             
             [ 24777]
             Don't ignore errors from an eval.
             
             [ 24856]
             Introduce PERL_RUNPERL_DEBUG to alter the behavior of runperl(),
             this can be useful to use valgrind for example
             
             [ 24858]
             We were failing to pring "not ok" if the text exited uncleanly
             
             [ 24867]
             Give op/taint.t a helping hand for Borland compiler on Win32
             
             [ 24870]
             Teach lib/warnings.t about Borland CRT error messages
             
             <enter description here>
     Branch: maint-5.8/perl
	  !> ext/B/t/bytecode.t lib/warnings.t t/io/layers.t t/op/each.t
	  !> t/op/goto_xs.t t/op/magic.t t/op/pack.t t/op/taint.t t/test.pl
	  !> t/uni/class.t
____________________________________________________________________________
[ 25503] By: nicholas                              on 2005/09/19  21:14:58
        Log: Integrate:
             [ 24687]
             Subject: [PATCH] speed up is_utf8_char()
             From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
             Date: Thu, 02 Jun 2005 21:52:46 +0300
             Message-ID: <429F557E.3090007@gmail.com>
             
             [ 24706]
             Subject: [PATCH] further speeding up of is_utf8_string()
             From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
             Date: Sat, 04 Jun 2005 13:40:15 +0300
             Message-ID: <42A1850F.4040109@gmail.com>
             
             [ 24707]
             Subject: [PATCH] Fix minor bummer in 24706
             From: Andy Lester <andy@petdance.com>
             Date: Sat, 4 Jun 2005 23:09:04 -0500
             Message-Id: <20050605040904.GA27783@petdance.com>
             
             [ 24730]
             Subject: [PATCH] one more round of is_utf8_foo tuneup
             From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
             Date: Sun, 05 Jun 2005 18:06:12 +0300
             Message-ID: <42A314E4.8060608@gmail.com>
     Branch: maint-5.8/perl
	  +> t/op/chr.t
	   ! utf8.c
	  !> MANIFEST embed.fnc embed.h global.sym mg.c pod/perlapi.pod
	  !> proto.h utf8.h
____________________________________________________________________________
[ 25501] By: nicholas                              on 2005/09/19  20:42:24
        Log: Integrate:
             [ 24670]
             Subject: [PATCH] SvPVX_const() - part 3 ... and const'ing Storable
             From: Steve Peters <steve@fisharerojo.org>
             Date: Tue, 31 May 2005 09:55:43 -0500
             Message-Id: <20050531145543.GA8051@mccoy.peters.homeunix.org>
             
             [ 24682]
             Subject: [PATCH] SvPVX_const() - patch #4
             From: Steve Peters <steve@fisharerojo.org>
             Date: Thu, 2 Jun 2005 13:41:35 -0500
             Message-ID: <20050602184135.GA13682@mccoy.peters.homeunix.org>
     Branch: maint-5.8/perl
	  !> embed.fnc ext/B/B.xs ext/Data/Dumper/Dumper.xs
	  !> ext/Devel/DProf/DProf.xs ext/Opcode/Opcode.xs
	  !> ext/POSIX/POSIX.xs ext/PerlIO/encoding/encoding.xs
	  !> ext/PerlIO/via/via.xs pod/perlapi.pod pp_hot.c pp_sys.c
	  !> proto.h regcomp.c regexec.c scope.c sv.c
____________________________________________________________________________
[ 25500] By: nicholas                              on 2005/09/19  19:58:34
        Log: Integrate:
             [ 24666]
             Subject: [PATCH] Quotes fixed, see also perl #36079
             From: Andy Lester <andy@petdance.com>
             Date: Thu, 2 Jun 2005 00:02:38 -0500
             Message-ID: <20050602050238.GA4001@petdance.com>
             
             [ 24671]
             Fix changed diagnostic
     Branch: maint-5.8/perl
	   ! regexec.c
	  !> av.c doio.c gv.c malloc.c perl.c perl.h pod/perldiag.pod
	  !> pp_sort.c pp_sys.c regcomp.c scope.h thrdvar.h toke.c util.c
____________________________________________________________________________
[ 25498] By: nicholas                              on 2005/09/19  19:14:14
        Log: Integrate:
             [ 24654]
             Subject: [PATCH] Re: [patch] teach B::Concise to see XS code
             From: Stephen McCamant <smcc@mit.edu>
             Date: Sat, 21 May 2005 21:52:31 -0700
             Message-ID: <17040.4111.265639.434150@apocalypse.OCF.Berkeley.EDU>
             
             Correctly nullify CvSTART when undef'ing a CV
             
             [ 24770]
             Subject: [PATCH] instead of unions use double cast for data pointer <-> function pointer
             From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
             Date: Thu, 09 Jun 2005 08:50:56 +0300
             Message-ID: <42A7D8C0.1080104@gmail.com>
             
             [ 24794]
             Don't pass constants to select
             
             [ 24795]
             Passing read only values (such as string constants) to select should
             croak.
     Branch: maint-5.8/perl
	  +> t/op/sselect.t
	  !> MANIFEST ext/DynaLoader/dl_dlopen.xs op.c perl.h pp_sys.c sv.c
	  !> t/op/lex_assign.t toke.c
____________________________________________________________________________
[ 25496] By: nicholas                              on 2005/09/19  18:28:23
        Log: Integrate:
             [ 24645]
             Subject: [PATCH] ByteLoader.xs cleanup
             From: Andy Lester <andy@petdance.com>
             Date: Mon, 30 May 2005 22:28:36 -0500
             Message-ID: <20050531032836.GA32198@petdance.com>
             
             [ 24661]
             As PERL_HV_ARRAY_ALLOC_BYTES is bytes, not items, the type should be
             char rather than HE *. Bug was harmless, overallocating by a factor
             of sizeof(HE *)
             
             [ 24662]
             Zero-ing the new HV array is pointless, as we write to every element.
             Also avoid calling into he_dup when the HE is 0, to save the function
             call overhead.
     Branch: maint-5.8/perl
	  !> ext/ByteLoader/ByteLoader.xs hv.c sv.c
____________________________________________________________________________
[ 25495] By: nicholas                              on 2005/09/19  18:04:59
        Log: Integrate:
             [ 24622]
             Subject: [PATCH] Minor warning squashings
             From: Andy Lester <andy@petdance.com>
             Date: Sun, 29 May 2005 00:19:06 -0500
             Message-Id: <740ea3aca85400c6d03e945323badad4@petdance.com>
             
             Subject: [PATCH] Consting in Opcode.xs
             From: Andy Lester <andy@petdance.com>
             Date: Sun, 29 May 2005 11:23:50 -0500
             Message-ID: <20050529162350.GA13965@petdance.com>
             
             Subject: [PATCH] consting attrs.xs
             From: Andy Lester <andy@petdance.com>
             Date: Sun, 29 May 2005 14:15:46 -0500
             Message-ID: <20050529191546.GA15581@petdance.com>
             
             Subject: [PATCH] consting B.xs
             From: Andy Lester <andy@petdance.com>
             Date: Sun, 29 May 2005 15:09:24 -0500
             Message-ID: <20050529200924.GA15873@petdance.com>
             
             [ 24625]
             Subject: [PATCH] More embed.fnc strictures, plus consting and localizing
             From: Andy Lester <andy@petdance.com>
             Date: Tue, 24 May 2005 11:47:22 -0500
             Message-ID: <20050524164722.GC12027@petdance.com>
             
             Subject: [PATCH] Remove unused casts
             From: Andy Lester <andy@petdance.com>
             Date: Tue, 24 May 2005 11:42:18 -0500
             Message-ID: <20050524164218.GB12027@petdance.com>
     Branch: maint-5.8/perl
	  !> embed.fnc ext/B/B.xs ext/Opcode/Opcode.xs ext/attrs/attrs.xs
	  !> op.c perlio.c pp_sys.c proto.h regcomp.c regexec.c scope.c
	  !> sv.c utf8.c
____________________________________________________________________________
[ 25494] By: nicholas                              on 2005/09/19  16:25:46
        Log: Integrate:
             [ 24573]
             Replace all uses of HvNAME with the appropriate HvNAME_get or
             HvNAME_set
             
             [ 24621]
             Need a cast to avoid a compiler warning.
             
             [ 24633]
             Various HvPLACEHOLDERS() that should be HvPLACEHOLDERS_get()
             
             [ 25493]
             All Perl_hv_name_set()s need to be plain hv_name_set if they are to
             work with a macro version.
     Branch: maint-5.8/perl
	   ! hv.h sv.c
	  !> bytecode.pl cop.h ext/ByteLoader/bytecode.h
	  !> ext/ByteLoader/byterun.c hv.c
____________________________________________________________________________
[ 25492] By: nicholas                              on 2005/09/19  15:48:10
        Log: Integrate:
             [ 24576]
             Reordering config_h.SH after metaconfig now semi automated
             This will save me *a lot* of manual work
             
             [ 24578]
             Added Porting/config_h.pl
             
             [ 24581]
             More possible re-order dependencies solved
     Branch: maint-5.8/perl
	  +> Porting/config_h.pl
	  !> Configure MANIFEST config_h.SH
____________________________________________________________________________
[ 25491] By: nicholas                              on 2005/09/19  15:32:54
        Log: Integrate:
             [ 24570]
             Initialising the hash seed needs to be early in case anything
             calcualtes HASHes during dup()ing.
             
             [ 24582]
             It helps to set the total keys correctly when duplicating a hash.
             It helps even more to have a test for this.
             
             [ 24583]
             We know how big the global string table will be, so use that
             information.
     Branch: maint-5.8/perl
	  !> ext/threads/t/problems.t sv.c
____________________________________________________________________________
[ 25490] By: nicholas                              on 2005/09/19  15:16:29
        Log: Integrate:
             [ 24532]
             disallow eval { goto &foo }
             eval 'goto &foo' is already banned, and the try-version usually
             coredumps due to the code assuming the CxEVAL is actually a CxSUB.
             Anyway exiting an eval but preserving "it's" @_ doesn't make much
             sense.
             
             [ 24534]
             stop goto &foo wasting stack space
             it used to push @_ onto the end of the stack; now it pops the stack
             back to the old watermark first.
             
             [ 24543]
             Fix [perl #35929] : PerlIO::scalar didn't understand $/ = ""
             because PerlIOScalar_unread was broken.
             Bump version number of PerlIO::scalar to 0.04.
             
             [ 24549]
             PL_regex_padav elements hold either more AVs, or IVs that point to
             regexps. Don't attempt to look at the IVX if it's not an IV.
             
             [ 24554]
             Subject: Re: [perl #35938] [PATCH] SDBM_File fails to build on some platforms due to use of 'extern int errno' (was: Re: patches for lang/perl5.8 dfport override) 
             From: Andrew Dougherty <doughera@lafayette.edu>
             Date: Mon, 23 May 2005 11:48:08 -0400 (EDT)
             Message-ID: <Pine.SOC.4.62.0505231143480.4714@maxwell.phys.lafayette.edu>
             
             [ 24560]
             The tokenizer should expect an operator after qw().
             This fixes [perl #35885] qw and x operators doesn't mix
     Branch: maint-5.8/perl
	  !> ext/PerlIO/scalar/scalar.pm ext/PerlIO/scalar/scalar.xs
	  !> ext/PerlIO/t/scalar.t ext/SDBM_File/sdbm/sdbm.c perl.c
	  !> pod/perldiag.pod pp_ctl.c t/op/goto.t t/op/repeat.t toke.c
____________________________________________________________________________
[ 25489] By: nicholas                              on 2005/09/19  14:27:18
        Log: Integrate:
             [ 24561]
             Subject: [PATCH] embed.fnc cleanup + SvPVX_const usage
             From: Andy Lester <andy@petdance.com>
             Date: Sat, 21 May 2005 09:06:40 -0500
             Message-ID: <20050521140640.GB875@petdance.com>
     Branch: maint-5.8/perl
	  !> embed.fnc embed.h global.sym op.c pad.c perlio.c pp_ctl.c
	  !> pp_hot.c pp_sys.c proto.h regcomp.c sv.c toke.c utf8.c
____________________________________________________________________________
[ 25487] By: nicholas                              on 2005/09/19  13:32:45
        Log: Integrate:
             [ 24489]
             Subject: [PATCH] consting-eleventy.patch: More consts, plus actual bug fix
             From: Andy Lester <andy@petdance.com>
             Date: Mon, 16 May 2005 10:13:53 -0500
             Message-ID: <20050516151353.GA25387@petdance.com>
     Branch: maint-5.8/perl
	  !> (integrate 26 files)
____________________________________________________________________________
[ 25485] By: nicholas                              on 2005/09/19  12:01:22
        Log: Integrate:
             [ 23996]
             Fix leaks in List::Util::reduce,first
             When the block is a closure, the cloned CV created on each call
             was never freed
             
             [ 24465]
             Update to Scalar-List-Utils-1.15
             
             [ 24551]
             Update to Scalar-List-Utils-1.17
     Branch: maint-5.8/perl
	  +> ext/List/Util/t/p_blessed.t ext/List/Util/t/p_first.t
	  +> ext/List/Util/t/p_lln.t ext/List/Util/t/p_max.t
	  +> ext/List/Util/t/p_maxstr.t ext/List/Util/t/p_min.t
	  +> ext/List/Util/t/p_minstr.t ext/List/Util/t/p_openhan.t
	  +> ext/List/Util/t/p_readonly.t ext/List/Util/t/p_reduce.t
	  +> ext/List/Util/t/p_refaddr.t ext/List/Util/t/p_reftype.t
	  +> ext/List/Util/t/p_shuffle.t ext/List/Util/t/p_sum.t
	  +> ext/List/Util/t/p_tainted.t
	   ! ext/List/Util/Util.xs
	  !> MANIFEST ext/List/Util/Changes ext/List/Util/README
	  !> ext/List/Util/lib/List/Util.pm
	  !> ext/List/Util/lib/Scalar/Util.pm ext/List/Util/t/blessed.t
	  !> ext/List/Util/t/dualvar.t ext/List/Util/t/first.t
	  !> ext/List/Util/t/isvstring.t ext/List/Util/t/lln.t
	  !> ext/List/Util/t/max.t ext/List/Util/t/maxstr.t
	  !> ext/List/Util/t/min.t ext/List/Util/t/minstr.t
	  !> ext/List/Util/t/openhan.t ext/List/Util/t/proto.t
	  !> ext/List/Util/t/readonly.t ext/List/Util/t/reduce.t
	  !> ext/List/Util/t/refaddr.t ext/List/Util/t/reftype.t
	  !> ext/List/Util/t/shuffle.t ext/List/Util/t/sum.t
	  !> ext/List/Util/t/tainted.t ext/List/Util/t/weak.t
____________________________________________________________________________
[ 25484] By: nicholas                              on 2005/09/19  10:27:33
        Log: Integrate Storable 2.15:
             [ 23079]
             Store weak references.
             
             [ 23117]
             Trailing semi-colon are not allowed on #ifdef's in ANSI
             
             [ 23223]
             Upgrade to Devel::PPPort 3.00_01.
             
             [ 23233]
             Fix some backwards-compatibility problems with Storable.
             
             [ 23670]
             Fix typo
             
             [ 23852]
             Subject: [perl #32503] Fix for Storable module 
             From: "Steven N. Hirsch" (via RT) <perlbug-followup@perl.org>
             Date: 19 Nov 2004 13:06:57 -0000
             Message-ID: <rt-3.0.11-32503-100597.6.46123979926323@perl.org>
             
             [ 24234]
             H.Merijn changed e-mail
             
             [ 24316]
             Add STORABLE_attach hook (Adam Kennedy).
             
             [ 24325]
             Subject: [PATCH?] for AIX problems? RE: [PATCH] Symbian port of Perl
             Date: Tue, 26 Apr 2005 12:22:12 +0300
             From: <jarkko.hietaniemi@nokia.com>
             Message-ID: <B356D8F434D20B40A8CEDAEC305A1F2453D6CB@esebe105.NOE.Nokia.com>
             From: Steve Hay <steve.hay@uk.radan.com>
             Message-ID: <426E11A3.8070002@uk.radan.com>
             
             [ 24434]
             Change 24165 missed one s/class/classname/ in the debugging code.
             
             [ 24435]
             Simplify the debug and assert logic.
             
             [ 24436]
             Experiment with using the ptr_table code to hold the seen hash
             
             [ 24512]
             Previously overlooked $SIG{DIE} patch from Slaven Rezic.
             http://groups-beta.google.com/group/perl.perl5.porters/msg/2d10ba2c390ecc41
             
             [ 24513]
             Update MANIFEST
             
             [ 24514]
             Damnable applypatch nonsense.
             
             [ 24555]
             Remove one const to ensure that the universe doesn't tip over.
             (At least on AIX.)
             
             [ 24556]
             Assorted 2.15 fixes.
     Branch: maint-5.8/perl
	  +> ext/Storable/t/HAS_ATTACH.pm ext/Storable/t/attach_errors.t
	  +> ext/Storable/t/attach_singleton.t
	  +> ext/Storable/t/circular_hook.t ext/Storable/t/sig_die.t
	  +> ext/Storable/t/testlib.pl ext/Storable/t/weak.t
	  !> MANIFEST ext/Storable/ChangeLog ext/Storable/MANIFEST
	  !> ext/Storable/README ext/Storable/Storable.pm
	  !> ext/Storable/Storable.xs ext/Storable/t/just_plain_nasty.t
	  !> ext/Storable/t/malice.t
____________________________________________________________________________
[ 25483] By: nicholas                              on 2005/09/19  09:41:12
        Log: Integrate:
             [ 24382]
             Sync synopses
     Branch: maint-5.8/perl
	   ! pod/perl.pod
	  !> pod/perlrun.pod
____________________________________________________________________________
[ 25482] By: nicholas                              on 2005/09/19  08:30:40
        Log: Remove unwanted stowaway.
     Branch: maint-5.8/perl
	   - ext/XS/APItest/t/exception.t
____________________________________________________________________________
[ 25481] By: nicholas                              on 2005/09/19  08:29:59
        Log: Integrate:
             [ 24533]
             add access to Perl_croak() via 'mycroak' in XS::APItest
             
             [ 24827]
             Croak if an attempt is made to modify PL_strtab
             (er, TODO - these should be in perldiag)
             
             [ 25070]
             Tests for hv_delayfree_ent and hv_free_ent
             
             [ 25072]
             Implement hv_delayfree_ent in terms of hv_free_ent
             
             [ 25074]
             Perl_share_hek needs exporting for change 25070 on Win32
             
             [ 25075]
             Use void, not void *, to suppress RETVAL (and compiler warning)
             
             [ 25078]
             Make the tests for hv_free_ent and hv_delayfree_ent pass under
             -DPURIFY too.
     Branch: maint-5.8/perl
	  +> ext/XS/APItest/t/exception.t
	  !> embed.fnc embed.h ext/XS/APItest/APItest.pm
	  !> ext/XS/APItest/APItest.xs global.sym hv.c
____________________________________________________________________________
[ 25479] By: nicholas                              on 2005/09/18  23:40:46
        Log: Integrate the API from:
             [ 24526]
             Move hv_name, hv_eiter and hv_riter into a new aux structure.
             Provide (more efficient) _get and _set macros.
             Adjust the core to use them.
             
             [ 25475]
             It looks like the only way to reliably make Perl_hv_name_set a pure
             macro in 5.8.x is to make it available as hv_name_set.
             [Otherwise when and where aTHX_ hv gets expanded to foo, hv causes
             warnings or other games when Perl_hv_name_set() is a macro]
             
             [ 25476]
             Should have been embed.h, not proto.h, in 25475
     Branch: maint-5.8/perl
	   ! hv.c hv.h sv.c
	  !> dump.c ext/Data/Dumper/Dumper.xs ext/Devel/DProf/DProf.xs
	  !> ext/Opcode/Opcode.xs ext/PerlIO/via/via.xs
	  !> ext/Storable/Storable.xs ext/threads/shared/shared.xs gv.c
	  !> mg.c op.c op.h perl.c pp.c pp_hot.c pp_sys.c toke.c
	  !> universal.c xsutils.c
____________________________________________________________________________
[ 25478] By: nicholas                              on 2005/09/18  23:13:25
        Log: Integrate:
             [ 24545]
             Fill in HASATTRIBUTE stuff in win32/config_H.* (see change #24508)
             
             (None are actually defined, but it's nice to have them there anyway)
             
             [ 24552]
             Attribute compilation fix for Windows by Andy Lester
             
             [ 24710]
             Subject: [PATCH] Re: blead attribute warnings, cygwin + gcc 3.4.1
             From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
             Date: Sun, 5 Jun 2005 20:43:55 -0700
             Message-ID: <20050606034354.GA1456@efn.org>
             
             [ 24975]
             Stop '"__attribute__format__" redefined' warnings from gcc on Win32
     Branch: maint-5.8/perl
	  !> cygwin/cygwin.c perl.h perlio.h win32/config_H.bc
	  !> win32/config_H.gc win32/config_H.vc win32/config_H.vc64
____________________________________________________________________________
[ 25477] By: nicholas                              on 2005/09/18  22:57:20
        Log: Integrate:
             [ 21009]
             Subject: Re: maint@20974 or before broke mp2 ithreads test
             From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
             Date: Wed, 3 Sep 2003 06:07:54 +0200
             Message-ID: <044101c371d0$f39b3fc0$0c2f1fac@R2D2>
             
             [ 24451]
             SvUPGRADE doesn't return false.
             
             [ 24455]
             make join.t threadsafe!
             tests 13 and 14 could output in reverse order. Add a lock to stop
             this.
             
             [ 24469]
             avoid leaked scalar in BEGIN { threads->new(...) }
             
             [ 24475]
             $! might contain "unknown" if strerror(3) says so
     Branch: maint-5.8/perl
	   ! ext/threads/t/join.t
	  !> sv.c t/op/mkdir.t toke.c
____________________________________________________________________________
[ 25473] By: nicholas                              on 2005/09/18  16:12:05
        Log: Integrate:
             [ 24459]
             Allocate GV bodies from arenas
             
             [ 24460]
             Reorder the *more* arena allocation functions into a block
             As they are now ahead of their corresponding *new* functions, no need
             for all the embedding guff.
             Remove all the "register" keywords.
             
             [ 24467]
             initialize the PL_xpvgv_[arena]root vars during clone
             
             [ 24491]
             One last 1008 to replace with PERL_ARENA_SIZE
             
             [ 24497]
             Default to allocating the correct size for the array in the HV.
             Override this with -DPERL_USE_LARGE_HV_ALLOC
     Branch: maint-5.8/perl
	   ! intrpvar.h
	  !> embed.fnc embed.h embedvar.h hv.c hv.h perlapi.h proto.h sv.c
____________________________________________________________________________
[ 25472] By: nicholas                              on 2005/09/18  15:52:39
        Log: Integrate:
             [ 24427]
             Hoist the static "AUTOLOAD" into a static const variable. Makes the
             object file slightly smaller, and also increases the proportion of
             read only data section.
             
             [ 24440]
             Add editor boilerplates to all C files
             (except the generated ones)
             
             [ 24445]
             Include vim/emacs modelines in generated files to open them
             in read-only mode. Make vi modelines compatible with non-vim
             vi versions.
     Branch: maint-5.8/perl
	   ! reentr.h
	  !> (integrate 60 files)
____________________________________________________________________________
[ 25471] By: nicholas                              on 2005/09/18  15:27:58
        Log: Integrate:
             [ 24422]
             Subject: [PATCH] Sv_*set() doc's and extra const's for the SvPVX_const() tasks
             From: Steve Peters <steve@fisharerojo.org>
             Date: Sun, 8 May 2005 20:49:17 -0500
             Message-ID: <20050509014917.GA24132@mccoy.peters.homeunix.org>
             
             [ 24509]
             Subject: SvPVX_const() - Patch #1
             From: Steve Peters <steve@fisharerojo.org>
             Date: Tue, 17 May 2005 18:17:01 -0500
             Message-ID: <20050517231701.GA1394@mccoy.peters.homeunix.org>
             
             [ 24523]
             Subject: [PATCH] SvPVX_const - patch #2
             From: Steve Peters <steve@fisharerojo.org>
             Date: Fri, 20 May 2005 21:42:10 -0500
             Message-Id: <20050521024210.GA29036@mccoy.peters.homeunix.org>
     Branch: maint-5.8/perl
	   ! perl_keyword.pl toke.c
	  !> doio.c dump.c embed.fnc gv.c op.c pad.c perlio.c perly.c
	  !> pod/perlapi.pod pp.c pp_ctl.c proto.h sv.h universal.c util.c
	  !> warnings.h warnings.pl
____________________________________________________________________________
[ 25470] By: nicholas                              on 2005/09/18  15:00:31
        Log: Integrate:
             [ 24444]
             Subject: potential [PATCH] Tru64 crank up strictness
             From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
             Date: May 10, 2005 7:44 PM
             Message-Id: <4ADE5AAD-27CB-4F9E-BEC7-41DAA7671108@iki.fi>
             
             [ 24461]
             Subject: change to quiet cygwin's perlld
             From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
             Date: Fri, 13 May 2005 06:15:45 -0700
             Message-ID: <20050513131545.GB4024@efn.org>
             
             [ 24539]
             Subject: [PATCH] Enable 64bitall builds for Solaris x86
             From: Gisle Aas <gisle@ActiveState.com>
             Date: 21 May 2005 08:55:21 -0700
             Message-ID: <lr1x801sly.fsf@caliper.activestate.com>
             
             [ 24588]
             -Wall is intolerably noisy with icc.
             
             [ 24627]
             Subject: Re: updated tru64 cc [PATCH]es (Re: [PATCH]es: Tru64/blead)
             From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
             Date: Mon, 30 May 2005 09:15:56 +0300
             Message-ID: <429AAF9C.30503@gmail.com>
             
             [ 24628]
             regen after #24627
             
             [ 24630]
             gcc hints were not yet applied to gcc-4.x
             Now they are
             
             [ 24644]
             Add DECC to the symbol list
             Subject: [PATCH]lette Re: updated tru64 cc [PATCH]es (Re: [PATCH]es: Tru64/blead)
             From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
             Date: Mon, 30 May 2005 16:33:15 -0700
             Message-ID: <20050530233315.GA3088@efn.org>
             
             [ 24667]
             HP-UX specific #pragma entered in #23890 is not supported
             on HP-UX 10.20 and older
             
             [ 24674]
             CPP typo fix (by Dominic Dunlop)
             
             [ 24981]
             On OS X to use perl's malloc need to USE_PERL_SBRK and emulate sbrk()
             using system malloc, because sbrk() stops giving us memory after about
             14Mb.
             
             [ 25004]
             Subject: Re: Hints for 64bitall (PPC!) Darwin perl
             From: Dominic Dunlop <domo@computer.org>
             Message-Id: <1D31D9A6-2451-49EE-AD80-80F1D9CA2825@computer.org>
             Date: Mon, 27 Jun 2005 19:46:59 +0200
             
             [ 25228]
             Use the correct gcc when more than one gcc is installed
             Thanks to Campo
             
             [ 25231]
             Subject: Re: [PATCH] Tru64: use -c99 for ccflags if available
             From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
             Date: Thu, 28 Jul 2005 10:01:51 +0300
             Message-ID: <42E882DF.6020100@gmail.com>
             Message-ID: <42E86DE9.6090709@gmail.com>
             
             [ 25282]
             Subject: [PATCH] Re: [perl #36235] perl + gcc-4.0.0 + solaris + gnu binutils
             From: Andy Dougherty <doughera@lafayette.edu>
             Date: Tue, 26 Jul 2005 12:03:37 -0400 (EDT)
             Message-ID: <Pine.SOC.4.62.0507261131300.8774@maxwell.phys.lafayette.edu>
             
             [ 25305]
             Subject: make test of perl 5.8.7 failed on icc9
             From: YAMASHINA Hio <hio@ymir.co.jp>
             Date: Thu, 18 Aug 2005 20:36:57 +0900
             Message-Id: <20050818165213.BDF1.HIO@ymir.co.jp>
             
             [ 25402]
             Subject: [perl #36448] configuring ranlib for perl on osx with xcode 2.1
             From: Luke Closs (via RT) <perlbug-followup@perl.org>
             Message-ID: <rt-3.0.11-36448-116486.6.06308221656583@perl.org>
             Date: 1 Jul 2005 21:56:31 -0000
             
             [ 25403]
             Add Luke Closs to AUTHORS
     Branch: maint-5.8/perl
	  !> AUTHORS Configure cflags.SH cygwin/perlld.in embed.pl
	  !> ext/DynaLoader/dl_dlopen.xs handy.h hints/aix.sh
	  !> hints/darwin.sh hints/dec_osf.sh hints/hpux.sh hints/linux.sh
	  !> hints/solaris_2.sh perl.c perl.h perlapi.h sv.c toke.c
	  !> x2p/a2py.c
____________________________________________________________________________
[ 25469] By: nicholas                              on 2005/09/18  14:26:36
        Log: Integrate:
             [ 24420]
             Perl_croak uses perl's printf, so can pass in SVs direct - no need for
             SvPV and a %s format.
             
             [ 24424]
             Change 24420 should have hand updated globvar.sym to reflect the
             renaming of the global variable.
     Branch: maint-5.8/perl
	   ! globvar.sym perl.h
	  !> mg.c pp.c pp_hot.c
____________________________________________________________________________
[ 25468] By: nicholas                              on 2005/09/18  14:07:40
        Log: Update docs. Fret not, pad_findmy is static, so it can change to const.
     Branch: maint-5.8/perl
	   ! pod/perlintern.pod
____________________________________________________________________________
[ 25467] By: nicholas                              on 2005/09/18  14:03:33
        Log: attributes-two.patch also contains a lot of const-ing, hence the
             strange collection of files that seem to change with the integration
             of all the attributes probing code.
             
             Integrate:
             [ 24431]
             Subject: [PATCH] attributes-two.patch, the next batch
             From: Andy Lester <andy@petdance.com>
             Date: May 9, 2005 5:45 PM
             Message-ID: <20050509154518.GA18273@petdance.com>
             
             [ 24492]
             Subject: [PATCH] perl 5.9.x (@ 24471): Symbian update
             From: <jarkko.hietaniemi@nokia.com>
             Date: Mon, 16 May 2005 17:59:35 +0300
             Message-ID: <B356D8F434D20B40A8CEDAEC305A1F2453D793@esebe105.NOE.Nokia.com>
             
             completed by:
             Message-ID: <B356D8F434D20B40A8CEDAEC305A1F2453D7A0@esebe105.NOE.Nokia.com>
             
             [ 24495]
             Subject: [PATCH] more about __attribute__
             From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
             Date: Tue, 17 May 2005 20:36:43 +0300
             Message-ID: <428A2BAB.9020306@gmail.com>
             
             [ 24508]
             Subject: [PATCH] Attribute configuration
             From: Andy Lester <andy@petdance.com>
             Date: Thu, 19 May 2005 12:32:56 -0500
             Message-ID: <20050519173256.GA29039@petdance.com>
             
             [ 24519]
             Need to make PERL_UNUSED_DECL conditional as xlc on AIX doesn't like
             it being redefined.
             
             [ 24520]
             Updaate ppport.h to get a conditional PERL_UNUSED_DECL
             
             [ 24521]
             Update XS code to declare PERL_UNUSED_DECL conditionally
             
             [ 24536]
             Make the __attribute__ stuff work with Symbian (Jarkko).
             http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2005-05/msg00530.html
     Branch: maint-5.8/perl
	   ! embed.fnc perl.h sv.c
	  !> (integrate 47 files)
____________________________________________________________________________
[ 25466] By: nicholas                              on 2005/09/18  12:24:38
        Log: Integrate:
             [ 24414]
             Subject: [PATCH] GCC attributes!
             From: Andy Lester <andy@petdance.com>
             Date: May 4, 2005 11:55 PM
             Message-ID: <20050504215540.GA20413@petdance.com>
             
             [ 24416]
             Tweak the insertion of __attribute__((nonnull())) declarations
             in proto.h so it compiles with and without threads with gcc 3.4
             
             [ 24421]
             Revert to Andy's first solution for nonnull attributes;
             add the missing defines for non-threaded perls in perl.h
     Branch: maint-5.8/perl
	   ! embed.fnc utf8.c util.c
	  !> autodoc.pl av.c doio.c doop.c embed.h embed.pl global.sym op.c
	  !> perl.h pod/perlapi.pod proto.h regcomp.c sv.c xsutils.c
____________________________________________________________________________
[ 25465] By: nicholas                              on 2005/09/18  11:29:29
        Log: Integrate:
             [ 24384]
             [perl #35214] SEGV when next is followed by a goto
             
             next and redo didn't restore PL_curcop
             
             [ 24385]
             make goto.t use test.pl, strict and warnings
             
             [ 24386]
             Fix test numerotation
             
             [ 24406]
             Don't pretend SIGZERO exists [#35291].
             
             [ 24410]
             Get the correct refcount on the temporary assignment to PL_sigwarn so
             that other code assigning to $SIG{__WARN__} doesn't cause a premature
             free.
             
             [ 24476]
             This seems to be the right thing to do to iterate over layers
             
             [ 24480]
             Assuming that everything with 0x40000000 is SVpad_TYPED is bogus.
     Branch: maint-5.8/perl
	  !> ext/PerlIO/via/via.xs mg.c perlio.c pp_ctl.c sv.c
	  !> t/io/layers.t t/op/goto.t
____________________________________________________________________________
[ 25464] By: nicholas                              on 2005/09/18  11:14:27
        Log: Integrate:
             [ 24358]
             Subject: [PATCH] uninitialized warnings in regcomp
             From: Steven Philip Schubiger <steven@accognoscere.org>
             Date: Mon, 2 May 2005 01:14:29 +0200 (CEST)
             Message-Id: <200505012314.j41NETLk018737@accognoscere.homeunix.org>
             
             [ 24372]
             Subject: [perl #33809] optimize macro dXSARGS 
             From: Sergey Skvortsov (via RT) <perlbug-followup@perl.org>
             Date: 17 Jan 2005 09:02:33 -0000
             Message-ID: <rt-3.0.11-33809-105714.16.4209917806492@perl.org>
             
             [ 24402]
             avoid accessing a just-freed SV (keep ponie happy)
     Branch: maint-5.8/perl
	  !> XSUB.h pad.c pod/perlapi.pod regcomp.c universal.c
____________________________________________________________________________
[ 25462] By: nicholas                              on 2005/09/18  10:56:46
        Log: Integrate:
             [ 24365]
             Subject: [PATCH] printf.patch: Adding printf checking for gcc
             From: Andy Lester <andy@petdance.com>
             Date: Sun, 1 May 2005 15:07:55 -0500
             Message-ID: <20050501200755.GA30259@petdance.com>
     Branch: maint-5.8/perl
	   ! pp_pack.c
	  !> gv.c lib/ExtUtils/t/Embed.t pad.c perl.c perl.h perlio.c
	  !> perlio.h perliol.h pp_sort.c x2p/util.c x2p/util.h
____________________________________________________________________________
[ 25461] By: nicholas                              on 2005/09/18  10:42:52
        Log: Integrate:
             [ 24333]
             Subject: [PATCH] XS() __attribute__
             From: Andy Lester <andy@petdance.com>
             Date: Fri, 22 Apr 2005 17:39:47 -0500
             Message-ID: <20050422223947.GA4681@petdance.com>
             
             [ 24338]
             Subject: [PATCH] perlio-two.patch: More warnings squashed, more consts
             From: Andy Lester <andy@petdance.com>
             Date: Wed, 27 Apr 2005 10:02:43 -0500
             Message-ID: <20050427150243.GA21883@petdance.com>
             
             [ 24341]
             Fix perlsio_binmode() export breakage caused by change #24338
             
             Define and export perlsio_binmode() based on the same condition,
             namely, that USE_PERLIO is defined and USE_SFIO is not.
             
             [ 24353]
             Subject: [PATCH] one cannot "static" exported functions
             From: <jarkko.hietaniemi@nokia.com>
             Date: Fri, 29 Apr 2005 11:02:01 +0300
             Message-ID: <B356D8F434D20B40A8CEDAEC305A1F2453D705@esebe105.NOE.Nokia.com>
     Branch: maint-5.8/perl
	  !> XSUB.h makedef.pl perl.c perlio.c perlio.h perliol.h
	  !> universal.c xsutils.c
____________________________________________________________________________
[ 25460] By: nicholas                              on 2005/09/18  10:26:23
        Log: Integrate perlio.c changes from:
             [ 24271]
             Subject: [PATCH] Symbian port of Perl
             From: <jarkko.hietaniemi@nokia.com>
             Date: Mon, 18 Apr 2005 13:18:30 +0300
             Message-ID: <B356D8F434D20B40A8CEDAEC305A1F2453D653@esebe105.NOE.Nokia.com>
     Branch: maint-5.8/perl
	   ! perlio.c
____________________________________________________________________________
[ 25458] By: nicholas                              on 2005/09/18  09:44:13
        Log: Integrate minimal header changes from:
             [ 24271]
             Subject: [PATCH] Symbian port of Perl
             From: <jarkko.hietaniemi@nokia.com>
             Date: Mon, 18 Apr 2005 13:18:30 +0300
             Message-ID: <B356D8F434D20B40A8CEDAEC305A1F2453D653@esebe105.NOE.Nokia.com>
     Branch: maint-5.8/perl
	   ! perl.h
	  !> perlio.h perliol.h
____________________________________________________________________________
[ 25456] By: nicholas                              on 2005/09/17  22:17:22
        Log: Integrate:
             [ 24256]
             Subject:  [PATCH] pad_compname_type(), takes care of a clunky macro
             From:  Andy Lester <andy@petdance.com>
             Date:  Tue, 19 Apr 2005 11:38:44 -0500
             Message-Id:  <20050419163844.GA19747@petdance.com>
             
             and the pad_compname_type part of
             [ 24318]
             Subject: [PATCH] combopatch
             From: Jarkko Hietaniemi <jhi@iki.fi>
             Date: Sun, 24 Apr 2005 22:58:15 +0300
             Message-ID: <426BFA57.9060105@iki.fi>
     Branch: maint-5.8/perl
	  !> embed.fnc embed.h pad.c pad.h proto.h
____________________________________________________________________________
[ 25455] By: nicholas                              on 2005/09/17  20:49:04
        Log: Integrate:
             [ 24511]
             Subject: [PATCH] Add a Makefile target for ctags
             From: Andy Lester <andy@petdance.com>
             Date: Thu, 12 May 2005 11:40:52 -0500
             Message-ID: <20050512164052.GA30287@petdance.com>
             
             [ 24528]
             Subject: [PATCH] ctags parms need to know .h is C
             From: Andy Lester <andy@petdance.com>
             Date: Sat, 21 May 2005 08:58:14 -0500
             Message-Id: <20050521135814.GA875@petdance.com>
             
             [ 24580]
             Subject: [PATCH] Updated lint infrastructure
             From: Andy Lester <andy@petdance.com>
             Date: Wed, 25 May 2005 12:31:39 -0500
             Message-ID: <20050525173139.GB1701@petdance.com>
             
             [ 24655]
             Don't touch lib/ExtUtils/Miniperl.pm when rebuild identically
             
             [ 24658]
             Revert change #24656
             
             (The Makefile.SH part of)
             [ 24735]
             Subject: [PATCH] Random cleanups #47
             From: Andy Lester <andy@petdance.com>
             Date: Mon, 6 Jun 2005 10:11:07 -0500
             Message-ID: <20050606151107.GC7022@petdance.com>
             
             [ 24884]
             Subject: [perl #36199] [PATCH] 5.8.7 fails to build with parallel make 
             From: "Steve Peters via RT" <perlbug-followup@perl.org>
             Date: 16 Jun 2005 17:11:14 -0000
             Message-ID: <rt-3.0.11-36199-115872.8.39962488213992@perl.org>
             
             [ 25192]
             Subject: [PATCH] RE: rebuilding lib/Config*
             From: Robin Barker <Robin.Barker@npl.co.uk>
             Date: Jul 14, 2005 3:27 PM
             Message-ID: <533D273D4014D411AB1D00062938C4D90849C733@hotel.npl.co.uk>
             
             [ 25323]
             My system produces core.$$ files
     Branch: maint-5.8/perl
	  !> Makefile.SH handy.h malloc.c mg.c pp.c regcomp.h
____________________________________________________________________________
[ 25454] By: nicholas                              on 2005/09/17  20:22:12
        Log: Integrate:
             [ 24665]
             Round up all string length requests to malloc()/realloc() to the next
             multiple of 4/8 bytes [sizeof(size_t)] on the assumption that malloc()
             internally will quantise, and so we're going to use space that
             otherwise would be wasted. Hopefully this will save realloc()ing.
             
             [ 24673]
             Oops. My maths was too generous (by 1).
             
             [ 24676]
             Changes 24660 and 24665 both introduced errors into the USEMYMALLOC
             code. Plus change 24672 appears to break under USEMYMALLOC, so revert
             it for now.
             
             [ 24678]
             Dave can see a better way of doing the rounding.
     Branch: maint-5.8/perl
	  !> ext/Devel/Peek/t/Peek.t handy.h perl.h sv.c
____________________________________________________________________________
[ 25453] By: nicholas                              on 2005/09/17  19:57:51
        Log: Integrate:
             [ 24375]
             Fix for [perl #34252] Access rights in FindBin::Bin
             At least on my platform, Cwd::getcwd doesn't find the current
             directory if it has no access to it. Try harder with Cwd::cwd.
             
             [ 24379]
             Error in the latest FindBin patch, noticed by Nicholas
             
             [ 24704]
             Improve FindBin discovery of current directory, based on :
             
             Subject: FindBin.pm: incomplete getcwd/cwd patch? (#24375, #24379)
             From: José Pedro Oliveira <jpo@di.uminho.pt>
             Date: Thu, 12 May 2005 20:36:48 +0100
             Message-ID: <4283B050.6080805@di.uminho.pt>
             
             Plus POD fixes
             
             [ 24753]
             Subject: Re: FindBin.pm: incomplete getcwd/cwd patch and SELinux (Strict policy)
             From: José Pedro Oliveira <jpo@di.uminho.pt>
             Date: Tue, 07 Jun 2005 21:07:42 +0100
             Message-ID: <42A5FE8E.3020608@di.uminho.pt>
     Branch: maint-5.8/perl
	  !> lib/FindBin.pm
____________________________________________________________________________
[ 25450] By: nicholas                              on 2005/09/17  19:37:27
        Log: Integrate:
             [ 24269]
             Subject:  [PATCH] extra code in pp_concat, Take 2
             From:  Andy Lester <andy@petdance.com>
             Date:  Wed, 13 Apr 2005 21:06:01 -0500
             Message-Id:  <20050414020601.GA21346@petdance.com>
             
             add 'const', and remove extraneous code, from pp_concat
     Branch: maint-5.8/perl
	  !> pp_hot.c t/op/concat.t
____________________________________________________________________________
[ 25449] By: nicholas                              on 2005/09/17  19:21:24
        Log: Integrate:
             [ 24243]
             A more efficient way of expressing the MALLOC_WRAP conditional compile.
             
             [ 24244]
             Replace Renew(SvPVX(...)...) with SvPV_renew, which avoids an LVALUE
             SvPVX
             
             [ 24245]
             SvPV_renew also calls SvLEN_set
             Add SvPV_shrink_to_cur(sv) to call SvPV_renew with SvCUR(sv)+1.
             For Ponie this can be a single call into the PMC
     Branch: maint-5.8/perl
	  !> handy.h pp_hot.c pp_sys.c sv.h toke.c
____________________________________________________________________________
[ 25447] By: nicholas                              on 2005/09/17  19:04:44
        Log: Integrate:
             [ 24165]
             Down with C++ reserved names
             (and also function pointer declarations that rely on the C semantics
             of ())
             
             [ 24170]
             Add casting to allow g++ (3.3.5) to compile the core code.
             A C++ compiler produces lots of warnings that are probably valid
             concerns to investigate.
             
             [ 25445]
             Missing DO_BO_PACK_PC and DO_BO_UNPACK_PC for the 5.8.x case
             (and the don't know the pointer size case)
     Branch: maint-5.8/perl
	   ! pp_pack.c
	  !> doio.c ext/B/B.xs ext/Devel/DProf/DProf.xs
	  !> ext/Storable/Storable.xs gv.c perl.c perl.h scope.c sv.c
	  !> toke.c util.c x2p/walk.c
____________________________________________________________________________
[ 25441] By: nicholas                              on 2005/09/17  17:55:48
        Log: S_vdie_croak_common wasn't STATIC in 5.8.7, so something might just
             have linked against it. Hence it needs to stay non-static for 5.8.x.
     Branch: maint-5.8/perl
	   ! util.c
____________________________________________________________________________
[ 25440] By: nicholas                              on 2005/09/17  17:21:38
        Log: Integrate:
             [ 22937]
             It seems that our assert() macro wasn't good enough.
             Changed to one that that is an expression, rather than a statement.
             
             [ 24609]
             In assert(), we mustn't stringify the message as part of the first
             argument to croak, as it's a *printf format, and the thing we're
             asserting might itself contain % signs.
             Also, as __FILE__ is a string, we can append that to the format,
             rather than needing a %s for it.
     Branch: maint-5.8/perl
	  !> perl.h
____________________________________________________________________________
[ 25438] By: nicholas                              on 2005/09/17  16:58:09
        Log: Integrate:
             [ 24148]
             Subject: [PATCH] const-eight.diff
             From: Andy Lester <andy@petdance.com>
             Date: Wed, 30 Mar 2005 11:40:24 -0600
             Message-ID: <20050330174024.GA12167@petdance.com>
             
             [ 24178]
             Don't try to export symbols that don't exist
             
             Change #24148 added Perl_rvpv_dup() to the public API, but it is only
             defined when USE_ITHREADS is defined.  Adjust makedef.pl accordingly
             to keep Win32 happy.
     Branch: maint-5.8/perl
	  !> Porting/Maintainers.pl doio.c dump.c embed.fnc embed.h
	  !> global.sym makedef.pl mg.c op.c perl.c proto.h sv.c
	  !> universal.c xsutils.c
____________________________________________________________________________
[ 25437] By: nicholas                              on 2005/09/17  15:47:16
        Log: Integrate:
             The hunks from 24088 that reset PL_op and PL_curcop
             
             [ 24109]
             One more Win32 compilation clean-up (for when using -DDEBUGGING)
     Branch: maint-5.8/perl
	  !> sv.c
____________________________________________________________________________
[ 25435] By: nicholas                              on 2005/09/17  15:34:45
        Log: Integrate:
             [ 23336]
             Perl -DT segfaults when parsing a 'use' statement
             
             [ 23339]
             the improved -DT output of #23325 could print an uninit stack value
     Branch: maint-5.8/perl
	  !> toke.c
____________________________________________________________________________
[ 25433] By: nicholas                              on 2005/09/17  15:17:35
        Log: Integrate:
             [ 24096]
             Clean-up some warnings when compiling on Win32 with VC++
     Branch: maint-5.8/perl
	  !> mg.c
____________________________________________________________________________
[ 25432] By: nicholas                              on 2005/09/17  14:45:11
        Log: Integrate:
             [ 24082]
             Need to return something when the compiler doesn't know that a
             function is "noreturn".
             
             [ 24094]
             The core part of :
             Subject: [PATCH] Consting seven
             From: Andy Lester <andy@petdance.com>
             Date: Sun, 27 Mar 2005 15:57:22 -0600
             Message-ID: <20050327215722.GC20451@petdance.com>
             
             [ 24095]
             Downconst external APIs
     Branch: maint-5.8/perl
	  !> embed.fnc embed.h gv.h mg.c op.c opcode.h opcode.pl perl.c
	  !> perlio.c pod/perlapi.pod pp_ctl.c proto.h regcomp.c regexec.c
	  !> scope.c sv.c util.c
____________________________________________________________________________
[ 25428] By: nicholas                              on 2005/09/17  13:53:15
        Log: Integrate:
             [ 24081]
             Subject: [PATCH] Consting five
             Date: Fri, 25 Mar 2005 17:14:09 -0600
             From: Andy Lester <andy@petdance.com>
             Message-ID: <20050325231409.GB17660@petdance.com>
             
             (bowlderised to remove const from all externally linked function
             prototypes)
     Branch: maint-5.8/perl
	  !> av.c embed.fnc embed.h ext/DynaLoader/dlutils.c gv.c
	  !> intrpvar.h locale.c mg.c miniperlmain.c op.c perl.c pp_sys.c
	  !> proto.h regcomp.c thrdvar.h toke.c
____________________________________________________________________________
[ 25427] By: nicholas                              on 2005/09/17  13:05:29
        Log: Integrate:
             [ 24079]
             Subject: [PATCH] Consting part 4
             From: Andy Lester <andy@petdance.com>
             Date: Fri, 25 Mar 2005 14:43:31 -0600
             Message-ID: <20050325204331.GA16388@petdance.com>
             
             (bowlderised to remove const from all externally linked function
             prototypes)
     Branch: maint-5.8/perl
	  !> embed.fnc mg.c numeric.c op.c perlio.c pod/perlapi.pod proto.h
	  !> regcomp.c scope.c sv.c taint.c toke.c utf8.c util.c
____________________________________________________________________________
[ 25426] By: nicholas                              on 2005/09/17  12:17:46
        Log: Integrate:
             [ 24077]
             Remove the const qualifier from argv and env variables
     Branch: maint-5.8/perl
	   ! intrpvar.h
	  !> embed.fnc perl.c pod/perlapi.pod proto.h
____________________________________________________________________________
[ 25425] By: nicholas                              on 2005/09/17  11:45:57
        Log: Integrate:
             [ 24074]
             Subject: [PATCH] Third consting batch
             From: Andy Lester <andy@petdance.com>
             Date: Tue, 22 Mar 2005 00:35:55 -0600
             Message-Id: <2f14220e7101a03f7659dbe79a03b115@petdance.com>
             
             (bowlderised to remove const from all externally linked function
             prototypes)
     Branch: maint-5.8/perl
	  !> (integrate 40 files)
____________________________________________________________________________
[ 25424] By: nicholas                              on 2005/09/16  22:31:26
        Log: Integrate:
             [ 24049]
             Subject: [PATCH] More consting goodness
             From: Andy Lester <andy@petdance.com>
             Date: Sat, 19 Mar 2005 01:28:30 -0600
             Message-ID: <20050319072830.GA7721@petdance.com>
             
             
             (bowlderised to remove const from all externally linked function
             prototypes)
     Branch: maint-5.8/perl
	  !> deb.c dump.c embed.fnc handy.h op.c opcode.h opcode.pl perl.c
	  !> pod/perlapi.pod pp_ctl.c pp_sys.c proto.h regcomp.c regexec.c
	  !> sv.c toke.c
____________________________________________________________________________
[ 25423] By: nicholas                              on 2005/09/16  21:33:59
        Log: Integrate:
             [ 23325]
             improve lexer debugging output (-DT)
             Decode yylex() return values, and show lexer state each time
             yylex() is called
     Branch: maint-5.8/perl
	   ! toke.c
	  !> embed.fnc embed.h proto.h
____________________________________________________________________________
[ 25422] By: nicholas                              on 2005/09/16  20:42:10
        Log: Integrate:
             [ 24042]
             Subject: [PATCH] More const parms
             From: Andy Lester <andy@petdance.com>
             Date: Mon, 14 Mar 2005 13:59:54 -0600
             Message-ID: <20050314195954.GB7141@petdance.com>
             
             (bowlderised to remove const from all externally linked function
             prototypes)
     Branch: maint-5.8/perl
	  !> embed.fnc gv.c numeric.c op.c pad.c perlio.c pod/perlapi.pod
	  !> pp_ctl.c pp_hot.c proto.h scope.c sv.c toke.c utf8.c
____________________________________________________________________________
[ 25421] By: nicholas                              on 2005/09/16  19:49:49
        Log: Integrate:
             [ 24037]
             Subject: [PATCH] Adding const qualifiers
             From: Andy Lester <andy@petdance.com>
             Date: Sun, 13 Mar 2005 14:20:05 -0600
             Message-ID: <20050313202005.GA23535@petdance.com>
             
             
             (bowlderised to remove const from all externally linked function
             prototypes)
     Branch: maint-5.8/perl
	   ! embed.fnc
	  !> av.c gv.c hv.c mg.c op.c pod/perlapi.pod pp_ctl.c proto.h
	  !> scope.c utf8.c
____________________________________________________________________________
[ 25420] By: nicholas                              on 2005/09/16  13:50:39
        Log: Integrate:
             [ 24693]
             Subject: Re: [perl #35977] perlbug AutoReply: Devel::DProf "unstacked calls in outer"
             From: Duncan Findlay <duncf@debian.org>
             Date: Wed, 1 Jun 2005 12:18:08 -0400
             Message-ID: <20050601161808.GA17294@duncf.mine.nu>
             
             [ 25413]
             Subject: [perl #37163] dprofpp array subscript error 
             From: scott@perlcode.org (via RT) <perlbug-followup@perl.org>
             Date: Tue, 13 Sep 2005 12:11:46 -0700
             Message-ID: <rt-3.0.11-37163-120724.9.33005980359667@perl.org>
     Branch: maint-5.8/perl
	  !> utils/dprofpp.PL
____________________________________________________________________________
[ 25419] By: nicholas                              on 2005/09/16  13:26:55
        Log: Integrate:
             [ 24223]
             Make the four-argument form of select() return undef
             instead of -1 on error.
             
             [ 25418]
             Revert change #24223 : select() will continue
             to return -1 on error, like in previous versions, and
             like other system builtins.
             
             (ie a no-op)
     Branch: maint-5.8/perl
	  !> pod/perlfunc.pod pp_sys.c
____________________________________________________________________________
[ 25415] By: nicholas                              on 2005/09/14  17:41:36
        Log: Integrate:
             [ 24921]
             weak references aren't UVs, do don't show this in the dump flags.
             
             [ 24924]
             Avoid having NULL entries in the weakref backreference array, and
             make S_sv_add_backref O(1) (instead of O(n))
     Branch: maint-5.8/perl
	  !> dump.c sv.c
____________________________________________________________________________
[ 25412] By: nicholas                              on 2005/09/14  08:35:19
        Log: Integrate:
             [ 23752]
             Shave off the explict 1; from the end of lib/Config.pm
             
             [ 24982]
             Add a sanity check to Config::AUTOLOAD to prevent infinte loops if
             Configure_heavy.pl gets truncated.
             
             [ 25195]
             Remove :unique attribute from Config.pm,
             until we find a better implementation of it (or
             remove it). See [perl #36375].
     Branch: maint-5.8/perl
	  !> configpm
____________________________________________________________________________
[ 25408] By: nicholas                              on 2005/09/13  22:19:30
        Log: Integrate:
             [ 24443]
             "make regen" should run reentr.pl
             
             [ 24774]
             reentr.pl should be using regen_lib.pl and unlinking files before it
             starts.
             
             [ 24775]
             Change perforce filetype from text to text+w (so regen.pl is happy)
             
             [ 25059]
             Stop reentr.pl changing EOL on the files it writes on Win32
     Branch: maint-5.8/perl
	   ! reentr.inc
	  !> opnames.h reentr.c reentr.h reentr.pl regen.pl
____________________________________________________________________________
[ 25407] By: nicholas                              on 2005/09/13  21:31:42
        Log: Integrate:
             [ 24376]
             Convert to test.pl
             
             [ 24782]
             Convert op/array.t to test.pl
             
             [ 25054]
             Convert bless.t to test.pl
             
             [ 25202]
             Subject: [PATCH] Convert t/op/vec.t to test.pl
             From: Steve Peters <steve@fisharerojo.org>
             Date: Wed, 20 Jul 2005 08:06:38 -0500
             Message-ID: <20050720130638.GA6123@mccoy.peters.homeunix.org>
     Branch: maint-5.8/perl
	  !> t/op/array.t t/op/bless.t t/op/mkdir.t t/op/vec.t
____________________________________________________________________________
[ 25405] By: nicholas                              on 2005/09/13  20:52:17
        Log: The Peek.t parts of
             Integrate:
             [ 24088]
             expand -DDEBUG_LEAKING_SCALARS to instrument the creation of each SV
             
             [ 24091]
             Fix Peek.t to work with and without DEBUG_LEAKING_SCALARS
     Branch: maint-5.8/perl
	  !> ext/Devel/Peek/t/Peek.t
____________________________________________________________________________
[ 25404] By: nicholas                              on 2005/09/13  19:52:26
        Log: Integrate:
             [ 24389]
             strictify t/TEST
             make most variables lexical, narrow their scope, and give some of
             them more meaningful names. Also fix a harmless bug where the wrong
             filehandles are closed (A+B rather than U+A)
             
             [ 24390]
             make t/TEST detect various failure modes in testfile outputs
             in particular:
             multiple leader lines
             leader line not first or last line of file
             unrecognised lines
             out-of-sequence test numbers
             
             [ 24392]
             strictifying t/TEST stopped it handling '1..n todo' correctly
             (made scope of %toto too narrow)
             
             [ 24393]
             stop Math/BigInt/t/bare_mbf.t producing spurious test output
             
             [ 24417]
             t/TEST's new error messages now include the prefix 'FAILURE--'
             
             [ 24498]
             make t/TEST print summary times consistently to two decimal places
             
             [ 25114]
             Subject: [PATCH t/TEST] Understand "ok" with no number
             From: Michael G Schwern <schwern@pobox.com>
             Date: Mon, 11 Jul 2005 18:41:30 -0700
             Message-ID: <20050712014130.GA20855@windhund.schwern.org>
     Branch: maint-5.8/perl
	  !> lib/Math/BigInt/t/bare_mbf.t t/TEST
____________________________________________________________________________
[ 25401] By: nicholas                              on 2005/09/13  17:51:49
        Log: Integrate:
             [ 24370]
             Convert to test.pl
             
             [ 24371]
             Subject: [PATCH] IEEE math for the masses
             From: Steve Peters <steve@fisharerojo.org>
             Date: Fri, 15 Apr 2005 09:10:54 -0500
             Message-ID: <20050415141054.GA12749@mccoy.peters.homeunix.org>
             
             (tests added to t/op/exp.t)
             
             [ 24377]
             ok($a == $b) better written as cmp_ok($a, '==', $b)
             (The latter gives more diagnostics in the case of failure)
             
             [ 24388]
             Document the unportability of atan2() edge cases
             and remove unportable tests (by Steve Peters)
     Branch: maint-5.8/perl
	  !> pod/perlport.pod pp.c t/op/exp.t
____________________________________________________________________________
[ 25400] By: nicholas                              on 2005/09/13  17:33:24
        Log: Integrate:
             [ 24313]
             Subject: [PATCH] Add -Wdeclaration-after-statement to default flags for gcc 3+
             From: Steve Peters <steve@fisharerojo.org>
             Date: Sat, 23 Apr 2005 22:37:48 -0500
             Message-ID: <20050424033748.GA23117@mccoy.peters.homeunix.org>
             
             [ 24432]
             Subject: [PATCH] Avoid USE_SITECUSTOMIZE redefined warnings
             From: Jan Dubois <jand@ActiveState.com>
             Date: Mon, 9 May 2005 19:29:06 -0700
             Message-Id: <200505100229.j4A2TGm1019135@smtp3.ActiveState.com>
     Branch: maint-5.8/perl
	  !> Configure config_h.SH
____________________________________________________________________________
[ 25396] By: nicholas                              on 2005/09/12  22:33:56
        Log: Integrate:
             [ 24201]
             Add a macro PERL_DEBUG_COW, for aggressive compile time tests of
             Copy-On-Write related source changes.
             Fix the problem this revealed.
             
             [ 24998]
             Fix sv_dec of undefined PVs to (a) not downgrade to NV
             (b) give -1, rather than +1
             
             [ 25102]
             sv_dec is supposed to go *down*, m'kay.
     Branch: maint-5.8/perl
	   ! sv.h
	  !> sv.c t/op/inc.t
____________________________________________________________________________
[ 25395] By: nicholas                              on 2005/09/12  21:50:04
        Log: Integrate:
             [ 24367]
             For perls where pids and ppids are cached, when the ppid of
             the perl process becomes 1, refresh the ppid cache (this may
             indicate that the parent process has died.)
             
             [ 24703]
             Simplify the getppid code, by Alexey Tourbin
             
             [ 24709]
             New test for getppid(), by Alexey Tourbin
     Branch: maint-5.8/perl
	  +> t/op/getppid.t
	  !> MANIFEST pp_sys.c
____________________________________________________________________________
[ 25394] By: nicholas                              on 2005/09/12  21:21:39
        Log: Integrate:
             [ 24348]
             Add a new macro SvPV_free() which undoes OOK and free()s the PVX(),
             becase there's a lot of code around that calls SvOOK_off(), memmov()s
             the buffer, then promptly free()s it. So avoid the needless memmov().
             
             [ 24351]
             Refactor Perl_sv_utf8_upgrade_flags to use SvPV_free
     Branch: maint-5.8/perl
	  !> perl.c pp.c pp_ctl.c pp_hot.c sv.c sv.h
____________________________________________________________________________
[ 25393] By: nicholas                              on 2005/09/12  20:49:01
        Log: Run regen.pl after
             
             Integrate:
             [ 24277]
             Subject: [PATCH] bytecode.pl, bytecode.h, and sv.h fixes
             From: Steve Peters <steve@fisharerojo.org>
             Date: Thu, 21 Apr 2005 18:55:47 -0500
             Message-ID: <20050421235547.GA12149@mccoy.peters.homeunix.org>
     Branch: maint-5.8/perl
	   ! ext/ByteLoader/byterun.c pod/perlintern.pod
	  !> bytecode.pl ext/ByteLoader/bytecode.h
____________________________________________________________________________
[ 25392] By: nicholas                              on 2005/09/12  20:12:10
        Log: Integrate:
             [ 24260]
             Subject: [PATCH] Refactoring to Sv*_set() macros - patch #6
             From: Steve Peters <steve@fisharerojo.org>
             Message-ID: <20050420112720.GA31042@mccoy.peters.homeunix.org>
             Date: Wed, 20 Apr 2005 06:27:20 -0500
     Branch: maint-5.8/perl
	  !> bytecode.pl ext/ByteLoader/bytecode.h malloc.c
____________________________________________________________________________
[ 25391] By: nicholas                              on 2005/09/12  19:50:36
        Log: Integrate:
             [ 24248]
             Subject: [PATCH] Refactoring to Sv*_set() macros - patch #5
             From: Steve Peters <steve@fisharerojo.org>
             Message-ID: <20050419000925.GA21640@mccoy.peters.homeunix.org>
             Date: Mon, 18 Apr 2005 19:09:25 -0500
             
             [ 24249]
             Simplify PERL_DEBUG_PAD_ZERO so it continues to expand to
             valid C code
             
             [ 24253]
             Restore SvEND_set
     Branch: maint-5.8/perl
	   ! sv.h
	  !> (integrate 30 files)
____________________________________________________________________________
[ 25390] By: nicholas                              on 2005/09/12  16:18:42
        Log: Integrate:
             (the sv_upgrade change from)
             [ 22934]
             Assert that SV type has magic member when reading/writing.
             Will catch buggy code.
             
             [ 24199]
             Subject: [PATCH] Refactoring to Sv*_set() macros - patch #1
             From: Steve Peters <steve@fisharerojo.org>
             Message-ID: <20050406232110.GA12249@mccoy.peters.homeunix.org>
             Date: Wed, 6 Apr 2005 18:21:10 -0500
             
             [ 24204]
             Subject: [PATCH] Refactoring to Sv*_set() macros - patch #2
             From: Steve Peters <steve@fisharerojo.org>
             Date: Thu, 7 Apr 2005 13:51:49 -0500
             Message-ID: <20050407185149.GA4418@mccoy.peters.homeunix.org>
             
             [ 24206]
             Add SvIVX() to PERL_DEBUG_COW, and change pad.c to SvIVset()
             
             [ 24229]
             Subject: [PATCH] Refactoring to Sv*_set() macros - patch #3
             From: Steve Peters <steve@fisharerojo.org>
             Message-ID: <20050411023736.GB9355@mccoy.peters.homeunix.org>
             Date: Sun, 10 Apr 2005 21:37:36 -0500
             
             (with correction to SvUV_set)
             
             [ 24230]
             Don't PERL_HASH(SvUVX(...)...) as it's actually a set.
             Plus add an editor block
             
             [ 24239]
             Subject: [PATCH] Refactoring to Sv*_set() macros - patch #4
             Message-ID: <20050416160502.GA26957@mccoy.peters.homeunix.org>
             From: Steve Peters <steve@fisharerojo.org>
             Date: Sat, 16 Apr 2005 11:05:02 -0500
             
             plus fix to Perl_rvpv_dup assigning to an RV with SvPVX
             
             [ 24240]
             Two more uses of lvalue SvIVX()
             
             [ 24246]
             PERL_DEBUG_COW for SvUVX and SvPVX
     Branch: maint-5.8/perl
	   ! sv.h
	  !> av.c cop.h doio.c ext/ByteLoader/byterun.c
	  !> ext/DynaLoader/dl_dyld.xs ext/List/Util/Util.xs
	  !> ext/PerlIO/encoding/encoding.xs ext/Storable/Storable.xs
	  !> ext/threads/threads.xs gv.c lib/ExtUtils/t/Constant.t malloc.c
	  !> op.c pad.c perl.c pp.c pp_ctl.c pp_hot.c pp_sort.c scope.c
	  !> sv.c toke.c util.c
____________________________________________________________________________
[ 25389] By: nicholas                              on 2005/09/12  14:42:43
        Log: Integrate:
             [ 24652]
             Subject: [PATCH] Speed up lib/unicore/mktables by 45%
             From: Andy Lester <andy@petdance.com>
             Date: Tue, 31 May 2005 12:39:00 -0500
             Message-ID: <20050531173900.GA9820@petdance.com>
             
             [ 24656]
             Subject: [PATCH] eliminate always running mktables
             From: Robin Barker <Robin.Barker@npl.co.uk>
             Date: Wed, 1 Jun 2005 09:55:16 +0100 
             Message-ID: <533D273D4014D411AB1D00062938C4D90849C6B8@hotel.npl.co.uk>
             
             [ 24659]
             If we're building config_heavy.pl somewhere else, then we need to
             require it, not something (or maybe nothing) in the correct place.
     Branch: maint-5.8/perl
	  !> Makefile.SH configpm lib/unicore/mktables
____________________________________________________________________________
[ 25385] By: nicholas                              on 2005/09/11  20:36:26
        Log: Integrate:
             [ 24228]
             Avoid taking a reference to SvIVX and putting that address on the
             save stack
             
             [ 24241]
             Refactor the odd-one-out code before a Renew(SvPVX(...)...)
             
             [ 24344]
             Calling sv_backoff() on something that's about to be free()d will
             memmov() memory that's about to be freed. Seems wasteful.
             
             [ 24357]
             Explode if anyone attempts to sv_upgrade PL_mess_sv.
             Should this be a panic: ?
             
             [ 24373]
             PL_mess_sv is always >= SVt_PVMG, so no need for an if() test
             
             [ 24418]
             The idea is that when you find something, you stop looking.
             ( http://use.perl.org/comments.pl?sid=26369&cid=40183 )
             
             [ 24419]
             There's no need to set a reference count for the new SV heads, as it's
             always set to 1 at uprooting time.
             But set it to zero when DEBUGGING to make things clearer. Plus fix a
             bug introduced by change 22945, where the last SV head had an
             uninitialised reference count.
             
             [ 24423]
             Simplify S_hv_notallowed slightly by passing a prebuilt message
             template. (Also slightly smaller object code)
             
             [ 24438]
             As we have the length of the string easily to hand, no reason not to
             use it.
             
             [ 24439]
             s/sv_setpv(sv,"")/sv_setpvn(sv,"",0)/
             plus a couple of 1 byte sv_setpv()s too.
             
             [ 24626]
             Subject: [PATCH] Teeny optimization in S_hv_magic_check
             From: Andy Lester <andy@petdance.com>
             Date: Tue, 24 May 2005 11:41:15 -0500
             Message-ID: <20050524164115.GA12027@petdance.com>
             
             [ 24638]
             Change the logic to avoid needing to set a variable during the loop
             
             [ 24646]
             Avoid updating a variable in the loop
             
             [ 24648]
             Avoid updating a variable in a loop.
             Only calculate the number of links in a hash bucket chain if we really
             need it.
             
             [ 24669]
             Subject: [PATCH] use lengths in sv_setpv() calls
             From: Andy Lester <andy@petdance.com>
             Date: Wed, 1 Jun 2005 23:16:56 -0500
             Message-ID: <20050602041656.GA3000@petdance.com>
     Branch: maint-5.8/perl
	  !> doio.c dump.c ext/B/B.xs ext/Storable/Storable.xs gv.c hv.c
	  !> mg.c op.c perl.c pp_ctl.c pp_hot.c pp_sys.c sv.c toke.c util.c
____________________________________________________________________________
[ 25384] By: nicholas                              on 2005/09/11  19:30:11
        Log: Integrate:
             [ 23949]
             Add Module::CoreList in the maintainers list
             
             [ 24133]
             Add encoding::warnings to Maintainers.pl and rebuild META.yml for release
             
             [ 24160]
             Add Math::BigInt::FastCalc in maintainer list
             
             [ 24790]
             Update maintainers list
             
             [ 24835]
             Add IO::Zlib in maintainers list
             
             [ 24931]
             Add Archive::Tar to the maintainers list
     Branch: maint-5.8/perl
	  !> Porting/Maintainers.pl
____________________________________________________________________________
[ 25382] By: nicholas                              on 2005/09/10  21:38:40
        Log: Integrate:
             [ 25318]
             Upgrade to Term::ANSIColor 1.10
     Branch: maint-5.8/perl
	  !> lib/Term/ANSIColor.pm lib/Term/ANSIColor/ChangeLog
	  !> lib/Term/ANSIColor/README lib/Term/ANSIColor/test.pl
____________________________________________________________________________
[ 25381] By: nicholas                              on 2005/09/10  21:18:44
        Log: Integrate:
             [ 24990]
             Upgrade to Filter::Simple 0.82
             
             [ 24991]
             Fix tests of Filter::Simple 0.82 in the core
             
             [ 24992]
             Oops (fix previous fix).
     Branch: maint-5.8/perl
	  !> lib/Filter/Simple.pm lib/Filter/Simple/Changes
	  !> lib/Filter/Simple/t/data.t lib/Filter/Simple/t/export.t
	  !> lib/Filter/Simple/t/filter.t lib/Filter/Simple/t/filter_only.t
	  !> lib/Filter/Simple/t/import.t t/lib/Filter/Simple/ExportTest.pm
	  !> t/lib/Filter/Simple/FilterOnlyTest.pm
	  !> t/lib/Filter/Simple/FilterTest.pm
	  !> t/lib/Filter/Simple/ImportTest.pm
____________________________________________________________________________
[ 25380] By: nicholas                              on 2005/09/10  21:03:36
        Log: Integrate:
             [ 24932]
             Upgrade to Test::Harness 2.49_02
             
             [ 24941]
             Upgrade to Test::Harness 2.50
             
             [ 24989]
             Upgrade to Test::Harness 2.52
     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/strap-analyze.t
	  !> lib/Test/Harness/t/test-harness.t
____________________________________________________________________________
[ 25379] By: nicholas                              on 2005/09/10  20:29:37
        Log: Integrate:
             (the Time::HiRes part of)
             [ 24271]
             Subject: [PATCH] Symbian port of Perl
             From: <jarkko.hietaniemi@nokia.com>
             Date: Mon, 18 Apr 2005 13:18:30 +0300
             Message-ID: <B356D8F434D20B40A8CEDAEC305A1F2453D653@esebe105.NOE.Nokia.com>
             
             [ 24472]
             Upgrade to Time::HiRes 1.68
             
             [ 24985]
             Upgrade to Time::HiRes 1.69
             
             [ 24988]
             Upgrade to Time::HiRes 1.70
             
             [ 25002]
             Upgrade to Time::HiRes 1.71
             
             [ 25044]
             Upgrade to Time::HiRes 1.72
             
             [ 25295]
             Subject: Time::HiRes::nanosleep support for Solaris [PATCH]
             From: Gisle Aas <gisle@ActiveState.com>
             Date: 15 Aug 2005 21:05:22 -0700
             Message-ID: <lrk6imy1a5.fsf@caliper.activestate.com>
             
             [ 25298]
             Upgrade to Time::HiRes 1.73
     Branch: maint-5.8/perl
	  !> ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
	  !> ext/Time/HiRes/HiRes.xs ext/Time/HiRes/Makefile.PL
	  !> ext/Time/HiRes/hints/solaris.pl ext/Time/HiRes/t/HiRes.t
____________________________________________________________________________
[ 25378] By: nicholas                              on 2005/09/10  20:11:32
        Log: Integrate:
             [ 24426]
             Upgrade to Unicode::Collate 0.50
             
             [ 24978]
             Upgrade to Unicode::Collate 0.51
     Branch: maint-5.8/perl
	  +> lib/Unicode/Collate/t/cjkrange.t lib/Unicode/Collate/t/ignor.t
	  +> lib/Unicode/Collate/t/override.t
	  !> MANIFEST lib/Unicode/Collate.pm lib/Unicode/Collate/Changes
	  !> lib/Unicode/Collate/README lib/Unicode/Collate/t/altern.t
	  !> lib/Unicode/Collate/t/contract.t
	  !> lib/Unicode/Collate/t/hangtype.t
	  !> lib/Unicode/Collate/t/hangul.t lib/Unicode/Collate/t/illegal.t
	  !> lib/Unicode/Collate/t/illegalp.t lib/Unicode/Collate/t/index.t
	  !> lib/Unicode/Collate/t/normal.t
	  !> lib/Unicode/Collate/t/rearrang.t lib/Unicode/Collate/t/test.t
	  !> lib/Unicode/Collate/t/trailwt.t
	  !> lib/Unicode/Collate/t/variable.t
	  !> lib/Unicode/Collate/t/version.t lib/Unicode/Collate/t/view.t
____________________________________________________________________________
[ 25377] By: nicholas                              on 2005/09/10  19:40:57
        Log: Remove stowaways
     Branch: maint-5.8/perl
	   - pod/perl593delta.pod symbian/PerlBase.pod
____________________________________________________________________________
[ 25376] By: nicholas                              on 2005/09/10  19:39:28
        Log: Integrate:
             [ 24161]
             Down with K&R function arguments
             
             (the Pathtools part of)
             [ 24170]
             Add casting to allow g++ (3.3.5) to compile the core code.
             A C++ compiler produces lots of warnings that are probably valid
             concerns to investigate.
             
             (the Pathtools part of)
             [ 24271]
             Subject: [PATCH] Symbian port of Perl
             From: <jarkko.hietaniemi@nokia.com>
             Date: Mon, 18 Apr 2005 13:18:30 +0300
             Message-ID: <B356D8F434D20B40A8CEDAEC305A1F2453D653@esebe105.NOE.Nokia.com>
             
             [ 24407]
             Upgrade to PathTools 3.07
             
             [ 24607]
             Fix failing Cwd tests on Win32
             
             Patch was posted to Ken previously
             
             (see http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2005-05/msg00226.html)
             
             but no reply as yet.  I'll mail him again...
             
             [ 24631]
             Upgrade to PathTools 3.08
             
             [ 24882]
             Upgrade to PathTools 3.09
             
             [ 25334]
             Upgrade to PathTools 3.10
             
             [ 25338]
             Upgrade to PathTools 3.11
             (no real changes)
     Branch: maint-5.8/perl
	  !> ext/Cwd/Changes ext/Cwd/Cwd.xs ext/Cwd/t/cwd.t
	  !> ext/Cwd/t/taint.t lib/Cwd.pm lib/File/Spec.pm
	  !> lib/File/Spec/Cygwin.pm lib/File/Spec/Mac.pm
	  !> lib/File/Spec/OS2.pm lib/File/Spec/Unix.pm
	  !> lib/File/Spec/VMS.pm lib/File/Spec/Win32.pm
	  !> lib/File/Spec/t/Spec.t
____________________________________________________________________________
[ 25375] By: nicholas                              on 2005/09/10  17:47:19
        Log: Integrate:
             [ 24397]
             Upgrade to Test::Simple 0.60
             
             [ 24401]
             Missing files in Test::Simple
     Branch: maint-5.8/perl
	  +> lib/Test/Simple/t/create.t lib/Test/Simple/t/is_deeply_fail.t
	  +> t/lib/Test/Simple/sample_tests/exit.plx
	   - lib/Test/Simple/t/is_deeply.t
	  !> MANIFEST lib/Test/Builder.pm lib/Test/More.pm
	  !> lib/Test/Simple.pm lib/Test/Simple/Changes
	  !> lib/Test/Simple/t/00signature.t
	  !> lib/Test/Simple/t/circular_data.t lib/Test/Simple/t/exit.t
	  !> lib/Test/Simple/t/fork.t lib/Test/Simple/t/has_plan.t
	  !> lib/Test/Simple/t/has_plan2.t lib/Test/Simple/t/is_fh.t
	  !> lib/Test/Simple/t/require_ok.t
____________________________________________________________________________
[ 25373] By: nicholas                              on 2005/09/10  16:46:54
        Log: Run buildtoc
     Branch: maint-5.8/perl
	   ! MANIFEST pod/perl.pod pod/perltoc.pod vms/descrip_mms.template
	   ! win32/pod.mak
____________________________________________________________________________
[ 25372] By: nicholas                              on 2005/09/10  16:33:56
        Log: Run regen.pl
     Branch: maint-5.8/perl
	   ! pod/perlintern.pod
____________________________________________________________________________
[ 25371] By: nicholas                              on 2005/09/10  14:20:14
        Log: Integrate:
             [ 25234]
             Subject: [PATCH] perlfunc.pod grammar fixes
             From: Steve Peters <steve@fisharerojo.org>
             Date: Wed, 27 Jul 2005 22:02:13 -0500
             Message-ID: <20050728030213.GA11330@mccoy.peters.homeunix.org>
             
             (with minor tweaks)
             
             [ 25301]
             FAQ sync
             
             [ 25320]
             Subject: Re: Documentation change for IPC::Open*.pm
             From: Ben Tilly <btilly@gmail.com>
             Date: Mon, 22 Aug 2005 08:30:14 -0700
             Message-ID: <acc274b3050822083093357fe@mail.gmail.com>
             
             [ 25324]
             Unmatched parentheses (thanks to Steve Peters)
             
             [ 25339]
             Clarify the cases where system() returns 1,
             per a suggestion of Rick Delaney (bug #36976)
             
             [ 25342]
             Document that Sys::Syslog::openlog might die.
             Fixes [perl #36848] Sys::Syslog::syslog kills program if syslogd not running 
             
             [ 25351]
             Subject: document index() with out of bounds POSITION
             From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
             Date: Sep 2, 2005 2:23 PM
             Message-ID: <20050902122311.GA3104@efn.org>
             
             [ 25366]
             Minor comment fix
     Branch: maint-5.8/perl
	  !> ext/Sys/Syslog/Syslog.pm hv.h lib/IPC/Open2.pm
	  !> lib/IPC/Open3.pm pod/perlfaq.pod pod/perlfaq2.pod
	  !> pod/perlfaq3.pod pod/perlfaq4.pod pod/perlfaq5.pod
	  !> pod/perlfaq6.pod pod/perlfaq7.pod pod/perlfaq8.pod
	  !> pod/perlfaq9.pod pod/perlfunc.pod pod/perlvar.pod
____________________________________________________________________________
[ 25370] By: nicholas                              on 2005/09/10  13:47:01
        Log: Integrate:
             [ 25229]
             Subject: [PATCH] id est is i.e.
             From: Steve Peters <steve@fisharerojo.org>
             Date: Tue, 26 Jul 2005 20:42:38 -0500
             Message-ID: <20050727014238.GA2582@mccoy.peters.homeunix.org>
             
             [ 25241]
             Clarification to the syntax of loop modifiers
             by Piotr Fusik
             
             [ 25242]
             Subject: [PATCH] Fix English error in overload.pm
             From: Andy Lester <andy@petdance.com>
             Date: Thu, 28 Jul 2005 14:10:43 -0500
             Message-ID: <20050728191043.GC607@petdance.com>
             
             [ 25253]
             Subject: [PATCH] POD typos
             From: "Piotr Fusik" <pfusik@op.pl>
             Date: Sat, 30 Jul 2005 21:54:19 +0200
             Message-ID: <00ef01c59542$3198ba00$26d34dd5@piec>
             
             [ 25258]
             Subject: Re: [perl #36616] bug or feature? foreach (sort @array) {y/a-z/A-Z/;} # @array modified!
             From: Michael G Schwern <schwern@pobox.com>
             Date: Sat, 23 Jul 2005 19:59:29 -0700
             Message-ID: <20050724025929.GA6574@windhund.schwern.org>
             
             [ 25259]
             More typo fixes (damn generated pod files)
             
             [ 25260]
             Document where to find maintainers of dual live modules
             
             [ 25268]
             "thread failed to start" is a severe warning, not a fatal error
             as reported by Tassilo von Parseval.
             
             [ 25272]
             Clarify docs
             
             [ 25274]
             Subject: [PATCH] undup 
             From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
             Date: Sun, 07 Aug 2005 13:28:19 +0300
             Message-ID: <42F5E243.80500@gmail.com>
             
             [ 25276]
             Subject: Re: [PATCH] undup
             From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
             Date: Sun, 07 Aug 2005 14:49:40 +0300
             Message-ID: <42F5F554.5020701@gmail.com>
             
             [ 25278]
             Update Porting/repository.pod to recommend Cygwin's ssh on Win32
             
             Cygwin's ssh client seems to be superior to MSYS's ssh client in that
             it supports the ServerAliveInterval config setting which prevents the
             ssh client from timing out every so often
     Branch: maint-5.8/perl
	  +> pod/perl593delta.pod symbian/PerlBase.pod
	  !> (integrate 30 files)
____________________________________________________________________________
[ 25369] By: nicholas                              on 2005/09/10  13:19:18
        Log: Integrate:
             [ 25037]
             Add the perlglossary man page
             
             Subject: [PATCH] perlglossary.pod
             From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
             Date: Fri, 1 Jul 2005 03:10:50 -0700
             Message-ID: <20050701101050.GA2448@efn.org>
             
             [ 25065]
             Subject: [PATCH] perlglossary.pod: add jump points
             From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
             Date: Mon, 4 Jul 2005 02:07:52 -0700
             Message-ID: <20050704090752.GB4056@efn.org>
             
             [ 25085]
             Subject: [PATCH @ 25084] simple authors removal
             From: Vadim Konovalov <vadim@vkonovalov.ru>
             Date: Wed, 06 Jul 2005 00:15:48 +0400
             Message-ID: <42CAEA74.1020108@vkonovalov.ru>
             
             [ 25098]
             Subject: Re: [PATCH] Pod::Html - correctly link to =item's on the same page
             From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
             Date: Thu, 7 Jul 2005 15:05:51 -0700
             Message-ID: <20050707220551.GB2388@efn.org>
             
             (plus fix a couple of POD warnings)
             
             [ 25112]
             Subject: [PATCH] perlfunc.pod
             From: "Piotr Fusik" <pfusik@op.pl>
             Date: 	Sat, 9 Jul 2005 16:21:05 +0200
             Message-ID: <01de01c58491$f3182f60$a6d24dd5@piec>
             
             [ 25118]
             Hack out -DL documentation from perldebuguts.pod
             
             Now that the perl core uses Newx*() rather than New*() this chunk
             of old documentation is more obsolete than ever before.
             
             [ 25131]
             Subject: [PATCH] Re: Documentation error in IO::Socket
             From: Michael G Schwern <schwern@pobox.com>
             Date: Tue, 12 Jul 2005 13:18:34 -0700
             Message-ID: <20050712201834.GA29275@windhund.schwern.org>
             
             [ 25145]
             Subject: [PATCH] Missing tie() call in NDBM_File SYNOPSIS
             From: Matt Sergeant <matt@sergeant.org>
             Date: Thu, 14 Jul 2005 16:53:03 -0400
             Message-Id: <28baf339c3b78cc40017066b9dc7cffb@sergeant.org>
             
             [ 25148]
             Subject: [perl #36538] perlfunc/our contradicts itself 
             From: "Michael G Schwern via RT" <perlbug-followup@perl.org>
             Date: Thu, 14 Jul 2005 19:10:51 -0700
             Message-ID: <rt-3.0.11-36538-117411.7.57026072725992@perl.org>
             
             [ 25149]
             Subject: [perl #7840] Hash Behaviour differs v5.6.0 to v5.6.1 
             From: "Michael G Schwern via RT" <perlbug-followup@perl.org>
             Date: Thu, 14 Jul 2005 16:57:45 -0700
             Message-ID: <rt-3.0.11-7840-117401.4.81505529800216@perl.org>
             
             (with minor tweaks)
             
             [ 25161]
             [perl #9720] document what can be assigned to a shared scalar
             
             [ 25164]
             Subject: Re: Why does our() cross packages? (PATCH)
             From: Michael G Schwern <schwern@pobox.com>
             Date: Fri, 15 Jul 2005 14:35:18 -0700
             Message-ID: <20050715213518.GH6897@windhund.schwern.org>
             
             (with minor tweaks suggested in subsequent posts)
             
             [ 25165]
             Subject: [PATCH] perlop: why \c\ cannot be placed just before the terminating delimiter
             From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
             Date: Sun, 17 Jul 2005 11:38:05 +0900
             Message-Id: <20050717112557.5921.BQW10602@nifty.com>
             
             [ 25198]
             Remove obsolete error messages
             
             [ 25220]
             Subject: [PATCH perlfunc.pod/crypt] crypt() digests, not encrypts
             From: Michael G Schwern <schwern@pobox.com>
             Date: Sat, 23 Jul 2005 17:25:18 -0700
             Message-ID: <20050724002518.GB4918@windhund.schwern.org>
             
             Subject: Re: [PATCH perlfunc.pod/crypt] crypt() digests, not encrypts
             From: Michael G Schwern <schwern@pobox.com>
             Date: Sun, 24 Jul 2005 13:49:25 -0700
             Message-ID: <20050724204925.GC13275@windhund.schwern.org>
             
             [ 25227]
             Subject: [perl #36658] Typo in perlfunc.pod 
             From: "John W. Krahn" (via RT) <perlbug-followup@perl.org>
             Date: Tue, 26 Jul 2005 01:07:18 -0700
             Message-ID: <rt-3.0.11-36658-118300.18.7320750032131@perl.org>
     Branch: maint-5.8/perl
	  +> pod/perlglossary.pod
	  !> AUTHORS MANIFEST ext/IO/lib/IO/Socket.pm
	  !> ext/NDBM_File/NDBM_File.pm ext/threads/shared/shared.pm
	  !> pod.lst pod/perl.pod pod/perldebguts.pod pod/perldiag.pod
	  !> pod/perlfunc.pod pod/perlmodlib.pod pod/perlop.pod
____________________________________________________________________________
[ 25368] By: nicholas                              on 2005/09/10  12:44:18
        Log: Integrate:
             The doc patch from:
             [ 19637]
             Subject: [PATCH] jumbo closure fix
             From: Dave Mitchell <davem@fdgroup.com>
             Date: Wed, 26 Feb 2003 14:49:47 +0000
             Message-ID: <20030226144947.A14444@fdgroup.com>
             
             [ 24686]
             Subject: [PATCH] Quotes in pod/*.pod
             From: Andy Lester <andy@petdance.com>
             Date: Thu, 2 Jun 2005 16:19:54 -0500
             Message-ID: <20050602211954.GA22107@petdance.com>
             
             [ 24690]
             Subject: Re: Should while ( <$fh> ) and while (< $fh >) do the same thing?
             From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
             Date: Thu, 2 Jun 2005 11:49:11 -0700
             Message-ID: <20050602184911.GA3292@efn.org>
             
             [ 24719]
             Subject: RE: a bit of trouble with compiling with MSVC++ on Win32
             From: "Konovalov, Vadim" <vkonovalov@spb.lucent.com>
             Date: Tue, 7 Jun 2005 13:19:33 +0400 
             Message-ID: <7DD1BE2C50259746ABB8683672D2089E12D462@itotest-1.spb.lucent.com>
             
             [ 24771]
             Subject: [PATCH] perlfunc.pod: ioctl.ph
             From: Alexey Tourbin <at@altlinux.ru>
             Date: Wed, 8 Jun 2005 13:45:08 +0400
             Message-ID: <20050608094508.GJ5867@solemn.turbinal.org>
             
             [ 24797]
             Allison says that "Media" isn't really needed in the name.
             
             [ 24807]
             Subject: [PATCH] perlipc.pod: mkfifo()
             From: Alexey Tourbin <at@altlinux.ru>
             Date: Sat, 11 Jun 2005 16:26:56 +0400
             Message-ID: <20050611122656.GC8181@solemn.turbinal.org>
             
             [ 24822]
             Subject: [PATCH] Re: [perl #36047] perlmod.pod/CLONESKIP error
             From: Offer Kaye <offer.kaye@gmail.com>
             Date: Thu, 2 Jun 2005 09:14:53 +0300
             Message-ID: <56942505060123146e5eb1c2@mail.gmail.com>
             
             [ 24836]
             Document ${^UTF8LOCALE}
             
             [ 24849]
             Better phrasing
             
             [ 24868]
             Update README.win32
             
             (Mention Borland compiler is also free; update libwin32 link)
             
             [ 24902]
             Subject: [perl #36328] Until Statement Undocumented 
             From: Eric Amick (via RT) <perlbug-followup@perl.org>
             Date: 18 Jun 2005 03:47:32 -0000
             Message-ID: <rt-3.0.11-36328-115949.3.38667506136829@perl.org>
             
             [ 24903]
             Missed a chunk in previous commit
             
             [ 24904]
             Hugo suggests this.
             
             [ 24909]
             Subject: [PATCH pod/perlfunc.pod pod/perlobj.pod pod/perltooc.pod] Recommend Against UNIVERSAL:: Methods as Functions, take 2
             From: chromatic <chromatic@wgz.org>
             Date: Sat, 18 Jun 2005 12:15:41 -0700
             Message-Id: <1119122141.21521.9.camel@localhost>
             
             [ 25013]
             Expand on parts of perltodo
             
             [ 25015]
             Subject: some dusting off of the cross-compilation information
             From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
             Date: Thu, 30 Jun 2005 08:41:17 +0300
             Message-ID: <42C385FD.9040601@gmail.com>
     Branch: maint-5.8/perl
	  !> (integrate 33 files)
____________________________________________________________________________
[ 25367] By: nicholas                              on 2005/09/10  11:42:11
        Log: Integrate:
             [ 24083]
             Remove an XXX note from the public doc.
             Hide it in the comments, instead
             
             [ 24567]
             Clarification on the behaviour of qw// and x :
             Subject: [PATCH] Re: [perl #35885] qw and x operators doesn't mix
             From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
             Date: Tue, 24 May 2005 08:52:00 -0700
             Message-ID: <20050524155200.GA1784@efn.org>
             
             [ 24571]
             Update description of Term::ReadLine and fix typo
             Subject: [perl #35963] Typo in Term::ReadLine 
             From: "perlbug@veggiechinese.net (via RT)" <perlbug-followup@perl.org>
             Date: 24 May 2005 23:29:37 -0000
             Message-ID: <rt-3.0.11-35963-113541.14.5614982698687@perl.org>
             
             [ 24668]
             New HW model; more on threads for 10.20
             
             [ 24684]
             FAQ sync
             
             [ 24685]
             Indent fix
     Branch: maint-5.8/perl
	  !> README.hpux lib/Term/ReadLine.pm pod/perlfaq1.pod
	  !> pod/perlfaq2.pod pod/perlfaq3.pod pod/perlfaq4.pod
	  !> pod/perlfaq5.pod pod/perlfaq6.pod pod/perlfaq7.pod
	  !> pod/perlfaq8.pod pod/perlfaq9.pod pod/perlop.pod sv.c
____________________________________________________________________________
[ 24695] By: nicholas                              on 2005/06/03  09:57:50
        Log: Create perl588delta.pod
     Branch: maint-5.8/perl
	   + pod/perl588delta.pod
	   ! MANIFEST Makefile.SH pod.lst pod/perltoc.pod
	   ! vms/descrip_mms.template win32/Makefile win32/makefile.mk
	   ! win32/pod.mak
____________________________________________________________________________
[ 24647] By: nicholas                              on 2005/05/31  10:31:56
        Log: Disarm the maint branch
     Branch: maint-5.8/perl
	   ! patchlevel.h
____________________________________________________________________________
[ 24641] By: nicholas                              on 2005/05/30  21:22:34
        Log: Break a leg
     Branch: maint-5.8/perl
	   ! patchlevel.h
____________________________________________________________________________
[ 24640] By: nicholas                              on 2005/05/30  21:22:04
        Log: Sic transit unicos mundi
     Branch: maint-5.8/perl
	   ! pod/perl587delta.pod
____________________________________________________________________________
[ 24639] By: nicholas                              on 2005/05/30  21:06:23
        Log: Update Changes
     Branch: maint-5.8/perl
	   ! Changes patchlevel.h