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
|
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.7 Maintenance release working toward v5.8.7
--------------
____________________________________________________________________________
[ 24637] By: nicholas on 2005/05/30 20:52:19
Log: Danger, the emergency destruct system is now activated
Branch: maint-5.8/perl
! pod/perlhist.pod
____________________________________________________________________________
[ 24636] By: nicholas on 2005/05/30 15:57:32
Log: Integrate:
[ 24623]
Subject: [PATCH] perlrun.pod -w description typo
From: Offer Kaye <offer.kaye@gmail.com>
Date: Mon, 30 May 2005 11:27:38 +0300
Message-ID: <569425050530012768a9baca@mail.gmail.com>
[ 24624]
Minor grammar fix by Uri Guttman
Branch: maint-5.8/perl
!> pod/perlre.pod pod/perlrun.pod
____________________________________________________________________________
[ 24635] By: nicholas on 2005/05/30 13:51:00
Log: Revert change 24070 for now (-C on the #! line)
Branch: maint-5.8/perl
! pod/perldiag.pod toke.c
____________________________________________________________________________
[ 24634] By: nicholas on 2005/05/30 13:01:42
Log: Integrate:
[ 24629]
Subject: [perl #36037] Perl 5.8.7-RC1 build problems on LynxOS
From: Olli Savia (via RT) <perlbug-followup@perl.org>
Date: 30 May 2005 10:59:35 -0000
Message-ID: <rt-3.0.11-36037-113779.5.23037641993746@perl.org>
Branch: maint-5.8/perl
!> util.c
____________________________________________________________________________
[ 24632] By: nicholas on 2005/05/30 12:17:28
Log: Integrate:
[ 24618]
Subject: [PATCH configure.com] compiler awareness week
From: "Craig A. Berry" <craigberry@mac.com>
Date: Sun, 29 May 2005 12:43:09 -0500
Message-Id: <4299FF2D.90209@mac.com>
Branch: maint-5.8/perl
!> configure.com
____________________________________________________________________________
[ 24620] By: nicholas on 2005/05/29 20:56:57
Log: Update Changes
Branch: maint-5.8/perl
! Changes patchlevel.h
____________________________________________________________________________
[ 24616] By: nicholas on 2005/05/29 14:57:28
Log: Integrate:
[ 24615]
Teach buildtoc about README.openbsd, and regenerate various makefiles.
Branch: maint-5.8/perl
! pod/perltoc.pod vms/descrip_mms.template win32/Makefile
! win32/makefile.mk
!> pod.lst pod/perl.pod
____________________________________________________________________________
[ 24611] By: nicholas on 2005/05/27 22:23:55
Log: Due to integration ordering errors, README.openbsd was missing from
MANIFEST. Fixed.
Branch: maint-5.8/perl
! MANIFEST
____________________________________________________________________________
[ 24604] By: nicholas on 2005/05/27 14:57:31
Log: Update perl587delta with the updated module versions.
Branch: maint-5.8/perl
! pod/perl587delta.pod
____________________________________________________________________________
[ 24603] By: nicholas on 2005/05/27 14:55:04
Log: Update TOC and MANIFSET
Branch: maint-5.8/perl
! MANIFEST pod/perltoc.pod
____________________________________________________________________________
[ 24602] By: nicholas on 2005/05/27 14:53:41
Log: This appears to be missing.
Branch: maint-5.8/perl
! embedvar.h
____________________________________________________________________________
[ 24601] By: nicholas on 2005/05/27 12:35:55
Log: Update Changes
Branch: maint-5.8/perl
! Changes patchlevel.h
____________________________________________________________________________
[ 24600] By: nicholas on 2005/05/27 11:20:03
Log: Integrate:
[ 24360]
Fix [perl #35162] $SIG{__DIE__} = 'IGNORE' is base.pm is illegal
[ 24585]
Subject: [PATCH] bytes.pm doesn't check undefined subroutine calling
From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
Date: Thu, 26 May 2005 23:46:35 +0900
Message-Id: <20050526234321.92F1.BQW10602@nifty.com>
Branch: maint-5.8/perl
!> lib/base.pm lib/bytes.pm lib/bytes.t
____________________________________________________________________________
[ 24599] By: nicholas on 2005/05/27 11:04:31
Log: Integrate:
[ 24579]
Subject: [PATCH] MPE/iX has no lchown()
From: Jarkko Hietaniemi <jhietaniemi@gmail.com>
Date: Thu, 26 May 2005 08:36:19 +0300
Message-Id: <42956053.4010200@gmail.com>
Branch: maint-5.8/perl
!> hints/mpeix.sh
____________________________________________________________________________
[ 24598] By: nicholas on 2005/05/27 10:52:16
Log: Integrate:
[ 24541]
Subject: Re: [PATCH 5.8.7 RC1] lib/Carp.t todo for VMS
From: Michael G Schwern <schwern@pobox.com>
Date: May 20, 2005 10:09 PM
Message-ID: <20050520200900.GB13473@windhund.schwern.org>
Branch: maint-5.8/perl
!> lib/Carp.t
____________________________________________________________________________
[ 24597] By: nicholas on 2005/05/27 10:38:37
Log: Integrate:
[ 24317]
Fix typo, noticed by Randal Schwartz
[ 24345]
Remove confusing punctuation
(spotted by David Rigaudiere)
[ 24354]
Subject: [PATCH] Small patch to perlport.pod
From: Sébastien Aperghis-Tramoni <maddingue@free.fr>
Date: Thu, 28 Apr 2005 02:24:04 +0200
Message-Id: <D38E89F3-B77B-11D9-B91D-000502F3279F@free.fr>
[ 24368]
Clarify the definition of the 'w' pack format, as suggested by
Alexey Toptygin.
[ 24381]
document the internals of exception handling
[ 24383]
Subject: [PATCH] perlvar.pod verbatim paragraph first line does not start with a space
From: Offer Kaye <offer.kaye@gmail.com>
Date: Wed, 4 May 2005 15:10:37 +0300
Message-Id: <56942505050405101bfe678d@mail.gmail.com>
[ 24429]
Update the comment describing arenas.
[ 24430]
Fix typo (bug #35368)
[ 24437]
Subject: [PATCH] perlop.pod nit
From: Steve Peters <steve@fisharerojo.org>
Date: Tue, 10 May 2005 09:41:01 -0500
Message-Id: <20050510144101.GA21362@mccoy.peters.homeunix.org>
[ 24449]
Subject: [perl #33765] [PATCH] perlop: mention why 'print !!0' doesn't
From: Steve Peters via RT <perlbug-followup@perl.org>
Date: 11 May 2005 16:58:22 -0000
Message-Id: <rt-3.0.11-33765-112475.14.5633321030279@perl.org>
Subject: [perl #33766] [PATCH] perldoc -f split lacks basic null example
From: Steve Peters via RT <perlbug-followup@perl.org>
Date: 11 May 2005 17:13:29 -0000
Message-Id: <rt-3.0.11-33766-112476.1.84217630998887@perl.org>
[ 24450]
Rework documentation of split(//,...)
[ 24493]
Clarify definition of octal literals
(thanks to Olivier Blin)
[ 24496]
Subject: [PATCH] Eliminate radically out of date CHANGES from perlport
From: Michael G Schwern <schwern@pobox.com>
Date: Mon, 16 May 2005 15:17:05 -0700
Message-ID: <20050516221705.GA212@windhund.schwern.org>
Subject: [PATCH] Eliminate function signatures from perlport
From: Michael G Schwern <schwern@pobox.com>
Date: Mon, 16 May 2005 15:24:18 -0700
Message-ID: <20050516222418.GA422@windhund.schwern.org>
[ 24516]
Fix a typo
[ 24563]
Documentation nit on @-, found by Guillaume Rousse
(plus POD markup simplification, for readability with pod2text)
[ 24564]
Correct the description of pte_arenaroot
[ 24593]
Subject: [PATCH] Re: [perl #35420] localtime corruption
From: Michael G Schwern <schwern@pobox.com>
Date: Thu, 26 May 2005 13:39:38 -0700
Message-ID: <20050526203938.GG11558@windhund.schwern.org>
Branch: maint-5.8/perl
!> hv.h intrpvar.h pod/perldata.pod pod/perlfunc.pod
!> pod/perlhack.pod pod/perlop.pod pod/perlport.pod
!> pod/perlreftut.pod pod/perlsyn.pod pod/perlvar.pod sv.c
____________________________________________________________________________
[ 24589] By: nicholas on 2005/05/26 15:41:38
Log: Integrate:
[ 24517]
Upgrade to Math::BigInt 1.77
Branch: maint-5.8/perl
!> lib/Math/BigFloat.pm lib/Math/BigInt.pm
!> lib/Math/BigInt/Calc.pm lib/Math/BigInt/t/bare_mbi.t
!> lib/Math/BigInt/t/bigfltpm.inc lib/Math/BigInt/t/bigintpm.inc
!> lib/Math/BigInt/t/bigintpm.t lib/Math/BigInt/t/sub_mbi.t
____________________________________________________________________________
[ 24587] By: nicholas on 2005/05/26 15:26:52
Log: Subject: [PATCH] perl587delta.pod - missing "=" in item
From: Offer Kaye <offer.kaye@gmail.com>
Message-ID: <5694250505220218e21b8ee@mail.gmail.com>
Date: Sun, 22 May 2005 12:18:34 +0300
Branch: maint-5.8/perl
! pod/perl587delta.pod
____________________________________________________________________________
[ 24586] By: nicholas on 2005/05/26 15:24:59
Log: Not the RC any more
Branch: maint-5.8/perl
! patchlevel.h
____________________________________________________________________________
[ 24515] By: nicholas on 2005/05/20 16:42:19
Log: The dangers of cut and paste
Branch: maint-5.8/perl
! pod/perlhist.pod
____________________________________________________________________________
[ 24502] By: nicholas on 2005/05/18 16:08:53
Log: Making history (1 line at a time)
Branch: maint-5.8/perl
! pod/perlhist.pod
____________________________________________________________________________
[ 24494] By: nicholas on 2005/05/17 16:17:16
Log: Integrate:
[ 24231]
Upgrade to Encode 2.0902
[ 24490]
Upgrade to Encode 2.10
Branch: maint-5.8/perl
+> ext/Encode/t/utf8strict.t
! pod/perl587delta.pod
!> 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/lib/Encode/Alias.pm
!> ext/Encode/t/Aliases.t ext/Encode/t/fallback.t
____________________________________________________________________________
[ 24488] By: nicholas on 2005/05/16 16:04:43
Log: D'oh. Steve puts me right once more.
Branch: maint-5.8/perl
! pod/perl587delta.pod
____________________________________________________________________________
[ 24487] By: nicholas on 2005/05/16 15:46:10
Log: Summon more, different, fruit.
Branch: maint-5.8/perl
! patchlevel.h
____________________________________________________________________________
[ 24486] By: nicholas on 2005/05/16 15:36:13
Log: Update perldelta.
Branch: maint-5.8/perl
! pod/perl587delta.pod
____________________________________________________________________________
[ 24485] By: nicholas on 2005/05/16 15:35:24
Log: ++$Carp::VERSION;
Branch: maint-5.8/perl
! lib/Carp.pm
____________________________________________________________________________
[ 24484] By: nicholas on 2005/05/16 15:28:58
Log: Update Changes
Branch: maint-5.8/perl
! Changes patchlevel.h
____________________________________________________________________________
[ 24483] By: nicholas on 2005/05/16 15:19:24
Log: Integrate:
[ 24347]
Remove temporary clean-up from Win32 makefiles
Change 22501 temporarily added some clean-up to the Win32 makefiles
which was only meant to stay until cpan rt #5616 was fixed. It is
now fixed (in EU-MM 6.22, which in turn has been in blead for a
while now), so these hacks are no longer required.
This change is also good for maint, which currently contains EU-MM
6.17, which didn't create the blibdirs.exists files in question
anyway.
[ 24349]
Silence a compilation warning on Win32
[ 24374]
Fix croak() and confess() so that they don't clobber $!
(plus tests to check this)
[ 24453]
Subject: [PATCH] Add Win32::GetFileVersion() function
From: "Jan Dubois" <jand@ActiveState.com>
Date: Wed, 11 May 2005 22:30:37 -0700
Message-Id: <200505120530.j4C5UhpX031152@smtp3.ActiveState.com>
[ 24454]
Remove a couple of unreferenced local variables
[ 24482]
Bump the version number on Win32::Win32
Branch: maint-5.8/perl
!> lib/Carp.pm lib/Carp.t pp.c win32/Makefile
!> win32/ext/Win32/Win32.pm win32/ext/Win32/Win32.xs
!> win32/makefile.mk
____________________________________________________________________________
[ 24481] By: nicholas on 2005/05/16 15:02:49
Log: Missed some of Steve's patches
Branch: maint-5.8/perl
! patchlevel.h
____________________________________________________________________________
[ 24479] By: nicholas on 2005/05/16 14:29:35
Log: This is RC1, for favourable values of $fruit
Branch: maint-5.8/perl
! patchlevel.h
____________________________________________________________________________
[ 24478] By: nicholas on 2005/05/16 13:43:44
Log: Update perldelta
Branch: maint-5.8/perl
! pod/perl587delta.pod
____________________________________________________________________________
[ 24477] By: nicholas on 2005/05/16 13:29:52
Log: Update Changes
Branch: maint-5.8/perl
! Changes patchlevel.h
____________________________________________________________________________
[ 24474] By: nicholas on 2005/05/16 08:44:34
Log: Integrate:
[ 24471]
Subject: [PATCH] Minor tweak to via
From: Andy Lester <andy@petdance.com>
Message-ID: <20050513163952.GA20167@petdance.com>
Date: Fri, 13 May 2005 11:39:52 -0500
from a bug report and patch by Matt Lawrence
Branch: maint-5.8/perl
!> ext/PerlIO/via/via.xs
____________________________________________________________________________
[ 24473] By: nicholas on 2005/05/16 08:27:52
Log: Integrate:
[ 24326]
Upgrade to CGI.pm 3.08
[ 24470]
Upgrade to CGI.pm 3.10
Branch: maint-5.8/perl
+> lib/CGI/t/can.t
!> MANIFEST lib/CGI.pm lib/CGI/Carp.pm lib/CGI/Changes
!> lib/CGI/Cookie.pm lib/CGI/Pretty.pm lib/CGI/t/form.t
____________________________________________________________________________
[ 24466] By: nicholas on 2005/05/13 21:36:27
Log: Update META.yml
Branch: maint-5.8/perl
! META.yml
____________________________________________________________________________
[ 24464] By: nicholas on 2005/05/13 19:49:02
Log: Subject: RE: 5.8.7-tobe fails to compile on AIX 4.3.3
From: "Jan Dubois" <jand@ActiveState.com>
Message-Id: <200505131921.j4DJLgG5007986@smtp3.ActiveState.com>
Date: Fri, 13 May 2005 12:21:40 -0700
Branch: maint-5.8/perl
! reentr.inc reentr.pl
____________________________________________________________________________
[ 24463] By: nicholas on 2005/05/13 15:32:16
Log: The danger of cargo cult is that you miss things.
Branch: maint-5.8/perl
! README.vms
____________________________________________________________________________
[ 24462] By: nicholas on 2005/05/13 14:50:56
Log: Cargo cult 5.8.7 upgrade
Branch: maint-5.8/perl
! Cross/config.sh-arm-linux META.yml NetWare/Makefile README.os2
! README.vms epoc/createpkg.pl patchlevel.h plan9/config.plan9
! pod/perl585delta.pod vos/build.cm vos/config.alpha.def
! vos/config.alpha.h vos/config.ga.def vos/config.ga.h
! vos/install_perl.cm win32/Makefile win32/config_H.bc
! win32/config_H.gc win32/config_H.vc win32/config_H.vc64
! win32/makefile.mk wince/Makefile.ce
____________________________________________________________________________
[ 24458] By: nicholas on 2005/05/12 21:34:03
Log: Fix from Steve Peters
Branch: maint-5.8/perl
! reentr.inc reentr.pl
____________________________________________________________________________
[ 24457] By: nicholas on 2005/05/12 20:04:57
Log: Subject: Re: [PATCH] reentr.h changes so threaded Perl's compile on OpenBSD 3.7
From: Steve Peters <steve@fisharerojo.org>
Message-ID: <20050512201532.GA30279@mccoy.peters.homeunix.org>
Date: Thu, 12 May 2005 15:15:32 -0500
Branch: maint-5.8/perl
! reentr.h reentr.inc reentr.pl
____________________________________________________________________________
[ 24456] By: nicholas on 2005/05/12 19:53:25
Log: Integrate:
[ 24446]
Subject: Hints changes for OS X 10.4
From: Michael G Schwern <schwern@pobox.com>
Date: Tue, 10 May 2005 18:10:47 -0700
Message-ID: <20050511011047.GA23955@windhund.schwern.org>
Branch: maint-5.8/perl
!> hints/darwin.sh
____________________________________________________________________________
[ 24448] By: nicholas on 2005/05/11 14:27:57
Log: Integrate:
[ 24433]
Subject: [PATCH] reentr.h changes so threaded Perl's compile on OpenBSD 3.7
From: Steve Peters <steve@fisharerojo.org>
Date: Mon, 9 May 2005 21:10:49 -0500
Message-Id: <20050510021049.GA20147@mccoy.peters.homeunix.org>
[ 24441]
Subject: Re: [PATCH] reentr.h changes so threaded Perl's compile on OpenBSD 3.7
From: Steve Peters <steve@fisharerojo.org>
Date: Tue, 10 May 2005 12:44:13 -0500
Message-Id: <20050510174413.GA19686@mccoy.peters.homeunix.org>
[ 24442]
Regenerate reentr.[ch]
(plus some edits to cope with the maint/blead differences)
Branch: maint-5.8/perl
+> README.openbsd
! reentr.h reentr.inc reentr.pl
!> MANIFEST
____________________________________________________________________________
[ 24447] By: nicholas on 2005/05/11 13:58:12
Log: Integrate:
[ 24176]
cast to/from (void *) in the re-entrant code. Now watch the smoke rise.
Branch: maint-5.8/perl
! reentr.c reentr.h reentr.inc
!> reentr.pl
____________________________________________________________________________
[ 24428] By: nicholas on 2005/05/09 13:27:16
Log: Integrate:
[ 24425]
Change 24413 should have updated makedef.pl with the knowledge that 2
symbols are ithreads only.
Branch: maint-5.8/perl
!> makedef.pl
____________________________________________________________________________
[ 24415] By: nicholas on 2005/05/08 05:45:28
Log: Integrate:
[ 24404]
Allocate pointer table entries (for ithread cloning) from an arena
[ 24405]
Make the arena size changeable at compile time, and up the default by
a factor of 4.
[ 24413]
The ptr_table arena variables and code is only needed for ithreads.
(plus move the 2 new variables to the end of intrpvar.h to preserve
bincompat)
Branch: maint-5.8/perl
! intrpvar.h
!> embedvar.h hv.c perl.h perlapi.h sv.c
____________________________________________________________________________
[ 24400] By: nicholas on 2005/05/05 15:48:01
Log: Integrate:
[ 24396]
Bump B version numbers
[ 24398]
Bump version numbers
[ 24399]
Bump versions of non dual-life modules
plus ext/threads/shared/shared.pm version number from 24248
Branch: maint-5.8/perl
!> ext/B/B.pm ext/B/B/Concise.pm ext/B/B/Deparse.pm
!> ext/B/B/Disassembler.pm ext/B/B/Terse.pm
!> ext/B/t/OptreeCheck.pm ext/Devel/DProf/DProf.pm
!> ext/IO/lib/IO/File.pm ext/IO/lib/IO/Socket/INET.pm
!> ext/XS/APItest/APItest.pm ext/threads/shared/shared.pm
!> lib/File/Path.pm lib/FileCache.pm lib/Pod/Html.pm
!> lib/Symbol.pm lib/utf8.pm win32/FindExt.pm
____________________________________________________________________________
[ 24395] By: nicholas on 2005/05/05 13:17:06
Log: It's a good job that Steve Hay is paying attention.
Branch: maint-5.8/perl
! pod/perl587delta.pod
____________________________________________________________________________
[ 24394] By: nicholas on 2005/05/05 12:41:31
Log: Subject: [PATCH perl-5.8.7-tobe] relating to 23767
From: Robin Barker <Robin.Barker@npl.co.uk>
Message-ID: <533D273D4014D411AB1D00062938C4D90849C679@hotel.npl.co.uk>
Date: Wed, 4 May 2005 18:21:39 +0100
Branch: maint-5.8/perl
! Porting/pumpkin.pod perl.h sv.c
____________________________________________________________________________
[ 24391] By: nicholas on 2005/05/05 11:31:18
Log: Changes and improvements suggested by Ronald J Kimball, Dave Mitchell,
Steve Hay, Aaron Sherman, Hugo van der Sanden and chromatic.
Branch: maint-5.8/perl
! pod/perl587delta.pod
____________________________________________________________________________
[ 24356] By: nicholas on 2005/04/30 17:02:19
Log: Integrate:
[ 24355]
Put back INSTALL_PREFIX and INSTALL_PREFIX_EXP as they were
unintendedly removed by patch #23435
Branch: maint-5.8/perl
!> config_h.SH
____________________________________________________________________________
[ 24346] By: nicholas on 2005/04/28 09:39:31
Log: Integrate:
[ 24339]
A couple of warning fixes by Gisle
Branch: maint-5.8/perl
!> pp.c pp_sys.c
____________________________________________________________________________
[ 24337] By: nicholas on 2005/04/27 12:31:32
Log: Integrate:
[ 24310]
Subject: [PATCH] lib/Time/Local.t: time_t is unsigned on VMS
From: "Craig A. Berry" <craigberry@mac.com>
Date: Sat, 23 Apr 2005 18:25:52 -0500
Message-ID: <426AD980.2010801@mac.com>
Branch: maint-5.8/perl
!> lib/Time/Local.t
____________________________________________________________________________
[ 24336] By: nicholas on 2005/04/27 11:02:09
Log: Remove a const that shouldn't have been integrated to maint
Branch: maint-5.8/perl
! util.c
____________________________________________________________________________
[ 24335] By: nicholas on 2005/04/27 10:32:26
Log: Integrate:
[ 24319]
Provide $Config{libswanted_uselargefiles} on Win32
This fixes some test failures introduced by change 24271.
[ 24321]
Update location to fetch dmake from in README.win32
Use the generic search.cpan.org URL so that the latest version is
always found
Branch: maint-5.8/perl
!> README.win32 win32/config.bc win32/config.gc win32/config.vc
!> win32/config.vc64
____________________________________________________________________________
[ 24332] By: nicholas on 2005/04/26 16:02:43
Log: Integrate:
[ 24247]
Add CLONE_SKIP() class method to allow individual classes to skip
cloning objects during thread creation
Branch: maint-5.8/perl
!> dump.c ext/threads/t/thread.t pod/perlmod.pod sv.c sv.h
____________________________________________________________________________
[ 24331] By: nicholas on 2005/04/26 15:05:07
Log: Missing > spotted by Rafael. That will teach me not to run podchecker.
Branch: maint-5.8/perl
! pod/perl587delta.pod
____________________________________________________________________________
[ 24330] By: nicholas on 2005/04/26 15:01:47
Log: Missing , spotted by Rafael
Branch: maint-5.8/perl
! pod/perl587delta.pod
____________________________________________________________________________
[ 24329] By: nicholas on 2005/04/26 14:43:44
Log: Stab 1 at the perl delta
Branch: maint-5.8/perl
! pod/perl587delta.pod
____________________________________________________________________________
[ 24327] By: nicholas on 2005/04/26 13:01:18
Log: Correct description of change 24297
Branch: maint-5.8/perl
! Changes
____________________________________________________________________________
[ 24324] By: nicholas on 2005/04/25 15:04:43
Log: Integrate:
[ 24314]
Upgrade to Test::Harness 2.48
[ 24315]
Add files missing in 24314
Branch: maint-5.8/perl
+> lib/Test/Harness/Point.pm lib/Test/Harness/t/from_line.t
+> lib/Test/Harness/t/point-parse.t lib/Test/Harness/t/point.t
+> lib/Test/Harness/t/version.t
!> MANIFEST lib/Test/Harness.pm lib/Test/Harness/Changes
!> lib/Test/Harness/Straps.pm lib/Test/Harness/TAP.pod
!> lib/Test/Harness/t/00compile.t
!> lib/Test/Harness/t/strap-analyze.t lib/Test/Harness/t/strap.t
!> t/lib/sample-tests/skip
____________________________________________________________________________
[ 24323] By: nicholas on 2005/04/25 14:51:24
Log: Integrate:
[ 24307]
Subject: [PATCH] Fix for warnings in util.c/Perl_init_tm()
From: Steve Peters <steve@fisharerojo.org>
Date: Fri, 22 Apr 2005 22:36:03 -0500
Message-Id: <20050423033603.GA32547@mccoy.peters.homeunix.org>
localtime() can return null
[ 24308]
Save state when auto-generating #ifdef PERL_CORE and PERL_CORE/PERL_EXT
reducing embed.h by about 10%.
[ 24309]
Variable declarations can't come after statements in C89.
Branch: maint-5.8/perl
! embed.h
!> embed.pl util.c
____________________________________________________________________________
[ 24322] By: nicholas on 2005/04/25 13:25:15
Log: Integrate:
[ 24301]
Subject: [PATCH] t/uni/class.t -- update VMS test skippage
From: "Craig A. Berry" <craigberry@mac.com>
Message-ID: <42692501.6090809@mac.com>
Date: Fri, 22 Apr 2005 11:23:29 -0500
[ 24320]
Subject: [PATCH] mktables.lst and related stuff (was Re: [PATCH] Unicode 4.1.0)
From: demerphq <demerphq@gmail.com>
Message-ID: <9b18b31105042412352fcf2bc5@mail.gmail.com>
Date: Sun, 24 Apr 2005 21:35:35 +0200
Branch: maint-5.8/perl
!> lib/unicore/README.perl lib/unicore/mktables
!> lib/unicore/mktables.lst t/uni/class.t
____________________________________________________________________________
[ 24306] By: nicholas on 2005/04/22 22:06:04
Log: Update Changes
Branch: maint-5.8/perl
! Changes patchlevel.h
____________________________________________________________________________
[ 24305] By: nicholas on 2005/04/22 21:42:56
Log: Run pod/buildtoc --build-all
Branch: maint-5.8/perl
! MANIFEST pod/perltoc.pod
____________________________________________________________________________
[ 24304] By: nicholas on 2005/04/22 21:41:25
Log: Run regen.pl
Branch: maint-5.8/perl
! embed.h pod/perlapi.pod
____________________________________________________________________________
[ 24302] By: nicholas on 2005/04/22 21:25:13
Log: Integrate:
[ 23768]
Subject: Re: [PATCH] Remove Carp from warnings.pm
From: Jim Cromie <jim.cromie@gmail.com>
Date: Mon, 3 Jan 2005 06:36:16 -0700
Message-ID: <cfe85dfa05010305367445dee6@mail.gmail.com>
[ 23819]
Fix dependencies in ext/B/Makefile.PL
(bug #8254, fix by Alan Burlison)
[ 23841]
Subject: [PATCH] doc SVt_PVLV <=> SVt_PVGV change version in B.pm
From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
Date: Sun, 19 Dec 2004 23:57:56 -0800
Message-ID: <20041220075754.GA800@efn.org>
[ 23845]
Subject: [perl #32967] [PATCH] Re: More B bugs: svref_2object
From: Stephen McCamant <smcc@OCF.Berkeley.EDU>
Date: Tue, 28 Dec 2004 16:01:49 -0800
Message-ID: <16849.62445.116153.489478@apocalypse.OCF.Berkeley.EDU>
[ 23891]
Subject: Re: [patch] decrufting OptreeCheck stuff
From: Jim Cromie <jcromie@divsol.com>
Date: Sun, 16 Jan 2005 17:16:00 -0700
Message-ID: <41EB03C0.7030509@divsol.com>
(with minor typos fixed)
[ 23894]
Calculate the number of tests in one place, so that the skip()s will
always agree with the plan()s
[ 23973]
Subject: Re: [PATCH] Re: perl winpid?
From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
Date: Tue, 15 Feb 2005 20:45:13 -0800
Message-ID: <20050216044512.GA2516@efn.org>
[ 23983]
Subject: [perl #32968] [PATCH] Re: B::walkoptree segfaults
From: Stephen McCamant <smcc@MIT.EDU>
Date: Tue, 28 Dec 2004 10:13:50 -0800
Message-ID: <16849.41566.887352.677148@apocalypse.OCF.Berkeley.EDU>
[ 24040]
Subject: [PATCH] $B::Disassembler::VERSION
From: Alexey Tourbin <at@altlinux.ru>
Date: Thu, 17 Mar 2005 19:02:38 +0300
Message-ID: <20050317160238.GN5825@solemn.turbinal.org>
[ 24213]
Mangle the expected output correctly for both 5.9 and 5.8
[ 24286]
For now, TODO the 2 tests that fail on 5.8.x
Branch: maint-5.8/perl
!> ext/B/B.pm ext/B/B.xs ext/B/B/Concise.pm
!> ext/B/B/Disassembler.pm ext/B/Makefile.PL
!> ext/B/t/OptreeCheck.pm ext/B/t/f_map.t ext/B/t/f_sort.t
!> ext/B/t/optree_check.t ext/B/t/optree_concise.t
!> ext/B/t/optree_samples.t ext/B/t/optree_sort.t
!> ext/B/t/optree_specials.t ext/B/t/optree_varinit.t
!> ext/B/t/stash.t op.h
____________________________________________________________________________
[ 24299] By: nicholas on 2005/04/22 15:56:13
Log: Integrate:
[ 24254]
Don't set things to zero twice. Once is enough. (see also change 15255)
Branch: maint-5.8/perl
!> sv.c
____________________________________________________________________________
[ 24298] By: nicholas on 2005/04/22 15:40:24
Log: Integrate:
[ 23228]
Tweak 'h2xs -h' output.
Branch: maint-5.8/perl
!> utils/h2xs.PL
____________________________________________________________________________
[ 24297] By: nicholas on 2005/04/22 15:27:52
Log: Integrate:
[ 24273]
[perl #34902] Text::Wrap::wrap() fails with non-space separator
[ 24274]
bump version number in Text::Wrap after change #24273
[ 24275]
Sigh - really bump Text::Wrap version number this time.
Branch: maint-5.8/perl
!> lib/Text/TabsWrap/t/wrap.t lib/Text/Wrap.pm
____________________________________________________________________________
[ 24296] By: nicholas on 2005/04/22 15:13:08
Log: Integrate:
[ 23820]
Subject: [PATCH] Make Data::Dumper work when dynamic extensions are not available
From: "Jos I. Boumans" <kane@xs4all.net>
Date: Tue, 18 Jan 2005 15:12:03 +0100
Message-Id: <ED6BA2C4-695A-11D9-B09C-000A95EF62E2@xs4all.net>
[ 23851]
Fix spurious warnings emitted by XSLoader via Data::Dumper
Branch: maint-5.8/perl
!> ext/Data/Dumper/Dumper.pm
____________________________________________________________________________
[ 24295] By: nicholas on 2005/04/22 14:59:04
Log: Integrate:
[ 23671]
Subject: [PATCH] Data::Dumper Freezer fixes
From: Sam Tregar <sam@tregar.com>
Date: Sun, 19 Dec 2004 14:40:25 -0500 (EST)
Message-ID: <Pine.LNX.4.61.0412191434490.7660@hillmont.dreamhost.com>
and bump Data::Dumper's VERSION
Branch: maint-5.8/perl
+> ext/Data/Dumper/t/freezer.t
!> MANIFEST ext/Data/Dumper/Dumper.pm ext/Data/Dumper/Dumper.xs
____________________________________________________________________________
[ 24294] By: nicholas on 2005/04/22 14:41:59
Log: Restore 23347 and 23349 then integrate:
[ 23469]
Mostly revert change #23347 (keep the test suite, fixed),
having decided that it wasn't a correct fix for bug #31793.
[ 23470]
Subject: Re: [PATCH perl-current] Re: [perl #31793] Data::Dumper: Useqq interacts badly with overloading
From: Rick Delaney <rick@bort.ca>
Date: Wed, 3 Nov 2004 19:46:16 -0500
Message-ID: <20041104004616.GA11214@biff.bort.ca>
Branch: maint-5.8/perl
! lib/overload.pm lib/overload.t
____________________________________________________________________________
[ 24293] By: nicholas on 2005/04/22 14:24:40
Log: We love hard coded test numbers, we do.
Branch: maint-5.8/perl
! t/op/substr.t
____________________________________________________________________________
[ 24292] By: nicholas on 2005/04/22 14:15:59
Log: Integrate:
[ 24234]
H.Merijn changed e-mail
[ 24235]
Mandrakesoft is now Mandriva
Branch: maint-5.8/perl
!> AUTHORS Porting/checkAUTHORS.pl Porting/patching.pod
!> README.aix README.hpux
____________________________________________________________________________
[ 24291] By: nicholas on 2005/04/22 14:02:56
Log: Integrate:
[ 18829]
Patch by Salvador Fandiño to read the warning mask
returned by caller() and ${^WARNING_BITS} from
$warnings::Bits{all} and not from the hardcoded core
constant. (This mask could have been extended by
warnings::register.) Plus tests.
[ 24215]
Fix [perl #34892] Segfault on &DB::sub declared but not defined
[ 24237]
Fix for:
[perl #34934] perl 5.8.5 on x86 and x86-64 hang at compile-time
From: bstrand@switchmanagement.com (via RT) <perlbug-followup@perl.org>
Date: 12 Apr 2005 19:12:58 -0000
Message-ID: <rt-3.0.11-34934-110595.15.9181274318682@perl.org>
This syntax error now produces a panic message.
[ 24265]
Subject: [perl #35059] [PATCH] caller() skips frames (such as eval() frames) if $^P set
From: glasser@tang-eleven-seventy-nine.mit.edu (via RT) <perlbug-followup@perl.org>
Date: 20 Apr 2005 19:28:14 -0000
Message-Id: <rt-3.0.11-35059-111134.0.304511316819145@perl.org>
improved version of change 21842 that copes with glob DB::sub
existing but &DB::sub not existing.
[ 24270]
[perl #34976] substr uses utf8 length cache incorrectly
[ 24287]
There's no point listing '-f' in --help output
when perl isn't built with USE_SITECUSTOMIZE, since it might
confuse users about $sitelib/sitecustomize.pl being sourced
at startup.
Branch: maint-5.8/perl
! t/op/caller.t
!> mg.c op.c perl.c pod/perldiag.pod pp_ctl.c pp_hot.c sv.c
!> t/op/substr.t
____________________________________________________________________________
[ 24289] By: nicholas on 2005/04/22 13:01:52
Log: Integrate:
[ 24166]
Upgrade to Unicode::Normalize 0.32
Branch: maint-5.8/perl
!> ext/Unicode/Normalize/Changes
!> ext/Unicode/Normalize/Makefile.PL
!> ext/Unicode/Normalize/Normalize.pm
!> ext/Unicode/Normalize/Normalize.xs
!> ext/Unicode/Normalize/mkheader ext/Unicode/Normalize/t/form.t
!> ext/Unicode/Normalize/t/norm.t ext/Unicode/Normalize/t/test.t
____________________________________________________________________________
[ 24288] By: nicholas on 2005/04/22 12:50:42
Log: Integrate:
[ 24155]
Subject: [Patch] Math::BigInt v1.76, Math::BigRat v0.15, bignum v0.17
From: Tels <nospam-abuse@bloodgate.com>
Date: Sun, 3 Apr 2005 10:43:10 +0200
Message-Id: <200504031043.12273@bloodgate.com>
Branch: maint-5.8/perl
!> lib/Math/BigFloat.pm lib/Math/BigInt.pm
!> lib/Math/BigInt/Calc.pm lib/Math/BigInt/t/_e_math.t
!> lib/Math/BigInt/t/bare_mbf.t lib/Math/BigInt/t/bigfltpm.inc
!> lib/Math/BigInt/t/bigfltpm.t lib/Math/BigInt/t/bigintpm.t
!> lib/Math/BigInt/t/calling.t lib/Math/BigInt/t/config.t
!> lib/Math/BigInt/t/req_mbf0.t lib/Math/BigInt/t/req_mbfw.t
!> lib/Math/BigInt/t/sub_mbf.t lib/Math/BigInt/t/trap.t
!> lib/Math/BigInt/t/with_sub.t lib/Math/BigRat.pm
!> lib/Math/BigRat/t/bigratpm.t lib/Math/BigRat/t/requirer.t
!> lib/bigint.pm lib/bignum.pm lib/bigrat.pm
____________________________________________________________________________
[ 24285] By: nicholas on 2005/04/22 12:36:53
Log: Integrate:
[ 24139]
Subject: Re: [PATCH] Re: [perl #34632] perlintro: "Comments start with a hash symbol"
From: Steven Schubiger <steven@accognoscere.org>
Date: Sat, 2 Apr 2005 19:37:11 +0200 (CEST)
Message-Id: <200504021737.j32HbBNS000652@accognoscere.homeunix.org>
[ 24147]
Subject: Re: [PATCH] Re: [perl #34632] perlintro: "Comments start with ahash symbol"
From: Steven Schubiger <steven@accognoscere.org>
Date: Sun, 3 Apr 2005 11:47:22 +0200 (CEST)
Message-Id: <200504030947.j339lMgp010306@accognoscere.homeunix.org>
[ 24187]
Subject: [perl #34699] documentation bug in "man perlpodspec"
From: "raf@tradingpost.com.au (via RT)" <perlbug-followup@perl.org>
Date: 7 Apr 2005 00:20:31 -0000
Message-ID: <rt-3.0.11-34699-110174.9.79475562169704@perl.org>
[ 24190]
Subject: perldbtty$$ location
From: Gisle Aas <gisle@ActiveState.com>
Date: 06 Apr 2005 01:49:54 -0700
Message-ID: <lr3bu48f2l.fsf@caliper.activestate.com>
(and remove trailing whitespace)
[ 24194]
Mention that select() returns -1 on error,
as suggested by Hernan Perez Masci
[ 24209]
Subject: Re: [PATCH] Re: [perl #24119] CPAN.pm error in Win32: uses rename() not File::Copy::move
From: Steven Schubiger <steven@accognoscere.org>
Date: Thu, 7 Apr 2005 22:38:25 +0200 (CEST)
Message-Id: <200504072038.j37KcPXY011755@accognoscere.homeunix.org>
(with arguments changed to match perlfunc.pod)
[ 24224]
Subject: [PATCH] perlfunc.pod: incomplete select description
From: Hernan Perez Masci <hmasci@uolsinectis.com.ar>
Date: Fri, 8 Apr 2005 15:28:28 -0300
Message-Id: <200504081528.28307.hmasci@uolsinectis.com.ar>
[ 24238]
Update the outdated info in "Minimizing the Perl installation"
[ 24266]
change misleading syslog() example
[ 24267]
In change 24266 I failed to actually change anything. Sigh.
Branch: maint-5.8/perl
!> INSTALL ext/Sys/Syslog/Syslog.pm pod/perldebug.pod
!> pod/perlfunc.pod pod/perlpodspec.pod pod/perlport.pod
!> pod/perltrap.pod
____________________________________________________________________________
[ 24283] By: nicholas on 2005/04/22 11:24:40
Log: Integrate:
[ 21532]
...
Plus a small fix to t/TEST to recognize the added TODO test
as a TODO test.
[ 24078]
FreeBSD NDBM appears to generate files ending .db, so be prepared to
clean this variant up as well.
[ 24173]
1. t/TEST now deals with SKIP as if it was TODO. This complies to TAP
2. Removed the depricated 'my $foo if expr' there
[ 24192]
Subject: Re: [PATCH] Re: [perl #34650] perldoc -f my should perhaps mention BEGIN and END
From: Abigail <abigail@abigail.nl>
Date: Wed, 6 Apr 2005 01:41:55 +0200
Message-ID: <20050405234154.GG8680@abigail.nl>
Branch: maint-5.8/perl
!> lib/Memoize/t/tie_ndbm.t t/TEST t/japh/abigail.t
____________________________________________________________________________
[ 24282] By: nicholas on 2005/04/22 11:02:14
Log: Integrate:
[ 24053]
Subject: Re: [perl #34195] Regex: Alternations within negative lookahead assertions
From: hv@crypt.org
Date: Mon, 21 Feb 2005 17:59:49 +0000
Message-Id: <200502211759.j1LHxnC22894@zen.crypt.org>
[ 24055]
Resubmit change #24053.
[ 24067]
Revert change #24055, which was producing a segfault in installman
when it was trying to install perltoc.
[ 24086]
Subject: Re: [perl #34195] Regex: Alternations within negative lookahead assertions
From: hv@crypt.org
Date: Thu, 24 Mar 2005 19:51:08 +0000
Message-Id: <200503241951.j2OJp8s18147@zen.crypt.org>
Branch: maint-5.8/perl
!> regexec.c t/op/re_tests
____________________________________________________________________________
[ 24281] By: nicholas on 2005/04/22 10:42:05
Log: Integrate:
[ 23961]
Subject: Re: [PATCH] Re: perl winpid?
From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
Date: Thu, 10 Feb 2005 20:04:35 -0800
Message-ID: <20050211040434.GA3824@efn.org>
[ 24242]
Fix bug #33664: allow for transport providers with protocol == 0
(This indicates that any protocol may be used, so don't bother checking
that the requested protocol matches in this case.)
Branch: maint-5.8/perl
+> t/lib/cygwin.t
!> MANIFEST README.cygwin cygwin/cygwin.c win32/win32sck.c
____________________________________________________________________________
[ 24263] By: nicholas on 2005/04/20 19:12:59
Log: Integrate:
[ 24214]
Subject: [PATCH] usesitecustomize for VMS
From: "Craig A. Berry" <craigberry@mac.com>
Date: Sat, 09 Apr 2005 15:58:43 -0500
Message-ID: <42584203.2090405@mac.com>
Branch: maint-5.8/perl
!> configure.com
____________________________________________________________________________
[ 24262] By: nicholas on 2005/04/20 16:30:39
Log: Integrate:
[ 24171]
D'oh! We were never correctly spotting a modfl prototype
[ 24208]
Drop d_sitecustomize again. (usesitecustomize is enough)
[ 24210]
now usesitecustomize is used more generic
[ 24217]
Configure now probes for _LIB_VERSION support in math.h/libm
LIBM_LIB_VERSION is defined if it does
[ 24218]
Sorting still is a mess. This is better.
[ 24221]
Subject: Re: New Configure functionality
From: Abe Timmerman <abe@ztreet.demon.nl>
Date: Sun, 10 Apr 2005 22:19:28 +0200
Message-Id: <200504102219.29024.abe@ztreet.demon.nl>
[ 24226]
Out of sync metaunit caused the erroneous return of the
removed d_sitecustomize. Mea Culpa.
Branch: maint-5.8/perl
! config_h.SH
!> Configure Porting/config_H configure.com handy.h
____________________________________________________________________________
[ 24261] By: nicholas on 2005/04/20 15:30:26
Log: Integrate:
[ 23915]
Subject: Re: encoding neutral unpack
From: perl5-porters[at]ton.iguana.be (Ton Hospel)
Date: Sat, 29 Jan 2005 12:41:20 +0000 (UTC)
Message-ID: <ctg09g$j0e$1[at]post.home.lunix>
Forgotten character progress while checksumming over partial
b or B format. (plus a regression test)
[ 23922]
Subject: Re: encoding neutral unpack
From: perl5-porters[at]ton.iguana.be (Ton Hospel)
Date: Sat, 29 Jan 2005 13:24:55 +0000 (UTC)
Message-ID: <ctg2r7$j0e$4[at]post.home.lunix>
Ensure that with the C format, unpack checksums
don't get overflowed. (plus a regression test)
[ 23923]
Subject: Re: encoding neutral unpack
From: perl5-porters[at]ton.iguana.be (Ton Hospel)
Date: Sat, 29 Jan 2005 13:07:38 +0000 (UTC)
Message-ID: <ctg1qq$j0e$3[at]post.home.lunix>
Make U0 and C0 scoped to () pack subtemplates.
(plus a regression test)
[ 23924]
Subject: Re: encoding neutral unpack
From: perl5-porters[at]ton.iguana.be (Ton Hospel)
Date: Sat, 29 Jan 2005 12:54:34 +0000 (UTC)
Message-ID: <ctg12a$j0e$2[at]post.home.lunix>
Counted length prefixes shouldn't change C0/U0 mode
in pack/unpack (plus a regression test)
[ 23946]
Subject: [perl #34062] pack Z0 destroys the character before
From: perl-5.8.0@ton.iguana.be (via RT) <perlbug-followup@perl.org>
Date: 5 Feb 2005 18:09:00 -0000
Message-ID: <rt-3.0.11-34062-107199.19.360569328007@perl.org>
(plus a regression test)
[ 23951]
Subject: [perl #34076] P/p pack formats only recognize literal undef
From: perl-5.8.0@ton.iguana.be (via RT) <perlbug-followup@perl.org>
Date: 6 Feb 2005 22:03:20 -0000
Message-ID: <rt-3.0.11-34076-107344.19.3123360602169@perl.org>
Branch: maint-5.8/perl
!> pp_pack.c t/op/pack.t
____________________________________________________________________________
[ 24259] By: steveh on 2005/04/20 10:52:02
Log: Integrate:
[ 23969]
Fix definition of DEBUG_MSTATS for Win32 dmake builds
[ 23970]
Fix PERL_MALLOC/DEBUG_MSTATS options in Win32 makefiles
Currently, if USE_IMP_SYS is defined then PERL_MALLOC gets undefined.
We should also undefine DEBUG_MSTATS if PERL_MALLOC is (or has become)
undefined, and we should do all this *before* inspecting DEBUG_MSTATS
to see if we need to add -DPERL_DEBUGGING_MSTATS to BUILDOPT.
[ 23992]
Subject: Patch Win32 makefiles for blead to allow parameters to be passed to harness:
From: demerphq <demerphq@gmail.com>
Date: Sat, 19 Feb 2005 11:00:08 +0100
Message-ID: <9b18b31105021902003d9c2a95@mail.gmail.com>
[ 24004]
Stop mktables from needlessly re-running when using dmake on Win32
[ 24005]
Suppress "ECHO is on." messages when using dmake on Win32
(The shell's "echo" command displays the current echo setting when
called with no arguments. Use "echo." to display nothing.)
[ 24006]
A better fix than change 24005 was ;)
Actually, "@echo." still emits a blank line. Use "@rem" instead as the
no-op. This was being used in the Win95 case, but works fine on WinNT
too, and is actually what ExtUtils-MakeMaker uses.
Also change the nmake Makefile.
[ 24007]
Include regcomp.h in Win32 makefiles
Subject: Re: Stop mktables from needlessly re-running when using dmake on Win32
From: demerphq <demerphq@gmail.com>
Date: Sun, 6 Mar 2005 09:16:12 +0100
Message-ID: <9b18b311050306001624012bd@mail.gmail.com>
[ 24014]
More Win32 dmake fixes
Use $B macro as per change 23991 in more places, and fix some syntax
errors in the subst's (missing trailing ",")
Tested with GCC and MSVC. I don't have BCC available, so those parts
are untested.
[ 24111]
A few Win32 makefile tidy-ups (No real changes)
[ 24113]
Add support for PERL_HASH_SEED_EXPLICIT and NO_HASH_SEED in the
Win32 makefiles
[ 24131]
Remove dependency on tr(1) for MinGW builds on Win32
This leaves things slightly (more) broken for MinGW builds on Cygwin,
but that doesn't currently quite work in other respects and isn't
documented anyway. See:
http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2005-03/msg00751.html
[ 24227]
Support d_libm_lib_version for Win32 (see change 24217)
Branch: maint-5.8/perl
!> win32/Makefile 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 win32/makefile.mk
____________________________________________________________________________
[ 24250] By: steveh on 2005/04/19 13:31:34
Log: Integrate:
[ 23991]
Fix Win32's dmake makefile.mk for new dmakes built with Visual C++
Branch: maint-5.8/perl
!> win32/makefile.mk
____________________________________________________________________________
[ 24203] By: nicholas on 2005/04/08 11:25:00
Log: Integrate:
[ 24134]
Subject: [PATCH] Unicode 4.1.0
From: Jarkko Hietaniemi <jhi@iki.fi>
Message-ID: <424E584D.5000508@iki.fi>
Date: Sat, 02 Apr 2005 11:31:09 +0300
[ 24135]
Oops. Forgot to add this.
[ 24191]
Subject: Re: Bugs? In Unicode::EastAsianWidth.
From: Autrijus Tang <autrijus@autrijus.org>
Date: Wed, 6 Apr 2005 18:17:32 +0800
Message-ID: <20050406101732.GA17931@aut.dyndns.org>
Branch: maint-5.8/perl
+> lib/unicore/NamedSequences.txt
!> (integrate 26 files)
____________________________________________________________________________
[ 24202] By: nicholas on 2005/04/08 10:58:39
Log: Integrate:
[ 24165]
Down with C++ reserved names
(and also function pointer declarations that rely on the C semantics
of ())
Branch: maint-5.8/perl
!> mg.c perlio.c pp_sort.c
____________________________________________________________________________
[ 24197] By: nicholas on 2005/04/08 09:05:27
Log: Integrate:
[ 24096]
Clean-up some warnings when compiling on Win32 with VC++
[ 24099]
A couple more Win32 compilation clean-ups
[ 24162]
Down with unneeded duplicate prototypes
[ 24163]
Down with more K&R prototypes
[ 24164]
Down with potentially incorrect duplicate prototypes
Branch: maint-5.8/perl
!> ext/DynaLoader/dl_dyld.xs hv.c op.c pp_sort.c pp_sys.c utf8.c
!> util.c win32/win32sck.c x2p/a2p.c
____________________________________________________________________________
[ 24196] By: nicholas on 2005/04/07 16:49:05
Log: Integrate:
[ 23631]
Subject: [PATCH] :encoding(utf8) broken in perl-5.8.6
From: Gisle Aas <gisle@ActiveState.com>
Date: 03 Dec 2004 06:09:19 -0800
Message-ID: <lrllcfeank.fsf_-_@caliper.activestate.com>
[ 23632]
Subject: UTF8_ALLOW_ANYUV should not allow overlong sequences [PATCH]
From: Gisle Aas <gisle@activestate.com>
Date: 06 Dec 2004 02:59:24 -0800
Message-ID: <lrmzwrae0j.fsf_-_@caliper.activestate.com>
[ 23640]
Subject: Re: Smoke [5.9.2] 23634 FAIL(F) openbsd 3.6 (i386/1 cpu) [PATCH]
From: Gisle Aas <gisle@ActiveState.com>
Date: 11 Dec 2004 02:57:19 -0800
Message-ID: <lrr7lxje5s.fsf_-_@caliper.activestate.com>
[ 24084]
[perl #33185] UTF-8 string substitution corrupts memory
The implicit call of 'require utf8' triggered by code like
"\x{100}" =~ /[[:print:]]/
wasn't saving state correctly first.
Branch: maint-5.8/perl
!> ext/PerlIO/t/encoding.t utf8.c utf8.h
____________________________________________________________________________
[ 24195] By: nicholas on 2005/04/07 16:05:43
Log: Integrate:
[ 23900]
minor corrections to comments in perly.y
[ 23986]
Subject: Patch for Perlbug #4253
From: Nikolai Eipel <eipel@web.de>
Date: Sat, 29 Jan 2005 16:52:53 +0100
Message-Id: <200501291652.53841.eipel@web.de>
(-T and -B invalidate _ filehandle when no read permission on file)
plus a regression test
[ 23997]
SvUTF8 can be present on scalars other than PVs
(specifically references with overloaded stringification)
[ 23998]
ithreads: cond_signal() on a non-shared object coredumped
[ 23999]
Fix for bug [ID 20020227.005] format bug with undefined _TOP
http://rt.perl.org/rt3/Ticket/Display.html?id=8698
If there was no TOP format the lines left on page was set
to fixed number, now set to the current page length of the
IO channel used. More debugging for yet another bug needed.
[ 24022]
Make the return value of close() depend not only on the success of the
close itself, but also on whether the output stream had a previous
error. From Jim Meyering <jim@meyering.net>, via Debian.
[ 24070]
Forbid the -C option on the command-line
as suggested by Merijn (see [perl #34087])
[ 24080]
Subject: Re: [perl #34568] Perl crashes reading past the end of a heap block while parsing foreach statement
From: Gurusamy Sarathy <gsar@ActiveState.com>
Date: Fri, 25 Mar 2005 10:31:09 -0800
Message-Id: <200503251831.j2PIV9A6006234@smtp3.ActiveState.com>
[ 24092]
Fix PerlLIO_chsize() for platforms that don't have chsize()
This is the patch from the end of the thread that started here:
http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2004-09/msg00055.html
[ 24167]
Using savesvpv() here is terser and produces smaller object code.
[ 24174]
If we're going to prototype modfl(), it needs extern "C" linkage.
Branch: maint-5.8/perl
!> doio.c dump.c ext/threads/shared/shared.xs iperlsys.h op.c
!> perl.h perly.y pod/perldiag.pod pp_sys.c t/op/stat.t toke.c
____________________________________________________________________________
[ 24193] By: nicholas on 2005/04/07 09:53:08
Log: Integrate:
[ 23960]
[perl #34101] not() || 1 produces segmentation fault
Fixed by making not() behave like not(0). This is also the
way not() behaved before it started segfaulting in 5.6.0.
[ 23967]
Subject: [PATCH] Additional tests for t/op/not.t
From: Steve Peters <steve@fisharerojo.org>
Date: Mon, 14 Feb 2005 19:54:17 -0600
Message-ID: <20050215015417.GA30368@mccoy.peters.homeunix.org>
Branch: maint-5.8/perl
+> t/op/not.t
! perly.c perly_c.diff vms/perly_c.vms
!> MANIFEST perly.y
____________________________________________________________________________
[ 24186] By: nicholas on 2005/04/07 08:24:49
Log: Integrate:
[ 23919]
Picky compilers (e.g. vac on AIX 5.2) do not accept statements
between declarations
Branch: maint-5.8/perl
!> ext/Devel/PPPort/PPPort.xs
____________________________________________________________________________
[ 24184] By: nicholas on 2005/04/06 20:21:51
Log: Integrate:
[ 24043]
Subject: Re: sitecustomize.pl [PATCH]
From: Gisle Aas <gisle@ActiveState.com>
Date: 18 Mar 2005 04:06:40 -0800
Message-ID: <lru0n9w433.fsf@caliper.activestate.com>
Adds a new command-line switch, -f, and a new optional
compile-time setting -DUSE_SITECUSTOMIZE
[ 24104]
Support for -Dusesitecustomize
[ 24105]
Simplify #24043 note now Configure can do -Dusesitecustomize
[ 24120]
Add support for USE_SITECUSTOMIZE in the Win32 makefiles
Note that this feature doesn't actually work correctly on Win32
until the problem described here is solved:
http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2005-03/msg00740.html
[ 24122]
Fix USE_SITECUSTOMIZE on Win32
This fixes the problem described in:
http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2005-03/msg00740.html
Branch: maint-5.8/perl
!> Configure INSTALL config_h.SH ext/Devel/DProf/t/DProf.t perl.c
!> pod/perlrun.pod win32/Makefile win32/config.bc win32/config.gc
!> win32/config.vc win32/config.vc64 win32/makefile.mk
!> win32/win32.c
____________________________________________________________________________
[ 24183] By: nicholas on 2005/04/06 20:05:33
Log: Integrate:
[ 23964]
Require version 0.05 of Devel::Tokenizer::C.
[ 23965]
Regenerate Perl_keyword() to remove superfluous goto statements.
Branch: maint-5.8/perl
!> perl_keyword.pl toke.c
____________________________________________________________________________
[ 24182] By: nicholas on 2005/04/06 18:49:11
Log: Integrate:
[ 23926]
Upgrade to Devel::PPPort 3.06.
The hateful perforce bit. We hates software. All of it.
Branch: maint-5.8/perl
!> ext/Devel/PPPort/parts/inc/exception
____________________________________________________________________________
[ 24181] By: nicholas on 2005/04/06 16:45:19
Log: Integrate:
[ 23974]
Subject: [perl #31730] [PATCH] IO::File reads garbage from directory filehandles
From: "Steve Peters via RT" <perlbug-followup@perl.org>
Date: 1 Feb 2005 16:24:11 -0000
Message-ID: <rt-3.0.11-31730-107010.1.24399823945417@perl.org>
[ 23981]
Subject: Re: Bug in Socket::IO::INET Version 1.27
From: Gisle Aas <gisle@ActiveState.com>
Date: 03 Feb 2005 03:16:46 -0800
Message-ID: <lr7jlpsxk1.fsf@caliper.activestate.com>
Branch: maint-5.8/perl
!> ext/IO/lib/IO/File.pm ext/IO/lib/IO/Socket/INET.pm
____________________________________________________________________________
[ 24180] By: nicholas on 2005/04/06 16:20:17
Log: Integrate:
[ 23950]
Remove mention of sub-packages in the Symbol manpage.
[ 23953]
Patch for CAN-2004-0452 by Jeroen van Wolffelaar.
The rmtree() function in the perl File::Path module would remove
directories in an insecure manner which could lead to the removal
of arbitrary files and directories via a symlink attack.
[ 24001]
Subject: [perl #32193] Tie::RefHash DELETE does not return value for ref keys
From: Yuval Kojman (via RT) <perlbug-followup@perl.org>
Date: 28 Oct 2004 12:16:37 -0000
Message-ID: <rt-3.0.11-32193-98805.8.56634266171625@perl.org>
[ 24002]
Add a regression test for bug #32193, and make the
fix a bit more robust
[ 24018]
Doc patch for Devel::DProf (from Debian)
[ 24019]
Remove a spurious undefined warning when using getopts.pl with -w.
(from Debian)
[ 24064]
Subject: [PATCH] simple optimization for SelectSaver
From: Alexey Tourbin <at@altlinux.ru>
Date: Fri, 18 Mar 2005 21:05:51 +0300
Message-ID: <20050318180551.GA12596@solemn.turbinal.org>
[ 24097]
Subject: Re: [PATCH] 5.6 File::Glob documentation insufficient for use
From: Steven Schubiger <steven@accognoscere.org>
Date: Wed, 30 Mar 2005 03:41:03 +0200 (CEST)
Message-Id: <200503300141.j2U1f3EP024524@accognoscere.homeunix.org>
[ 24098]
Minor POD nits.
[ 24101]
Subject: [PATCH] ext/Errno/Errno_pm.PL: fix for GNU hurd
From: Brendan O'Dea <bod@debian.org>
Date: Wed, 30 Mar 2005 10:30:25 +1000
Message-ID: <20050330003025.GA29797@londo.c47.org>
Branch: maint-5.8/perl
!> ext/Devel/DProf/DProf.pm ext/Errno/Errno_pm.PL
!> ext/File/Glob/Glob.pm lib/File/Path.pm lib/SelectSaver.pm
!> lib/Symbol.pm lib/Tie/RefHash.pm lib/Tie/RefHash.t
!> lib/getopts.pl
____________________________________________________________________________
[ 24179] By: nicholas on 2005/04/06 16:03:39
Log: Integrate:
[ 23912]
Upgrade to Devel::PPPort 3.05.
[ 23926]
Upgrade to Devel::PPPort 3.06.
[ 23927]
Remove 2 unused variables from APItest.xs.
Branch: maint-5.8/perl
+> ext/Devel/PPPort/parts/base/5008006
+> ext/Devel/PPPort/parts/inc/exception
+> ext/Devel/PPPort/parts/todo/5008006
+> ext/Devel/PPPort/t/exception.t
!> (integrate 57 files)
____________________________________________________________________________
[ 24177] By: nicholas on 2005/04/06 15:49:18
Log: Integrate:
[ 23822]
Subject: Re: [perl #32498] h2xs generates incorrect code for Makefile.PL for enums
From: Noah <sitz@onastick.net>
Date: Wed, 19 Jan 2005 12:33:52 -0500
Message-ID: <20050119173352.GA15592@radu.onastick.net>
[ 24056]
Subject: Re: Stop mktables from needlessly re-running when using dmake on Win32
From: demerphq <demerphq@gmail.com>
Date: Tue, 8 Mar 2005 02:24:10 +0100
Message-ID: <9b18b311050307172455a5816e@mail.gmail.com>
Change 24004 stopped mktables from needlessly re-running when using
dmake on Win32, but it can still happen when using nmake because it
doesn't support the .UPDATEALL attribute that was used to fix dmake.
e.g. Build perl, touch a core header file, then rebuild -- mktables
re-runs when it didn't need to, and 7 times over at that! This change
alleviates the pain by making mktables exit quickly in such cases.
[ 24057]
Oops - forgot to update MANIFEST for change 24056.
[ 24085]
Fix -C option of mktables (for VMS)
Subject: Re: [PATCH] Consting five
From: demerphq <demerphq@gmail.com>
Date: Sat, 26 Mar 2005 21:45:09 +0100
Message-ID: <9b18b311050326124563db5113@mail.gmail.com>
Branch: maint-5.8/perl
+> lib/unicore/mktables.lst
!> MANIFEST lib/unicore/mktables utils/h2xs.PL
____________________________________________________________________________
[ 24168] By: nicholas on 2005/04/05 16:22:01
Log: Integrate:
[ 23935]
Let's (un)do the timewarp, again.
Attempt to bodge round Makefile sometimes being older than Makefile.PL
Pesky filesystems.
[ 23942]
Stop lib/h2xs.t failing needlessly if it failed to clear up behind
itself on a previous run.
[ 23987]
Subject: (blead patch) Skip a torture test under blead, and skip certain torture tests under Win32.
From: demerphq <demerphq@gmail.com>
Date: Sat, 19 Feb 2005 11:04:00 +0100
Message-ID: <9b18b3110502190204641e103c@mail.gmail.com
[ 24063]
minitest fix
Branch: maint-5.8/perl
!> lib/ExtUtils/t/Constant.t lib/h2xs.t t/japh/abigail.t
!> t/run/fresh_perl.t
____________________________________________________________________________
[ 24157] By: nicholas on 2005/04/05 11:50:44
Log: Oops. Wasn't supposed to pick this up.
Branch: maint-5.8/perl
- regen_perly.pl
____________________________________________________________________________
[ 24156] By: nicholas on 2005/04/05 11:07:15
Log: Integrate:
[ 23861]
Update copyright years and add editor blocks
[ 23941]
With mallocwrap New() evaluates its arguments more than once, so they
had better not have any side effects.
:-(
[ 23943]
Avoid evaluating a strlen twice due the new implementation
of New() with PERL_MALLOC_WRAP
[ 23968]
Use strl* functions in doio.c when available
Based on :
Subject: [PATCH] Changes to doio.c to use strlcpy() and strlcat()
From: Steve Peters <steve@fisharerojo.org>
Date: Wed, 1 Dec 2004 19:42:14 -0600
Message-ID: <20041202014214.GA20907@mccoy.peters.homeunix.org>
[ 24003]
Update -v copyright notice
[ 24032]
gcc warning patch by Andy Lester
[ 24046]
Remove an useless line, spotted by Andy Lester
[ 24058]
Break up long lines in -V output for compile-time options
Subject: Re: sitecustomize.pl [PATCH]
From: sthoenna[at]efn.org (Yitzchak Scott-Thoennes)
Date: Tue, 8 Mar 2005 17:46:04 -0800
Message-ID: <20050309014604.GA5876[at]efn.org>
[ 24102]
USE_STRLCAT and USE_STRLCPY now actually used
LIBM_VERSION_TYPE and USE_SITECUSTOMIZE are preparations
for future use
[ 24106]
Update copyrights.
[ 24108]
Another Win32 compilation clean-up (for when using Perl's malloc)
[ 24121]
Update copyrights.
Well, those are generated files anyway.
Branch: maint-5.8/perl
+> regen_perly.pl
!> (integrate 33 files)
____________________________________________________________________________
[ 24154] By: nicholas on 2005/04/04 22:35:30
Log: Integrate:
[ 23899]
Subject: h2hp: 2 fix
From: Olivier Thauvin <olivier.thauvin@aerov.jussieu.fr>
Date: Fri, 28 Jan 2005 16:53:11 +0100
Message-Id: <200501281653.15708.olivier.thauvin@aerov.jussieu.fr>
[ 23978]
Missing dependencies in x2p makefile, by Slaven Rezic.
[ 23979]
Subject: [PATCH] find2perl, new options
From: slaven@rezic.de
Date: Thu, 17 Feb 2005 22:30:13 +0100
Message-Id: <1108675813.24421@devpc01.iconmobile.de>
[ 23994]
Subject: [PATCH] dprofpp help
From: Andy Lester <andy@petdance.com>
Date: Thu, 24 Feb 2005 00:10:42 -0600
Message-ID: <20050224061042.GA20259@petdance.com>
[ 24020]
Fix a2p manpage (from Debian)
[ 24054]
Subject: [PATCH] Re: [perl #34493] h2ph `extern inline' problems
From: Alexey Tourbin <at@altlinux.ru>
Date: Sat, 19 Mar 2005 16:37:12 +0300
Message-ID: <20050319133712.GB6484@solemn.turbinal.org>
and
Message-ID: <20050319141457.GC6484@solemn.turbinal.org>
Branch: maint-5.8/perl
!> t/lib/h2ph.h utils/dprofpp.PL utils/h2ph.PL x2p/Makefile.SH
!> x2p/a2p.pod x2p/find2perl.PL
____________________________________________________________________________
[ 24153] By: nicholas on 2005/04/04 21:13:55
Log: Integrate:
[ 23767]
Subject: [PATCH] to improve -DCHECK_FORMAT
From: Robin Barker <Robin.Barker@npl.co.uk>
Date: Wed, 5 Jan 2005 11:55:09 -0000
Message-ID: <533D273D4014D411AB1D00062938C4D90849C55A@hotel.npl.co.uk>
[ 23781]
Subject: [PATCH] follow-up to 23767
From: Robin Barker <Robin.Barker@npl.co.uk>
Date: Tue, 11 Jan 2005 15:48:49 -0000
Message-ID: <533D273D4014D411AB1D00062938C4D90849C56A@hotel.npl.co.uk>
[ 23824]
Subject: [PATCH] Further follow-up to 23767
From: Robin Barker <Robin.Barker@npl.co.uk>
Date: Wed, 19 Jan 2005 18:30:31 -0000
Message-ID: <533D273D4014D411AB1D00062938C4D90849C57D@hotel.npl.co.uk>
[ 24151]
Make -DFORMAT_CHECK compile with threads.
Branch: maint-5.8/perl
! perl.h
!> Porting/pumpkin.pod XSUB.h gv.c mg.c perl.c pp.h pp_ctl.c
!> pp_sys.c sv.c utf8.c
____________________________________________________________________________
[ 24150] By: nicholas on 2005/04/04 19:59:56
Log: Integrate:
[ 23750]
Subject: [PATCH] gcc and ld in Configure
From: Robin Barker <Robin.Barker@npl.co.uk>
Date: Wed, 5 Jan 2005 12:04:25 -0000
Message-ID: <533D273D4014D411AB1D00062938C4D90849C55D@hotel.npl.co.uk>
[ 23952]
IBM Released vac.C version 7, and changed the naming convention (again)
Thanks to Campo for spotting, testing and the fix
[ 23958]
'what' cannot find ccversion if `which cc` is a symlink to ccache
ccversion is important enough to jump through some hoops to get it
[ 24016]
Patch for Debian bug #258618, compilation under Debian/Hurd
[ 24017]
Add support for Debian GNU/k*BSD
[ 24050]
Subject: Re: bugzilla.redhat bug #101767 (threads, threads::shared)
From: Alexey Tourbin <at@altlinux.ru>
Date: Sat, 19 Mar 2005 06:10:45 +0300
Message-ID: <20050319031045.GN12596@solemn.turbinal.org>
[ 24075]
Subject: [PATCH] Re: Smoke [5.9.2] 24061 FAIL(m) linux 2.6.10-1.770_FC3 [fedora] (i686/1 cpu)
From: Steve Peters <steve@fisharerojo.org>
Date: Tue, 22 Mar 2005 17:15:23 -0600
Message-ID: <20050322231523.GA3083@mccoy.peters.homeunix.org>
[ 24107]
Now that we have the full path, we can skip the which call,
that might cause trouble on testdrive systems.
Branch: maint-5.8/perl
+> ext/threads/hints/linux.pl ext/threads/shared/hints/linux.pl
!> MANIFEST hints/aix.sh hints/gnu.sh hints/gnukfreebsd.sh
!> hints/gnuknetbsd.sh hints/hpux.sh hints/linux.sh
!> hints/solaris_2.sh
____________________________________________________________________________
[ 24146] By: nicholas on 2005/04/03 15:37:36
Log: Integrate:
[ 24027]
Add standard core test headers to the Class::ISA new tests
Branch: maint-5.8/perl
!> lib/Class/ISA/t/00_about_verbose.t
!> lib/Class/ISA/t/01_old_junk.t
____________________________________________________________________________
[ 24145] By: nicholas on 2005/04/03 15:27:20
Log: Integrate:
[ 24026]
Upgrade to Class::ISA 0.33
Branch: maint-5.8/perl
+> lib/Class/ISA/ChangeLog lib/Class/ISA/t/00_about_verbose.t
+> lib/Class/ISA/t/01_old_junk.t
- lib/Class/ISA/test.pl
!> MANIFEST lib/Class/ISA.pm
____________________________________________________________________________
[ 24144] By: nicholas on 2005/04/03 15:18:11
Log: Integrate:
[ 23327]
Subject: [perl #27576] [PATCH] Pod::Usage -exitvalue => "NOEXIT" requires -output be set (Doc bug)
From: "Steve Peters via RT" <perlbug-followup@perl.org>
Date: 26 Aug 2004 19:06:52 -0000
Message-ID: <rt-3.0.11-27576-94411.2.28321880730803@perl.org>
[ 23956]
Upgrade to Time::Local 1.11
[ 23975]
Upgrade to Time::HiRes 1.66
[ 23976]
Upgrade to Pod::LaTeX 0.58
[ 23977]
Upgrade to PathTools 3.04
(plus tweaks to Cwd and cwd.t to run when building perl)
[ 23982]
Subject: Re: Integration of PathTools 3.04
From: demerphq <demerphq@gmail.com>
Date: Fri, 18 Feb 2005 16:31:50 +0100
Message-ID: <9b18b31105021807316af0aed5@mail.gmail.com>
[ 24013]
Upgrade to CGI.pm 3.06
[ 24028]
Upgrade to DB_File 1.811, by Paul Marquess
[ 24034]
Upgrade to Pod::Parser 1.30
[ 24039]
Upgrade to CGI 3.07.
Add CGI's changelog
[ 24068]
Upgrade to File::Temp 0.16
[ 24069]
Upgrade to PathTools 3.05
Branch: maint-5.8/perl
+> ext/Cwd/ppport.h lib/CGI/Changes
!> (integrate 51 files)
____________________________________________________________________________
[ 24143] By: nicholas on 2005/04/03 14:49:04
Log: Integrate:
[ 23847]
Upgrade to Test::Harness 2.46
[ 23871]
Subject: [PATCH] Test::Harness::Straps::_default_inc shell problem
From: "Craig A. Berry" <craigberry@mac.com>
Date: Sun, 23 Jan 2005 13:44:49 -0600
Message-ID: <41F3FEB1.9020102@mac.com>
[ 23993]
Subject: (patch blead) Extend t/harness to allow filtering of the file list by regex.
From: demerphq <demerphq@gmail.com>
Date: Sat, 19 Feb 2005 11:10:00 +0100
Message-ID: <9b18b3110502190210105decf4@mail.gmail.com>
[ 23995]
Subject: Re: (patch blead) Extend t/harness to allow filtering of the file list by regex.
From: demerphq <demerphq@gmail.com>
Date: Wed, 23 Feb 2005 17:49:50 +0100
Message-ID: <9b18b311050223084917d7ef59@mail.gmail.com>
[ 24136]
Fix "[perl #34643] Config_heavy.pl not in archlib"
Branch: maint-5.8/perl
+> lib/Test/Harness/TAP.pod lib/Test/Harness/t/harness.t
+> lib/Test/Harness/t/prove-globbing.t
!> MANIFEST installperl lib/Test/Harness.pm
!> lib/Test/Harness/Assert.pm lib/Test/Harness/Changes
!> lib/Test/Harness/Iterator.pm lib/Test/Harness/Straps.pm
!> lib/Test/Harness/t/prove-switches.t lib/Test/Harness/t/strap.t
!> pod/perlhack.pod t/harness
____________________________________________________________________________
[ 24142] By: nicholas on 2005/04/03 14:26:25
Log: Integrate:
[ 23739]
Subject: [PATCH] Math::BigInt v1.74, Math::BigRat v0.14, bignum v0.16
From: Tels <nospam-abuse@bloodgate.com>
Date: Sat, 1 Jan 2005 18:59:51 +0100
Message-Id: <200501011859.52858@bloodgate.com>
[ 23882]
Subject: [PATCH] BigInt mbi_rand.t failings
From: Tels <nospam-abuse@bloodgate.com>
Date: Tue, 25 Jan 2005 18:06:58 +0100
Message-Id: <200501251806.59782@bloodgate.com>
[ 23955]
Subject: Re: [PATCH] BigInt mbi_rand.t failings (solved now)
From: Tels <nospam-abuse@bloodgate.com>
Date: Wed, 9 Feb 2005 21:44:22 +0100
Message-Id: <200502092144.24051@bloodgate.com>
[ 24048]
Upgrade to Math::BigInt 1.75, by Tels
Branch: maint-5.8/perl
+> lib/Math/BigInt/t/lib_load.t lib/bignum/t/ratopt_a.t
!> (integrate 29 files)
____________________________________________________________________________
[ 24141] By: nicholas on 2005/04/03 13:58:48
Log: Integrate:
[ 23945]
A small precision in the docs for overloaded regexp escapes
(see bug #33906)
[ 23963]
Mac OS Classic vs Mac OS X clarications
by Sherm Pendley
[ 23971]
Fix documentation bug in using Socket's import tags :
Subject: [perl #34141] example in perlbug -f getsockopt incomplete
From: David Dyck (via RT) <perlbug-followup@perl.org>
Date: 15 Feb 2005 07:35:45 -0000
Message-ID: <rt-3.0.11-34141-107730.6.0777451251105@perl.org>
[ 24000]
do "filename" is not really used with perl subroutine librairies
anymore.
[ 24021]
8 is not an octal digit. (from Debian)
[ 24024]
FAQ sync
[ 24033]
Doc patches to clarify the stringification rules of {} and =>
by Jarkko (bug #34419)
[ 24036]
Subject: Re: [perl #34155] perldoc -f hex should say how to convert back
From: David Nicol <davidnicol@gmail.com>
Date: Tue, 8 Mar 2005 18:23:11 -0600
Message-ID: <934f64a20503081623713f6d27@mail.gmail.com>
[ 24045]
Remove trie optimisation from the todo list
[ 24047]
Subject: [PATCH] perlrun typo (env PERLDB_OPTS)
From: Alexey Tourbin <at@altlinux.ru>
Date: Sat, 19 Mar 2005 03:40:13 +0300
Message-ID: <20050319004013.GJ12596@solemn.turbinal.org>
[ 24066]
Fix unresolved POD link
[ 24090]
Make the spelling of whitespace (vs white-space and white space)
more consistent
From: Offer Kaye <offer.kaye@gmail.com>
Date: Thu, 17 Mar 2005 14:47:36 -0500
Message-ID: <5694250503171147668e73c7@mail.gmail.com>
[ 24123]
This is 5.9.2. Mostly.
[ 24127]
Add a note about installhtml
[ 24128]
FAQ sync.
[ 24129]
POD fixes.
Branch: maint-5.8/perl
!> pod/perldata.pod pod/perlfaq.pod 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/perlfunc.pod
!> pod/perlhist.pod pod/perllocale.pod pod/perlmodinstall.pod
!> pod/perlop.pod pod/perlopentut.pod pod/perlre.pod
!> pod/perlreref.pod pod/perlrun.pod pod/perltodo.pod
!> pod/perlxstut.pod
____________________________________________________________________________
[ 24140] By: nicholas on 2005/04/03 12:54:42
Log: Integrate:
[ 23962]
README.cygwin additions by Reini Urban
[ 23972]
Jan Dubois has taken over maintenance of Win32 stuff from Sarathy
[ 24008]
Some updates to current status
[ 24009]
Subject: Minor AUTHORS patch
From: Andy Lester <andy@petdance.com>
Date: Tue, 8 Mar 2005 09:44:45 -0600
Message-ID: <20050308154445.GB3213@petdance.com>
[ 24015]
Subject: Minor AUTHORS patch
From: "Mike Giroux" <rmgiroux@hotmail.com>
Date: Thu, 10 Mar 2005 08:39:04 -0500
Message-ID: <BAY104-F4B1925432A15287069D3BCE520@phx.gbl>
[ 24029]
Change my email, put real name of Pixel
[ 24110]
Fix typo in INSTALL (s/USE_HAS_SEED_EXPLICIT/USE_HASH_SEED_EXPLICIT/)
[ 24112]
AUTHORS update
[ 24133]
Add encoding::warnings to Maintainers.pl and rebuild META.yml for release
(not the META.yml part)
Branch: maint-5.8/perl
!> AUTHORS INSTALL Porting/Maintainers.pl README.cygwin
!> README.hpux README.win32
____________________________________________________________________________
[ 23944] By: nicholas on 2005/02/07 18:06:38
Log: Update Changes
Branch: maint-5.8/perl
! Changes patchlevel.h
____________________________________________________________________________
[ 23940] By: nicholas on 2005/02/05 17:17:19
Log: Integrate:
[ 23749]
Subject: [PATCH] Avoid segfault when pthread_key_create fails
From: Gisle Aas <gisle@ActiveState.com>
Date: 05 Jan 2005 01:09:51 -0800
Message-ID: <lracroz1gg.fsf@caliper.activestate.com>
[ 23840]
Subject: [patch] cleanup perlsfio.h
From: Stas Bekman <stas@stason.org>
Date: Thu, 13 Jan 2005 16:14:23 -0500
Message-ID: <41E6E4AF.8070303@stason.org>
[ 23842]
Subject: Re: [PATCH] File::Find dies on find({follow=>1, ...}) on Win32
From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
Date: Mon, 20 Dec 2004 16:08:56 -0800
Message-ID: <20041221000856.GA2924@efn.org>
[ 23844]
Subject: [Patch] [perl #32446] close leaves fd open
From: Steffen Ullrich <coyote.frank@gmx.net>
Date: Wed, 01 Dec 2004 15:22:34 +0100
Message-ID: <20041201142236.4273.qmail@lists.develooper.com>
[ 23890]
Subject: [PATCH] libperl leaks a THREAD_KEY each time it is reloaded
From: Gisle Aas <gisle@ActiveState.com>
Date: 05 Jan 2005 03:21:06 -0800
Message-ID: <lris6cxgt9.fsf@caliper.activestate.com>
Branch: maint-5.8/perl
!> perl.c perlio.c perlsfio.h pp_sys.c t/op/stat.t thread.h
____________________________________________________________________________
[ 23939] By: nicholas on 2005/02/05 16:59:25
Log: Integrate:
[ 23928]
Upgrade to Digest 1.10
Branch: maint-5.8/perl
+> lib/Digest/Changes lib/Digest/file.pm lib/Digest/t/file.t
!> MANIFEST lib/Digest.pm lib/Digest/base.pm
____________________________________________________________________________
[ 23938] By: nicholas on 2005/02/05 16:41:18
Log: Integrate:
[ 23872]
Subject: [perl #33906] Missing \\ in perlre
From: Andrew (via RT) <perlbug-followup@perl.org>
Date: 23 Jan 2005 20:52:51 -0000
Message-ID: <rt-3.0.11-33906-106339.17.5527961922343@perl.org>
[ 23880]
Subject: [PATCH] perlapi.pod has pod errors
From: "Jos I. Boumans" <kane@xs4all.net>
Date: Tue, 25 Jan 2005 16:42:38 +0100
Message-Id: <BDA482F7-6EE7-11D9-8AA7-000A95EF62E2@xs4all.net>
[ 23881]
Integrate change #23880 in original comment
[ 23893]
Add a reference to books.perl.org.
[ 23916]
Subject: Re: [perl #34010] localtime docs
From: Andy Lester <andy@petdance.com>
Date: Mon, 31 Jan 2005 21:24:29 -0600
Message-ID: <20050201032429.GA29354@petdance.com>
[ 23920]
Subject: [PATCH pod/perlfunc.pod] POD nit @ sysseek
From: Abigail <abigail@abigail.nl>
Date: Tue, 1 Feb 2005 21:33:14 +0100
Message-ID: <20050201203314.GC335@abigail.nl>
[ 23921]
fix POSIX::strtod error handling documentation
Branch: maint-5.8/perl
!> ext/POSIX/POSIX.pod pod/perlapi.pod pod/perlbook.pod
!> pod/perlfunc.pod pod/perlre.pod util.c
____________________________________________________________________________
[ 23937] By: nicholas on 2005/02/05 15:23:48
Log: (Yet another mop up job due to perforce's inability to branch and
then integrate)
Integrate:
[ 23870]
Subject: Re: [perl #33892] Add Interix support
From: Todd Vierling <tv@duh.org>
Date: Fri, 21 Jan 2005 15:16:16 -0500 (EST)
Message-ID: <Pine.NEB.4.61.0501211424350.13373@duh.net.dhis.org>
Branch: maint-5.8/perl
!> hints/interix.sh
____________________________________________________________________________
[ 23936] By: nicholas on 2005/02/05 15:07:43
Log: Integrate:
[ 23807]
Fix for building with MinGW under Cygwin
Subject: [PATCH] building win32 perl with cygwin's mingw (was: Re: [PATCH] Re: lib/Config/Extensions.t fails on Win32)
From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
Date: Thu, 13 Jan 2005 16:11:36 -0800
Message-ID: <20050114001136.GC2516@efn.org>
[ 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)
[and except the dual life modules chunk]
[ 23862]
Subject: Re: Smoke [5.9.2] 23792 FAIL(F) osf1 V5.1 (21264A)/4 cpu)
From: Jarkko Hietaniemi <jhi@iki.fi>
Message-ID: <41F2911E.8090204@iki.fi>
Date: Sat, 22 Jan 2005 19:45:02 +0200
(drop optimisation on pp_pack.c for gcc on osf1 to -O1)
[ 23864]
Subject: Re: Smoke [5.9.2] 23792 FAIL(F) osf1 V5.1 (21264A)/4 cpu)
From: Jarkko Hietaniemi <jhi@iki.fi>
Message-ID: <41F2C427.7020003@iki.fi>
Date: Sat, 22 Jan 2005 23:22:47 +0200
[ 23909]
Subject: [perl #33998] [PATCH] Support for GNU/kFreeBSD
From: "rmh@debian.org (via RT)" <perlbug-followup@perl.org>
Date: 31 Jan 2005 07:37:55 -0000
Message-ID: <rt-3.0.11-33998-106860.15.2609323921089@perl.org>
[ 23910]
Add all the missing gnuk{free,net}bsd hints files to MANIFEST
[ 23917]
"All" "all?" Who said all? There were 2 more missing gnuk{free,net}bsd
hints files to add to MANIFEST. Sort MANIFEST
while I'm in the area.
Branch: maint-5.8/perl
+> ext/DynaLoader/hints/gnukfreebsd.pl
+> ext/DynaLoader/hints/gnuknetbsd.pl
+> ext/NDBM_File/hints/gnukfreebsd.pl
+> ext/NDBM_File/hints/gnuknetbsd.pl
+> ext/ODBM_File/hints/gnukfreebsd.pl
+> ext/ODBM_File/hints/gnuknetbsd.pl
+> ext/POSIX/hints/gnukfreebsd.pl ext/POSIX/hints/gnuknetbsd.pl
+> ext/Storable/hints/gnukfreebsd.pl
+> ext/Storable/hints/gnuknetbsd.pl hints/gnukfreebsd.sh
+> hints/gnuknetbsd.sh hints/interix.sh
!> Configure MANIFEST Makefile.SH ext/Errno/Errno_pm.PL
!> hints/dec_osf.sh lib/File/Find.pm t/io/openpid.t t/op/groups.t
____________________________________________________________________________
[ 23934] By: nicholas on 2005/02/05 14:32:42
Log: Integrate:
[ 23898]
[perl #33928] chomp() fails after alarm(), `sleep`
PP_backtick's temp altering of PL_rs didn't restore after
an exception
[ 23905]
Fix test suite hang on Win32 caused by change #23898
("perl -e sleep 3" does an indefinite sleep!)
Branch: maint-5.8/perl
!> pp_sys.c t/op/alarm.t
____________________________________________________________________________
[ 23933] By: nicholas on 2005/02/05 14:21:35
Log: Integrate:
[ 23875]
Replace Perl_keyword() with a version that's 20% faster on typical
input, generated by subclassing ExtUtils::Constant. (Typical input
being about 135M of input from running a lot of perl scripts)
[ 23877]
A script to regenerate Perl_keyword()
[ 23878]
Ooops. It was 190M when I was using 4 bytes per entry for lengths in
the dump file. The newer format is only 135M
[ 23914]
Make Perl_keyword() another 30% faster.
Branch: maint-5.8/perl
! perl_keyword.pl toke.c
!> MANIFEST
____________________________________________________________________________
[ 23932] By: nicholas on 2005/02/05 13:47:07
Log: Integrate:
[ 23866]
Slightly terser code in S_regpposixcc (names inside [:*here*:])
[ 23868]
Tidy up 2 comments
Branch: maint-5.8/perl
!> regcomp.c
____________________________________________________________________________
[ 23931] By: nicholas on 2005/02/05 13:28:13
Log: Integrate:
[ 23876]
Add weights to ExtUtils::Constant to allow sorting by expected
frequency. This makes the Perl_keyword() replacement 20% faster,
rather than just 12%
[ 23879]
Correct and update comments (before anyone writes in)
Remove a temporary variable.
[ 23897]
More consistent names for all the parameter name/declaration methods
Which should have been part of change 23930, but for
http://www.google.com/search?q=%66%75%63%6Bing+perforce
Branch: maint-5.8/perl
+> perl_keyword.pl
!> lib/ExtUtils/Constant/Base.pm lib/ExtUtils/Constant/XS.pm
____________________________________________________________________________
[ 23930] By: nicholas on 2005/02/05 13:14:36
Log: Integrate:
[ 23792]
Avoid dogfood problems when an empty string accidentally ends up
as a constant name. [They don't work in qw(), strangely]
[ 23867]
Assimilate ExtUtils::Constant 0.16
Branch: maint-5.8/perl
+> lib/ExtUtils/Constant/Base.pm lib/ExtUtils/Constant/Utils.pm
+> lib/ExtUtils/Constant/XS.pm
!> MANIFEST lib/ExtUtils/Constant.pm
____________________________________________________________________________
[ 23929] By: nicholas on 2005/02/05 12:57:43
Log: Integrate:
[ 23788]
utf.pm needs to require Carp before croak()ing
[ 23838]
Subject: Re: [perl #33173] shellwords.pl and tainting
From: Alexey Tourbin <at@altlinux.ru>
Date: Tue, 28 Dec 2004 22:29:37 +0300
Message-ID: <20041228192937.GB7824@solemn.turbinal.org>
[ 23839]
VERSION++
[ 23874]
Subject: [PATCH] assorted tempfile clean-up in the test suite
From: "Craig A. Berry" <craigberry@mac.com>
Date: Sun, 23 Jan 2005 14:23:17 -0600
Message-ID: <41F407B5.7020106@mac.com>
[ 23883]
&_q needs to *globally* escape ' and \ in its substitution.
Branch: maint-5.8/perl
+> lib/Text/ParseWords/taint.t
!> MANIFEST lib/Test/Simple/t/reset.t lib/Text/ParseWords.pm
!> lib/shellwords.pl lib/utf8.pm lib/utf8.t t/io/fs.t t/io/tell.t
!> t/test.pl
____________________________________________________________________________
[ 23918] By: nicholas on 2005/02/01 22:27:23
Log: Integrate:
[ 23903]
Don't write to $PERLIO_DEBUG when setuid ([perl #33990])
[ 23904]
Avoid a buffer overflow with threads and PERLIO_DEBUG
[ 23906]
Really fix the bug [perl #33990].
NB. -DIAMSUID is only set to compile sperl.o.
[ 23907]
Document the changes to PERLIO_DEBUG.
Branch: maint-5.8/perl
!> perlio.c pod/perlrun.pod
____________________________________________________________________________
[ 23902] By: nicholas on 2005/01/30 23:17:16
Log: http://www.google.com/search?btnI=aargh&q=hate+perforce
Branch: maint-5.8/perl
!> genpacksizetables.pl
____________________________________________________________________________
[ 23901] By: nicholas on 2005/01/30 23:14:08
Log: Integrate:
[ 22663]
Make the ! suffix handle n/N/v/V as signed integers
within pack templates.
[ 22734]
Subject: [PATCH for testing/review] byte-order modifiers for (un)pack templates
From: Marcus Holland-Moritz <mhx-perl@gmx.net>
Date: Wed, 21 Apr 2004 21:09:20 +0200
Message-Id: <20040421210920.3c467772@r2d2>
[ 22745]
Cleanup variables in S_(un)pack_rec().
This also works around a gcc optimizer bug on dec_osf/alpha.
[ 22754]
More unpack cleanups.
[ 22780]
Add byte-order group modifiers to (un)pack templates.
Follow-up on: #22734, #22745, #22753, #22754.
Subject: Group modifiers in (un)pack templates
From: Marcus Holland-Moritz <mhx-perl@gmx.net>
Date: Mon, 3 May 2004 20:14:41 +0200
Message-Id: <20040503201441.1b058e0d@r2d2>
[ 23787]
Refactor all the unpack checksum-or-not logic to avoid massive
duplication.
[ 23791]
The leaktesting of NEWSV() is long dead, so create and initialise
SV values in one, to simplify source code and shrink object code
by about 1%
[ 23793]
Source code tidy up - avoid assigning to sv.
[ 23794]
Turn the unreachable code into assertions. (So prove me wrong...)
[ 23853]
Make the length overrun checking and stack extension table driven.
(Shaves about 3k off pp_pack.o)
[ 23854]
Shrink a switch() statment by driving the size calculations from the
size table. This requires #ifdef()s in the size table initialiser.
Astoundingly this shaves over 6K of the object size with -Os on OS X.
I was expecting about 1K (due to shrinking a branch table). Mind you,
I'm not going to argue with what I got. :-)
[ 23858]
Remove now-unnecessary check. (It's done earlier)
[ 23860]
From: Jarkko Hietaniemi <jhi@iki.fi>
Subject: Re: [PATCH] do not assume quads or long doubles
Message-ID: <41F21B0A.2050301@iki.fi>
Date: Sat, 22 Jan 2005 11:21:14 +0200
[ 23889]
Make the byte order modifers < and > and the sign modifier ! (for
n N v V) conditionally compile. This means that the refactored
pp_pack/pp_unpack code can now be used in maint.
[ 23892]
Retrieve the flag bit that only 'p' uses, so that it is spare for
future use.
Branch: maint-5.8/perl
+> genpacksizetables.pl
! pod/perldiag.pod
!> MANIFEST embed.fnc embed.h perl.h pod/perlport.pod pp_pack.c
!> proto.h util.c
____________________________________________________________________________
[ 23896] By: nicholas on 2005/01/28 20:38:44
Log: For some reason pack.t isn't warnings clean on maint. For now, remove
warnings, but once the implementation in pp_pack.c is unified, check
again and if necessary track the cause down.
Branch: maint-5.8/perl
! t/op/pack.t
____________________________________________________________________________
[ 23895] By: nicholas on 2005/01/28 20:28:38
Log: (Just the tests from)
Integrate:
[ 22663]
Make the ! suffix handle n/N/v/V as signed integers
within pack templates.
[ 22734]
Subject: [PATCH for testing/review] byte-order modifiers for (un)pack templates
From: Marcus Holland-Moritz <mhx-perl@gmx.net>
Date: Wed, 21 Apr 2004 21:09:20 +0200
Message-Id: <20040421210920.3c467772@r2d2>
[ 22780]
Add byte-order group modifiers to (un)pack templates.
Follow-up on: #22734, #22745, #22753, #22754.
Subject: Group modifiers in (un)pack templates
From: Marcus Holland-Moritz <mhx-perl@gmx.net>
Date: Mon, 3 May 2004 20:14:41 +0200
Message-Id: <20040503201441.1b058e0d@r2d2>
[ 23850]
Name another pack test
[ 23884]
Make the tests for the endianness modifiers < and >, and the
signnedness modifier ! conditional on perl version. Surprisingly
little change needed.
[ 23886]
Check that the warning behaviour on the modifiers !, < and > is as we
expect it for this perl.
[ 23888]
Oops. Was forgetting to test n! N! v! V! in pack
Branch: maint-5.8/perl
!> t/op/pack.t
____________________________________________________________________________
[ 23887] By: nicholas on 2005/01/27 15:47:02
Log: Integrate:
[ 23857]
Subject: Re: uc($long_utf8_string) exhausts memory
From: Jarkko Hietaniemi <jhi@iki.fi>
Date: Sat, 22 Jan 2005 00:20:12 +0200
Message-Id: <41F1801C.3080201@iki.fi>
Make buffer size estimates for utf8 case conversion less maximally
pessimistic
[ 23863]
Subject: Re: uc($long_utf8_string) exhausts memory
From: Jarkko Hietaniemi <jhi@iki.fi>
Date: Sat, 22 Jan 2005 11:33:12 +0200
Message-Id: <41F21DD8.3050500@iki.fi>
change #23857 miscalculated the SvGROW size
[ 23869]
Subject: Re: Smoke [5.9.2] 23863 FAIL(F) MSWin32 WinXP/.Net SP1 (x86/1 cpu)
From: Jarkko Hietaniemi <jhi@iki.fi>
Date: Sun, 23 Jan 2005 21:25:01 +0200
Message-Id: <41F3FA0D.4010301@iki.fi>
The uc() memory reduction patch had a memory leak...
Branch: maint-5.8/perl
!> doop.c op.c pp.c pp_pack.c regcomp.c regexec.c sv.c t/op/lc.t
!> toke.c utf8.c utf8.h
____________________________________________________________________________
[ 23885] By: nicholas on 2005/01/27 13:24:09
Log: Test that unpack with only 1 argument is a syntax error.
(Corresponds to the test in blead that ensures it works, and replaces
a placeholder test)
Branch: maint-5.8/perl
!> t/op/pack.t
____________________________________________________________________________
[ 23856] By: nicholas on 2005/01/22 00:03:11
Log: Integrate:
[ 23711]
Subject: [PATCH] Allow Configure's d_attribut to be set from the command line
From: Gisle Aas <gisle@ActiveState.com>
Date: 30 Dec 2004 03:39:36 -0800
Message-ID: <lrllbgypzb.fsf@caliper.activestate.com>
[ 23751]
Subject: [PATCH] unnecessary rmdir in Makefile
From: Robin Barker <Robin.Barker@npl.co.uk>
Date: Wed, 5 Jan 2005 11:58:54 -0000
Message-ID: <533D273D4014D411AB1D00062938C4D90849C55C@hotel.npl.co.uk>
[ 23848]
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>
Branch: maint-5.8/perl
!> Configure Makefile.SH
____________________________________________________________________________
[ 23855] By: nicholas on 2005/01/21 23:27:54
Log: Integrate:
[ 23776]
Get $Config{osvers} filled in on Win32
[ 23806]
Get $Config{ccversion} or $Config{gccversion} filled in on Win32
Branch: maint-5.8/perl
!> win32/config_sh.PL
____________________________________________________________________________
[ 23837] By: nicholas on 2005/01/20 14:11:10
Log: Integrate:
[ 23835]
A little more determinacy in our sorting
and then re-regen pod/perlapi.pod
Branch: maint-5.8/perl
! pod/perlapi.pod
!> autodoc.pl
____________________________________________________________________________
[ 23834] By: nicholas on 2005/01/20 11:38:52
Log: Run regen.pl and pod/buildtoc --build-all
Branch: maint-5.8/perl
! MANIFEST pod/perlapi.pod pod/perlintern.pod pod/perltoc.pod
____________________________________________________________________________
[ 23833] By: nicholas on 2005/01/20 11:26:12
Log: Integrate:
[ 21414]
Subject: Re: [PATCH lib/warnings.t] Adding TODO functionality to lib/warnings.
From: Abigail <abigail@abigail.nl>
Date: Wed, 1 Oct 2003 14:19:43 +0200
Message-ID: <20031001121943.GA29419@abigail.nl>
[ 23758]
Start converting t/op/ref.t to use test.pl
[ 23759]
All tests now use test.pl
[ 23760]
Turn barewords into strings to run under strict subs.
Run under strict refs outside the soft reference tests.
[ 23765]
Subject: [PATCH] make lib/warnings.t use t/test.pl
From: "Craig A. Berry" <craigberry@mac.com>
Message-ID: <41DDCA71.1080704@mac.com>
Date: Thu, 06 Jan 2005 17:32:01 -0600
[ 23778]
Need to close files before unlinking them on Win32
(Various files created by test programs are left behind otherwise,
and distclean doesn't clean them up)
[ 23779]
Subject: [PATCH] t/op/split.t #11 nit on VMS
From: "Craig A. Berry" <craigberry@mac.com>
Message-ID: <41E1C261.5020100@mac.com>
Date: Sun, 09 Jan 2005 17:46:41 -0600
[ 23783]
Subject: [PATCH] follow-up to #23765
From: "Craig A. Berry" <craigberry@mac.com>
Date: Tue, 11 Jan 2005 21:01:27 -0600
Message-ID: <41E49307.7080900@mac.com>
[ 23790]
Not a good idea to use unpack "H*" to peek at a scalar's internal
representation.
[ 23805]
Better test diagnostics for the numbers tests.
(Failure diagnostics were always good, but now the tests have names,
which show even when they pass)
[ 23821]
Subject: [PATCH] op/stat.t test 9 failing on recent cygwin snapshots
From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
Date: Sun, 16 Jan 2005 10:30:45 -0800
Message-ID: <20050116183045.GA2768@efn.org>
Branch: maint-5.8/perl
!> lib/FileCache/t/01open.t lib/FileCache/t/04twoarg.t
!> lib/FileCache/t/07noimport.t lib/warnings.t t/op/join.t
!> t/op/pack.t t/op/read.t t/op/ref.t t/op/split.t t/op/stat.t
____________________________________________________________________________
[ 23832] By: nicholas on 2005/01/20 10:59:16
Log: Integrate:
[ 23742]
Subject: [PATCH pod/perlxs.pod] RE: [perl #32660] INT2PTR not mentioned in perlxs(1)
From: Robin Barker <Robin.Barker@npl.co.uk>
Date: Tue, 4 Jan 2005 12:32:29 -0000
Message-ID: <533D273D4014D411AB1D00062938C4D90849C553@hotel.npl.co.uk>
[ 23754]
Error-free constant folding is a TODO
[ 23756]
Correct a Greengrocer's apostrophe.
[ 23800]
Improve documentation for sv_catpvf, to note that pattern's UTF-8ness
is taken from the SV's UTF-8ness
Branch: maint-5.8/perl
!> ext/DynaLoader/dl_dyld.xs pod/perlapi.pod pod/perltodo.pod
!> pod/perlxs.pod sv.c
____________________________________________________________________________
[ 23831] By: nicholas on 2005/01/19 23:55:18
Log: Integrate:
[ 23797]
Use the new SV_NOSTEAL flag to avoid the SvTEMP dance in newSVsv
[ 23802]
Refactor S_regclass to generate slightly smaller object code
Branch: maint-5.8/perl
!> regcomp.c sv.c
____________________________________________________________________________
[ 23830] By: nicholas on 2005/01/19 23:42:51
Log: Integrate:
[ 23738]
Happy new year
[ 23746]
Update copyright years.
[ 23789]
Update copyright years. Add an editor block while passing by.
[ 23803]
Correct the editor block to match the perl 5 policy on tabs
Branch: maint-5.8/perl
!> README mg.c miniperlmain.c op.c perlio.c pp.c pp_ctl.c
!> pp_hot.c pp_pack.c pp_sort.c pp_sys.c regcomp.c scope.c sv.c
!> universal.c xsutils.c
____________________________________________________________________________
[ 23829] By: nicholas on 2005/01/19 23:25:41
Log: Integrate:
[ 23745]
Make the switch statement discriminate similar names more
efficiently.
[ 23771]
Can pass in a length here without introducing a bug. Might save
a strlen()
[ 23772]
savepv(SvPV(sv,n_a)) is common, and creates an unnecessary call to
strlen(). Add savesvpv(sv), which gets the length from the SV,
and returns a copy of its PV.
[ 23774]
Shorter source code in pp_gelem. (But it compiles to the same size)
[ 23795]
replace NEWSV(), SvSetSV() with newSVsv()
[ 23796]
sv_2mortal(NEWSV(0,0)) better written as sv_newmortal()
[ 23798]
sv_catpvf holds no advantage over sv_catpv when the "pattern" isn't.
[ 23799]
SvUTF8_off() in do_join can be unconditional.
[ 23801]
A terser way to write the \-ing code in pv_uni_display
Plus drive-by insert of a more correct editor block. (thanks Dave)
Branch: maint-5.8/perl
!> doop.c embed.fnc embed.h global.sym mg.c op.c pp.c pp_hot.c
!> pp_sort.c pp_sys.c proto.h regcomp.c regexec.c scope.c toke.c
!> utf8.c util.c xsutils.c
____________________________________________________________________________
[ 23828] By: nicholas on 2005/01/19 21:33:40
Log: Integrate:
[ 23744]
Check all attributes in modify_SV_attributes are recognised.
Fix bug where 'assertion' was always rejected as invalid.
[ 23747]
Rafael spotted that my changes caused warnings. So clean up.
[ 23827]
Make "assertion" attribute code and test conditional
Branch: maint-5.8/perl
!> t/op/attrs.t xsutils.c
____________________________________________________________________________
[ 23826] By: nicholas on 2005/01/19 20:04:32
Log: Integrate:
[ 23727]
Use Rafael's sick trick of ASCII NUL as a q'' delimiter to save a
lot of quoting code
[ 23730]
Change 23727 broke code that relied on \ being escaped.
Fix this. *Everything* should work now.
[ 23731]
Remove compiler warnings.
[ 23733]
D'oh! Spurious aTHX_. Here was I thinking that my test build was
threaded, but "oh no it isn't!" :-(
Branch: maint-5.8/perl
+> t/run/switchF1.t
!> MANIFEST toke.c
____________________________________________________________________________
[ 23825] By: nicholas on 2005/01/19 19:46:24
Log: Integrate:
[ 23721]
Doing the strnEQ char by char for 2 and 3 character strings
generates a smaller object file, and will be faster.
[ 23722]
Skip the switch statement entirely if the pointer is null, rather
than the old pointless switch on '\0'. Also skip re-comparing the
first character. Faster, and generates terser object code.
[ 23725]
strEQ/strNE of 1 character strings seems better hand inlined,
because it generates smaller object code (as well as being
faster than a true function call)
[ 23726]
Probably should be using *pvn rather than *pv forms for speed in
toke.c (to save a strlen())
[ 23728]
Concatenate some string constants
[ 23729]
Splitting the -n/-p code and concatenating strings generates
smaller object code.
Branch: maint-5.8/perl
!> doio.c locale.c op.c perl.c pp.c toke.c util.c
____________________________________________________________________________
[ 23823] By: nicholas on 2005/01/19 17:43:16
Log: Integrate:
[ 23714]
Bug in t/io/layers.t spotted by Ignasi Roca Carrió
[ 23723]
Change 23714 accidentally broke t/io/layers.t when testing with
UTF8 locales and the -C flag. When UTF8 is flagged as enabled
based on the locale, we have no perl space access to PL_utf8locale
so assume for the moment that UTF8 is never conditionally enabled.
[ 23741]
Add ${^UTF8LOCALE} to give perl space access to PL_utf8locale
[ 23743]
Use the new ${^UTF8LOCALE} to make the test reliable.
Branch: maint-5.8/perl
!> AUTHORS gv.c mg.c t/io/layers.t
____________________________________________________________________________
[ 23818] By: steveh on 2005/01/19 09:49:40
Log: Integrate:
[ 23817]
Exclude "Thread" from $Config{extensions}
It is already excluded from $Config{dynamic_ext}, so should not be
in $Config{extensions} either. (Note that Thread is actually still
built, though. This is just for consistency with Unix builds.)
Branch: maint-5.8/perl
!> win32/config_sh.PL
____________________________________________________________________________
[ 23815] By: nicholas on 2005/01/18 22:27:27
Log: Integrate:
[ 23716]
Refactor gv_fetchpv so that the overwhelmingly common case
(variable names starting with a lower case letter or _, longer
than one character) get out of the function very quickly.
(Without even passing through a switch statement jump table)
Also fixes bug 33631
[ 23717]
Tidy up comments in change 23716
[ 23718]
Generate smaller object code by using a single switch statement
for determining which names are forced into main::
[ 23719]
Because name is always NUL terminated we can incorporate length
0 names in the switch statement for length 1.
[ 23720]
Improve documentation for is_gv_magical, and split the switch
statement into 2 parts, lengths > 1 and lengths <= 1
This should cause most variables (lower case, multicharacter)
to escape the function without passing through a switch table.
[ 23724]
Not all the world's a VAX, er ASCII, so don't make assumptions.
Tweak is_gv_magical's string comparisons to produce smaller object
code.
First 2005 copyright notice.
Branch: maint-5.8/perl
!> gv.c
____________________________________________________________________________
[ 23814] By: nicholas on 2005/01/18 22:08:15
Log: Integrate:
[ 23357]
Turn regcomp into a list op
[fear not - just the B::Deparse change, which works on maint]
[ 23437]
Skip tests that require Data::Dumper if it is not built
[just the ext/B changes]
[ 23441]
Correct change 23437 - as Config isn't imported, need to use a fully
qualified package
[ 23651]
Subject: Re: B::walkoptree segfaults
From: Alexey Tourbin <at@altlinux.ru>
Date: Fri, 3 Dec 2004 05:06:49 +0300
Message-ID: <20041203020649.GD3898@solemn.turbinal.org>
[ 23691]
Subject: [PATCH] Cleanup ext/B tests for -w and to run separately
Date: Tue, 28 Dec 2004 13:49:19 -0800
From: Stephen McCamant <smcc@MIT.EDU>
Message-ID: <16849.54495.424654.896889@apocalypse.OCF.Berkeley.EDU>
Branch: maint-5.8/perl
!> ext/B/B.pm ext/B/B/Deparse.pm ext/B/B/Terse.pm
!> ext/B/t/asmdata.t ext/B/t/b.t ext/B/t/bblock.t
!> ext/B/t/bytecode.t ext/B/t/concise.t ext/B/t/debug.t
!> ext/B/t/deparse.t ext/B/t/f_map.t ext/B/t/f_sort.t
!> ext/B/t/lint.t ext/B/t/o.t ext/B/t/optree_check.t
!> ext/B/t/optree_concise.t ext/B/t/optree_samples.t
!> ext/B/t/optree_sort.t ext/B/t/optree_specials.t
!> ext/B/t/optree_varinit.t ext/B/t/showlex.t ext/B/t/stash.t
!> ext/B/t/terse.t ext/B/t/xref.t
____________________________________________________________________________
[ 23813] By: nicholas on 2005/01/18 17:29:33
Log: Integrate:
[ 23735]
Change dXSTARGET to dXSTARG as recommended by Spider Boardman.
[ 23736]
Return an immortal from attributes::_warn_reserved (a private
function). (saves creating a new IV)
Branch: maint-5.8/perl
!> xsutils.c
____________________________________________________________________________
[ 23812] By: nicholas on 2005/01/18 17:05:45
Log: Integrate:
[ 23715]
Subject: [PATCH] randbits and randfunc for VMS
From: "Craig A. Berry" <craigberry@mac.com>
Message-ID: <41D570BF.8010409@mac.com>
Date: Fri, 31 Dec 2004 09:31:11 -0600
Branch: maint-5.8/perl
!> configure.com
____________________________________________________________________________
[ 23811] By: nicholas on 2005/01/18 16:16:10
Log: Integrate:
[ 23681]
Subject: [perl #33173] shellwords.pl and tainting
From: perl-5.8.0@ton.iguana.be (via RT) <perlbug-followup@perl.org>
Date: 24 Dec 2004 00:14:19 -0000
Message-ID: <rt-3.0.11-33173-103504.3.54366755060383@perl.org>
Branch: maint-5.8/perl
!> lib/shellwords.pl
____________________________________________________________________________
[ 23810] By: nicholas on 2005/01/17 23:27:00
Log: Integrate:
[ 23782]
Fix bug 32294 - index()/rindex() ignore UTF8 flag
(for cases of mixed UTF8/bytes)
Test code based on bug report by John Gardiner Myers
Branch: maint-5.8/perl
!> pp.c t/op/index.t
____________________________________________________________________________
[ 23809] By: nicholas on 2005/01/17 22:25:28
Log: Integrate:
[ 23732]
Integrate a patch from Gentoo for uclibc support.
See :
Subject: Re: Static linking notes --- perl5.8.6 and uClibc
From: Alexey Tourbin <at@altlinux.ru>
Date: Tue, 28 Dec 2004 14:25:42 +0300
Message-ID: <20041228112542.GB21037@solemn.turbinal.org>
[ 23761]
Silence a compilation warning
Branch: maint-5.8/perl
!> perlio.c pp_sort.c
____________________________________________________________________________
[ 23808] By: nicholas on 2005/01/17 21:59:28
Log: Integrate:
[ 23645]
Test patch for already-solved bug #33003,
by Michael G Schwern.
[ 23646]
Fix test added in change 23645 with an eval()
[ 23660]
Subject: [PATCH] bop.t follow-up to #23645
From: "Craig A. Berry" <craigberry@mac.com>
Date: Thu, 16 Dec 2004 08:53:32 -0600
Message-ID: <41C1A16C.9040700@mac.com>
[ 23666]
$#a>>=1 relies on malloc wrap to avoid the segfault, so need to
skip the test on platforms where it's not available
Branch: maint-5.8/perl
!> t/op/bop.t
____________________________________________________________________________
[ 23804] By: steveh on 2005/01/14 17:21:59
Log: Integrate:
[ 23757]
Fix extensions config fields on Win32 to be as they are on Unix
Subject: [PATCH] Re: lib/Config/Extensions.t fails on Win32
From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
Date: Wed, 5 Jan 2005 10:01:41 -0800
Message-ID: <20050105180141.GA676@efn.org>
[ 23785]
Fix Win32 build problem caused by change 23757
Change 23757 added a glob() call to win32/FindExt.pm. That code is
run by miniperl.exe when making the ..\config.sh target, but
miniperl.exe is built with -D PERL_EXTERNAL_GLOB so it requires
perlglob.exe to do the glob(). perlglob.exe has been built, but is
in the top-level of the source tree so is not found when miniperl.exe
is executed from within the win32/ sub-directory.
This was causing smokes to fail on t/lib/commonsense.t because the
"extensions" field in lib/Config_heavy.pl only contained
"threads/shared" as a result of the glob() not finding anything.
Manual builds had been working fine for me because I had an installed
perl in my PATH so perlglob.exe was being found there instead!
Branch: maint-5.8/perl
!> win32/FindExt.pm win32/config_sh.PL
____________________________________________________________________________
[ 23784] By: nicholas on 2005/01/12 23:23:12
Log: Integrate:
[ 23740]
Bring win32/config.* into line with win32/config_H.*
so that "perl -V:usemallocwrap" tells us what the configuration is
instead of saying 'UNKNOWN'.
[ 23748]
Subject: [PATCH] -Duselargefiles for VMS
From: "Craig A. Berry" <craigberry@mac.com>
Message-ID: <41DB63A6.7040504@mac.com>
Date: Tue, 04 Jan 2005 21:48:54 -0600
[ 23762]
Allow static linking core extensions on Win32 with MinGW
Subject: [PATCH] Re: lib/Config/Extensions.t fails on Win32
From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
Date: Wed, 5 Jan 2005 10:01:41 -0800
Message-ID: <20050105180141.GA676@efn.org>
[ 23764]
Fix win32/config.*'s cc, ld and other related values
cc and ld themselves always get replaced with correct values anyway
so we just provide example values as per other similar settings
Other related values (ccname, cpp, cpprun, cppstdin) need to use the
correct ~keyword~, namely ~cc~, not ~CC~, otherwise they do not get set
Subject: [PATCH] Re: lib/Config/Extensions.t fails on Win32
From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
Date: Wed, 5 Jan 2005 10:01:41 -0800
Message-ID: <20050105180141.GA676@efn.org>
Subject: Re: [PATCH] Re: lib/Config/Extensions.t fails on Win32
From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
Date: Thu, 6 Jan 2005 11:53:11 -0800
Message-ID: <20050106195311.GC1300@efn.org>
[ 23769]
Disable PERL_MALLOC and DEBUG_MSTATS in win32/makefile.mk by default
and force PERL_MALLOC off if USE_IMP_SYS is on
This brings makefile.mk into line with Makefile in this regard
(PERL_MALLOC cannot currently be used with USE_IMP_SYS, e.g. see:
http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2004-07/msg00465.html
so it is sensible to enforce this, and to not have the default set
to a configuration that isn't allowed)
[ 23775]
Subject: [PATCH] follow-up to #23748, -Duselargefiles on VMS
Date: Sun, 09 Jan 2005 17:52:09 -0600
From: "Craig A. Berry" <craigberry@mac.com>
Message-ID: <41E1C3A9.9080900@mac.com>
[ 23777]
Make Win32's distclean target clean up properly
Branch: maint-5.8/perl
!> configure.com vms/descrip_mms.template vms/vmsish.h
!> win32/Makefile win32/buildext.pl win32/config.bc
!> win32/config.gc win32/config.vc win32/config.vc64
!> win32/makefile.mk
____________________________________________________________________________
[ 23737] By: nicholas on 2005/01/03 21:58:51
Log: Integrate:
[ 23701]
Convert op/read.t to use test.pl and make it stricture compliant.
[ 23702]
Add a lot of tests for combinations of values, offsets and lengths
[ 23703]
read (and presuambly sysread) would expose the UTF8 internals when
reading from a byte orientated file handle into a UTF8 scalar.
[ 23704]
Oops. Forgot to uncomment the last set of Unicode values for
testing.
[ 23705]
Ooops. Fix unitialised variable
[ 23706]
Skip tests that binmode :utf8 if there is no perlio
Branch: maint-5.8/perl
!> pp_sys.c t/op/read.t
____________________________________________________________________________
[ 23734] By: nicholas on 2005/01/03 20:11:00
Log: Integrate:
[ 23700]
Upgrade to Devel::PPPort 3.04
Branch: maint-5.8/perl
!> ext/Devel/PPPort/Changes ext/Devel/PPPort/META.yml
!> ext/Devel/PPPort/PPPort.pm ext/Devel/PPPort/PPPort_pm.PL
!> ext/Devel/PPPort/TODO ext/Devel/PPPort/parts/inc/SvPV
!> ext/Devel/PPPort/parts/inc/ppphbin
!> ext/Devel/PPPort/parts/inc/ppphdoc
!> ext/Devel/PPPort/parts/inc/ppphtest
____________________________________________________________________________
[ 23713] By: nicholas on 2004/12/30 20:33:34
Log: Integrate:
[ 23619]
Small addition to perlsec by Stas Bekman.
[ 23656]
Security fix from Debian in the debugger (in the setterm()
function), from:
Subject: Re: Security patch from Debian?
From: Brendan O'Dea <bod@debian.org>
Date: Thu, 2 Dec 2004 13:42:17 +1100
Message-ID: <20041202024217.GA12670@londo.c47.org>
[ 23712]
Mention ppport.h and its --api-info switch in perlguts.
Branch: maint-5.8/perl
!> lib/perl5db.pl pod/perlguts.pod pod/perlsec.pod
____________________________________________________________________________
[ 23709] By: nicholas on 2004/12/29 21:58:08
Log: Integrate:
[ 23655]
A couple of SCO compilation patches
Subject: [perl #3097] Re: SCO5 XS dyn loading fails
From: "Ilya N. Golubev" <gin@mo.msk.ru>
Date: Tue, 14 Dec 2004 22:37:27 +0300
Message-ID: <028941bf40f648-gin@mo.msk.ru>
Subject: Re: [perl #3100] NaN passed to gcvt [PATCH]
From: Andy Dougherty <doughera@lafayette.edu>
Date: Wed, 15 Dec 2004 10:29:22 -0500 (EST)
Message-ID: <Pine.SOL.4.58.0412150956360.3441@maxwell.phys.lafayette.edu>
Branch: maint-5.8/perl
!> hints/sco.sh
____________________________________________________________________________
[ 23699] By: nicholas on 2004/12/29 13:14:51
Log: Integrate:
[ 23633]
Subject: RE: [PATCH perl.h toke.c utf8.c] minor format clean up
From: Robin Barker <Robin.Barker@npl.co.uk>
Date: Wed, 1 Dec 2004 15:15:44 -0000
Message-ID: <533D273D4014D411AB1D00062938C4D90849C521@hotel.npl.co.uk>
[ 23680]
Subject: Missign STATEMENT brackets in PUSHMARK
From: perl5-porters@ton.iguana.be (Ton Hospel)
Date: Thu, 23 Dec 2004 17:55:13 +0000 (UTC)
Message-Id: <cqf0q1$9cc$1@post.home.lunix>
Branch: maint-5.8/perl
!> perl.h pp.h
____________________________________________________________________________
[ 23698] By: nicholas on 2004/12/29 13:01:59
Log: Integrate:
[ 23657]
Pod::Html is not part of the podlators distribution
[ 23658]
Two pod2html patches from Dave Sparks :
Fix anchors for some function names
Subject: pod2html fragment fix [PATCH]
From: Gisle Aas <gisle@ActiveState.com>
Date: 11 Nov 2004 14:36:46 +0100
Message-ID: <lrk6sso6c1.fsf@caliper.activestate.com>
Subject: Make 'pod2html --quiet' be quiet [PATCH]
From: Gisle Aas <gisle@ActiveState.com>
Date: 11 Nov 2004 15:19:58 +0100
Message-ID: <lrbre4o4c1.fsf@caliper.activestate.com>
Branch: maint-5.8/perl
!> Porting/Maintainers.pl lib/Pod/Html.pm
____________________________________________________________________________
[ 23697] By: nicholas on 2004/12/29 12:48:00
Log: Integrate:
[ 23649]
Allow escaping %m as %%m in Sys::Syslog format strings
(suggested by Joshua Richardson <jric@yahoo-inc.com>
and Yitzchak Scott-Thoennes)
[ 23650]
Make Sys::Syslog stricture-compliant
[ 23659]
Subject: Re: Can't locate auto/POSIX/autosplit.ix [perl #24445] [PATCH]
From: Andy Dougherty <doughera@lafayette.edu>
Date: Thu, 16 Dec 2004 09:57:44 -0500 (EST)
Message-ID: <Pine.SOL.4.58.0412160953470.20202@maxwell.phys.lafayette.edu>
Branch: maint-5.8/perl
!> ext/POSIX/Makefile.PL ext/Sys/Syslog/Syslog.pm
____________________________________________________________________________
[ 23694] By: nicholas on 2004/12/29 12:31:50
Log: Integrate:
[ 23627]
Subject: [PATCH] Re: [perl #32949] FileCache only works in "main" package
From: "Jos I. Boumans" <kane@xs4all.net>
Date: Wed, 8 Dec 2004 14:24:19 +0100
Message-Id: <7728A4F5-491C-11D9-9CA3-000A95EF62E2@xs4all.net>
[ 23643]
Subject: [PATCH] FileCache without import
From: Michael G Schwern <schwern@pobox.com>
Date: Sat, 11 Dec 2004 18:58:32 -0500
Message-ID: <20041211235832.GA13462@windhund.schwern.org>
Branch: maint-5.8/perl
+> lib/FileCache/t/06export.t lib/FileCache/t/07noimport.t
!> MANIFEST lib/FileCache.pm
____________________________________________________________________________
[ 23693] By: nicholas on 2004/12/29 12:14:05
Log: Integrate:
[ 23624]
Upgrade to Encode 2.09
Branch: maint-5.8/perl
!> ext/Encode/Changes ext/Encode/Encode.pm ext/Encode/Encode.xs
!> ext/Encode/META.yml ext/Encode/Unicode/Unicode.xs
!> ext/Encode/t/Encode.t ext/Encode/t/fallback.t
____________________________________________________________________________
[ 23692] By: nicholas on 2004/12/29 12:03:15
Log: Integrate:
[ 23620]
Upgrade to Term::ANSIColor 1.09
[ 23630]
Upgrade to perldoc 3.14
[ 23654]
Upgrade to Test::Simple 0.54
Branch: maint-5.8/perl
+> lib/Test/Simple/t/is_fh.t
!> MANIFEST lib/Pod/Perldoc.pm lib/Pod/Perldoc/ToMan.pm
!> lib/Term/ANSIColor.pm lib/Term/ANSIColor/ChangeLog
!> lib/Term/ANSIColor/README lib/Term/ANSIColor/test.pl
!> lib/Test/Builder.pm lib/Test/More.pm lib/Test/Simple.pm
!> lib/Test/Simple/Changes lib/Test/Simple/t/details.t
!> lib/Test/Simple/t/fail-more.t
!> lib/Test/Simple/t/harness_active.t
!> lib/Test/Simple/t/is_deeply.t lib/Test/Simple/t/maybe_regex.t
!> lib/Test/Simple/t/plan_no_plan.t lib/Test/Simple/t/sort_bug.t
!> lib/Test/Simple/t/todo.t lib/Test/Simple/t/undef.t
____________________________________________________________________________
[ 23690] By: nicholas on 2004/12/29 11:46:00
Log: Integrate:
[ 23615]
sanity check the arguments to runperl(), to try to avoid it
hanging waiting on STDIN for a script.
[ 23635]
Subject: [PATCH] cleanup t/op/taint.t
From: Michael G Schwern <schwern@pobox.com>
Date: Fri, 10 Dec 2004 02:04:49 -0500
Message-ID: <20041210070448.GA22347@windhund.schwern.org>
Subject: [PATCH] Add todo_skip() to test.pl
From: Michael G Schwern <schwern@pobox.com>
Date: Fri, 10 Dec 2004 04:27:06 -0500
Message-ID: <20041210092706.GA23378@windhund.schwern.org>
[ 23636]
Subject: [PATCH] Test rt.perl.org 5900
From: Michael G Schwern <schwern@pobox.com>
Date: Thu, 9 Dec 2004 22:11:59 -0500
Message-ID: <20041210031159.GA7629@windhund.schwern.org>
[ 23641]
Subject: [PATCH] t/op/taint.t follow-up to #23635
From: "Craig A. Berry" <craigberry@mac.com>
Date: Sat, 11 Dec 2004 11:03:57 -0600
Message-ID: <41BB287D.6090001@mac.com>
[ 23688]
Make Config.t warnings and strictures clean
Branch: maint-5.8/perl
! t/op/taint.t
!> lib/Config.t t/test.pl
____________________________________________________________________________
[ 23689] By: nicholas on 2004/12/29 11:25:36
Log: Integrate:
[ 21542]
When %ENV has been turned into a non-magical hash after a
glob assignment, TAINT_ENV() may dump core because it
assumes $ENV{PATH} is magical. Fix this ; add a test to
verify that the PATH is still checked for taintedness.
[ 21563]
Add a new taint error, "%ENV is aliased to %s".
This error is thrown when taint checks are enabled and
when *ENV has been aliased, so that %ENV has no env-magic
anymore. (see bug [perl #24291].)
Branch: maint-5.8/perl
!> pod/perldiag.pod t/op/taint.t taint.c
____________________________________________________________________________
[ 23687] By: nicholas on 2004/12/27 20:08:27
Log: Integrate:
[ 23547]
Freak out if h2ph has to translate a macro that contains assembly code.
Subject: [PATCH] h2ph vs __asm__
From: Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>
Date: Thu, 25 Nov 2004 17:24:43 +0100
Message-ID: <20041125172443.757a4833@dhcp123.mandrakesoft.com>
[ 23628]
Subject: [perl #32962] h2ph - use of local() in generated code
From: Peter.Dintelmann@dresdner-bank.com (via RT)
Date: 8 Dec 2004 15:49:32 -0000
Message-ID: <rt-3.0.11-32962-102394.11.065973521948@perl.org>
[ 23629]
Fix test to cope with the previous h2ph change.
[ 23652]
Fix for [perl #32491] h2xs incorrectly parses enums with implicit values
Branch: maint-5.8/perl
!> t/lib/h2ph.pht utils/h2ph.PL utils/h2xs.PL
____________________________________________________________________________
[ 23686] By: nicholas on 2004/12/27 18:48:43
Log: Integrate:
[ 23611]
New Itanium servers
[ 23621]
Updates to README.win32 (aka perlwin32), with some changes.
Subject: Patch to README.win32 distributed with 5.8.6 for building under .net / MSVC7 (free)
From: Max Maischein <corion@corion.net>
Date: Sun, 05 Dec 2004 19:39:40 +0100
Message-ID: <41B355EC.9010505@corion.net>
[ 23622]
Update AUTHORS (for changes #23200 and #23621)
[ 23637]
Pod nit ([perl #32800])
[ 23639]
Subject: [PATCH] Re: [perl #2562] wantarray fails in END, INIT, and CHECK blocks
From: mjtg@cam.ac.uk (Mike Guy)
Date: Fri, 10 Dec 2004 19:08:01 +0000
Message-ID: <E1Ccq7V-00057s-9s@virgo.cus.cam.ac.uk>
[ 23642]
Subject: [PATCH] perlipc typo
From: Brendan O'Dea <bod@debian.org>
Date: Sun, 12 Dec 2004 10:25:04 +1100
Message-ID: <20041211232504.GA8380@londo.c47.org>
[ 23644]
Document gv_stashpvn
This is already in the API supported by Devel::PPPort, and is
more efficient than gv_stashpv if the length is already known.
[ 23647]
Subject: [perl #3274] [PATCH] Documentation for utime should be improved
Date: 14 Dec 2004 06:29:23 -0000
From: "Steve Peters via RT" <perlbug-followup@perl.org>
Message-ID: <rt-3.0.11-3274-103026.2.21000805211489@perl.org>
[ 23648]
Subject: [perl #24343] [PATCH] -w vs. -s
From: "Steve Peters via RT" <perlbug-followup@perl.org>
Date: 14 Dec 2004 06:41:34 -0000
Message-ID: <rt-3.0.11-24343-103027.13.3005637364295@perl.org>
[ 23662]
Subject: [PATCH] AUTHORS
From: Tels <nospam-abuse@bloodgate.com>
Date: Sun, 19 Dec 2004 14:28:44 +0100
Message-Id: <200412191428.45898@bloodgate.com>
[ 23663]
Note that the shell's test uses eq etc for numbers, = etc for
strings, the reverse of Perl, which is definitely a trap.
Spotted by Alexei Alexandrov.
[ 23672]
The "Setuid script not plain file" error wasn't documented.
[ 23678]
Subject: Re: [patch perlapi doc] sv_magic
From: Stas Bekman <stas@stason.org>
Date: Thu, 23 Dec 2004 16:28:06 -0500
Message-ID: <41CB3866.1080307@stason.org>
[ 23682]
Add investigating self tie segfaults to the TODO
[ 23683]
Subject: [patch sv.c] comment fix
From: Stas Bekman <stas@stason.org>
Message-ID: <41CF50FE.5070307@stason.org>
Date: Sun, 26 Dec 2004 19:02:06 -0500
Branch: maint-5.8/perl
!> AUTHORS README.hpux README.win32 embed.fnc gv.c
!> pod/perlapi.pod pod/perldiag.pod pod/perlfaq5.pod
!> pod/perlfunc.pod pod/perlipc.pod pod/perlrun.pod
!> pod/perltodo.pod pod/perltrap.pod sv.c
____________________________________________________________________________
[ 23685] By: nicholas on 2004/12/27 18:21:40
Log: (And we can't integrate deletes that were added in the same set)
Integrate:
[ 23661]
Subject: Re: [perl #32717] BeOS specific Updates
From: bonefish@cs.tu-berlin.de
Date: Fri, 17 Dec 2004 01:17:40 +0100
Message-Id: <20041217011740.14398.1@cs.tu-berlin.de>
Branch: maint-5.8/perl
- beos/beos_flock_server.cpp beos/beos_flock_server.h
____________________________________________________________________________
[ 23684] By: nicholas on 2004/12/27 18:09:04
Log: Integrate:
[ 23584]
Subject: [perl #32717] BeOS specific Updates
Date: 30 Nov 2004 15:38:32 -0000
From: Ingo Weinhold (via RT) <perlbug-followup@perl.org>
Message-ID: <rt-3.0.11-32717-101307.19.7097750538509@perl.org>
[ 23598]
2 new BeOS files were missing
[ 23661]
Subject: Re: [perl #32717] BeOS specific Updates
From: bonefish@cs.tu-berlin.de
Date: Fri, 17 Dec 2004 01:17:40 +0100
Message-Id: <20041217011740.14398.1@cs.tu-berlin.de>
Branch: maint-5.8/perl
+> beos/beos_flock_server.cpp beos/beos_flock_server.h
!> MANIFEST Makefile.SH README.beos beos/beos.c beos/beosish.h
!> ext/Errno/Errno_pm.PL ext/File/Glob/t/basic.t hints/beos.sh
!> lib/ExtUtils/t/MM_BeOS.t lib/Tie/File/t/16_handle.t perl.c
!> t/op/magic.t
____________________________________________________________________________
[ 23665] By: nicholas on 2004/12/21 18:26:15
Log: Integrate:
[ 23587]
Tidy up the reference name stringification to save getting the
hash name twice. Pleasant side effect is 44 byte smaller object
file. (A small win is still a win)
[ 23602]
Pull out the duplicateded push @INC, $_ if -e $_ code from
S_pushinc into a new function S_pushinc_if_exists
Avoid the SV copy when pushing onto @INC by creating a new scratch
SV each time a push is done.
[ 23603]
Fix a typo in an assert(). It helps to compile with -DDEBUGGING
[ 23604]
There are clearer ways of saying m/^[ab]$/ than strchr("ab", c)
They seem to produce slightly smaller object code too.
[ 23605]
Small code tidy up in gv_fullname4
[ 23606]
use (c == '$' || c == '@' || c == '%') instead of strchr("$@%", c)
The latter gives larger code, is less clear and can't be any faster
[ 23607]
Remove double checking of acceptable switches on tr/// ops.
[ 23609]
gv_fullname4() can get rid of the main:: for us.
(well, actually, it never puts it in)
[ 23612]
Turn gv_fullname3 and gv_efullname3 into macros that call
gv_fullname4 and gv_efullname4 directly, saving overhead.
[ 23614]
Remove spurious semicolons
(As these 2 are spare, I guess I should send them to Mark Rhodes
(former office mate) as he often said that he kept mislaying his)
[ 23617]
Break out setting $^X into its own static function S_set_caret_X
[ 23623]
Revert part of the change to gv_fullname4(), as the change seems to
be fractionally slower. Re-investigation prompted by a comment from
Tim Bunce, who seems to be more on the ball than I am.
[ 23626]
Avoid getting the stash name twice (at least visually, if not also
in the generated code)
Branch: maint-5.8/perl
!> embed.fnc embed.h gv.c gv.h op.c perl.c proto.h sv.c toke.c
____________________________________________________________________________
[ 23664] By: nicholas on 2004/12/21 18:03:02
Log: Integrate:
[ 23531]
Wrap some long lines
[ 23535]
Test the currently working virtual %Config entries
[ 23536]
Make $Config{libs_nolargefiles} and
$Config{libswanted_nolargefiles} work. (For the first time)
[ 23537]
The first entry in the virtual config.sh is special cased. So
test it.
[ 23538]
Add an exists test for the things we loop over
[ 23541]
Cheat. (Add a leading newline, and so remove all the special
casing for "if we're at the start of $Config_SH")
[ 23542]
Generate the virtual entries at Config.pm build time, as they
don't change. This lets us get rid of the entire "fetch_virtual"
baggage, and makes the config_re lookup work for the virtual
entries.
[ 23543]
Fix Win32 breakage caused by changes 23535/23542.
[ 23544]
Make configpm and the generated Config.pm strict and warnings
clean.
[ 23545]
The change to the internal representation introduced a bug whereby
the key returned by FIRSTKEY had an erroneous leading newline.
EXISTS was also buggy.
[ 23554]
Put Config.pm on a diet. 3K rather than 32K
configpm now generates 2 files, a small Config.pm containing the
commonly used functions and values, which AUTOLOADs a
Config_heavy.pl containing anything else needed.
The "common" values in the small Config.pm may need some
tweaking, based on real world data.
[ 23555]
Hateful cAsE iNsEnSiTiVe file systems
[ 23557]
Subject: [PATCH] Re: getting Config.pm on a diet
From: "Craig A. Berry" <craigberry@mac.com>
Message-ID: <41A8F225.7080902@mac.com>
Date: Sat, 27 Nov 2004 15:31:17 -0600
[ 23558]
Generate the precached %Config entries based on some empirical
data, rather than just guesswork.
[ 23561]
Need to stub the public functions to keep some existing code
working.
No need to keep $Config_SH around in memory when we can easily
re-create it.
[ 23562]
The byteorder code doesn't need to be in Config.pm if byteorder
isn't actually a frequently looked up value.
[ 23563]
Given that there is a pre-built cache, no need for @v_fast
[ 23564]
Skip generating all the code to deal with "" strings in config.sh
if there aren't any. '' only code is much simpler.
[ 23583]
Subject: [PATCH] add -I../lib to VMS build to find Config_heavy.pl
Date: Wed, 01 Dec 2004 07:24:45 -0600
From: "Craig A. Berry" <craigberry@mac.com>
Message-ID: <41ADC61D.8010407@mac.com>
[ 23601]
Subject: [PATCH] configure.com: no more CONFIG=true
From: "Craig A. Berry" <craigberry@mac.com>
Message-ID: <41AF87BA.1080108@mac.com>
Date: Thu, 02 Dec 2004 15:23:06 -0600
[ 23610]
Check that @INC entries and %Config path entries are consistent.
[ 23613]
Tests for Config.pm much better now - toDONE
[ 23616]
Fix typo from change 23554 which screwed up Windows smokes
[ 23618]
Fix another Win32 breakage caused by change 23554
[ 23634]
Evade using @ in the 1 liner with some perl 1 syntax.
[ 23638]
Fix Win32 breakage caused by change 23610
Simply skip the offending tests on Win32. There is no sense in testing
that $Config dir entries appear in @INC because the $Config entries
relate to where perl.exe will be installed (as per INST_DRV/INST_TOP in
win32/Makefile), whereas @INC entries are dynamic, based on where
perlXX.dll is currently located.
Branch: maint-5.8/perl
!> Makefile.SH configpm configure.com lib/Config.t
!> pod/perltodo.pod t/win32/system.t vms/descrip_mms.template
!> win32/Makefile win32/makefile.mk
____________________________________________________________________________
[ 23625] By: nicholas on 2004/12/07 23:09:13
Log: Integrate:
[ 19505]
Subject: Re: Bug stomping fun. [PATCH: bug #1016]
From: Alex Vandiver <alexmv@MIT.EDU>
Date: 02 May 2003 06:45:05 -0400
Message-Id: <1051872303.26203.104.camel@supox>
(plus perldiag nit)
[ 23528]
Fix for bug: [perl #32562] __PACKAGE__ symbol has wrong value
after eval or require
Branch: maint-5.8/perl
!> dump.c gv.c hv.c pod/perldiag.pod pp.c pp_hot.c sv.c
!> t/comp/package.t toke.c
____________________________________________________________________________
[ 23600] By: nicholas on 2004/12/02 15:40:11
Log: Integrate:
[ 23571]
Subject: Re: [PATCH] Re: Smoke [5.9.2] 23566 FAIL(X) openbsd 3.6 (i386/1 cpu)
Date: Tue, 30 Nov 2004 09:29:06 -0600
From: Steve Peters <steve@fisharerojo.org>
Message-ID: <20041130152906.GA555@mccoy.peters.homeunix.org>
Branch: maint-5.8/perl
!> hints/openbsd.sh
____________________________________________________________________________
[ 23599] By: nicholas on 2004/12/02 15:05:06
Log: Integrate:
[ 23525]
Subject: [PATCH] warnings.t portability tweaks
From: "Craig A. Berry" <craigberry@mac.com>
Date: Sat, 20 Nov 2004 10:29:47 -0600
Message-ID: <419F70FB.7000100@mac.com>
Branch: maint-5.8/perl
!> t/lib/warnings/perlio
____________________________________________________________________________
[ 23597] By: nicholas on 2004/12/01 21:00:06
Log: Integrate:
[ 23167]
Subject: Re: [perl #30783] Test::Builder does not handle overloaded "name" values
From: Autrijus Tang <autrijus@gmail.com>
Date: Thu, 22 Jul 2004 20:17:58 -0700
Message-ID: <1912f0e204072220171790193a@mail.gmail.com>
[ 23566]
Upgrade to Test::Simple 0.53
Branch: maint-5.8/perl
+> lib/Test/Simple/t/circular_data.t
+> lib/Test/Simple/t/overload_threads.t
+> lib/Test/Simple/t/plan_bad.t
+> lib/Test/Simple/t/plan_shouldnt_import.t
+> lib/Test/Simple/t/require_ok.t lib/Test/Simple/t/sort_bug.t
!> MANIFEST lib/Test/Builder.pm lib/Test/More.pm
!> lib/Test/Simple.pm lib/Test/Simple/Changes
!> lib/Test/Simple/README lib/Test/Simple/TODO
!> lib/Test/Simple/t/00signature.t lib/Test/Simple/t/More.t
!> lib/Test/Simple/t/diag.t lib/Test/Simple/t/fail_one.t
!> lib/Test/Simple/t/is_deeply.t lib/Test/Simple/t/overload.t
!> lib/Test/Simple/t/todo.t t/lib/TieOut.pm
____________________________________________________________________________
[ 23596] By: nicholas on 2004/12/01 20:40:59
Log: Integrate:
[ 23523]
Assimilate Test-Simple 0.50
Branch: maint-5.8/perl
+> lib/Test/Simple/TODO lib/Test/Simple/t/00signature.t
+> lib/Test/Simple/t/00test_harness_check.t
+> lib/Test/Simple/t/eq_set.t lib/Test/Simple/t/extra_one.t
+> lib/Test/Simple/t/fail_one.t
+> lib/Test/Simple/t/harness_active.t lib/Test/Simple/t/no_diag.t
+> lib/Test/Simple/t/overload.t lib/Test/Simple/t/reset.t
+> lib/Test/Simple/t/thread_taint.t t/lib/NoExporter.pm
!> MANIFEST lib/Test/Builder.pm lib/Test/More.pm
!> lib/Test/Simple.pm lib/Test/Simple/Changes
!> lib/Test/Simple/README lib/Test/Simple/t/More.t
!> lib/Test/Simple/t/diag.t lib/Test/Simple/t/extra.t
!> lib/Test/Simple/t/fail-like.t lib/Test/Simple/t/fail-more.t
!> lib/Test/Simple/t/fail.t lib/Test/Simple/t/has_plan2.t
!> lib/Test/Simple/t/is_deeply.t lib/Test/Simple/t/missing.t
!> lib/Test/Simple/t/output.t lib/Test/Simple/t/plan_is_noplan.t
!> lib/Test/Simple/t/plan_no_plan.t lib/Test/Simple/t/threads.t
!> lib/Test/Simple/t/todo.t lib/Test/Simple/t/use_ok.t
!> lib/Test/Tutorial.pod t/lib/Test/Simple/Catch.pm
!> t/lib/TieOut.pm
____________________________________________________________________________
[ 23595] By: nicholas on 2004/12/01 19:53:15
Log: Integrate:
[ 23491]
Subject: [PATCH] Re: [perl #32272] Not OK: perl v5.8.5 +MAINT23414 on cygwin-thread-multi-64int 1.5.12s(0.11642) (UNINSTALLED)
From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
Date: Tue, 9 Nov 2004 17:40:13 -0800
Message-ID: <20041110014012.GA2796@efn.org>
[ 23492]
Replace a skip by a todo.
Subject: Re: [PATCH] Re: [perl #32272] Not OK: perl v5.8.5 +MAINT23414 on cygwin-thread-multi-64int 1.5.12s(0.11642) (UNINSTALLED)
From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
Date: Wed, 10 Nov 2004 01:30:14 -0800
Message-ID: <20041110093014.GA1676@efn.org>
[ 23505]
Subject: [PATCH 5.8.x] Allow more tries for t/op/time.t test 2.
From: Andy Dougherty <doughera@lafayette.edu>
Date: Tue, 16 Nov 2004 12:11:00 -0500 (EST)
Message-ID: <Pine.SOL.4.58.0411161149170.5639@maxwell.phys.lafayette.edu>
Branch: maint-5.8/perl
!> t/io/tell.t t/op/time.t
____________________________________________________________________________
[ 23594] By: nicholas on 2004/12/01 19:38:55
Log: Integrate:
[ 23473]
Subject: [perl #32327] Benchmark calls coderef with spurious arguments
From: Anno Siegel (via RT) <perlbug-followup@perl.org>
Date: 4 Nov 2004 20:12:36 -0000
Message-ID: <rt-3.0.11-32327-99325.8.9408996026507@perl.org>
[ 23510]
Subject: [perl #28929] File::Find follow_fast => 1 loses dangling symlink
From: "Steve Peters via RT" <perlbug-followup@perl.org>
Date: 12 Nov 2004 02:47:36 -0000
Message-ID: <rt-3.0.11-28929-100158.11.3214775505644@perl.org>
[ 23526]
Subject: [perl #3422] [PATCH] CHECK routine called after syntax error
From: "Steve Peters via RT" <perlbug-followup@perl.org>
Date: 23 Nov 2004 00:04:24 -0000
Message-ID: <rt-3.0.11-3422-100830.4.45764701781506@perl.org>
[ 23548]
Subject: [perl #32639] [PATCH] Bug in Term::Complete Module with $_ Usage
From: "Steve Peters via RT" <perlbug-followup@perl.org>
Date: 26 Nov 2004 17:14:33 -0000
Message-ID: <rt-3.0.11-32639-101066.11.6172971744206@perl.org>
Branch: maint-5.8/perl
!> ext/B/B/Deparse.pm lib/Benchmark.pm lib/Benchmark.t
!> lib/File/Find.pm lib/File/Find/t/find.t lib/Term/Complete.pm
____________________________________________________________________________
[ 23593] By: nicholas on 2004/12/01 19:11:22
Log: Integrate:
[ 23497]
Subject: [perl #32400] Unnecessary warning from constant.pm
From: Anno Siegel (via RT) <perlbug-followup@perl.org>
Date: 10 Nov 2004 18:30:38 -0000
Message-ID: <rt-3.0.11-32400-100099.4.31094423840584@perl.org>
Branch: maint-5.8/perl
!> lib/constant.pm lib/constant.t
____________________________________________________________________________
[ 23591] By: nicholas on 2004/12/01 18:52:08
Log: Integrate:
[ 17730]
missing chunk from #17725 causes lib/constant.t test failures
(which was also a conversion to Test::More, so integrate that and
convert the dropped pseudohash tests to Test::More too)
[ 23588]
&test in constant.t is vestigial, so amputate it.
Branch: maint-5.8/perl
! lib/constant.t
____________________________________________________________________________
[ 23590] By: nicholas on 2004/12/01 17:07:31
Log: Integrate:
[ 23490]
Adjust test count for non-windows machines
Branch: maint-5.8/perl
!> ext/IO/t/io_file.t
____________________________________________________________________________
[ 23589] By: nicholas on 2004/12/01 16:58:47
Log: http://google.com/search?btnI=!&q=oi+perforce+no
I wanted 23490 too, damn you. You're more trouble than you're worth.
Integrate:
[ 23489]
Subject: [PATCH] fix IO::File to support binmode
From: "Jos I. Boumans" <kane@dwim.org>
Date: Tue, 9 Nov 2004 16:59:27 +0100
Message-Id: <559E356E-3268-11D9-A2E6-000A95EF62E2@dwim.org>
Branch: maint-5.8/perl
+> ext/IO/t/io_file.t
!> MANIFEST ext/IO/lib/IO/File.pm
____________________________________________________________________________
[ 23586] By: nicholas on 2004/12/01 15:02:51
Log: Integrate:
[ 23468]
Subject: Re: [perl #30633] Perl's "do" operator with a variety of absolute paths under Cygwin
From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
Date: Tue, 2 Nov 2004 17:24:29 -0800
Message-ID: <20041103012429.GA7196@efn.org>
[ 23520]
genuine possible buffer problems spotted by flawfinder
Branch: maint-5.8/perl
!> regcomp.c util.c util.h
____________________________________________________________________________
[ 23585] By: nicholas on 2004/12/01 13:52:46
Log: Integrate:
[ 23501]
Make all scripts run by regen.pl write output with UNIX style EOL's.
(autodoc.pl was already done by change 23371.)
[ 23567]
Remove trailing whitespace that found their way in the docs
(spotted by Stas Bekman)
[ 23568]
Protection against trailing spaces in embed.fnc
[ 23581]
MANIFEST.SKIP is missing from the list of files that come
with MakeMaker
Branch: maint-5.8/perl
!> Porting/Maintainers.pl autodoc.pl bytecode.pl embed.fnc
!> embed.pl keywords.pl opcode.pl pod/perlapi.pod proto.h
!> regcomp.pl warnings.pl
____________________________________________________________________________
[ 23582] By: nicholas on 2004/12/01 13:28:06
Log: Integrate:
[ 23433]
[perl #31851] Threading crash with closures
various OpREFCNT_inc() operations weren't doing locking
[ 23499]
Fix Win32 breakage caused by changes to op.c in change 23433.
Also limit the scope of the locks in a couple of places, as suggested
by Hugo in http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2004-11/msg00286.html.
Branch: maint-5.8/perl
! embed.fnc
!> embed.h global.sym op.c op.h pad.c proto.h regcomp.c sv.c
____________________________________________________________________________
[ 23580] By: nicholas on 2004/12/01 12:13:11
Log: Integrate:
[ 23448]
Make TEST and harness skip tests for extensions that were not
configured. Currently this skipping is silent - maybe they should
report what they are skipping.
Branch: maint-5.8/perl
!> t/TEST t/harness
____________________________________________________________________________
[ 23579] By: nicholas on 2004/11/30 23:01:57
Log: oops. typo. s/5/6/;
Branch: maint-5.8/perl
! MANIFEST
____________________________________________________________________________
[ 23578] By: nicholas on 2004/11/30 16:56:12
Log: Integrate:
[ 23435]
Added probes for strlcat () and strlcpy () to Configure
Re-ordered config_h.SH
[ 23436]
Promote #23435 (strlcat ()/strlcpy ()) to non-standard OS's
[ 23450]
The next step in strlcat ()/ strcpy () detection and usage
preparation. Change to handy.h eeded for config_h.SH
[ 23455]
Since strlcat/strlcpy are not argument/return value compatible
with strncat/strncpy, replace the misleading defines with comment
[ 23457]
New Glossary and samples for blead
Glossary now is in line with recent changes to config_h.SH
[ 23467]
Subject: [PATCH configure.com] Re: [PATCH] Detecting strlcat() and strlcpy() in Configure
From: "Craig A. Berry" <craigberry@mac.com>
Date: Tue, 02 Nov 2004 20:02:04 -0600
Message-ID: <41883C1C.3080108@mac.com>
[ 23577]
Add placeholders for the new strlcat and strlcpy entries in
config.sh, to ensure that the config.h generated for cross-
compilation will still work.
Branch: maint-5.8/perl
!> Configure Cross/config.sh-arm-linux Makefile.SH
!> NetWare/config_H.wc Porting/Glossary config_h.SH configure.com
!> handy.h plan9/config_h.sample win32/config_H.bc
!> win32/config_H.gc win32/config_H.vc win32/config_H.vc64
!> wince/config_H.ce
____________________________________________________________________________
[ 23576] By: nicholas on 2004/11/30 15:48:24
Log: Move the old Changes file to Changes5.8.6
Create and update a new Changes file for 5.8.7
Branch: maint-5.8/perl
+> Changes5.8.6
! Changes MANIFEST patchlevel.h
____________________________________________________________________________
[ 23573] By: nicholas on 2004/11/30 15:16:05
Log: Create perl587delta.pod
Branch: maint-5.8/perl
+ pod/perl587delta.pod
! MANIFEST Makefile.SH pod.lst pod/perl.pod pod/perltoc.pod
! vms/descrip_mms.template win32/Makefile win32/makefile.mk
! win32/pod.mak
____________________________________________________________________________
[ 23569] By: nicholas on 2004/11/30 13:59:34
Log: Fix my C<< >> error (as diagnosed by Mike Giroux), plus rename the
file to perl586delta ready for 5.8.7
Branch: maint-5.8/perl
! pod/perl586delta.pod
____________________________________________________________________________
[ 23565] By: nicholas on 2004/11/28 21:07:27
Log: Subject: [PATCH] maint has the wrong MANIFEST.SKIP
From: Michael G Schwern <schwern@pobox.com>
Message-ID: <20041123052948.GA10605@windhund.schwern.org>
Date: Tue, 23 Nov 2004 00:29:49 -0500
Branch: maint-5.8/perl
! lib/ExtUtils/MANIFEST.SKIP
____________________________________________________________________________
[ 23560] By: nicholas on 2004/11/28 00:25:25
Log: Integrate:
[ 23498]
Subject: [PATCH] Add the minitest target to vms buildsystem
From: Abe Timmerman <abe@ztreet.demon.nl>
Date: Sun, 14 Nov 2004 00:48:17 +0100
Message-Id: <200411140048.17035.abe@ztreet.demon.nl>
Branch: maint-5.8/perl
!> vms/descrip_mms.template vms/test.com
____________________________________________________________________________
[ 23559] By: nicholas on 2004/11/28 00:09:35
Log: Disarm the maint branch
Branch: maint-5.8/perl
! patchlevel.h
____________________________________________________________________________
[ 23556] By: nicholas on 2004/11/27 18:34:58
Log: Break a leg
Branch: maint-5.8/perl
! patchlevel.h pod/perlhist.pod
____________________________________________________________________________
[ 23553] By: nicholas on 2004/11/27 15:49:55
Log: Update Changes
Branch: maint-5.8/perl
! Changes patchlevel.h
|