summaryrefslogtreecommitdiff
path: root/ChangeLog
blob: 539742c78bbcd924e0f850d0722b8e760621a641 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
Tue Mar  1 07:40:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/platform_hpux_aCC.GNU:
          Also HP aCC 3.60 has a bug when having private constructors and
          creating an instance from the friend class

Mon Feb 28 17:10:41 2005  Steve Huston  <shuston@riverace.com>

	* ace/Asynch_Pseudo_Task.{h cpp}: Removed all the flg_active_ and
	  finish locking stuff. Use the thr_count() value to tell if the
	  thread is running, and don't try to interlock cleanup activities
	  with other classes. It's messy and doesn't work right. There are
	  too many race conditions between closing handles and closing down
	  this object.
	  Corrected ACE_LIB_TEXT use instead of
	  ACE_TEXT, and added missing commas between some strings.

	* ace/POSIX_Asynch_IO.{h cpp}:
	* ace/WIN32_Asynch_IO.{h cpp}: Don't try to interlock against the
	  Asynch_Pseudo_Task. If it's going, it's going. Only hold the lock
	  around access to the connection/handle map since that's accessed
	  from the asynch pseudo task thread as well as the caller's.

Mon Feb 28 09:59:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/platform_hpux_aCC.GNU:
          HP aCC 3.57 has a bug that causes a compile error when we have
          a class with a private constructor and we try to create it from
          a friend class. We disable array optimization for this compiler
          version to be able to build ACE and TAO.

        * ace/OS_NS_stdio.cpp (snprintf):
          Added two static cast to silence warnings with Borland and MinGW

Mon Feb 28 11:10:58 2005  Boris Kolpackov  <boris@kolpackov.net>

	* protocols/ace/RMCast/Acknowledge.h: Made Acknowledge::Queue
	  a friend of Acknowledge. Hopefully this will help Sun C++ 5.4.

Sun Feb 27 08:51:23 2005  Douglas C. Schmidt  <schmidt@cs.wustl.edu>

	* ace/OS_NS_stdio.cpp (snprintf): Enhanced this function so
	  it terminates the string with a null char if it is *exactly* the
 	  same length as the buffer.  Thanks to Bruce MacDonald <brucemac
 	  at netcomuk dot co dot uk> for reporting this and providing a
 	  fix.  This fixes bugid 2058.

Fri Feb 25 18:46:33 2005  Steve Huston  <shuston@riverace.com>

	* ace/Asynch_Pseudo_Task.cpp: Forgot some cleanups for places
	  returning -2. Fixed. Also reduced the clutter of diagnostic
	  messages and added useful output (such as %p) to those remaining.

	* ace/POSIX_Asynch_IO.cpp: Additional handle cleanups and checks
	  for ACE_POSIX_Asynch_Accept::close ().

Fri Feb 25 17:29:12 2005  Steve Huston  <shuston@riverace.com>

	* ace/config-hpux-11.00.h: Always set ACE_HAS_SVR4_DYNAMIC_LINKING.
	  This is now available always.

	* include/makeinclude/platform_hpux_gcc.GNU: Add -Wl,-E to
	  SOFLAGS for linking shared libraries. Per info in
	  Bugzilla #2057, this is needed to have dynamic_cast work across
	  shared libraries. It still doesn't work, and not sure why...

	* tests/DLL_Test.cpp: Use the correct ACE_DEBUG specifier for
	  pointers (%@, not %x).

	* tests/DLL_Test_Impl.cpp: Added an ACE_DEBUG in dynamic_cast_test()
	  to see what's being tested, not only the results.

Fri Feb 25 13:49:27 2005  Steve Huston  <shuston@riverace.com>

	* ace/POSIX_Asynch_IO.{h cpp}: Added 'const' to all the handler_proxy
	  references on Result-type constructors.
	  Removed the ACE_LIB_TEXT around strings to ACE_TRACE.
	  ACE_TRACE adds the ACE_LIB_TEXT.
	  (Asynch_Accept::handle_close()): This can be called if the
	  listen handle gets closed in addition to when the pseudo task
	  is being destroyed. Mark the handle invalid.

	* ace/WIN32_Asynch_IO.{h cpp}: Added 'const' to all the handler_proxy
	  references on Result-type constructors.
	  (accept): Corrected function name in message.
	  (ACE_WIN32_Asynch_Accept_Result::complete): If the accept failed,
	  be sure to close the accept handle created in accept().

	* ace/Asynch_Pseudo_Task.cpp: Removed return value -2 to signify
	  task shutting down, and return -1/errno = ESHUTDOWN instead.
	  Secret values like -2 make maintenance harder.
	  Also removed some of the ACE_ERROR() statements in favor of
	  setting a reasonable errno value. Lets callers know what's going
	  on in the code, not just show it in diagnostic output.

Fri Feb 25 07:08:35 2005  Chad Elliott  <elliott_c@ociweb.com>

        * ace/SOCK_Dgram_Bcast.cpp:

          Added !defined(__APPLE__) to conditional so sockaddr.sa_len
          version of the code will be used.  Fixes SOCK_Bcast_Dgram_Test
          failures.

        * bin/MakeProjectCreator/config/event_serv.mpb:

          The CosEvent_Serv library requires the CosNaming library.

        * bin/auto_run_tests.pl:

          Put a space between my and $ to avoid problems with older version
          of perl.

        * bin/tao_other_tests.lst:

          Don't run the XML_Persistence or Reconnecting Notify tests from
          static builds.

        * include/makeinclude/platform_hpux_aCC.GNU:

          Removed an extra closing parenthesis from the line that determined
          the HP-UX model.

Fri Feb 25 12:55:37 2005  Boris Kolpackov  <boris@kolpackov.net>

        * protocols/ace/RMCast/Link.h:
        * protocols/ace/RMCast/Link.cpp: Overrode recv() from
        Out_Element. This should clear warnings on BCB and HP C++.

Fri Feb 25 10:15:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-lite.h:
          Added ifndef ACE_LACKS_DEPRECATED_MACROS around the ACE_x_cast
          macros so that we can easily prevent the ACE_x_cast macros to be
          defined so that we can check whether they are used in ACE/TAO

Thu Feb 24 21:05:42 2005  Boris Kolpackov  <boris@kolpackov.net>

        * protocols/ace/RMCast/Socket.h:
        * protocols/ace/RMCast/Socket.cpp: Removed class-scope
          using-declaration for VxWorks can't handle it.

Thu Feb 24 12:37:19 2005  Steve Huston  <shuston@riverace.com>

        * ace/Asynch_Acceptor.cpp (accept): Use ==, not =, to check a value.
          This is why constants work better on the left-hand side...

        * ace/POSIX_Asynch_IO.{h cpp} (ACE_POSIX_Asynch_Result):
        * ace/WIN32_Asynch_IO.{h cpp} (ACE_WIN32_Asynch_Result): Changed
          the handler_proxy_ from a Proxy_Ptr& to a Proxy_Ptr. This causes
          the reference count to be incremented properly, avoiding premature
          deletion of the ACE_Handler. Fixes weird errors and crashes with
          Proactor_Test.

Wed Feb 23 13:53:39 2005  J.T. Conklin  <jtc@acorntoolworks.com>

        * bin/MakeProjectCreator/config/acedefaults.mpb:
        * bin/MakeProjectCreator/config/taodefaults.mpb:

          Add automake specific am_version variable.

Wed Feb 23 19:56:01 2005  Boris Kolpackov  <boris@kolpackov.net>

        * protocols/ace/RMCast/Stack.h: Added export macros.

Wed Feb 23 19:48:59 2005  Boris Kolpackov  <boris@kolpackov.net>

        * protocols/ace/RMCast/Bits.h:
        * protocols/ace/RMCast/Link.cpp:
        * protocols/ace/RMCast/Socket.cpp:
        * protocols/ace/RMCast/Socket.h: Replaced auto_ptr with
          ACE_Auto_Ptr.

Tue Feb 22 18:03:41 2005  Steve Huston  <shuston@riverace.com>

        * ace/Ping_Socket.cpp: Rather than try to use struct ip, which can
          change subtly between platforms, use the well-known layout of the
          IP header to pick off the length field. This avoids a maze of
          #if blocks to use the platform struct properly at the cost of
          using low-level details.

Tue Feb 22 21:30:04 2005  Boris Kolpackov  <boris@kolpackov.net>

        * protocols/ace/RMCast/Link.cpp: Replaced assignment of auto_ptr's
          with a call to reset() in search for a way around VxWorks' broken
          implementation.

Tue Feb 22 21:20:22 2005  Boris Kolpackov  <boris@kolpackov.net>

        * protocols/ace/RMCast/Stack.cpp:
        * protocols/ace/RMCast/Stack.h: Moved implementation of functions
          from .h to .cpp. This should get rid of warnings in VC7.1 build.

Mon Feb 21 18:18:29 2005  Steve Huston  <shuston@riverace.com>

        * configure.ac: Added a check for the need to add _NO_BITFIELDS to
          compile macros. This is needed to prevent compile errors on
          Visual Age C++ on AIX. Without it, the check for need to alter
          TCP header file includes gets the wrong answer, then the build
          tries the wrong thing. This gets around having to know the
          TCP header issue apriori like we do with the hand config.h.

          Changed the ACE_HAS_DEV_POLL test from a check for the /dev/poll
          file to a run-test to be able to open it. The file is there on
          HP-UX, but not useable til some patches are installed.

          Fixed a missing set of quotes on $ace_user_with_ssl.

        * ace/Asynch_Acceptor.cpp (ACE_Asynch_Accept::handle_accept): Don't
          try to restart an accept if the listen socket is closed. Together
          with closing the socket in the destructor, prevents errors at
          destructor time from trying to restart an accept.

        * ace/Dev_Poll_Reactor.cpp: Include <sys/devpoll.h> if not on
          Linux, not only if on Solaris. Allows this to work on other
          /dev/poll-enabled platforms.

Mon Feb 21 12:43:41 2005  Steve Huston  <shuston@riverace.com>

        * ace/Asynch_IO.{h cpp} (ACE_Asynch_Accept): Added an optional
          addr_family parameter to ACE_Asych_Accept. Defaults to AF_INET
          (IPv4) to maintain current functionality.
          Doxygen-ized the comments for accept().

        * ace/Asynch_IO_Impl.h (ACE_Asynch_Accept_Impl): Pass the new
          addr_family arugment along to the implementation classes.

        * ace/POSIX_Asynch_IO.{h cpp}:
        * ace/WIN32_Asynch_IO.{h cpp} (ACE_WIN32_Asynch_Accept::accept): Use
          the new addr_family parameter to open a new accept handle if needed.
          It is up to the caller to make sure that addr_family matches the
          family used when the listen socket was opened.
          Also use the address family to scale the required size
          of the address area in the specified message block.

        * Asynch_Acceptor.{h cpp}: Added a new addr_family_ member to remember
          the in-use address family from open(). Use this value to calculate
          the space needed for addresses, as well as passing it to
          ACE_Asynch_Accept::accept() to open the correct type of handle
          when needed.
          Marked the address_size() method deprecated. It assumes use of
          IPv4 addresses and since it's static, it can't use the addr_family_
          knowledge. Replaced all internal uses of this with the proper
          adjustment based on the address family in use.
          Close the listen_handle_ when this object is destroyed.

Mon Feb 21 09:32:21 2005  Steve Huston  <shuston@riverace.com>

        * ace/Ping_Socket.h: Removed extraneous ',' to fix compiler warning.

        * m4/config_h.m4: Added AH_TEMPLATE for ACE_LACKS_INET_ATON
        * configure.ac: Added check for ACE_LACKS_INET_ATON.

Mon Feb 21 15:42:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/tao_orb_tests.lst:
          Added missing semi colon after the Identity test

Mon Feb 21 07:31:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * examples/RMCast/Send_Msg/Send_Msg.mpc:
          Both examples require exceptions

Sun Feb 20 19:15:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/MakeProjectCreator/config/rmcast.mpb:
          Removed exceptions as base projects

Sat Feb 19 10:32:29 2005  Boris Kolpackov  <boris@kolpackov.net>

        * examples/RMCast/Send_Msg/Receiver.cpp: Added explicit
          return statements from ACE_TMAIN.

Sat Feb 19 00:54:22 2005  Balachandran Natarajan  <bala@dre.vanderbilt.edu>

        * ace/Select_Reactor_T.inl (deactivate):

          Fixed a potential race when trying to update deactivated_ flag.

Fri Feb 18 20:05:53 2005  Douglas C. Schmidt  <schmidt@cs.wustl.edu>

        * ace/Signal.{h,inl}: Make the destructor of ACE_Sig_Handler virtual
          to silence warnings.  Thanks to Lothar <lothar@xcerla.com> for
          reporting this.

Fri Feb 18 19:54:33 2005  Martin Corino  <mcorino@remedy.nl>

        * tests/Max_Default_Port_Test.cpp:

          Fixed a bug because I forgot an #if/#endif bracket:-(

Fri Feb 18 18:48:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/tao_orb_tests.lst:
          Don't try to run bug_1551_regression on Irix

Fri Feb 18 09:46:25 2005  Dale Wilson  <wilson_d@ociweb.com>

        * NEWS:
          Documented TSS changes.

        * ace/OS_NS_Thread.h:
          Added a comment that the "inst" argument to ACE_OS::thr_key_detach
          and thr_keycreate is deprecated and will be ignored.

Fri Feb 18 09:34:06 2005  Dale Wilson  <wilson_d@ociweb.com>

        * ace/OS_NS_Thread.cpp:
          Remove another ACE_UNUSED_ARG for the defunct inst argument.
          This one showed up in single-threaded builds.

Fri Feb 18 13:48:33 2005  Martin Corino  <mcorino@remedy.nl>

        * tests/Max_Default_Port_Test.cpp:

          Tweaked the test for VxWorks so it can also succeed on
          that platform with non-optimized kernels.

Fri Feb 18 07:21:33 2005  Boris Kolpackov  <boris@kolpackov.net>

        * protocols/ace/RMCast/Socket.cpp: Qualified call to
          base's send(). Hopefully it will make VC6 happy.

Thu Feb 17 18:23:33 2005  Steve Huston  <shuston@riverace.com>

        * m4/ace.m4: Corrected error message on --enable-wfmo.
          Added default (yes) for --enable-rtti.

Thu Feb 17 14:26:28 2005  Boris Kolpackov  <boris@kolpackov.net>

        * examples/RMCast/Send_Msg/Sender.cpp:
        * examples/RMCast/Send_Msg/Receiver.cpp: Changed to use
          ACE_TMAIN and ACE_TCHAR instead of main and char.


Thu Feb 17 14:15:42 2005  Boris Kolpackov  <boris@kolpackov.net>

        * protocols/ace/RMCast/Protocol.h: Removed accidental use
          of C++ exceptions plus changes to make VC6 happy.

        * protocols/ace/RMCast/RMCast.mpc: Removed `exceptions'
          from the list of prerequisites.

        * examples/RMCast/Send_Msg/Receiver.cpp: Got rid of
          repetitive `i' uses in for-loops. VC6 can't handle that.

Thu Feb 17 09:48:03 2005  J.T. Conklin  <jtc@acorntoolworks.com>

        * protocols/ace/RMCast/RMCast.mpc:
        * protocols/ace/TMCast/TMCast.mpc:

          Added Pkgconfig_Files sections.

Thu Feb 17 08:32:08 2005  Dale Wilson  <wilson_d@ociweb.com>

        * ace/OS_NS_Thread.cpp:
          Fix compile errors when TSS Emulation is enabled.
          de-templatize the Thread_Safe_Instance object to avoid fighting
          template instantiation issues now.

Wed Feb 16 17:10:14 2005  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * ace/OS_NS_Thread.cpp (thr_key_detach, thr_keycreate):

          Removed "ACE_UNUSED_ARG" macro calls for non-existent "inst"
          parameter.

Wed Feb 16 17:04:50 2005  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * bin/MakeProjectCreator/config/rmcast.mpb:
        * protocols/ace/RMCast/RMCast.mpc:

          The RMCast protocol implementation currently requires thread
          support.  Updated these MPC files accordingly.

        * protocols/ace/RMCast/Protocol.h (NAK):

          Since "NAK" is now a class instead of struct, public inheritance
          must be explicitly specified.  Fixes compile-time errors related
          to inaccessible members in the "Profile" base class.

Wed Feb 16 18:31:28 2005  Steve Huston  <shuston@riverace.com>

        * protocols/ace/RMCast/Acknowledge.cpp:
        * protocols/ace/RMCast/Link.cpp:
        * protocols/ace/RMCast/Socket.cpp:
          Fixed some constructs to make MSVC6 happy. Primarily, MSVC6 won't
          allow type& var (ref). Must be type& var = ref.

        * protocols/ace/RMCast/Protocol.h: Changed struct NAK to class NAK to
          make MSVC6 happy.

          MSVC6 is still not completely happy, but someone with more insight as
          to the intentions here will need to take a look.

Wed Feb 16 16:18:45 2005  Dale Wilson  <wilson_d@ociweb.com>

        * ace/OS_NS_Thread.cpp:
          Rework the ACE_TSS_Cleanup to:
          - Remove special handling for ACE_TSS<X>. (No automatic key free)
          - If the application replaces a TSS object, the application assumes
            responsibility for deleting the old object (as specifed by POSIX)
            Note that the TSS_Test program depends on this behavior.
          - If an application frees a TSS key while it is still in use by other
            threads, the TSS objects are leaked.  Formerly I had added an ASSERT
            to catch this case, but POSIX says it's legal (but I still think it's
            wrongheaded!)
          - Interpret a request to attach a zero pointer to a TSS key for a thread
            as a detach from the key.  The TSS_Test program does this then frees
            the key (which is how I found out about the previous point).
          - Rework the ACE_TSS_Cleanup instance support to make it safe to delete
            the ACE_TSS_Cleanup object even in not all threads have terminated.
            Lingering threads may leak, but they shouldn't crash.  Note that on
            windows it is commmon practice to leave threads running -- expecting them
            to be terminated by end-of-process (shudder.), and TAO has a habit of not
            waiting for a thread blocked at a select() to terminate.
          - Make it safe to call ACE_OS::cleanup_tss more than once for the same
            thread.  This makes the change to OS_NS_stdio (below) safe.

        * ace/OS_NS_Thread.h:
          Remove tss_inst from the ACE_TSS_Info structure.
          It was used by ACE_TSS<X> special handling.

        * ace/TSS_T.cpp:
          Explicitly call ACE_OS::thr_keyfree from the destructor of an ACE_TSS<X>
          rather than relying on special handling from ACE_TSS_Cleanup.

        * ace/OS_NS_stdio.cpp:
          Add a call to ACE_OS::cleanup_tss to the DllMain function on THREAD_DETACH.
          This will cleanup TSS for non-ACE threads that call ACE functions (like logging)
          on WIN32 systems.

          This change addresses Bugzilla 1542 and 2044 (although not the way the author of the
          bugzilla report suggested.)


Wed Feb 16 20:41:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/generate_rel_manpages:
          We are now using doxygen 1.4.1

Wed Feb 16 11:17:27 2005  Steve Huston  <shuston@riverace.com>

        * ace/OS_NS_stdlib.cpp: Don't #include <limits> if the max() method
          won't be used; same reasoning as:
          Tue Feb 15 18:19:25 2005  Steve Huston  <shuston@riverace.com>

Wed Feb 16 18:15:07 2005  Olli Savia  <ops@iki.fi>

        * include/makeinclude/platform_lynxos.GNU:
          Fixed setting of ACE_LYNXOS_MAJOR and ACE_LYNXOS_MINOR.

Wed Feb 16 11:04:29 2005  Steve Huston  <shuston@riverace.com>

        * ace/SSL/SSL_Asynch_Stream.cpp: Corrections to use ACE_Handler::Proxy
          instead of naked ACE_Handler pointers/references.

Wed Feb 16 10:19:19 2005  Steve Huston  <shuston@riverace.com>

        * ace/Asynch_IO.h: Remove the extraneous ACE_Handler:: qualification
          of Proxy_Ptr used inside ACE_Handler. This confused MSVC 6.

Wed Feb 16 10:13:41 2005  Steve Huston  <shuston@riverace.com>

        * examples/Reactor/Proactor/post_completions.cpp:
        * examples/Reactor/Proactor/test_proactor.cpp: Adjust the overridden
          result class and internal proactor calls to pass handler's proxy
          pointer, not the handler itself.

Wed Feb 16 07:02:15 2005  Chad Elliott  <elliott_c@ociweb.com>

        * ace/OS_NS_stdlib.inl:
        * ace/config-sunos5.7.h:
        * ace/config-sunos5.8.h:

          On SunOS 5.7, some wchar_t related methods are always in the std
          namespace when building with SunCC 5.3.

        * bin/PerlACE/Process_Unix.pm:
        * bin/PerlACE/Process_Win32.pm:

          Added a ACE_TEST_WINDOW environment variable which can be used to
          start each process    in a separate window by setting it to
          something like 'rxvt -e' and ACE_TEST_VERBOSE which causes the
          command line of each process to be printed out as it is started.

        * examples/C++NPv2/C++NPv2.mpc:

          Added additional project ordering for the gnuace type to avoid
          build problems with parallel builds.

        * examples/Log_Msg/Log_Msg_MFC/Log_Msg_MFCDlg.cpp:

         Simple modifications to allow this to build with EVC 4.

        * include/makeinclude/platform_g++_common.GNU:

          Changed a grep command to something compatible with Solaris as
          well as Linux.

        * include/makeinclude/platform_sunos5_sunc++.GNU:

          Set the default template instantiation mode to automatic for every
          version except SunCC 4.2.

Wed Feb 16 12:56:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * etc/ace_rmcast.doxygen:
          Fixed typo in INPUT

Tue Feb 15 18:10:56 2005  J.T. Conklin  <jtc@acorntoolworks.com>

        * m4/ace.m4:

          Removed ACE_ENABLE_RMCAST macro.  Building RMCast library is now
          unconditional.

Tue Feb 15 18:45:26 2005  Steve Huston  <shuston@riverace.com>

        * ace/POSIX_Asynch_IO.{h cpp}:
        * ace/POSIX_Proactor.cpp: Fixed compile errors resulting from
          Proxy_Ptr changes, below.

Tue Feb 15 18:19:25 2005  Steve Huston  <shuston@riverace.com>

        * ace/Asynch_IO.{h cpp}:
        * ace/Asynch_IO_Impl.h:
        * ace/POSIX_Asynch_IO.{h cpp}:
        * ace/POSIX_Proactor.{h cpp}:
        * ace/Proactor.{h cpp}:
        * ace/Proactor_Impl.h:
        * ace/WIN32_Asynch_IO.{h cpp}:
        * ace/WIN32_Proactor.{h cpp}: All methods that accepted an ACE_Handler
          below the user-accessed methods were changed to accept an
          ACE_Handler::Proxy_Ptr instead. The ACE_Handler class has a new
          Proxy_Ptr typedef which is an ACE_Refcounted_Auto_Ptr for
          a Proxy class. When an ACE_Handler is created, it allocates a
          Proxy to refer to itself. The Proxy carries a pointer to the
          ACE_Handler it proxies for in lower levels of the framework.
          When the ACE_Handler is destroyed, it clears the ACE_Handler
          pointer in the proxy.
          Any part of the framework that dispatches completions gets the
          ACE_Handler pointer from the proxy and only dispatches if the
          pointer is not 0. This allows ACE_Handlers to be deleted while
          operations may be outstanding, a previously vexing issue since one
          can never be sure how many operations are outstanding at any given
          time. The Proxy remains valid until all references to it are
          released.

        * ace/config-win32-common.h: Removed NOMINMAX define. The min/max
          stuff is needed for MFC and CString classes and, since we require
          ACE includes to come before system includes, adding NOMINMAX in all
          cases makes life very hard for these users.

        * ace/OS_NS_stdlib.cpp (mkstemp_emulation): Don't try the
          std::numeric_limits<char>::max() call if 'max' is a macro. Use the
          older hard-coded 127 instead.

Tue Feb 15 14:33:18 2005  J.T. Conklin  <jtc@acorntoolworks.com>

        * examples/RMCast/Send_Msg/Makefile.am:
        * examples/TMCast/Member/Makefile.am:

          Regenerated.

        * examples/RMCast/Send_Msg/Receiver.cpp:
        * examples/RMCast/Send_Msg/Sender.cpp:
        * examples/TMCast/Member/member.cpp:

          Changed <protocols/ace/*.h> to <ace/*.h> so headers are
          #included the same regardless of whether they're in the
          source tree or installed.

        * examples/TMCast/Member/Member.mpc:

          Add exename definition so executable is actually built.

Tue Feb 15 16:15:28 2005  Steve Huston  <shuston@riverace.com>

        * examples/RMCast/Receiver.cpp:
        * examples/RMCast/Sender.cpp:
        * examples/TMCast/Member/member.cpp: Corrected location of includes
          after they moved.

Tue Feb 15 13:34:42 2005  J.T. Conklin  <jtc@acorntoolworks.com>

        * Makefile.am:

          Move examples until after protocols in SUBDIRS.

Tue Feb 15 13:32:15 2005  J.T. Conklin  <jtc@acorntoolworks.com>

        * configure.ac:

          Configure moved RMCast and TMCast libraries.

        * bin/MakeProjectCreator/config/rmcast.mpb:

          Removed "requires += rmcast".  The RMCast library is now built
          unconditionally.

        * bin/MakeProjectCreator/config/rmcast.mpb:
        * bin/MakeProjectCreator/config/tmcast.mpb:

          Append $(ACE_ROOT)/protocols to includes.

Tue Feb 15 21:27:25 2005  Olli Savia  <ops@iki.fi>

        * ace/config-lynxos.h:
        * include/makeinclude/platform_lynxos.GNU:
          Updated. Utilize new ACE_LYNXOS_* macros, removed some ancient
          settings etc.

        * examples/APG/ThreadPools/LF_ThreadPool.cpp:
        * examples/APG/ThreadPools/ThreadPool.cpp:
          Replaced NULL with 0.

        * tests/Reactor_Dispatch_Order_Test.cpp:
          Utilize new ACE_LYNXOS_* macros to differentiate LynxOS
          versions.

Tue Feb 15 10:23:39 2005  Douglas C. Schmidt  <schmidt@cs.wustl.edu>

        * examples/Service_Configurator/Misc/Timer_Service.cpp (handle_close):
          Make sure to cancel the timer when we're done.  Thanks to Scott
          Z <sz@finsatconsulting.com> for reporting this.

Tue Feb 15 11:11:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/ACE.h:
        * ace/OS_NS_string.h:
          Doxygen improvements

Tue Feb 15 11:07:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * etc/ace_rmcast.doxygen:
          Updated because of move of RMCast library

Mon Feb 14 20:19:35 2005  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * protocols/ace/RMCast/Socket.h (Socket):

          Export this class in the shared library case.  Addresses
          link-time errors in MS Windows builds.

Mon Feb 14 18:45:28 2005  Steve Huston  <shuston@riverace.com>

        * protocols/ace/RMCast/Acknowledge.{h cpp}:
        * protocols/ace/RMCast/Link.h:
        * protocols/ace/RMCast/Protocol.{h cpp}:
        * protocols/ace/RMCast/Retransmit.{h cpp}:
        * protocols/ace/RMCast/Simulator.{h cpp}:
        * protocols/ace/RMCast/Socket.{h cpp}:
        * protocols/ace/RMCast/Stack.{h cpp}:
          Get RMCast's includes by #include "file.h", not
          #include <ace/RMCast/file.h>.

Mon Feb 14 18:24:19 2005  Steve Huston  <shuston@riverace.com>

        * ace/OS_TLI.inl: Added "namespace ACE_OS" around all the methods,
          instead of prepending ACE_OS to the names. This continues some
          similar changes, such as to OS_NS_signal.inl.

        * apps/JAWS3/jaws3/Asynch_IO.h:
        * apps/JAWS3/jaws3/Asynch_IO_Helpers.h:
        * apps/JAWS3/jaws3/Concurrency_T.h:
        * apps/JAWS3/jaws3/Event_Dispatcher.h:
        * apps/JAWS3/jaws3/Options.h:
        * apps/JAWS3/jaws3/Reactive_IO.h:
        * apps/JAWS3/jaws3/Reactive_IO_Helpers.h:
        * apps/JAWS3/jaws3/Signal_Task.h:
        * apps/JAWS3/jaws3/Synch_IO.h:
          Removed #include "ace/OS.h", replacing with other #includes
          as needed. If OS.h is included, some other OS_*.h files can get
          pulled in and sometimes ends up tentatively defining structs in
          ACE_OS's namespace. This can end up tripping HP-UX aCC. Not sure
          why it's only aCC and not other compilers as well, but there it is.
          Finally resolves some nagging compile errors on HP-UX.

        * apps/JAWS3/jaws3/Concurrency.cpp:
        * apps/JAWS3/jaws3/IO.cpp: Add missing OS_NS_* defines
          necessitated by no longer including OS.h.

Mon Feb 14 17:36:43 2005  Steve Huston  <shuston@riverace.com>

        * ace/ace.mwc: Removed RMCast and TMCast, since they're now under
          protocols/ace.

        * ace/Makefile.am:
        * protocols/ace/Makefile.am: Moved RMCast and TMCast entries from
          the former to the latter.

Mon Feb 14 17:03:11 2005  Steve Huston  <shuston@riverace.com>

        * ace/RMCast/Acknowledge.cpp:
        * ace/RMCast/Acknowledge.h:
        * ace/RMCast/Agent.tar.bz2:
        * ace/RMCast/Bits.h:
        * ace/RMCast/Link.cpp:
        * ace/RMCast/Link.h:
        * ace/RMCast/Protocol.cpp:
        * ace/RMCast/Protocol.h:
        * ace/RMCast/RMCast.mpc:
        * ace/RMCast/Retransmit.cpp:
        * ace/RMCast/Retransmit.h:
        * ace/RMCast/Simulator.cpp:
        * ace/RMCast/Simulator.h:
        * ace/RMCast/Socket.cpp:
        * ace/RMCast/Socket.h:
        * ace/RMCast/Stack.cpp:
        * ace/RMCast/Stack.h:
          Moved from ace/RMCast to protocols/ace/RMCast.

        * ace/TMCast/ACE_TMCast.pc.in:
        * ace/TMCast/Export.hpp:
        * ace/TMCast/FaultDetector.hpp:
        * ace/TMCast/Group.cpp:
        * ace/TMCast/Group.hpp:
        * ace/TMCast/GroupFwd.hpp:
        * ace/TMCast/LinkListener.hpp:
        * ace/TMCast/MTQueue.cpp:
        * ace/TMCast/MTQueue.hpp:
        * ace/TMCast/Makefile.am:
        * ace/TMCast/Messaging.hpp:
        * ace/TMCast/Protocol.cpp:
        * ace/TMCast/Protocol.hpp:
        * ace/TMCast/README:
        * ace/TMCast/TMCast.mpc:
        * ace/TMCast/TransactionController.hpp:
          Moved from ace/TMCast to protocols/ace/TMCast.

Mon Feb 14 21:34:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Global_Macros.h:
          Added !ACE_LACKS_DEPRECATED_MACROS around ACE_CLASS_IS_NAMESPACE,
          ACE_CORBA_1, ACE_CORBA_2, and ACE_CORBA_3. We have a build where
          ACE_LACKS_DEPRECATED_MACROS is defined and we can so easily make
          sure these deprecated macros are not used anymore in the ACE/TAO
          code, our users can just use these macros until x.5.1 has been
          released, then these macros are on the list to be removed.

Mon Feb 14 23:08:52 2005  Olli Savia  <ops@iki.fi>

        * include/makeinclude/platform_lynxos.GNU:
          Added missing Id tag that somehow disappeared in
          previous checkin.

Mon Feb 14 12:17:06 2005  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * ace/RMCast/Link.cpp:

          Include "ace/OS_NS_sys_socket.h" to pull in ACE_OS::connect()
          prototype.

        * ace/RMCast/Protocol.h:

          Include "ace/OS_NS_string.h" to pull in ACE_OS::memcpy()
          prototype.

Mon Feb 14 11:59:27 2005  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * ace/RMCast/Protocol.h (id):
        * ace/RMCast/Protocol.cpp (id):

          Moved static constant initialization out of class declaration.
          MSVC++ 6 cannot handle in-class static constant initialization.
          Thanks to Chad Elliot for pointing the problem.

        * ace/RMCast/Link.cpp (recv):

          Changed the "switch" expression to an "if/else" expression since
          the actual values of the cases are no longer available to the
          compiler when compiling this file.

Mon Feb 14 20:37:56 2005  Olli Savia  <ops@iki.fi>

        * include/makeinclude/platform_lynxos.GNU:

          Removed LynxOS 2.5 leftovers.
          Added definition of two new preprocessor macros
          ACE_LYNXOS_MAJOR and ACE_LYNXOS_MINOR. These macros make
          easier to maintain code that depend on LynxOS version.

Mon Feb 14 10:51:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * Kokyu/DSRT_Dispatch_Item_T.h:
        * ACEXML/common/InputSource.h:
          Replaced ACE_EXPLICIT with explicit

Mon Feb 14 01:22:19 2005  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * examples/RMCast/Send_Msg/Receiver.cpp:

          Use "ACE_OS::memcmp()" instead of "std::memcmp()".  MSVC++ 6
          doesn't place memcmp() in the "std" C++ namespace.

Mon Feb 14 00:56:18 2005  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * ace/RMCast/Acknowledge.cpp:

          No need to include "ace/OS.h".  Include "ace/OS_NS_unistd.h"
          instead.

        * ace/RMCast/Protocol.h:

          Corrected friend declaration to use "struct" instead of "class"
          since the friend type in question is actually struct.

Mon Feb 14 00:41:11 2005  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * ace/RMCast/Bits.h:

          Added support for single-threaded configurations.

        * ace/RMCast/Link.cpp:

          Explicitly cast INADDR_ANY argument in ACE_INET_Addr constructor
          call to ACE_UINT32.  Addresses constructor ambiguity issues
          exhibited by some compilers.

        * ace/RMCast/Protocol.h:
        * ace/RMCast/Simulator.h:
        * ace/RMCast/Socket.h:

          Added missing #include directives now made necessary by header
          reductions in "Bits.h".

Sun Feb 13 13:32:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Timer_Queue_Adapters.h:
          Doxygen improvements

Sun Feb 13 13:18:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-lite.h:
          When the new define ACE_LACKS_DEPRECATED_MACROS is set, the
          deprecated macros ACE_MUTABLE, ACE_EXPLICIT and
          ACE_CONST_WHEN_MUTABLE are not defined making it easy to see
          if we use these deprecated macros anywhere. These macros are
          defined normally so for our users nothing changes

        * ace/README:
          Documented ACE_LACKS_DEPRECATED_MACROS

Sun Feb 13 07:03:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/tao_other_tests.lst:
          Disabled the notify filter performance test under Irix, it hangs
          forever

        * ace/Asynch_IO.h:
          Updated some method signatures so that they are exactly the same
          as used in the implementation to resolve Doxygen warnings

        * ace/config-doxygen.h:
          Added define of ACE_HAS_ICMP_SUPPORT to 1 so that icmp classes are
          also parsed by doxygen

Sat Feb 12 09:00:51 2005  J.T. Conklin  <jtc@acorntoolworks.com>

        * m4/ace.m4:

          Rename ACE_WITH_{GL,FL,QT,TK} autoconf macros to ACE_PATH_{GL,
          FL,QT,TK} to be consistant with standard naming conventions.

Sat Feb 12 01:00:25 2005  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * ace/RMCast/Protocol.h (Header):

          Fixed "value computed is not used" warning exhibited by g++ 4.0
          CVS snapshot.

        * ace/RMCast/RMCast.mpc:
        * bin/MakeProjectCreator/config/rmcast.mpb:

          Require native C++ exception support.  The new reliable
          multicast implementation currently requires it.

Sat Feb 12 00:09:18 2005  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * ace/RMCast/Protocol.h:

          Work around Borland C++ Builder 6 (or earlier) inability to deal
          with default template parameters.  Thanks to Johnny for
          suggesting a work-around.

Fri Feb 11 21:39:04 2005  J.T. Conklin  <jtc@acorntoolworks.com>

        * configure.ac:

          Updated for new RMCast implementation.

        * tests/Makefile.am:

          Removed RMCast from SUBDIRS.

        * ace/RMCast/Makefile.am:
        * examples/RMCast/Makefile.am:
        * examples/RMCast/Send_Msg/Makefile.am:

          New files.

Fri Feb 11 17:59:50 2005  J.T. Conklin  <jtc@acorntoolworks.com>

        * ace/Makefile.am:

          Fix typo in pkgconfigdatadir definition.

Fri Feb 11 18:11:29 2005  Steve Huston  <shuston@riverace.com>

        * ace/Dev_Poll_Reactor.{h inl cpp}:
          Comment out the check for epoll's proper Linux kernel version
          based on linux/version.h. It's not always accurate. For example,
          on Fedora Core 2 it says 2.4.20, yet the actual kernel is 2.6.5
          and epoll_ctl works fine (apparantly).

          Removed the original reference counting scheme based on the
          handler repository and implemented the ACE_Event_Handler-based
          scheme used by the other reactors. Kept the
          ACE_Dev_Poll_Handler_Guard class, though, as it is very nice.
          Just changed some contents and added a release() method to make it
          easier to work with the notify case since the refcount is incremented
          when the handler is queued for notify and decremented after the
          later upcall is done.

          (wakeup_all_threads): Removed the #if 0 block around the notify()
          call. This works fine (and is necessary) for epoll-capable systems.

          (handle_events_i, dispatch): Moved the signal-dispatched detection
          to handle_events_i() from dispatch() and allowed a dispatched signal
          to count as a dispatched event instead of always causing a
          -1/EINTR return.

          (dispatch_io_events): Increment io_handlers_dispatched before
          doing the upcall. Previously, it wouldn't get incremented if the
          handler returned -1.

        * ace/Reactor.cpp: Added the ability to specify ACE_Dev_Poll_Reactor
          as the default reactor implementation by specifying
          ACE_USE_DEV_POLL_REACTOR_FOR_REACTOR_IMPL in the config file.

        * tests/Dev_Poll_Reactor_Test.cpp: Ignore SIGPIPE, else if the
          receiving side closes its handle first, the sending side will crash
          on SIGPIPE. Make the Client shut down its reactor if handle_output()
          fails. Else, the timer will never fire again and the test will hang.

        * tests/MT_Reactor_Upcall_Test.cpp:
        * tests/MT_Reference_Counted_Event_Handler_Test.cpp:
        * tests/MT_Reference_Counted_Notify_Test.cpp: Added test for
          ACE_Dev_Poll_Reactor using -d (defaults to 1) but only runs it
          if ACE_HAS_EVENT_POLL is set.
          For MT_Reference_Counted_Notify_Test, added checks to see that
          the reference count actually gets incremented for the upcall.

Fri Feb 11 13:55:47 2005  J.T. Conklin  <jtc@acorntoolworks.com>

        * configure.ac:
        * m4/config_h.m4:

          Define ACE_HAS_ICMP_SUPPORT if host supports raw sockets.
          This fixes bugzilla id [2039].

Fri Feb 11 21:33:37 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/make_release:
          Don't perform crlf conversions on a .bz2 file during the release

Fri Feb 11 08:43:04 2005  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * ace/RMCast/Makefile.am:
        * ace/RMCast/RMCast.cpp:
        * ace/RMCast/RMCast.h:
        * ace/RMCast/RMCast.rc:
        * ace/RMCast/RMCast_Ack_Worker.cpp:
        * ace/RMCast/RMCast_Ack_Worker.h:
        * ace/RMCast/RMCast_Ack_Worker.i:
        * ace/RMCast/RMCast_Copy_On_Write.cpp:
        * ace/RMCast/RMCast_Copy_On_Write.h:
        * ace/RMCast/RMCast_Copy_On_Write.i:
        * ace/RMCast/RMCast_Export.h:
        * ace/RMCast/RMCast_Fork.cpp:
        * ace/RMCast/RMCast_Fork.h:
        * ace/RMCast/RMCast_Fork.i:
        * ace/RMCast/RMCast_Fragment.cpp:
        * ace/RMCast/RMCast_Fragment.h:
        * ace/RMCast/RMCast_Fragment.i:
        * ace/RMCast/RMCast_IO_UDP.cpp:
        * ace/RMCast/RMCast_IO_UDP.h:
        * ace/RMCast/RMCast_IO_UDP.i:
        * ace/RMCast/RMCast_Membership.cpp:
        * ace/RMCast/RMCast_Membership.h:
        * ace/RMCast/RMCast_Membership.i:
        * ace/RMCast/RMCast_Module.cpp:
        * ace/RMCast/RMCast_Module.h:
        * ace/RMCast/RMCast_Module.i:
        * ace/RMCast/RMCast_Module_Factory.cpp:
        * ace/RMCast/RMCast_Module_Factory.h:
        * ace/RMCast/RMCast_Partial_Message.cpp:
        * ace/RMCast/RMCast_Partial_Message.h:
        * ace/RMCast/RMCast_Partial_Message.i:
        * ace/RMCast/RMCast_Proxy.cpp:
        * ace/RMCast/RMCast_Proxy.h:
        * ace/RMCast/RMCast_Proxy.i:
        * ace/RMCast/RMCast_Reassembly.cpp:
        * ace/RMCast/RMCast_Reassembly.h:
        * ace/RMCast/RMCast_Receiver_Module.cpp:
        * ace/RMCast/RMCast_Receiver_Module.h:
        * ace/RMCast/RMCast_Receiver_Module.i:
        * ace/RMCast/RMCast_Reliable_Factory.cpp:
        * ace/RMCast/RMCast_Reliable_Factory.h:
        * ace/RMCast/RMCast_Reliable_Factory.i:
        * ace/RMCast/RMCast_Reordering.cpp:
        * ace/RMCast/RMCast_Reordering.h:
        * ace/RMCast/RMCast_Reordering.i:
        * ace/RMCast/RMCast_Resend_Handler.cpp:
        * ace/RMCast/RMCast_Resend_Handler.h:
        * ace/RMCast/RMCast_Resend_Handler.i:
        * ace/RMCast/RMCast_Resend_Worker.cpp:
        * ace/RMCast/RMCast_Resend_Worker.h:
        * ace/RMCast/RMCast_Resend_Worker.i:
        * ace/RMCast/RMCast_Retransmission.cpp:
        * ace/RMCast/RMCast_Retransmission.h:
        * ace/RMCast/RMCast_Retransmission.i:
        * ace/RMCast/RMCast_Sequencer.cpp:
        * ace/RMCast/RMCast_Sequencer.h:
        * ace/RMCast/RMCast_Sequencer.i:
        * ace/RMCast/RMCast_Singleton_Factory.cpp:
        * ace/RMCast/RMCast_Singleton_Factory.h:
        * ace/RMCast/RMCast_Singleton_Factory.i:
        * ace/RMCast/RMCast_UDP_Event_Handler.cpp:
        * ace/RMCast/RMCast_UDP_Event_Handler.h:
        * ace/RMCast/RMCast_UDP_Event_Handler.i:
        * ace/RMCast/RMCast_UDP_Proxy.cpp:
        * ace/RMCast/RMCast_UDP_Proxy.h:
        * ace/RMCast/RMCast_UDP_Proxy.i:
        * ace/RMCast/RMCast_UDP_Reliable_Receiver.cpp:
        * ace/RMCast/RMCast_UDP_Reliable_Receiver.h:
        * ace/RMCast/RMCast_UDP_Reliable_Receiver.i:
        * ace/RMCast/RMCast_UDP_Reliable_Sender.cpp:
        * ace/RMCast/RMCast_UDP_Reliable_Sender.h:
        * ace/RMCast/RMCast_UDP_Reliable_Sender.i:
        * ace/RMCast/RMCast_Worker.cpp:
        * ace/RMCast/RMCast_Worker.h:
        * examples/RMCast/Makefile.am:
        * examples/RMCast/Send_File/Makefile.am:
        * examples/RMCast/Send_File/RMCast_Send_File.mpc:
        * examples/RMCast/Send_File/Receiver.cpp:
        * examples/RMCast/Send_File/Sender.cpp:
        * tests/RMCast/Main.cpp:
        * tests/RMCast/Makefile.am:
        * tests/RMCast/RMCast_Fragment_Test.cpp:
        * tests/RMCast/RMCast_Membership_Test.cpp:
        * tests/RMCast/RMCast_Reassembly_Test.cpp:
        * tests/RMCast/RMCast_Reordering_Test.cpp:
        * tests/RMCast/RMCast_Retransmission_Test.cpp:
        * tests/RMCast/RMCast_UDP_Best_Effort_Test.cpp:
        * tests/RMCast/acetest.mpb:
        * tests/RMCast/tests.mpc:

          Removed old ACE reliable multicast implementation.  It is not
          maintained, and is now superseded by Boris's implementation
          described below.

        From Boris Kolpkacov <boris at kolpackov dot net>
        * ace/RMCast/Acknowledge.cpp:
        * ace/RMCast/Acknowledge.h:
        * ace/RMCast/Agent.tar.bz2:
        * ace/RMCast/Bits.h:
        * ace/RMCast/Link.cpp:
        * ace/RMCast/Link.h:
        * ace/RMCast/Protocol.cpp:
        * ace/RMCast/Protocol.h:
        * ace/RMCast/RMCast.mpc:
        * ace/RMCast/Retransmit.cpp:
        * ace/RMCast/Retransmit.h:
        * ace/RMCast/Simulator.cpp:
        * ace/RMCast/Simulator.h:
        * ace/RMCast/Socket.cpp:
        * ace/RMCast/Socket.h:
        * ace/RMCast/Stack.cpp:
        * ace/RMCast/Stack.h:
        * examples/RMCast/Send_Msg/Protocol.h:
        * examples/RMCast/Send_Msg/README:
        * examples/RMCast/Send_Msg/Receiver.cpp:
        * examples/RMCast/Send_Msg/Send_Msg.mpc:
        * examples/RMCast/Send_Msg/Sender.cpp:

          New reliable source-ordered multicast protocol implementation
          for message-oriented multi-sender group communication built on
          top of IPv4 multicast.

Fri Feb 11 16:01:37 2005  Martin Corino  <mcorino@remedy.nl>

        * tests/Thread_Pool_Reactor_Test.cpp:
        * tests/Thread_Pool_Reactor_Resume_Test.cpp:

          Scaled down the tests on VxWorks as for CHORUS to make them
          runnable with default target kernel network parameters.

Fri Feb 11 07:32:06 2005  Chad Elliott  <elliott_c@ociweb.com>

        * ace/OS_NS_sys_time.h:
        * ace/OS_NS_sys_time.inl:
        * ace/OS_NS_time.h:
        * ace/Time_Value.h:
        * ace/Time_Value.inl:

          Enhanced support for Release mode builds for EVC 4.

Fri Feb 11 08:54:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/generate_doxygen.pl:
          Group all ciao projects together and get then the version from
          the version file in the CIAO directory. This way with a release
          the ciao documentation gets the correct version number

Fri Feb 11 08:52:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/outputdir.bor:
          Don't use separate output directories for the output, this is
          not used anymore after the switch to MPC.

        * bin/MakeProjectCreator/templates/bor.mpd:
          No need to set STATIC_DIR, DEBUG_DIR and UNICODE_DIR anymore

        * include/makeinclude/recurse.bor:
        * bin/MakeProjectCreator/modules/BorlandWorkspaceCreator.pm:
          Removed usage of MAKE_FLAGS, was not set at all

Fri Feb 11 08:47:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/tao_orb_tests.lst:
          Added !IRIX to the Bug_1361_Regression tests, it hangs forever on
          Irix

Thu Feb 10 07:04:33 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ACE version 5.4.4 released.

Thu Feb 10 02:51:19 2005  Balachandran Natarajan  <bala@dre.vanderbilt.edu>

        * Release: Added *.vcw files to the tar distribution.

Thu Feb 10 08:35:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/make_release:
          Don't do crlf conversion on .vsd files, that are Microsoft Visio
          files which must be shipped unmodified

Wed Feb  9 14:37:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/make_release:
          Added the removal of the temporary file we create in the
          old_versions_dir to check if we can write to that directory

Tue Feb  8 20:58:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ACE-INSTALL.html:
          Improved VxWorks description, committed on behalf of Martin Corino

Tue Feb  8 05:46:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/tao_orb_tests.lst:
          Disable the CodeSet test in the static builds

Mon Feb  7 21:36:37 2005  Martin Corino  <mcorino@remedy.nl>

        * tests/run_test.pl:

          Some improvements for autobuild testruns on VxWorks.

Mon Feb  7 15:19:40 2005  Phil Mesnier  <mesnier_p@ociweb.com>

        * bin/tao_orb_tests.lst:
          Added CodeSet test to the list. This should run on all platforms
          except those using GIOP 1.0 explicitly.

Mon Feb 7 14:56:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/make_release:
          Added a test to check if the previous_version directory is
          writeable for the user running this script

Mon Feb  7 05:32:32 2005  J.T. Conklin  <jtc@acorntoolworks.com>

        * configure.ac:

          Configure ACEXML makefiles if ACEXML directory exists.

Mon Feb 7 13:18:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/tao_other_tests.lst:
          After disabling a few test according to the logs already simple tests
          do hang our system. This can't be true, so for the time being I
          disabled all performance tests under windows and enabled the other
          tests again.

Mon Feb 7 12:24:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/tao_other_tests.lst:
          Don't run the pluggable udp tests on win32

Mon Feb 7 11:49:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/tao_other_tests.lst:
          Also don't run the AMI Latency test on Win32

Mon Feb 7 11:36:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/tao_other_tests.lst:
          Also don't run the Quoter example on Win32

Mon Feb 7 11:16:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/tao_other_tests.lst:
          Also don't run the Loadbalancing example on Win32

Mon Feb 7 10:34:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/tao_other_tests.lst:
          Don't run the AMI Sequence_Latency performance-test under Windows,
          it causes the system to crash. We will sort out this problem later but
          we first need to get the other tests running on Windows to keep an
          eye on the test results.

Sun Feb 6 20:53:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ACE-INSTALL.html:
          Added SuSE Linux to the list of platforms supported by
          Remedy IT

Sun Feb 6 10:33:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Service_Object.cpp:
        * ace/LSOCK_Stream.cpp:
        * ace/Event_Handler.cpp:
          Replaced c-style casts with C++ casts

Sat Feb 5 20:12:37 2005  Martin Corino  <mcorino@remedy.nl>

        * ace/OS_NS_Thread.cpp:
        * ace/OS_NS_Thread.h:
        * ace/OS_NS_Thread.inl:

          Fixed some flaws in TSS_Emulation tests for TSS key validity introduced
          some 3 years ago when key reuse was enabled for TSS_Emulation.

Sat Feb 5 15:17:37 2005  Martin Corino  <mcorino@remedy.nl>

        * tests/run_test.pl:

          Some improvements for autobuild testing with VxWorks.

        * tests/Reactor_Notify_Test.cpp:
        * tests/Task_Ex_Test.cpp:

          Scaled down testparameters for VxWorks because otherwise the tests take too
          long and are killed before having a chance to finish.

Sat Feb 5 11:38:37 2005  Martin Corino  <mcorino@remedy.nl>

        * tests/run_test.pl:

          Added functionality to run and analyze ACE tests for VxWorks from the
          autobuild process (depending on target features).

        * tests/Multicast_Test.cpp:

          Fixed sloppy resource management (sockets) leading to problems on VxWorks.

        * tests/TP_Reactor_Test.cpp:

          Fixed compiletime test around pthread_sigmask() call so it now compiles
          correctly for (non-WIN32) platforms having threads but no pthread_sigmask()
          (f.i. VxWorks).

Sat Feb 4 11:32:37 2005  Martin Corino  <mcorino@remedy.nl>

        * ace/OS_NS_time.inl:

          Made ACE_OS::gethrtime() for VxWorks always (also on PENTIUM) go through
          clock_gettime() because the RDTSC somehow does not work correctly (all
          HiResTime related tests fail) and clock_gettime() does.

Fri Feb 4 14:23:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Hashable.inl:
          Replaced c-style cast with C++ const_cast

Thu Feb  3 09:25:38 2005  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/templates/gnu.mpd:

          Ensure that TAO_ROOT is set if it is a tao or a ciao project.

Thu Feb 3 12:43:37 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/rules.local.GNU:
          Added build rule for .rc files in a static build. Thanks to
          Arto Jalkanen <ajalkane at gmail dot com> for reporting this.

Thu Feb 3 10:36:37 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-win32-common.h:
          Added ACE_LACKS_UNIX_SYSLOG

        * ace/Log_Msg_UNIX_Syslog.{h,cpp}:
          Only check for the ACE_LACKS_UNIX_SYSLOG define, not for ACE_WIN32.
          Makes it a little easier to maintain and then this class is also
          added to the doxygen documentation

Thu Feb 3 10:28:37 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/MakeProjectCreator/templates/gnu.mpd:
          Removed some empty lines and use the ?= operator to set TAO_ROOT
          and CIAO_ROOT if they are not set yet, saves us a few lines in each
          generated GNU makefile

Thu Feb 3 08:43:37 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/MakeProjectCreator/templates/gnu.mpd:
          Only generate CIAO_ROOT when we are generating a project for CIAO

Thu Feb 3 08:43:37 2005  Martin Corino  <mcorino@remedy.nl>

        * test/Proactor_Test_IPV6.cpp:

          Fixed incorrect logfile name in cases where this test is unsupported
          leading to falsely reported testfailures.

Wed Feb  2 15:25:39 2005  Steve Huston  <shuston@riverace.com>

        * ace/OS_NS_stdio.inl (vsprintf): Clarified the reason why ULONG_MAX
          doesn't always work with vswprintf(). glibc (at least newer versions
          such as 2.3) check the bounds of the buffer/size combination before
          attempting the operation.

Wed Feb 02 08:57:23 2005  Balachandran Natarajan  <bala@dre.vanderbilt.edu>

        * bin/make_release:

          Added some comments and removed some old comments.

Wed Feb  2 08:46:51 2005  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/templates/gnu.mpd:

          Added an include of $(CIAO_ROOT)/rules.ciao.GNU if 'ciao' is set.

Tue Feb 01 16:12:43 2005  Balachandran Natarajan  <bala@dre.vanderbilt.edu>

        * bin/make_release:

          A typo that created problems during tar ball creation. Removed
          updates to the *version.mpb's too.

Tue Feb  1 19:44:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/platform_vxworks5.5.x.GNU:
          Reverted part of the change Fri Jan 28 20:46:12 UTC 2005.
          Set shared_libs to empty and static_libs to 1, because of the
          change our static builds are broken, we will figure this out
          when we have setup some shared builds.

Tue Feb 1 14:33:37 2005  Martin Corino  <mcorino@remedy.nl>

        * test/OS_Test.cpp:

          Excluded rename test for VxWorks since this is only supported for a restricted
          set of filesystem drivers.

Tue Feb 1 14:30:37 2005  Martin Corino  <mcorino@remedy.nl>

        * ace/OS_NS_time.inl:

          Moved buflen check in ctime_r() to more global scope. This way
          we always get required behaviour even if OS *with* buflen arg
          behaves badly (i.e. VxWorks).

Tue Feb  1 13:47:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/ace.mpc:
        * ace/ace_flreactor.mpc:
        * ace/ace_qtreactor.mpc:
        * ace/ace_tkreactor.mpc:
        * ace/ace_xtreactor.mpc:
        * bin/MakeProjectCreator/config/aceexe.mpb:
        * bin/MakeProjectCreator/config/acelib.mpb:
        * bin/MakeProjectCreator/config/ciao_client.mpb:
        * bin/MakeProjectCreator/config/ciao_client_dnc.mpb:
        * bin/MakeProjectCreator/config/taoexe.mpb:
        * bin/MakeProjectCreator/config/taolib.mpb:
          Removed version as base project. This will be removed because it
          results in the fact that each generated GNU makefile will get the
          version number generated. We want that the GNU make rules get the
          version number from Version.h

        * bin/MakeProjectCreator/config/aceversion.mpb:
        * bin/MakeProjectCreator/config/ciaoversion.mpb:
        * bin/MakeProjectCreator/config/taoversion.mpb:
          Removed these files.

Tue Feb 1 12:42:37 2005  Martin Corino  <mcorino@remedy.nl>

        * tests/Dirent_Test.cpp:

          Fixed directory recursion test for VxWorks where chdir() only
          accepts full paths.

Tue Feb  1 11:19:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/ace_tests.lst:
          Added !VxWorks for the WFMO_Reactor tests. The perl script for those
          tests detects windows or not, but with VxWorks we are using Windows
          as host, but do a cross environment test. This prevents us from
          running these tests on a VxWorks target.

Mon Jan 31 20:48:04 2005  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * tests/Proactor_Test.cpp (TestData):
        * tests/Proactor_Test_IPV6.cpp (TestData):

          Name the nested/local structure declared in this class to
          workaround MSVC++ complaints about required compiler generated
          default constructors for unnamed classes.

Mon Jan 31 13:37:48 2005  Douglas C. Schmidt  <schmidt@cs.wustl.edu>

        * ace/Acceptor.cpp (handle_close): Fixed the code so that it
          closes down properly.  Thanks to Kobi Cohen-Arazi
          <kobi dot cohenarazi at gmail dot com> for this fix.

Mon Jan 31 11:14:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Service_Config.h:
          Doxygen improvements

Mon Jan 31 10:35:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * netsvcs/clients/Naming/Client/Client_Test.cpp:
          Fixed compile warning in wchar build

Mon Jan 31 10:32:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ASNMP/agent/agent.mpc:
          Added avoids += uses_wchar, the code can't be build with wchar
          enabled

Mon Jan 31 09:16:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/ARGV.h:
        * ace/Configuration.h:
          Doxygen improvements

Mon Jan 31 08:29:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * examples/APG/Logging/Trace_Return.cpp:
        * apps/JAWS/clients/Caching/http_client.cpp:
          Fixed unicode errors

        * apps/mkcsregdb/mkcsregdb.mpc:
        * ASNMP/examples/walk/walk.mpc:
        * ASNMP/examples/trap/trap.mpc:
        * ASNMP/examples/set/set.mpc:
        * ASNMP/examples/next/next.mpc:
        * ASNMP/examples/get/get.mpc:
          Added avoids += uses_wchar, the code can't be build with wchar
          enabled

Mon Jan 31 08:18:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * examples/APG/Reactor/Timers.cpp:
          Fixed unicode link errors

Mon Jan 31 07:16:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/ace_wchar.h:
          Added ACE_TEXT_OutputDebugString

        * examples/Log_Msg/Log_Msg_MFC/MFC_Log.cpp:
          Use ACE_TEXT_OutputDebugString instead of ::OutputDebugString
          to fix compile errors in wchar builds

Sun Jan 30 08:46:56 2005  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * ace/Filecache.cpp:

          Added missing "template<>" to explicit class member
          specializations, as required by the C++ standard.

Sun Jan 30 13:45:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * examples/IOStream/client/iostream_client.cpp:
          Fixed unicode compile warning

Sun Jan 30 13:37:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * examples/C++NPv1/Process_Per_Connection_Logging_Server.cpp:
          Use ACE_OS::strncpy instead of strncpy directly to fix compile
          error in Cygwin build

Sun Jan 30 13:33:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * examples/ASX/CCM_App/CCM_App.cpp:
          Fixed warning in unicode build

        * ace/Service_Object.h:
          Doxygen fixes

Sun Jan 30 13:28:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * examples/APG/Logging/Wrap_Macros.cpp:
          Fixed compile problem in unicode build

Sun Jan 30 13:25:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * examples/APG/Reactor/Timers.cpp:
          Fixed compile problem in unicode build

Sun Jan 30 13:22:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * examples/TMCast/Member/member.cpp:
          Fixed compile problem in unicode build

Sun Jan 30 13:04:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ACE-INSTALL.html:
        * include/makeinclude/*.bor:
        * bin/MakeProjectCreator/templates/bor.mpd:
          Removed support for PASCAL, this was used for BCB4 which is already
          not supported already for a long time

Sat Jan 29 23:55:03 2005  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * examples/Misc/test_read_buffer.cpp:
        * examples/Service_Configurator/IPC-tests/server/Handle_L_SPIPE.i:
        * examples/Web_Crawler/URL.h:

          Added missing header include directives that are necessary due
          to inter-header dependency reductions in ACE.

Sat Jan 29 23:44:37 2005  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * examples/ASX/Event_Server/Event_Server/event_server.cpp:
        * examples/ASX/Event_Server/Transceiver/transceiver.cpp:
        * examples/ASX/UPIPE_Event_Server/event_server.cpp:

          Added missing "ace/OS_NS_unistd.h" include directives.  Fixes
          compile-time errors related to missing function prototypes.

Sat Jan 29 11:12:58 2005  J.T. Conklin  <jtc@acorntoolworks.com>

        * examples/OS/Process/process.cpp:

        Fixed compile errors due to (now) missing includes because of include
        reductions done to Service_Config.h and Svc_Handler.h.

Sat Jan 29 16:12:37 2005  Martin Corino  <mcorino@remedy.nl>

        * apps/Gateway/Gateway/gatewayd.cpp:
        * examples/APG/Svc_Config/HA_Status_Static.h:
        * examples/ASX/CCM_App/SC_Server.cpp:
        * examples/Connection/blocking/SPIPE-acceptor.h:
        * examples/Connection/blocking/SPIPE-connector.h:
        * examples/Connection/misc/test_upipe.h:
        * examples/Reactor/FIFO/server.cpp:
        * examples/Reactor/Misc/notification.cpp:
        * examples/Reactor/Misc/test_demuxing.cpp:
        * examples/Reactor/Misc/test_signals_1.cpp:
        * examples/Service_Configurator/IPC-tests/server/Handle_Broadcast.h:
        * examples/Service_Configurator/IPC-tests/server/Handle_L_CODgram.h:
        * examples/Service_Configurator/IPC-tests/server/Handle_L_Dgram.h:
        * examples/Service_Configurator/IPC-tests/server/Handle_L_FIFO.h:
        * examples/Service_Configurator/IPC-tests/server/Handle_L_Pipe.h:
        * examples/Service_Configurator/IPC-tests/server/Handle_L_Stream.h:
        * examples/Service_Configurator/IPC-tests/server/Handle_R_Stream.h:
        * examples/Service_Configurator/IPC-tests/server/Handle_Timeout.h:
        * examples/Service_Configurator/IPC-tests/server/server_test.cpp:
        * examples/Service_Configurator/Misc/Timer_Service.h:
        * performance-tests/Synch-Benchmarks/Perf_Test/Performance_Test.cpp:
        * tests/Logging_Strategy_Test.cpp:
        * tests/Service_Config_Test.cpp:

        Fixed compile errors due to (now) missing includes because of include
        reductions done to Service_Config.h and Svc_Handler.h.

Sat Jan 29 00:39:37 2005  J.T. Conklin  <jtc@acorntoolworks.com>

        * m4/ace.m4:

          Change --with-{acexml,qos,rmcast,ssl} to --enable-{acexml,qos,
          rmcast,ssl} to be consistant with standard autoconf conventions.
          This also paves the way for a *new* --with-ssl flag to point to
          the openssl install directory.

Fri Jan 28 20:30:02 2005  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * ace/Configuration.h:

          Include "ace/SStringfwd.h" instead of "ace/SString.h".  Forward
          declarations of ACE's string types are enough.  Reduces
          interheader dependencies and also reduces ACE's footprint
          slightly.

        * ace/Configuration.cpp:
        * ace/Local_Name_Space.cpp
        * ace/Remote_Name_Space.cpp:
        * ace/Service_Config.cpp:

          Include "ace/SString.h" since to pull in complete ACE string
          class declarations, since the corresponding header only has
          forward declarations of those string classes.

        * ace/Filecache.cpp:
        * ace/Filecache.h:

          Removed alternatives to C++ template specializations in these
          files.  All platforms supported by ACE support standard C++
          explicit/full specialization of classes and their members.

        * ace/Local_Name_Space.h:
        * ace/Remote_Name_Space.h:

          Forward declare ACE_NS_WString instead of including
          "ace/SString.h".  The former is all that is needed.

        * ace/Name_Proxy.h:

          Include "ace/Event_Handler.h" to pull in complete
          ACE_Event_Handler class declaration.  Necessitated by include
          directive reductions in ace/Service_Config.h.

        * ace/Process.h:
        * ace/Time_Request_Reply.h:
        * ace/Token_Collection.h:

          Removed "ace/SString.h" include directive.  It isn't needed.

        * ace/Service_Config.h:

          Include "ace/SStringfwd.h" instead of "ace/SString.h".  Forward
          declarations of ACE's string types are enough.  Reduces
          interheader dependencies and also reduces ACE's footprint
          slightly.

          Forward declare ACE_XML_Svc_Conf class instead of include
          "ace/XML_Svc_Conf.h".  The former is all that is needed.

          Removed "ace/Reactor.h" and "ace/Svc_Conf_Tokens.h" include
          directives.  They haven't been needed for quite some time.

        * ace/Svc_Handler.h:

          No need to include "ace/Service_Config.h".  "ace/Reactor.h" is
          enough.

        * netsvcs/clients/Naming/Client/Client_Test.cpp:
        * netsvcs/clients/Naming/Client/main.cpp:
        * protocols/ace/HTBP/HTBP_Channel.cpp:

          Include "ace/Reactor.h" to pull in complete ACE_Reactor class
          declaration.

Fri Jan 28 16:02:28 2005  Steve Huston  <shuston@riverace.com>

        * tests/Proactor_Test.cpp:
        * tests/Proactor_Test_IPV6.cpp: Fixed compile diagnostics.

Fri Jan 28 20:46:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/platform_vxworks5.5.x.GNU:
          Applied some changes from  Thomas Lockhart
          <Thomas dot Lockhart at jpl dot nasa dot gov>:
          - set versioned_so to 0, VxWorks doesn't support this
          - set shared_libs to 0, by default we build staticly, but this
            can be overridden by our users. For dynamic builds Thomas
            supplied more fixes but we have to test some more before adding
            those.
          - added some more notes
          - removed remark of Tornado 1.0, it is not usable anymore

Fri Jan 28 14:00:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * html/README:
          Corrected download link doxygen documentation

Fri Jan 28 13:52:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * examples/README:
          Removed description of CORBA directory, it doesn't exists anymore

Fri Jan 28 13:44:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/Multicast_Test_IPV6.cpp:
          Updated debug message that this test needs multicast and thread
          support. When this is not available return 0 not 1 just as the
          other tests do. This way single threaded builds don't flag this
          test as failed.

Fri Jan 28 09:03:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/Network_Adapters_Test.{h,cpp}:
          Fixed compile warnings when building this test with the Borland
          compiler. Thanks to Robert Iakobashvili
          <roberti at GoNetworks dot com> for supplying the patches

Fri Jan 28 08:38:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Global_Macros.h
          Changed ACE_SERVER_ADDRESS to don't cause problems in unicode
          builds

Fri Jan 28 08:15:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * examples/C++NPv2/C++NPv2.mpc:
          Don't build the configurable_logging_server when uses_wchar is defined.
          This example just can't build with wchar

Fri Jan 28 07:32:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * examples/ASX/Event_Server/Event_Server/Event.mpc:
        * examples/ASX/Event_Server/Transceiver/Transceiver.mpc:
        * examples/ASX/UPIPE_Event_Server/UPIPE_Event.mpc:
          New MPC files. Thanks to Thomas Lockhart
          <Thomas dot Lockhart at jpl dot nasa dot gov> for contributing
          these.

Fri Jan 28 05:32:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Name_Request_Reply.h:
          Removed private copy constructor and assignment operator, in the
          netsvcs library this gave problems.

Thu Jan 27 18:28:19 2005  Steve Huston  <shuston@riverace.com>

        * tests/Proactor_Test.{h cpp}:
        * tests/Proactor_Test_IPV6.cpp: Rearranged the pieces of this test to
          allow the Acceptor and Connector objects to be destroyed during the
          test and still have all the stats kept accurately. This is to enable
          testing of some Proactor improvements that are coming.

        * tests/Proactor_Scatter_Gather_Test.cpp:
        * tests/TP_Reactor_Test.cpp: Be careful to use the same address family
          when forming the listen and connect addresses. This allows things to
          work regardless of IPv4/IPv6 use.

Thu Jan 27 18:59:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Hash_Map_Manager_T.inl:
          Replaced c-style cast with C++ casts

Thu Jan 27 18:48:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/ARGV.cpp:
        * ace/Condition_Recursive_Thread_Mutex.cpp:
        * ace/Condition_Thread_Mutex.cpp:
        * ace/Dump.cpp:
        * ace/Event.cpp:
        * ace/Filecache.cpp:
        * ace/Message_Block.cpp:
        * ace/OS_NS_sys_socket.cpp:
        * ace/Service_Object.cpp:
        * ace/Service_Types.cpp:
          Replaced c-style cast with C++ casts

        * ace/Name_Proxy.cpp:
        * ace/Naming_Context.cpp:
          Added missing members to initialisation list

        * ace/Name_Proxy.h:
        * ace/Name_Request_Reply.h:
          Added private assignment operator and copy constructor
          to prevent copying.

Wed Jan 26 12:57:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/ICMP_Socket.{h,cpp}:
        * ace/Ping_Socket.{h,cpp}:
        * tests/Network_Adapters_Test.cpp:
          Added missing includes. Thanks to Peter Falsh
          <webangel at list dot ru> for reporting this.

        * tests/run_test.lst:
          Added Network_Adapters_Test

Tue Jan 25 21:05:12 UTC 2005  Martin Corino  <mcorino@remedy.nl>

        * tests/Reactor_Registration_Test.cpp:

        Revoked earlier change because it's erroneous:-(

Tue Jan 25 19:41:12 UTC 2005  Martin Corino  <mcorino@remedy.nl>

        * examples/IPC_SAP/SPIPE_SAP/producer_msg.cpp:

        Fixed typo in include statement. Thanks to JT Conklin.

Tue Jan 25 15:47:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * docs/ACE-bug-process.html:
          Fixed links

Tue Jan 25 15:24:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * docs/ACE-categories.html:
          Updated this document

Tue Jan 25 15:05:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/OS.h:
          Removed include of os_include/sys/os_fcntl.h, this file doesn't
          exists

Tue Jan 25 14:41:12 UTC 2005  Martin Corino  <mcorino@remedy.nl>

        * examples/IPC_SAP/SPIPE_SAP/producer_msg.cpp:

        Added a necessary includefile which make things compile better
        when ACE_HAS_STREAM_PIPES is defined.

Tue Jan 25 14:15:12 UTC 2005  Martin Corino  <mcorino@remedy.nl>

        * tests/Reference_Counted_Event_Handler_Test.cpp:
        * tests/Reactor_Registration_Test.cpp:

        Tidied up resource management (i.e. close pipes in eventhandler
        destructors) since VxWorks does not automatically release those
        when a dynamically loaded app module is finished.

        * tests/Reactor_Dispatch_Order_Test.cpp:

        Tidied up resource management and fixed handling superfluous output
        event (like OpenBSD and Lynx).

Mon Jan 24 23:10:33 2005  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * ace/Process_Manager.cpp (terminate):
        * ace/Signal.cpp (remove_handler, register_handler):
        * ace/Thread_Manager.cpp (spawn_i):

          Fixed "control reaches end of non-void function" warnings
          exhibited by the latest GNU G++ 4.0 CVS snapshot.

Mon Jan 24 17:00:39 2005  J.T. Conklin  <jtc@acorntoolworks.com>

        * ace/Makefile.am:

          Fix thinko in pkgsrc *.pc file generation.

Mon Jan 24 18:24:12 UTC 2005  Martin Corino  <mcorino@remedy.nl>

        * examples/IPC_SAP/SPIPE_SAP/consumer_msg.cpp:
        * examples/IPC_SAP/SPIPE_SAP/producer_msg.cpp:
        * examples/IPC_SAP/SPIPE_SAP/producer_read.cpp:
        * examples/IPC_SAP/SPIPE_SAP/server.cpp:
        * examples/Service_Configurator/IPC-tests/server/Handle_L_SPIPE.i:

        Added a number necessary includefiles which make things compile better
        when ACE_HAS_STREAM_PIPES is defined.

Mon Jan 24 07:49:21 2005  Douglas C. Schmidt  <schmidt@cs.wustl.edu>

        * ace/OS_NS_sys_socket.inl (setsockopt): Fixed a mistake in the
          comment, where it should say "Windows always set
          SO_REUSEADDR=1."  Thanks to  YiQing Xiong
          <xjaguar at 126 dot com> for reporting this.

Mon Jan 24 11:23:12 UTC 2005  Martin Corino  <mcorino@remedy.nl>

        * tests/CDR_Test.cpp:

        Fixed incorrect initializer for char array.

Sun Jan 23 21:34:00 2005  J.T. Conklin  <jtc@acorntoolworks.com>

        * ace/Makefile.am:
        * examples/Misc/Makefile.am:
        * tests/Makefile.am:

          Regenerate.

        * m4/ace.m4:

          Added extra quoting to AC_REQUIRE arguments.
          Set BUILD_ACE_{FL,TK,QT,XT}REACTOR automake conditionals.

Sun Jan 23 19:17:25 2005  J.T. Conklin  <jtc@acorntoolworks.com>

        * m4/ace.m4:

          Create new ACE_WITH_{GL,FL,QT,TK} autoconf macros which will be
          used for finding OpenGL, FL/TK, Qt and Tk libraries and setting
          compiler and linker flags.

Sun Jan 23 15:45:46 2005  J.T. Conklin  <jtc@acorntoolworks.com>

        * m4/ace.m4:

          Split --enable-{fl,qt,tk,xt}-reactor processing into separate
          autoconf macros.

Sun Jan 23 15:07:08 2005  Balachandran Natarajan  <bala@dre.vanderbilt.edu>

        * bin/make_release:

          Omit .cvsignore files.

Sun Jan 23 18:14:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * examples/Reactor/Proactor/test_multiple_loops.cpp:
        * examples/Shared_Memory/test_SV.cpp:
        * examples/Smart_Pointers/gadget_test.cpp:
        * examples/Smart_Pointers/widget_test.cpp:
        * examples/System_V_IPC/SV_Message_Queues/TMQ_Server.cpp:

Sun Jan 23 15:47:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * examples/OS/Process/process.cpp:
        * examples/IPC_SAP/TLI_SAP/CPP-client.cpp:
          Fixed unicode build error

Sun Jan 23 13:56:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/wrapper_macros.GNU:

          Default rtti to 1 instead of 0, we now use dynamic_cast in the
          ACE library itself, TAO requires RTTI, so changed the default

        * include/makeinclude/platform_vxworks5.5.x.GNU:

          Simplified this file by using ?=

Sun Jan 23 13:18:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Capabilities.cpp:
          Removed instantiations of ACE_Hash and ACE_Equal_To of
          ACE_TString. These where already giving problems on VxWorks,
          now also on Irix, so removed them. Thanks to Doug McCorkle
          <mccdo at iastate dot edu> for reporting this

Sun Jan 23 12:39:20 2005  Marek Brudka  <mbrudka@aster.pl>

        * bin/MakeProjectCreator/config/tao_xtresource.mpb:
        * bin/MakeProjectCreator/config/tao_tkresource.mpb:
        * bin/MakeProjectCreator/config/tao_qtresource.mpb:
        * bin/MakeProjectCreator/config/tao_flresource.mpb:
        * bin/MakeProjectCreator/config/ace_xtreactor.mpb:
        * bin/MakeProjectCreator/config/ace_xt.mpb:
        * bin/MakeProjectCreator/config/ace_x11.mpb:
        * bin/MakeProjectCreator/config/ace_tkreactor.mpb:
        * bin/MakeProjectCreator/config/ace_tk.mpb:
        * bin/MakeProjectCreator/config/ace_motif.mpb:
        * bin/MakeProjectCreator/config/ace_gl.mpb:
        * bin/MakeProjectCreator/config/ace_flreactor.mpb:
        * bin/MakeProjectCreator/config/ace_fl.mpb:
        * bin/MakeProjectCreator/config/ace_athena.mpb:
        * ace/ace_xtreactor.mpc:
        * ace/ace_tkreactor.mpc:
        * ace/ace_qtreactor.mpc:
        * ace/ace_flreactor.mpc:
        * ace/ace.mpc:

          Added missing Id strings.

Sun Jan 23 02:22:13 2005  J.T. Conklin  <jtc@acorntoolworks.com>

        * ace/ACE_FlReactor.pc.in:
        * ace/ACE_QtReactor.pc.in:
        * ace/ACE_TkReactor.pc.in:
        * ace/ACE_XtReactor.pc.in:

          New files, pkg-config *.pc templates.

        * ace/ace_flreactor.mpc:
        * ace/ace_qtreactor.mpc:
        * ace/ace_tkreactor.mpc:
        * ace/ace_xtreactor.mpc:

          Removed Demux subsection from Source_Files.

          Added empty Inline_Files, Template_Files, and Resource_Files
          sections.

          Added Pkgconfig_Files sections.

Sun Jan 23 00:25:48 2005  J.T. Conklin  <jtc@acorntoolworks.com>

        * m4/ace.m4:

          Initial --enable-tk-reactor and --enable-qt-reactor support.
          Set BUILD_{FL,TK,QT,XT} automake conditionals.

Sun Jan 23 01:54:59 2005  Marek Brudka  <mbrudka@aster.pl>

        * */.cvsignore:
          To make cvs silent.

        * tests/tests.mpc:
        * tests/XtReactor_Test.cpp:
        * tests/XtMotifReactor_Test.cpp:
        * tests/XtAthenaReactor_Test.cpp:
        * tests/TkReactor_Test.cpp:
        * tests/QtReactor_Test.h:
        * tests/QtReactor_Test.cpp:
        * tests/FlReactor_Test.cpp:
        * include/makeinclude/wrapper_macros.GNU:
        * include/makeinclude/platform_sunos5_g++.GNU:
        * include/makeinclude/platform_lynxos.GNU:
        * include/makeinclude/platform_linux_pgi.GNU:
        * include/makeinclude/platform_linux_icc.GNU:
        * include/makeinclude/platform_linux_borland.GNU:
        * include/makeinclude/platform_linux.GNU:
        * examples/Misc/test_XtReactor2.cpp:
        * examples/Misc/test_XtReactor1.cpp:
        * examples/Misc/Misc.mpc:
        * bin/MakeProjectCreator/config/tao_xtresource.mpb:
        * bin/MakeProjectCreator/config/tao_tkresource.mpb:
        * bin/MakeProjectCreator/config/tao_qtresource.mpb:
        * bin/MakeProjectCreator/config/tao_flresource.mpb:
        * bin/MakeProjectCreator/config/strategies.mpb:
        * bin/MakeProjectCreator/config/global.features:
        * bin/MakeProjectCreator/config/acedefaults.mpb:
        * bin/MakeProjectCreator/config/ace_xtreactor.mpb:
        * bin/MakeProjectCreator/config/ace_xt.mpb:
        * bin/MakeProjectCreator/config/ace_x11.mpb:
        * bin/MakeProjectCreator/config/ace_tkreactor.mpb:
        * bin/MakeProjectCreator/config/ace_tk.mpb:
        * bin/MakeProjectCreator/config/ace_qtreactor.mpb:
        * bin/MakeProjectCreator/config/ace_qt.mpb:
        * bin/MakeProjectCreator/config/ace_motif.mpb:
        * bin/MakeProjectCreator/config/ace_gtk.mpb:
        * bin/MakeProjectCreator/config/ace_gl.mpb:
        * bin/MakeProjectCreator/config/ace_flreactor.mpb:
        * bin/MakeProjectCreator/config/ace_fl.mpb:
        * bin/MakeProjectCreator/config/ace_athena.mpb:
        * ace/config-win32-msvc.h:
        * ace/config-doxygen.h:
        * ace/ace_xtreactor.mpc:
        * ace/ace_tkreactor.mpc:
        * ace/ace_qtreactor.mpc:
        * ace/ace_flreactor.mpc:
        * ace/ace.mwc:
        * ace/ace.mpc:
        * ace/XtReactor.h:
        * ace/XtReactor.cpp:
        * ace/TkReactor.h:
        * ace/TkReactor.cpp:
        * ace/README:
        * ace/QtReactor.h:
        * ace/QtReactor.cpp:
        * ace/FlReactor.h:
        * ace/FlReactor.cpp:
        * ace/ACE_XtReactor_export.h:
        * ace/ACE_TkReactor_export.h:
        * ace/ACE_QtReactor_export.h:
        * ace/ACE_FlReactor_export.h:
        * ACE-INSTALL.html:
          Changes related with separation of GUI reactors.
          The additional information is avalaible below.

        Wed Jan 19 22:55:50 2005  Marek Brudka  <mbrudka@aster.pl>

        * bin/MakeProjectCreator/config/tao_xtresource.mpb:
        * bin/MakeProjectCreator/config/tao_xtreactor.mpb:
        * bin/MakeProjectCreator/config/tao_tkresource.mpb:
        * bin/MakeProjectCreator/config/tao_tkreactor.mpb:
        * bin/MakeProjectCreator/config/tao_qtresource.mpb:
        * bin/MakeProjectCreator/config/tao_qtreactor.mpb:
        * bin/MakeProjectCreator/config/tao_flresource.mpb:
        * bin/MakeProjectCreator/config/tao_flreactor.mpb:

          Adapted to new naming.

        Sun Jan  9 01:13:42 2005  Marek Brudka  <mbrudka@aster.pl>

        * ace/TkReactor.h (Module):
        * ace/TkReactor.cpp (Module):
        * ace/FlReactor.h (Module):
        * ace/FlReactor.cpp (Module):

          Removed factory methods for loading reactor from shared
          library.

        * bin/MakeProjectCreator/config/global.features (Module):

          Disabled by defult tao_flreactor and tao_tkreactor features.

        Mon Jan  3 22:48:32 2005  Marek Brudka  <mbrudka@aster.pl>

        * ace/ace_xtreactor.mpc (Module):
        * ace/ace_tkreactor.mpc (Module):
        * ace/ace_qtreactor.mpc (Module):
        * ace/ace_flreactor.mpc (Module):

          Removed ace_*reactor required features.

        Tue Dec 14 00:09:48 2004  Marek Brudka  <mbrudka@aster.pl>

        * bin/MakeProjectCreator/config/ace_x11.mpb (Module):
        * bin/MakeProjectCreator/config/ace_gl.mpb (Module):
        * bin/MakeProjectCreator/config/ace_fl.mpb (Module):
        * ACE-INSTALL.html (Module):

          Modified base projects to enable FlReactor compilation for
          Windows.

        Mon Dec 13 01:39:12 2004  Marek Brudka  <mbrudka@aster.pl>

        * bin/MakeProjectCreator/config/ace_xt.mpb (Module):
        * bin/MakeProjectCreator/config/ace_gl.mpb (Module):
        * bin/MakeProjectCreator/config/ace_fl.mpb (Module):

          Removed nice feature inheritance and reentered a workaround
          related with "verbatim" section bug in MPC.

        Mon Dec 13 00:36:44 2004  Marek Brudka  <mbrudka@aster.pl>

        * bin/MakeProjectCreator/config/strategies.mpb (Module):

          Removed explicite dependencies of TAO_Strategies on
          TAO_TkReactor.

        * bin/MakeProjectCreator/config/tao_tkreactor.mpb (Module):

          Creating base project for using TAO_TkReactor library.

        * bin/MakeProjectCreator/config/strategies.mpb (Module):

          Removed dependency on tao_tkreactor.

        * tests/TkReactor_Test.cpp (Module):
        * bin/MakeProjectCreator/config/ace_tk.mpb (Module):
        * ace/config-doxygen.h (Module):

          Removed ACE_HAS_TK macros.

        * ace/TkReactor.h (Module):
        * ace/TkReactor.cpp (Module):

          Removed ACE_HAS_TK macros. Created factory method TkReactor in
          dll.

        Sun Dec 12 22:53:48 2004  Marek Brudka  <mbrudka@aster.pl>

        * tests/FlReactor_Test.cpp (Module):

          Removed ACE_HAS_FL macros.

        * bin/MakeProjectCreator/config/strategies.mpb (Module):

          Removed explicite dependence of TAO_Strategies on
          TAO_FlReactor.

        * bin/MakeProjectCreator/config/tao_flreactor.mpb (Module):

          Creating base project for using TAO_FlReactor library.

        * bin/MakeProjectCreator/config/ace_fl.mpb (Module):

          Removed ACE_HAS_FL macros.

        * ace/config-doxygen.h (Module):

          Removed ACE_HAS_FL macros.
        * ace/FlReactor.h (Module):
        * ace/FlReactor.cpp (Module):

          Removed ACE_HAS_FL macros. Created factory method for
          instantinating FlReactor from dll.

        Sun Dec 12 02:14:51 2004  Marek Brudka  <mbrudka@aster.pl>

        * .cvsignore:

          Made cvs more silent on executables.

        * tests/tests.mpc (Module):

          Introduced new dependencies on ace_flreactor and ace_tkreactor
          for specific reactors tests.

        * include/makeinclude/platform_sunos5_sunc++.GNU (Module):

          Replaced ace_with_x11 by x11 feature.

        * include/makeinclude/wrapper_macros.GNU (Module):

          Modified documentation about features. Removed rules for an
          unknown gtk_reactor. Modified statements related with new naming
          schema and feature definitions.

        * bin/MakeProjectCreator/config/global.features (Module):

          Grouped and commented features related with GUI reactors.

        * bin/MakeProjectCreator/config/strategies.mpb (Module):

          Created temporary dependence on tao_tk(fl)reactors. To be
          removed when TAO is separated from Tk and Fl Reactors.

        * bin/MakeProjectCreator/config/tao_flreactor.mpb (Module):
        * bin/MakeProjectCreator/config/tao_tkreactor.mpb (Module):

          Created dummy projects to tao_*reactors. Will be handy when TAO
          is separated from Tk and Fl Reactors.

        * bin/MakeProjectCreator/config/tao_xtreactor.mpb (Module):
        * bin/MakeProjectCreator/config/tao_qtreactor.mpb (Module):
        * bin/MakeProjectCreator/config/ace_xtreactor.mpb (Module):
        * bin/MakeProjectCreator/config/ace_tkreactor.mpb (Module):
        * bin/MakeProjectCreator/config/ace_qtreactor.mpb (Module):
        * bin/MakeProjectCreator/config/ace_flreactor.mpb (Module):

          Unified derivation and naming schema.

        * bin/MakeProjectCreator/config/ace_fltk.mpb (Module):

          Replaced this file by ace_fl.mpb

        * bin/MakeProjectCreator/config/ace_xt.mpb (Module):
        * bin/MakeProjectCreator/config/ace_x11.mpb (Module):
        * bin/MakeProjectCreator/config/ace_tk.mpb (Module):
        * bin/MakeProjectCreator/config/ace_qt.mpb (Module):
        * bin/MakeProjectCreator/config/ace_motif.mpb (Module):
        * bin/MakeProjectCreator/config/ace_fl.mpb (Module):
        * bin/MakeProjectCreator/config/ace_gl.mpb (Module):
        * bin/MakeProjectCreator/config/ace_athena.mpb (Module):

          Replaced ace_with_* features by * features to unify naming
          schema. Removed unnecessary definitions
          (includes,flags,libraries). Introduced unified derivation
          schema.

        * ace/ace_xtreactor.mpc (Module):
        * ace/ace_tkreactor.mpc (Module):
        * ace/ace_qtreactor.mpc (Module):
        * ace/ace_flreactor.mpc (Module):

          Added header files. Created new dependencies.

        * ace/TkReactor.h (Module):
        * ace/FlReactor.h (Module):

          Used new export macros.

        * ace/ACE_TkReactor_export.h (Module):
        * ace/ACE_FlReactor_export.h (Module):

          Created export macros for these GUI reactors. Will be handy in
          future.

        * ACE-INSTALL.html (Module):

          Rewrote documentation related with GUI reactors.

        Fri Dec 10 23:53:41 2004  Marek Brudka  <mbrudka@aster.pl>

        * bin/MakeProjectCreator/config/global.features (Module):

          Removed xt_reactor feature.

        * ACE-INSTALL.html (Module):

          Modified documentation related to QtReactor and XtReactor.

        Fri Dec 10 22:57:22 2004  Marek Brudka  <mbrudka@aster.pl>

        * tests/QtReactor_Test.cpp (Message):

          Removed unnecesary log about lack of Qt support.

        Fri Dec 10 22:39:12 2004  Marek Brudka  <mbrudka@aster.pl>

        * bin/MakeProjectCreator/config/global.features (Message):

          Disabled by default ace_With_xt and ace_with_x11.

        * include/makeinclude/wrapper_macros.GNU (Module):

          Replace qt_rector variables by qt, as MPC currently uses qt
          feature.

        Fri Dec 10 01:04:52 2004  Marek Brudka  <mbrudka@aster.pl>

        * examples/Misc/.cvsignore (Module):

          Created few ignores to make cvs silent.

        Fri Dec 10 00:45:56 2004  Marek Brudka  <mbrudka@aster.pl>

        * tests/.cvsignore (Module):

          Created few ignores to make cvs silent.

        * ace/ace_xtreactor.mpc (Module):

        * ace/config-tandem.h (Module):
        * ace/config-doxygen.h (Module):
        * ace/XtReactor.cpp (Module):

          Removed ACE_HAS_XT macros.

        * ace/XtReactor.h (Module):

          Removed ACE_HAS_XT macros and applied export macros for
          ACE_XtReactor.

        * ace/README (Module):

          Removed notice on ACE_HAS_XT.

        * ace/ACE_XtReactor_export.h (Module):

          Create export macros for XtReactor. Please, do not ask if anyone
          needs these macros under Windows. Probably no, but they are
          present here to remain consistent with the rest of ACE.

        * tests/tests.mpc (Module):

          Created two project XtReactor_Tests for Athena widgets and
          Motif. Removed XtReactor_Test.

        * tests/XtReactor_Test.cpp (Module):
        * tests/XtMotifReactor_Test.cpp (Module):
        * tests/XtAthenaReactor_Test.cpp (Module):

          XtReactor_Test was splitted into separate test for Athena
          widgets and Motif, hence they depend on distinct
          libraries. Removed ACE_HAS_XT and ACE_LACKS_MOTIF macros, as
          they are not needed now.

        * examples/Misc/test_XtReactor2.cpp (Module):
        * examples/Misc/test_XtReactor1.cpp (Module):

          Removed ACE_HAS_XT macros.

        * examples/Misc/Misc.mpc (Module):

          Added dependencies on ace_xtreactor and ace_motif.

        * bin/MakeProjectCreator/config/tao_xtreactor.mpb (Module):
        * bin/MakeProjectCreator/config/ace_xtreactor.mpb (Module):

          Created base projects for applications using ACE/TAO_XtReactor
          libraries.

        * bin/MakeProjectCreator/config/global.features (Module):

          By default ace_with_x11, ace_withxt, ace_with_motif,
          ace_with_athena features are not avalaible.

        * bin/MakeProjectCreator/config/ace_xt.mpb (Module):
        * bin/MakeProjectCreator/config/ace_x11.mpb (Module):

          Transformed features into projects with explicit requirements.

        * bin/MakeProjectCreator/config/ace_motif.mpb (Module):

          Created base project for motif/lestif  library.

        * bin/MakeProjectCreator/config/ace_athena.mpb (Module):

          Created base project for athena widgets library.

        * ACE-INSTALL.html (Module):

          Modified section on QtReactor and added section on XtReactor.

        Tue Dec  7 20:48:36 2004  Marek Brudka  <mbrudka@aster.pl>

        * ace/ace_qtreactor.mpc (Module):
        * ace/QtReactor_export.h (Module):
        * ace/QtReactor.h (Module):
        * ace/ACE_QtReactor_export.h (Module):

          Change QtReactor_export.h into ACE_QtReactor_export.h to avoid
          possible, though not very probably name conflict and remain
          consistent with TAO_QtReact_export.

        Tue Dec  7 00:23:54 2004  Marek Brudka  <mbrudka@aster.pl>

        * ace/ace_qtreactor.mpc (Module):
        * ace/QtReactor_export.h (Module):
        * ace/QtReactor.h (Module):

          Created and applied export macros for ACE_QtReactor library.

        Sun Dec  5 23:18:29 2004  Marek Brudka  <mbrudka@aster.pl>

        * include/makeinclude/wrapper_macros.GNU (Module):
        * include/makeinclude/platform_linux_pgi.GNU (Module):
        * include/makeinclude/platform_linux_icc.GNU (Module):
        * include/makeinclude/platform_linux.GNU (Module):

          Removed unnecessary ACE_HAS_QT and make options regarding
          qt. All those things are now set up by MPC.

        * tests/tests.mpc (Module):

          Removed explicit dependency on qt. It is ensured now by qt base
          project.

        * tests/QtReactor_Test.h (Module):
        * tests/QtReactor_Test.cpp (Module):

          Removed ACE_HAS_QT section as MPC manages now configuration.

        * bin/MakeProjectCreator/config/tao_qtreactor.mpb (Module):

          Removed tao_qtreactor as it seems to be redundant with qt=1. I'm
          not sure if this.

        * bin/MakeProjectCreator/config/ace_qt.mpb (Module):

          Removed ace_qtreactor as it seems to be redundant with qt=1. I'm
          not sure if this.

        * ace/config-win32-msvc.h (Module):

          Removed sections related with ACE_HAS_QT and QT_DLL
          definition. It is manged now by MPC.

        * ace/config-doxygen.h (Module):

          Removed ACE_HAS_QT as it is ACE_QtReactor compiles now alway if
          qt option is set.

        * ace/README (Module):

          Removed paragraph on ACE_HAS_QT.

        * ace/QtReactor.h (Module):
        * ace/QtReactor.cpp (Module):

          Removed code compiled conditionally on ACE_HAS_QT
          predicate. Compilation is now managed by MPC.

        Sat Dec  4 17:03:38 2004  Marek Brudka  <mbrudka@aster.pl>

        * tests/RMCast/.cvsignore (Module):
        * ace/.cvsignore (Module):
        * tests/.cvsignore (Module):

          Added linux executables to prevent cvs warnings.

        Sat Dec  4 16:02:30 2004  Marek Brudka  <mbrudka@aster.pl>

        * ace/qt_reactor.mpb (Module):

          This base project is no necessary now.

        Sat Dec  4 15:51:01 2004  Marek Brudka  <mbrudka@aster.pl>

        * bin/MakeProjectCreator/config/ace_qtreactor.mpb (Module):
        * ace/ace_qtreactor.mpc (Module):

          Removed depracated qt_moc project.

        Sat Dec  4 15:49:03 2004  Marek Brudka  <mbrudka@aster.pl>

        * ACE-INSTALL.html (Module):

          Added paragraph on building ACE_QtLibrary.

        Sat Dec  4 14:28:54 2004  Marek Brudka  <mbrudka@aster.pl>

        * bin/MakeProjectCreator/config/global.features (Module):

          Added comment about -features option.

        Fri Dec  3 23:10:39 2004  Marek Brudka  <mbrudka@aster.pl>

        * bin/MakeProjectCreator/config/tao_qtreactor.mpb (Added):
        * bin/MakeProjectCreator/config/ace_xt.mpb (Added):
        * bin/MakeProjectCreator/config/ace_x11.mpb (Added):
        * bin/MakeProjectCreator/config/ace_tk.mpb (Added):
        * bin/MakeProjectCreator/config/ace_qtreactor.mpb (Added):
        * bin/MakeProjectCreator/config/ace_gtk.mpb (Added):
        * bin/MakeProjectCreator/config/ace_gl.mpb (Added):
        * bin/MakeProjectCreator/config/ace_fltk.mpb (Added):
        * ace/ace_xtreactor.mpc (Added):
        * ace/ace_tkreactor.mpc (Added):
        * ace/ace_qtreactor.mpc (Added):
        * ace/ace_flreactor.mpc (Added):

        * tests/tests.mpc (Modified):
        * include/makeinclude/wrapper_macros.GNU (Modified):
        * include/makeinclude/platform_sunos5_sunc++.GNU (Modified):
        * include/makeinclude/platform_sunos5_g++.GNU (Modified):
        * include/makeinclude/platform_lynxos.GNU (Modified):
        * include/makeinclude/platform_linux_pgi.GNU (Modified):
        * include/makeinclude/platform_linux_icc.GNU (Modified):
        * include/makeinclude/platform_linux_borland.GNU (Modified):
        * include/makeinclude/platform_linux.GNU (Modified):
        * bin/MakeProjectCreator/config/acedefaults.mpb (Modified):
        * bin/MakeProjectCreator/config/ace_qt.mpb (Modified):
        * ace/ace.mwc (Modified):
        * ace/ace.mpc (Modified):

         Initial changes related with the separation of reactors into
          distinct libraries.  Many thanks to Raphael Bossek
          <raphael.bossek@gmx.de> for this patch.

Sat Jan 22 21:18:58 2005  Kobi Cohen-Arazi  <kobi.cohenarazi@gmail.com>

        * ace/Logging_Strategy.cpp (handle_timeout): Fixed when defined
          ACE_LACKS_IOSTREAM_TOTALLY. Use ftell instead of fseek in order
          to get the current file length. Thanks to Kim ByeongSu <kcando
          at kcando dot org> for pointing it out.

Sat Jan 22 21:13:11 2005  Kobi Cohen-Arazi  <kobi.cohenarazi@gmail.com>

        * tests/Test_Output.cpp(close): Fixed when
          ACE_LACKS_IOSTREAM_TOTALLY - fflush and fclose should be called
          only when output_file_ is valid, and it points to the same
          current ACE_LOG_MSG->msg_ostream ().

Fri Jan 21 19:07:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ACE-INSTALL.html:
          Added Solaris 10

Fri Jan 21 18:39:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/MakeProjectCreator/config/ciao_client.mpb:
          Removed duplicate includes

Fri Jan 21 16:03:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * examples/IPC_SAP/FIFO_SAP/FIFO-Msg-server.cpp:
          Fixed compile error in Solaris 10 build

Fri Jan 21 11:38:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * etc/ace.doxygen:
          Also parse config-lite.h and config-all.h to generate the
          ACE documentation

Thu Jan 20 22:48:24 2005  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * docs/ACE-guidelines.html:

          Removed obsolete ACE cast macro usage recommendations.  They are
          deprecated.  Thanks to Olli Savia <ops at iki dot fi> for
          pointing out this document needed updating.

          Updated and removed out-of-date guidelines.

Thu Jan 20 19:07:35 2005  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * bin/ACE-casts-convert:

          Enhanced to support conversion of ACE_*_cast_[1-5]_{ptr,ref}
          macro calls to their standard C++ counterparts.

        * ace/Map_T.inl:

          Converting remaining deprecated ACE cast macro calls using the
          enhanced ACE-casts-convert script described above.

Thu Jan 20 18:18:00 2005  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * ACEXML/apps/svcconf/Svcconf_Handler.cpp:
        * ACEXML/common/AttributesImpl.cpp:
        * ACEXML/common/FileCharStream.cpp:
        * ACEXML/common/HttpCharStream.cpp:
        * ACEXML/common/Mem_Map_Stream.cpp:
        * ACEXML/common/NamespaceSupport.cpp:
        * ACEXML/common/SAXExceptions.cpp:
        * ACEXML/common/StrCharStream.cpp:
        * ACEXML/common/Transcode.cpp:
        * ACEXML/parser/debug_validator/Debug_Attributes_Builder.cpp:
        * ACEXML/parser/parser/Entity_Manager.i:
        * ACEXML/parser/parser/Parser.cpp:
        * ACEXML/tests/ContentHandler_Test.cpp:
        * ACEXML/tests/Transcoder_Test.cpp:
        * Kokyu/Dispatch_Deferrer.cpp:
        * Kokyu/Dispatcher_Task.cpp:
        * ace/QoS/SOCK_Dgram_Mcast_QoS.cpp:
        * ace/RMCast/RMCast_Fragment.cpp:
        * ace/RMCast/RMCast_IO_UDP.cpp:
        * ace/RMCast/RMCast_Partial_Message.cpp:
        * ace/RMCast/RMCast_Reassembly.cpp:
        * apps/JAWS/server/IO.cpp:
        * apps/JAWS/server/JAWS_Pipeline_Handler.cpp:
        * apps/JAWS2/HTTP_10_Parse.cpp:
        * apps/JAWS2/HTTP_10_Write.cpp:
        * apps/JAWS2/JAWS/Assoc_Array.cpp:
        * apps/JAWS2/JAWS/Concurrency.cpp:
        * apps/JAWS2/JAWS/IO.cpp:
        * apps/JAWS2/JAWS/Pipeline_Tasks.cpp:
        * apps/JAWS3/http/HTTP_States.h:
        * apps/JAWS3/jaws3/Asynch_IO.cpp:
        * apps/drwho/CM_Client.cpp:
        * apps/drwho/CM_Server.cpp:
        * apps/drwho/server.cpp:
        * apps/gperf/src/Hash_Table.cpp:
        * apps/gperf/src/Key_List.cpp:
        * apps/gperf/src/List_Node.cpp:
        * apps/mkcsregdb/mkcsregdb.cpp:
        * examples/APG/Config/HA_Status.cpp:
        * examples/APG/Logging/Callback-2.h:
        * examples/APG/Misc_IPC/UDP_Broadcast.cpp:
        * examples/APG/Misc_IPC/UDP_Unicast.cpp:
        * examples/APG/Naming/Name_Binding.h:
        * examples/APG/Proactor/HA_Proactive_Status.cpp:
        * examples/APG/Reactor/Client.cpp:
        * examples/APG/Reactor/HAStatus-AC.cpp:
        * examples/APG/Reactor/HAStatus.cpp:
        * examples/APG/Reactor/Timer_State_Data.cpp:
        * examples/APG/Shared_Memory/Hash_Map.cpp:
        * examples/APG/Shared_Memory/Malloc.cpp:
        * examples/APG/Shared_Memory/PI_Malloc.cpp:
        * examples/APG/Sockets/Iovec.cpp:
        * examples/APG/Svc_Config/HA_Status_Dynamic.cpp:
        * examples/APG/Svc_Config/HA_Status_Static.cpp:
        * examples/APG/ThreadPools/TP_Reactor.cpp:
        * examples/APG/Timers/Alarm.cpp:
        * examples/APG/Timers/CB.cpp:
        * examples/APG/Timers/PCB.cpp:
        * examples/APG/Timers/Task.cpp:
        * examples/Bounded_Packet_Relay/BPR_Drivers.cpp:
        * examples/Bounded_Packet_Relay/Thread_Bounded_Packet_Relay.cpp:
        * examples/C++NPv1/Logging_Client.cpp:
        * examples/C++NPv1/Process_Per_Connection_Logging_Server.cpp:
        * examples/C++NPv1/RT_Thread_Per_Connection_Logging_Server.cpp:
        * examples/C++NPv1/Thread_Per_Connection_Logging_Server.cpp:
        * examples/C++NPv2/AC_Client_Logging_Daemon.cpp:
        * examples/C++NPv2/Client_Logging_Daemon.cpp:
        * examples/C++NPv2/Logging_Event_Handler.h:
        * examples/C++NPv2/Select_Reactor_Logging_Server.cpp:
        * examples/C++NPv2/Server_Shutdown.cpp:
        * examples/C++NPv2/Service_Reporter.cpp:
        * examples/C++NPv2/TPC_Logging_Server.cpp:
        * examples/C++NPv2/TP_Logging_Server.cpp:
        * examples/C++NPv2/TP_Reactor_Logging_Server.cpp:
        * examples/C++NPv2/WFMO_Reactor_Logging_Server.cpp:
        * examples/C++NPv2/display_logfile.cpp:
        * examples/IPC_SAP/FIFO_SAP/FIFO-test.cpp:
        * examples/IPC_SAP/FILE_SAP/client.cpp:
        * examples/IPC_SAP/SOCK_SAP/C-inclient.cpp:
        * examples/IPC_SAP/SOCK_SAP/C-inserver.cpp:
        * examples/IPC_SAP/SOCK_SAP/CPP-inclient.cpp:
        * examples/IPC_SAP/SOCK_SAP/CPP-inserver.cpp:
        * examples/IPC_SAP/SOCK_SAP/CPP-unserver.cpp:
        * examples/IPC_SAP/SOCK_SAP/FD-unserver.cpp:
        * examples/Reactor/Misc/notification.cpp:
        * examples/Reactor/Multicast/Log_Wrapper.cpp:
        * examples/Reactor/Proactor/test_aiosig_ace.cpp:
        * examples/Reactor/WFMO_Reactor/APC.cpp:
        * examples/Reactor/WFMO_Reactor/Handle_Close.cpp:
        * examples/Reactor/WFMO_Reactor/Multithreading.cpp:
        * examples/Reactor/WFMO_Reactor/Removals.cpp:
        * examples/Service_Configurator/IPC-tests/server/Handle_Timeout.i:
        * examples/Shared_Malloc/test_malloc.cpp:
        * examples/Shared_Malloc/test_persistence.cpp:
        * examples/Shared_Malloc/test_position_independent_malloc.cpp:
        * examples/System_V_IPC/SV_Message_Queues/MQ_Client.cpp:
        * examples/System_V_IPC/SV_Message_Queues/MQ_Server.cpp:
        * examples/System_V_IPC/SV_Message_Queues/TMQ_Client.cpp:
        * examples/System_V_IPC/SV_Message_Queues/TMQ_Server.cpp:
        * examples/TMCast/Member/member.cpp:
        * examples/Threads/thread_manager.cpp:
        * examples/Threads/thread_specific.cpp:
        * examples/Timer_Queue/Thread_Timer_Queue_Test.cpp:
        * examples/Web_Crawler/Command_Processor.cpp:
        * examples/Web_Crawler/Iterators.cpp:
        * examples/Web_Crawler/Mem_Map_Stream.cpp:
        * examples/Web_Crawler/URL_Addr.cpp:
        * examples/Web_Crawler/URL_Visitor.cpp:
        * netsvcs/lib/Name_Handler.cpp:
        * protocols/ace/HTBP/HTBP_Channel.cpp:
        * protocols/ace/HTBP/HTBP_Session.cpp:
        * performance-tests/Misc/basic_perf.cpp:
        * performance-tests/Misc/childbirth_time.cpp:
        * performance-tests/Misc/context_switch_time.cpp:
        * performance-tests/SCTP/SOCK_SEQPACK_clt.cpp:
        * performance-tests/SCTP/SOCK_SEQPACK_srv.cpp:
        * performance-tests/SCTP/SOCK_STREAM_clt.cpp:
        * performance-tests/SCTP/SOCK_STREAM_srv.cpp:
        * performance-tests/Server_Concurrency/Leader_Follower/RT_CORBA_Leader_Follower.cpp:
        * performance-tests/Server_Concurrency/Leader_Follower/leader_follower.cpp:
        * performance-tests/Server_Concurrency/Queue_Based_Workers/RT_CORBA_Workers.cpp:
        * performance-tests/Server_Concurrency/Queue_Based_Workers/workers.cpp:
        * performance-tests/Synch-Benchmarks/Base_Test/Baseline_Test.cpp:
        * performance-tests/Synch-Benchmarks/Perf_Test/Performance_Test_Options.cpp:
        * tests/ACE_Init_Test.cpp:
        * tests/ACE_Test.cpp:
        * tests/CDR_Array_Test.cpp:
        * tests/Cache_Map_Manager_Test.cpp:
        * tests/Cache_Map_Manager_Test.h:
        * tests/Conn_Test.cpp:
        * tests/DLL_Test.cpp:
        * tests/DLList_Test.cpp:
        * tests/Dynamic_Priority_Test.cpp:
        * tests/FlReactor_Test.cpp:
        * tests/Handle_Set_Test.cpp:
        * tests/IOStream_Test.cpp:
        * tests/MT_Reactor_Upcall_Test.cpp:
        * tests/MT_SOCK_Test.cpp:
        * tests/Malloc_Test.cpp:
        * tests/Map_Manager_Test.cpp:
        * tests/Max_Default_Port_Test.cpp:
        * tests/Max_Default_Port_Test_IPV6.cpp:
        * tests/Message_Queue_Test.cpp:
        * tests/Message_Queue_Test_Ex.cpp:
        * tests/Multicast_Test.cpp:
        * tests/Multicast_Test_IPV6.cpp:
        * tests/OS_Test.cpp:
        * tests/Object_Manager_Test.cpp:
        * tests/Priority_Buffer_Test.cpp:
        * tests/Priority_Reactor_Test.cpp:
        * tests/Proactor_Scatter_Gather_Test.cpp:
        * tests/Proactor_Test.cpp:
        * tests/Proactor_Test_IPV6.cpp:
        * tests/Proactor_Timer_Test.cpp:
        * tests/Process_Strategy_Test.cpp:
        * tests/Reactor_Performance_Test.cpp:
        * tests/Reactor_Timer_Test.cpp:
        * tests/Reactors_Test.cpp:
        * tests/Recursive_Condition_Bug_Test.cpp:
        * tests/Recursive_Condition_Test.cpp:
        * tests/Recursive_Mutex_Test.cpp:
        * tests/SOCK_SEQPACK_SCTP_Test.cpp:
        * tests/SOCK_Send_Recv_Test.cpp:
        * tests/SOCK_Send_Recv_Test_IPV6.cpp:
        * tests/SString_Test.cpp:
        * tests/SV_Shared_Memory_Test.cpp:
        * tests/Semaphore_Test.cpp:
        * tests/Service_Config_DLL.cpp:
        * tests/Service_Config_Test.cpp:
        * tests/TSS_Test.cpp:
        * tests/Task_Ex_Test.cpp:
        * tests/Thread_Pool_Reactor_Resume_Test.cpp:
        * tests/Thread_Pool_Reactor_Test.cpp:
        * tests/Thread_Pool_Test.cpp:
        * tests/Time_Value_Test.cpp:
        * tests/HTBP/Reactor_Tests/test_config.h:
        * tests/HTBP/Send_Recv_Tests/SendRecv_Test.cpp:
        * tests/RMCast/RMCast_Fragment_Test.cpp:
        * tests/RMCast/RMCast_Membership_Test.cpp:
        * tests/RMCast/RMCast_Reassembly_Test.cpp:
        * tests/RMCast/RMCast_Reordering_Test.cpp:
        * tests/RMCast/RMCast_Retransmission_Test.cpp:
        * tests/SSL/Thread_Pool_Reactor_SSL_Test.cpp:
        * websvcs/lib/URL_Addr.cpp:

          Converted remainder of
          ACE_{static,dynamic,reinterpret,const}_cast macros calls to
          their standard C++ counterparts using new bin/ACE-casts-convert
          script.

Thu Jan 20 18:53:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/MEM_Acceptor.h:
          Doxygen improvement

Thu Jan 20 18:26:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/MEM_Addr.h:
          Doxygen improvement

Thu Jan 20 15:46:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Connector.cpp:
          Replaced C-style cast with C++ const_cast

Thu Jan 20 07:00:15 2005  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/modules/AutomakeWorkspaceHelper.pm:

          Honor the -into option by prefixing each open with the
          correct output directory determined by the new method on the
          Creator.

Thu Jan 20 01:16:21 2005  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * bin/ACE-casts-convert:

          New convenience script that converts all ACE cast macro calls
          (e.g. ACE_static_cast (foo, bar)) to their standard C++
          counterparts (e.g. static_cast<foo> (bar)).  It is meant as an
          aid to help app developers that use the ACE cast macros upgrade
          their apps to the standard C++ cast syntax since the ACE cast
          macros were deprecated back in ACE 5.4.2.

Wed Jan 19 23:06:14 2005  J.T. Conklin  <jtc@acorntoolworks.com>

        * bin/MakeProjectCreator/config/acelib.mpb:

          Changed to inherit from pkgconfig.mpb.

        * bin/MakeProjectCreator/config/pkgconfig.mpb:

          New file, custom file definition for pkgconfig *.pc.in file.

Wed Jan 19 15:20:19 2005  Steve Huston  <shuston@riverace.com>

        * ace/Dev_Poll_Reactor.inl: Add #include "ace/Log_Msg.h" to pick up
          ACE_ASSERT. Fixes compile error on Solaris 9.

Wed Jan 19 11:23:41 2005  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/modules/BorlandProjectCreator.pm:

          Use the new get_use_env() method which is part of the MPC change
          from Wed Jan 19 11:20:42 2005.

Wed Jan 19 08:28:11 2005  Chad Elliott  <elliott_c@ociweb.com>

        * bin/tao_orb_tests.lst:

          Added TAO/tests/GIOP_Fragments/PMB_With_Fragments/run_test.pl to
          the list of tests.

Tue Jan 18 09:32:47 2005  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/templates/bor.mpd:
        * bin/MakeProjectCreator/templates/gnu.mpd:

          Allow the addition to 'command' and 'dependent' within the scope
          of a custom section.  This is part of the MPC change from
          Tue Jan 18 09:29:09 2005.

Tue Jan 18 08:17:10 2005  Douglas C. Schmidt  <schmidt@cs.wustl.edu>

        * ace/Log_Msg.cpp (open): Fixed the logic to pass prog_name
          rather than logger_key, which fixes a bug with syslog.  Thanks
          to Robert Iakobashvili <roberti@GoNetworks.com> for this fix.

Mon Jan 17 23:08:20 2005  J.T. Conklin  <jtc@acorntoolworks.com>

        * configure.ac:

          Clarify that we're checking whether the second argument to
          gettimeofday() is a _struct_ timezone *.

        * m4/platform.m4:

          Fixed ACE_VAR_TIMEZONE macro to avoid false positive on systems
          with the timezone() function.

Sun Jan 16 23:26:58 2005  J.T. Conklin  <jtc@acorntoolworks.com>

        * m4/config_h.m4:

          Removed autoheader template for ACE_HAS_SIGINFO_T.

        * configure.ac:

          Simplified check for ACE_HAS_SIGINFO_T.
          Added check for ACE_LACKS_SI_ADDR.
          Added check for ACE_HAS_PTHREAD_NP_H.

Sun Jan 16 22:14:25 2005  J.T. Conklin  <jtc@acorntoolworks.com>

        * ace/os_include/os_pthread.h:

          #include <pthread_np.h> if ACE_HAS_PTHREAD_NP_H is defined.

        * ace/README:

          Document new feature test macro ACE_HAS_PTHREAD_NP_H.

Sun Jan 16 18:52:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/CDR_Stream.{h,cpp}:
          Don't implement the destructor of ACE_WChar_Codeset_Translator
          in the header file, but in the cpp file. Fixes link errors
          with TAO and Cygwin. Thanks to Mike McGahan
          <mcgahan at sparta dot com> for reporting this.
          This fixes bugzilla id [2020].

Sat Jan 15 22:22:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/HTBP/Send_Large_Msg/Send_Large_Msg.mpc:
          Also build the client after the Test_Output library

Thu Jan 13 23:32:03 2005  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * ace/Capabilities.cpp:
        * ace/Configuration.cpp:
        * ace/Connector.cpp:
        * ace/Containers_T.cpp:
        * ace/Dev_Poll_Reactor.cpp:
        * ace/Dynamic_Service.cpp:
        * ace/FILE.cpp:
        * ace/LSOCK_Acceptor.cpp:
        * ace/LSOCK_Stream.cpp:
        * ace/Log_Msg.cpp:
        * ace/Message_Queue.cpp:
        * ace/Message_Queue_T.cpp:
        * ace/Naming_Context.cpp:
        * ace/OS_NS_fcntl.cpp:
        * ace/OS_NS_netdb.cpp:
        * ace/OS_NS_stdio.cpp:
        * ace/OS_NS_stropts.cpp:
        * ace/OS_NS_sys_uio.cpp:
        * ace/OS_NS_sys_utsname.cpp:
        * ace/OS_NS_time.cpp:
        * ace/OS_NS_unistd.inl:
        * ace/OS_NS_wchar.cpp:
        * ace/OS_Thread_Adapter.cpp:
        * ace/Obstack_T.cpp:
        * ace/POSIX_Asynch_IO.cpp:
        * ace/POSIX_CB_Proactor.cpp:
        * ace/POSIX_Proactor.cpp:
        * ace/Parse_Node.cpp:
        * ace/Remote_Name_Space.cpp:
        * ace/SOCK_Acceptor.cpp:
        * ace/SOCK_Connector.cpp:
        * ace/SOCK_Dgram_Mcast.cpp:
        * ace/SOCK_SEQPACK_Acceptor.cpp:
        * ace/SOCK_SEQPACK_Association.cpp:
        * ace/SOCK_SEQPACK_Connector.cpp:
        * ace/Select_Reactor_Base.cpp:
        * ace/Service_Config.cpp:
        * ace/Service_Repository.cpp:
        * ace/Sock_Connect.cpp:
        * ace/Stream_Modules.cpp:
        * ace/Svc_Conf.y:
        * ace/Svc_Conf_y.cpp:
        * ace/TLI.cpp:
        * ace/TLI_Acceptor.cpp:
        * ace/TLI_Connector.cpp:
        * ace/TSS_T.cpp:
        * ace/Timer_Heap_T.cpp:
        * ace/Timer_Wheel_T.cpp:
        * ace/Token_Collection.cpp:
        * ace/UPIPE_Stream.cpp:
        * ace/UUID.cpp:
        * ace/Unbounded_Queue.cpp:
        * ace/Unbounded_Set.cpp:
        * ace/WFMO_Reactor.cpp:
        * ace/WIN32_Asynch_IO.cpp:
        * ace/WIN32_Proactor.cpp:

          Converted all ACE_*_cast macro calls to their standard C++
          counterparts.  The ACE_*_cast macros were deprecated in ACE
          5.4.2.

Thu Jan 13 11:29:35 2005  Boris Kolpackov  <boris@dre.vanderbilt.edu>

        * ace/TMCast/Group.cpp:
        * ace/TMCast/LinkListener.hpp: Use ACE_hthread_t instead of
          ACE_thread_t to join threads.

Wed Jan 12 22:52:12 2005  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * ace/OS_NS_stdio.h (gets):
        * ace/OS_NS_stdio.cpp (gets):

          Removed this implementation.  While this ACE implementation of
          gets() did not contain the security holes that all standard
          gets() implementations have, keeping it around only serves to
          foster confusion since (1) some may incorrectly assume that this
          ACE-specific gets() implementation has the same holes as
          standard ones, and (2) invoking it with a default size argument
          so that it looks like a standard gets() call results in behavior
          that is different from the standard.  Use fgets() instead.

        * examples/C++NPv2/Select_Reactor_Logging_Server.cpp:
        * examples/C++NPv2/Server_Shutdown.cpp:
        * examples/C++NPv2/TP_Reactor_Logging_Server.cpp:

          Replaced all gets() calls with their fgets() counterparts.
          gets() is evil (read insecure), and should not be used.

Wed Jan 12 14:02:03 2005  Boris Kolpackov  <boris@dre.vanderbilt.edu>

        * ace/TMCast/Group.cpp:
        * ace/TMCast/LinkListener.hpp: Called different version of
          ACE_OS::thr_join which happens to be supported on Win32.  Thanks
          to Huang Rui <huangrui@mail.cqzte.com.cn> for reporting the
          problem and helping in narrowing it down.

Tue Jan 11 23:16:35 2005  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * configure.ac:

          Added test for existence of `/dev/poll' device file.  If that
          file exists and is readable define the "ACE_HAS_DEV_POLL"
          preprocessor symbol.

        * m4/config_h.m4:

          Minor preprocessor symbol documentation fixes.

Tue Jan 11 22:32:47 2005  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * ace/Dev_Poll_Reactor.cpp (remove_handler_i):

          Release the lock during the "close" upcall.  Fixes a deadlock
          that occurred when cancelling a timer during removal of an event
          handler from the reactor.  Thanks to Gao Xianchao <info at
          socks5cn dot com> for reporting the problem and confirming that
          this change fixes the problem.

Wed Jan 12 00:12:03 2005  Balachandran Natarajan  <bala@dre.vanderbilt.edu>

        * ace/OS_NS_signal.inl:

          Fixed a compile error with the following checkin "Tue Jan 11
          18:14:22 2005  Steve Huston  <shuston@riverace.com>". Not sure
          whether this is going to break aCC. The existing code broke
          atleast g++ 3.3.4. Need to sync with Steve on this.

Tue Jan 11 18:14:22 2005  Steve Huston  <shuston@riverace.com>

        * ace/OS_NS_signal.inl: Added "namespace ACE_OS" to this as some other
          .inl files have done. This helped get HP aC++ around its confusion
          of ACE_OS::sigaction() vs. sigaction(). Added "::" to the sigaction
          type specifiers in the signature to resolve the confusion between
          the sigaction type and ACE_OS::sigaction.

Mon Jan 10 12:41:23 2005  Steve Huston  <shuston@riverace.com>

        * tests/Test_Output.cpp (close): If the output_file_ pointer is
          already 0, don't flush/close/delete it. Logging_Strategy_Test
          does a close before the end of the program, and this will
          cause ACE_END_TEST to close it again and crash, at least on
          some plaforms.

Mon Jan 10 10:29:38 2005  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/templates/gnu.mpd:

          Ensure that all generated files are created before attempting to
          create the precompiled header binary.

        * bin/depgen.pl:

          Use canonpath on all paths provide by the user to ensure that
          things get substituted properly in the generated dependency file.

Mon Jan 10 16:10:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * examples/Mem_Map/IO-tests/test_io.cpp:
          Fixed compile errors

Mon Jan 10 12:29:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * apps/gperf/tests/test.cpp:
          Fixed unicode link errors

Mon Jan 10 10:28:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * examples/Mem_Map/IO-tests/test_io.cpp:
        * examples/IPC_SAP/TLI_SAP/ftp-server.cpp:
        * examples/IPC_SAP/TLI_SAP/ftp-client.cpp:
        * examples/IPC_SAP/TLI_SAP/db-server.cpp:
        * examples/IPC_SAP/TLI_SAP/db-client.cpp:
        * examples/IPC_SAP/TLI_SAP/CPP-server.cpp:
        * examples/IPC_SAP/SOCK_SAP/CPP-memserver.cpp:
        * examples/Connection/non_blocking/test_lsock_acceptor.cpp:
        * examples/Bounded_Packet_Relay/bpr_thread.cpp:
        * examples/ASX/Message_Queue/bounded_buffer.cpp:
        * examples/ASX/Message_Queue/priority_buffer.cpp:
        * examples/ASX/CCM_App/SC_Client.cpp:
          Fixed unicode link errors

Mon Jan 10 08:41:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * examples/System_V_IPC/SV_Message_Queues/MQ_Client.cpp:
          Fixed compile error

Sun Jan  9 19:49:19 2005  J.T. Conklin  <jtc@acorntoolworks.com>

        * ACE-INSTALL.html:

          Updated to note that autoconf/automake build is available
          in ACE only and ACE+TAO releases.

Sun Jan  9 18:29:13 2005  J.T. Conklin  <jtc@acorntoolworks.com>

        * ACEXML/apps/svcconf/Makefile.am:
        * ACEXML/common/Makefile.am:
        * ACEXML/parser/parser/Makefile.am:
        * Kokyu/Makefile.am:
        * protocols/ace/HTBP/Makefile.am:

          Generate pkg-config *.pc files from templates.

        * ACEXML/apps/svcconf/ACEXML_XML_Svc_Conf_Parser.pc.in:
        * ACEXML/common/ACEXML.pc.in:
        * ACEXML/parser/parser/ACEXML_Parser.pc.in:
        * Kokyu/Kokyu.pc.in:
        * protocols/ace/HTBP/ACE_HTBP.pc.in:

          New files, pkg-config *.pc templates.

Sun Jan  9 17:53:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * examples/System_V_IPC/SV_Semaphores/Semaphores_1.cpp:
        * examples/System_V_IPC/SV_Semaphores/Semaphores_2.cpp:
        * examples/System_V_IPC/SV_Shared_Memory/SV_Shared_Memory_Test.cpp:
        * examples/System_V_IPC/SV_Message_Queues/MQ_Client.cpp:
        * examples/System_V_IPC/SV_Message_Queues/MQ_Server.cpp:
          Fixed unicode compile errors

Sun Jan  9 17:49:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * netsvcs/lib/Server_Logging_Handler_T.{h,cpp}:
          Fixed unicode compile errors

Sun Jan  9 12:47:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * examples/IOStream/client/iostream_client.cpp:
        * examples/IOStream/server/iostream_server.cpp:
        * examples/IPC_SAP/TLI_SAP/CPP-ATM-client.cpp:
        * examples/IPC_SAP/TLI_SAP/CPP-ATM-server.cpp:
        * examples/OS/process/process.cpp:
          Fixed unicode link errors

Sun Jan  9 12:37:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * examples/Connection/non_blocking/test_lsock_connector.cpp:
        * examples/Connection/non_blocking/test_spipe_acceptor.cpp:
        * examples/Connection/non_blocking/test_spipe_connector.cpp:
        * examples/Connection/non_blocking/test_tli_acceptor.cpp:
        * examples/Connection/non_blocking/test_tli_connector.cpp:
          Fixed unicode link errors

Sun Jan  9 11:18:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/Unbounded_Set_Test.cpp:
          Removed test for bug 1460, it is just not safe to remove the element
          the iterator points to, always move the iterator first forward
          and then remove the element.

Sat Jan  8 14:50:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/MakeProjectCreator/config/server.mpb:
          Removed this file, name is just too generic, use taoserver for
          TAO servers that have taoexe and portableserver as base project
          and server as exename

Fri Jan  7 21:04:44 2005  Balachandran Natarajan  <bala@dre.vanderbilt.edu>

        * include/makeinclude/wrapper_macros.GNU:

          Added the required path settings for SSL.

Fri Jan  7 18:23:19 2005  Steve Huston  <shuston@riverace.com>

        * configure.ac: Corrected the check for ACE_HAS_CONFLICTING_XTI_MACROS.
          We're checking for a conflict of macros from other places. The
          requirement for this macro originally came from HP-UX, and shows
          as a "Future error" (aka a warning) from aC++. Simply having
          the macros show up when the "wrong" header is included first isn't
          a problem - it's the compiler complaining that they conflict.

Fri Jan  7 19:36:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/tests.mpc:
          Found that Unbounded_Set_Test was not listed, added this

        * tests/run_test.lst:
          Removed Unbounded_Set_Test_Ex, but added Unbounded_Set_Test

Fri Jan  7 15:04:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * examples/Service_Configurator/IPC-tests/server/Handle_L_Pipe.i:
          Added include of OS_NS_unistd.h to fix compile errors in Solaris 10
          build.

Fri Jan  7 08:39:40 2005  Chad Elliott  <elliott_c@ociweb.com>

        * tests/HTBP/Send_Large_Msg/Send_Large_Msg.mpc:
        * tests/HTBP/Send_Recv_Tests/SendRecv_Test.mpc:

          Added after += Test_Output to make sure that these projects aren't
          built before the Test_Output library.

Fri Jan  7 13:19:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Unbounded_Set_Ex.{h,cpp,inl}:
        * ace/ace.mpc:
        * ace/Makefile.am:
          Removed the ACE_Unbounded_Set_Ex. It gives the false idea
          that the iterators can be used thread safe. If you used this,
          use ACE_Unbounded_Set and handle thread safety in your own
          code

        * ace/Node.{h,cpp}:
          Removed deleted_, this was there for ACE_Unbounded_Set_Ex, which
          is now removed.

        * tests/Unbounded_Set_Test_Ex.{h,cpp}:
        * tests/Makefile.am:
        * tests/tests.mpc:
          Removed the ACE_Unbounded_Set_Ex test

Fri Jan  7 11:38:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/OS_NS_math.inl:
          Replaced ACE_OS:: before each method with namespace ACE_OS {},
          hopefully this fixes the compile warnings in the SuSE 8 fuzz builds.
          Thanks to Steve Huston for this idea.

        * ace/config-vxworks5.x.h:
          Removed ACE_HAS_NONCONST_RMDIR, rmdir has a const char* on VxWorks

        * ace/OS_NS_unistd.inl (rmdir):
          Removed part with ACE_HAS_NONCONST_RMDIR, there are no config files
          anymore that define this

        * ace/README:
          Removed ACE_HAS_NONCONST_RMDIR

Thu Jan  6 18:29:22 2005  Steve Huston  <shuston@riverace.com>

        * configure.ac: Added check for
          ACE_EXPLICIT_TEMPLATE_DESTRUCTOR_TAKES_ARGS ( ~CLASS<PARAM>() ),
          and made it the primary check since most compilers like this one.
          If this one fails, then test for
          ACE_HAS_WORKING_EXPLICIT_TEMPLATE_DESTRUCTOR ( ~CLASS() ). Some
          compilers don't like this one (such as IBM Visual Age C++) but
          do like the first one.

        * m4/config_h.m4: Added ACE_EXPLICIT_TEMPLATE_DESTRUCTOR_TAKES_ARGS.

Thu Jan  6 08:54:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * examples/IPC_SAP/SPIPE_SAP/producer_msg.cpp:
        * examples/IPC_SAP/SPIPE_SAP/consumer_read.cpp:
        * examples/IPC_SAP/FIFO_SAP/FIFO-Msg-server.cpp:
          Added includes to fix compile errors in Solaris 10 build

Wed Jan  5 14:06:03 2005  Chad Elliott  <elliott_c@ociweb.com>

        * ace/config-aix-4.x.h:
        * include/makeinclude/platform_aix_ibm.GNU:

          Visual Age 6 does not require #pragma implementation for template
          cpp files and so for backward compatibility, set the
          ACE_TEMPLATES_REQUIRE_PRAGMA macro if using Visual Age 5 or
          earlier and ACE_TEMPLATES_REQUIRE_SOURCE for 6 and later.

Wed Jan  5 13:03:23 2005  Jeff Parsons <j.parsons@vanderbilt.edu>

        * ace/qt_reactor.mpb:

          Modified this file similarly to those in

          Wed Jan  5 09:25:49 2005  Jeff Parsons <j.parsons@vanderbilt.edu>

          so that MPC regeneration will work correctly when qt=1.

Wed Jan  5 17:46:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Dev_Poll_Reactor.cpp:
          Added include of ace/OS_NS_stropts.h to get ACE_OS::ioctl

Wed Jan  5 09:25:49 2005  Jeff Parsons <j.parsons@vanderbilt.edu>

        * ace/ace.mpc:
        * ace/codecs.mpb:
        * ace/filecache.mpb:
        * ace/other.mpb:
        * ace/svcconf.mpb:
        * ace/token.mpb:
        * ace/uuid.mpb:

          Removed the extra nested braces related to ACE_COMPONENTS
          that create "subdirectories" in VC project files. In makefiles,
          these "components" can be separately compiled but not linked,
          so the feature is not used on any platform. In VC projects,
          the extra level of folders makes source and header files
          much harder to locate in the GUI environment.

Wed Jan  5 14:34:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Dev_Poll_Reactor.cpp:
          Always include OS_NS_fcntl.h and OS_NS_unistd.h

Wed Jan  5 14:28:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/RMCast/RMCast.{h,cpp,i}:
        * ace/RMCast/RMCast_Worker.{h,cpp,i}:
        * ace/RMCast/RMCast_Module_Factory.{h,cpp,i}:
        * ace/RMCast/RMCast_Reassembly.{h,cpp,i}:
          Removed i file, update h/cpp

        * ace/RMCast/*.cpp:
          Updated module name to RMCast in ACE_RCSID tag

        * ace/RMCast/Makefile.am:
          Updated

Wed Jan  5 13:21:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/fuzz.pl:
          Added zip files to the noncvs files that shouldn't be in the repo.
          Added a new check that tests for inline files just containing empty
          lines and c-style comments. These files shouldn't be in the repo
          and need to get removed. There is an exclusion for TAO_IDL generated
          files, we don't have an option yet to suppress the generation of
          empty inline files so, we allow them for the time being. Thanks to
          Don Hinton, Carlos O'Ryan and Martin Corino for their answers
          on my questions.

Wed Jan  5 09:44:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/OS_NS_dirent.inl (readdir_r):
          For readdir_r we also have multiple versions on Solaris. Changed
          the detection which version to use. Tested on Solaris 8, hopefully
          fixes also the problems on Solaris 10

Wed Jan  5 09:30:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/OS_NS_Thread.inl (sigwait):
          On Solaris it seems we have two versions of sigwait, one with one
          argument, another with two arguments. Added a check to detect which
          one to use and implemented both variants. I tested this on Solaris 8
          and there it works, is should fix the compile problems in the
          Solaris 10 x86 isis build

Wed Jan  5 09:10:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Dev_Poll_Reactor.cpp:
          Fixed includes for Solaris x86 isis build

Tue Jan  4 17:38:23 2005  J.T. Conklin  <jtc@acorntoolworks.com>

        * Makefile.am:
        * Release:
        * configure.ac:

          Updated for removal of ace-config.in and ace-config.1.in.

        * ace-config.in:
        * ace-config.1.in:

          Removed.

Tue Jan  4 18:19:11 2005  Steve Huston  <shuston@riverace.com>

        * ace/ACE_export.h: Adjusted ACE_NAMESPACE_INLINE_FUNCTION to include
          the extern storage class when inlining for non-Windows. This resolves
          some warnings on Solaris/Forte7, and is (hopefully!) the nit
          behind the mysterious intermittent compile failures on HP-UX aCC.

Tue Jan  4 17:37:29 2005  Steve Huston  <shuston@riverace.com>

        * ace/ACE.h: Corrected t_rcv(), t_rcv_n_i() to be extern ACE_Export,
          not ACE_NAMESPACE_INLINE_FUNCTION - the bodies are defined in the
          .cpp file, and not inline.

Tue Jan  4 17:22:14 2005  Steve Huston  <shuston@riverace.com>

        * ace/Signal.h:
        * ace/TLI.h:
        * ace/TLI_Stream.h: Include "ace/config-lite.h" before testing any ACE
          config macros.

Tue Jan  4 09:56:46 2005  J.T. Conklin  <jtc@acorntoolworks.com>

        * ace/TMCast/TMCast.mpc:
        * bin/MakeProjectCreator/config/tmcast.mpb:

          Changed to inherit from exceptions.mpb and threads.mpb

        * bin/MakeProjectCreator/exceptions.mpb:
        * bin/MakeProjectCreator/threads.mpb:

          New files, MPC base projects that require exceptions and threads
          respecitively.  Projects can inherit from these instead of using
          an explicit requires +=, which can result in duplicate entries.

Tue Jan  4 13:40:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * etc/create-jace-release:
          Removed this file

Tue Jan  4 13:33:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/CLASSIX/*:
        * tests/CLASSIX/*:
          Removed all these files, they are old and not maintained for
          a long time

        * psosim/*:
        * java/*:
          Removed the contents of these directories. These files where not
          shipped as part of the release and are not used anymore.

          This fixes bugzilla bug [2015].

Tue Jan  4 08:07:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/Multicast_Test.cpp:
        * tests/Multicast_Test_IPV6.cpp:
          Fixed unused argument warnings

Tue Jan  4 04:25:44 2005  Balachandran Natarajan  <bala@dre.vanderbilt.edu>

        * ace/OS_NS_sys_stat.inl:
        * ace/OS_NS_sys_utsname.inl:

          Fixes for SUN Studio 9 builds on x86 platform. New builds will
          be setup soon to track this on a day-today basis.

Mon Jan  3 16:53:59 2005  J.T. Conklin  <jtc@acorntoolworks.com>

        * examples/TMCast/Member/Makefile.am:

          Update for ACE prefix being added to TMCast library name.

Mon Jan  3 17:42:39 2005  Steve Huston  <shuston@riverace.com>

        * apps/JAWS/server/server.mpc:
        * apps/JAWS3jaws3/jaws3.mpc: Added "avoids += uses_wchar" because
          there are some sources in here that won't work with wide-char.
          Furthermore, it's not immediately clear what the needs of the code
          are with respect to char width. These could probably be fixed,
          but may require (or be greatly helped by) some improvement to
          ACE_Process_Options::setenv() to accept narrow-char args and/or
          adjust string formatting to account for wide-char input.

        * examples/Connection/non_blocking/CPP-acceptor.cpp: The
          ACE_DEFAULT_SERVER_PORT_STR is already defined in terms of
          ACE_TEXT, so it shouldn't be wrapped in ACE_TEXT.

Mon Jan  3 14:38:01 2005  J.T. Conklin  <jtc@acorntoolworks.com>

        * netsvcs/lib/Makefile.am:

          Install header files.

Mon Jan  3 14:34:57 2005  J.T. Conklin  <jtc@acorntoolworks.com>

        * ace/Makefile.am:
        * ace/QoS/Makefile.am:
        * ace/RMCast/Makefile.am:
        * ace/SSL/Makefile.am:
        * ace/TMCast/Makefile.am:

          Generate pkg-config *.pc files from templates.

        * ace/ACE.pc.in:
        * ace/QoS/ACE_QoS.pc.in:
        * ace/RMCast/ACE_RMCast.pc.in:
        * ace/SSL/ACE_SSL.pc.in:
        * ace/TMCast/ACE_TMCast.pc.in:

          New files, pkg-config *.pc templates.

Mon Jan  3 19:16:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Dev_Poll_Reactor.{h,cpp}:
          Changed the return type of the notify method to int to match the
          declaration in the base class. Also added argument names to the
          header file to help doxygen generate the documentation. Thanks to
          Alexander Libman <alexander dot libman at earthlink dot net> for
          reporting this.

        * ace/Reactor_Impl.h:
          Added argument names to the notify method so that doxygen can
          generate better documentation

Mon Jan  3 13:05:46 2005  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/config/core.mpb:

          Added a setting for the template variable 'install_headers' which
          is currently only used by the automake project type.
          Coincidentally, I changed the case of INSTALL_THIS_TARGET to
          lowercase.  I personally prefer lowercase and since MPC is case
          insensitive with respect to variable names, it causes no harm to
          the borland project type which also uses that template variable.

Mon Jan  3 10:56:59 2005  J.T. Conklin  <jtc@acorntoolworks.com>

        * ace/TMCast/Makefile.am:
        * ace/TMCast/TMCast.mpc:
        * bin/MakeProjectCreator/config/tmcast.mpb:

          Add ACE prefix to TMCast library name.

Mon Jan  3 14:35:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/platform_sunos5_sunc++.GNU:
          Previously explicit was the default for templates, changed this
          so that we use explicit for version 4.2 and 5.3 and otherwise
          we default to implicit. Explicit templates are not usable anymore
          for TAO, maybe these older compilers work for ACE, but we don't
          know.

Mon Jan  3 08:02:33 2005  Douglas C. Schmidt  <schmidt@cs.wustl.edu>

        * examples/TMCast/Member:
        * TMCast/*: Changed the use of TMCast to ACE_TMCast.  Thanks to
          J.T. Conklin for pointing out the inconsistency.

Mon Jan  3 09:55:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/Thread_Manager_Test.cpp:
        * tests/Conn_Test.cpp:
          Fixed compile errors with VxWorks and ACE_HAS_PTHREADS

Mon Jan  3 09:48:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-vxworks5.x.h:
          Added include of vxCpu.h to get the CPU defines from VxWorks
          so that we can determine if we use pentium or not

Sun Jan  2 13:20:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/Thread_Manager_Test.cpp:
          Fixed compile errors with VxWorks and ACE_HAS_PTHREADS

        * examples/Misc/test_trace.cpp:
          Replaced variable with name _ by trace, this fixes compile warning
          with VxWorks.

Sun Jan  2 13:16:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/Conn_Test.cpp:
          Fixed compile errors with VxWorks and ACE_HAS_PTHREADS

Sun Jan  2 12:52:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-vxworks5.x.h:
          When ACE_HAS_PTHREADS is defined, include the VxWorks file
          types/vxTypesOld.h, the header file sys/stat.h uses types from
          this file and is not according to the spec. A TSR has been
          filed to WindRiver to get this corrected, until the time being
          this is the easiest fix because on more places we got problems
          and we only now have one fix that is easily to remove

Sun Jan  2 12:18:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Thread_Manager.cpp:
          VxWorks deliver also a pthread implementation. This can be used by
          defined ACE_HAS_PTHREADS, but when this is set, we don't need to use
          some special VxWorks code.

Sun Jan  2 11:27:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/OS_NS_stdlib.cpp:
          Fixed compile problem when ACE_LACKS_MKTEMP is defined

Sun Jan  2 10:40:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/MakeProjectCreator/config/ciao_client.mpb:
        * bin/MakeProjectCreator/config/ciao_client_dnc.mpb:
          Added ciaoversion as base project so that the version number
          assigned to SOVERSION in the GNU makefiles is set to the CIAO
          version and not to the TAO version

Sun Jan  2 10:06:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/CDR_Array_Test.cpp:
        * tests/CDR_File_Test.cpp:
        * tests/Logging_Strategy_Test.cpp
          Fixed deprecated conversion warnings

Sun Jan  2 09:53:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-vxworks5.x.h:
          Added, ACE_HAS_NONCONST_GETBY

Sat Jan  1 22:53:41 2005  Balachandran Natarajan  <bala@dre.vanderbilt.edu>

        * bin/generate_rel_manpages:

          Fixed the doxygen revision number

        * bin/make_release:

          Fixed a typo.

Sat Jan  1 18:46:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        Reverted the change below, the define doesn't seem to be the
        correct one, it breaks on some platforms, have to investigate
        this again

        * ace/OS_NS_stdlib.cpp:
          Just include os_limits.h instead of limits directly

        * ace/os_include/os_limits.h:
          Dependent on ACE_USES_STD_NAMESPACE_FOR_STDCPP_LIB include
          limits or limits.h, just as we do for new

Sat Jan  1 15:12:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Service_Config.{h,cpp}:
          Fixed compile problems in unicode builds

Sat Jan  1 13:54:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Service_Config.cpp:
          Added include of OS_NS_unistd.h to get ACE_OS::getpid()

Sat Jan  1 13:45:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/platform_gnuwin32_common.GNU:
          Added needed flags for wxWindows

Sat Jan  1 13:37:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * docs/ACE-guidelines.html:
          Updated that ACE_OS is a namespace, not a class

Sat Jan  1 13:26:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ACE-INSTALL.html:
          Updated VxWorks instructions and some other small improvements

        * ace/Activation_Queue.h:
        * ace/Active_Map_Manager.h:
        * ace/Arg_Shifter.h:
        * ace/Lib_Find.h:
        * ace/Local_Memory_Pool.h:
        * ace/Pipe.h:
        * ace/Timer_List_T.h:
        * ace/Timer_Hash_T.h:
          Doxygen improvements

        * ace/Async_Acceptor.cpp:
        * ace/WIN32_Asynch_IO.cpp:
          Just check for msvc, not for _MSC_VER > 1020, that version is really
          ancient and we always have a bigger version number

        * ace/config-all.h:
          When ACE_HAS_VERBOSE_NOTSUP is defined, we use ACE_OS::fprintf, so
          always include OS_NS_stdio.h, it doesn't work to include cstdio. This
          fixes compile problems with VxWorks when ACE_HAS_VERBOSE_NOTSUP is
          defined. Also there is no need to include vxWorks.h for VxWorks.

        * ace/Configuration.cpp (create_index):
          Improved error message to make clear something went wrong

        * ace/Dirent.cpp:
        * ace/OS_Memory.cpp:
        * ace/OS_TLI.cpp:
          Removed construction to silence the HP aCC compiler, empty cpp
          files are used a lot in the ACE_OS files and there it is not needed,
          so zap it here.

        * ace/MMAP_Memory_Pool.h:
          Define private copy constructor and assignment operator for
          ACE_MMAP_Memory_Pool_Options. This class contains pointers
          it is not allowed to copy them, so prevent that.

        * ace/Naming_Context.cpp:
          Replaced ACE cast macro with the C++ version. Just don't use argv[0]
          without checking argc in the parse_args method. Under VxWorks it can
          happen that argc and argv are 0, so reading argv[0] returns random
          memory. When argc = 0, then we just don't have a program name

        * ace/OS_Errno.h:
          Prevent copying of ACE_Errno_Guard

        * ace/UUID.cpp:
          Added missing \n in several ACE_DEBUG statements

        * ace/OS_Log_Msg_Attributes.h:
          Prevent copying of ACE_OS_Log_Msg_Attributes

        * ace/config-lite.h:
          VxWorks deliver also a pthread implementation. This can be used by
          defined ACE_HAS_PTHREADS, but when this is set, we don't need some
          special VxWorks types, so changed some checks for VXWORKS to
          VXWORKS && !defined ACE_HAS_PTHREADS

        * ace/OS_NS_stropts.inl:
        * ace/OS_NS_arpa_inet.inl:
        * ace/Service_Object.cpp:
        * ace/String_Base.cpp:
        * ace/OS_NS_stdlib.inl:
          Replaced c-style cast with C++ cast

        * ace/OS_NS_stdio.cpp:
        * ace/OS_NS_time.cpp:
        * ace/Pipe.cpp:
        * tests/Max_Default_Port_Test.cpp:
        * tests/Time_Value_Test.cpp:
          Replaced ACE cast macros with C++ casts

        * ace/Default_Constants.h:
          Added ACE_LIB_TEXT to ACE_DEFAULT_SERVER_PORT_STR to fix compile
          errors in Unicode builds

        * ace/OS_Memory.h:
          Removed not needed check for borland

        * ace/OS_NS_sys_wait.inl:
          Added ACE_LACKS_WAIT and ACE_LACKS_WAITPID, these defines are set
          in the needed config files to determine if the OS has wait and
          waitpid

        * ace/config-chorus.h:
          Added ACE_LACKS_WAIT

        * ace/config-win32-common.h:
          Added ACE_LACKS_WAIT, ACE_LACKS_SOCKETPAIR and ACE_LACKS_DUP2

        * ace/OS_NS_signal.h:
          Removed commented out typedefs

        * ace/OS_NS_sys_socket.inl:
          Replaced C style cast with C++ const_cast and in socketpair
          just only check for ACE_LACKS_SOCKETPAIR, this define is now
          also set for win32

        * ace/OS_NS_unistd.inl (dup2):
          Check for ACE_LACKS_DUP2 instead for specific OS defines

        * ace/Time_Value.h:
          Prevent copying of ACE_Countdown_Time

        * ace/config-g++-common.h:
          Cleaned up this file, removed code for pre 2.8 versions of gcc, these
          are already dropped with the x.4 release. Makes maintenance a lot
          easier.

        * ace/config-vxworks5.x.h:
          Added several defines, detect pentium or not on the CPU define that
          is set. Make several defines dependent on ACE_HAS_PTHREADS, when this
          is set, we want to use the pthread library of VxWorks.

        * ace/config-psosim-g++.h:
        * ace/config-psos-tm.h:
        * ace/config-psos-diab.h:
        * ace/config-psos-diab-ppc.h:
        * ace/config-psos-diab-mips.h:
          Added ACE_LACKS_WAIT, ACE_LACKS_WAITPID and ACE_LACKS_DUP2

        * ace/config-integritySCA.h:
          Added ACE_LACKS_WAIT, ACE_LACKS_WAITPID

        * ace/OS_NS_time.inl:
          VxWorks defines asctime_r and ctime_r but with a 3rd size_t*,
          this is not according to the spec, so a new define
          ACE_HAS_SIZET_PTR_ASCTIME_R_AND_CTIME_R is added on which we
          can determine to use this variant of asctime_r and ctime_r.
          A support request to WindRiver has been make to get these
          methods spec compliant in newer versions of VxWorks.

        * ace/Object_Manager_Base.{h,cpp}:
          Replaced ACE cast macros with C++ casts, use unsigned int instaead
          of u_int because u_int is not defined with VxWorks when using
          the pthread support

        * ace/README:
          Documented the new defines

        * ace/OS_NS_string.{h,cpp,inl}:
        * ace/config-doxygen.h:
        * configure.ac:
          Removed ACE_LACKS_STRCHR and ACE_LACKS_STRCSPN and the related
          code, these defines aren't set in any config file so the emulation
          is not needed anymore

        * ace/Log_Msg.cpp:
          When a buffer overflow has occured, just don't log anything anymore,
          when for example a backend is used, the pointer to that backend
          can also be corrupted. So, just only log when there is no overflow.

        * ace/SOCK_Dgram_Bcast.cpp:
          Replaced ACE cast with C++ cast, also handle VxWorks specially and
          when setsockopt fails, use ACE_ERROR_RETURN to return -1 and log an
          error message so that the log explains what goes wrong.

        * ace/os_include/os_time.h:
          VxWorks doesn't have 2 arg ctime_r and asctime_r

        * ace/os_include/os_signal.h:
          Don't include sigLib.h with VxWorks when ACE_HAS_PTHREADS is defined

        * ace/Malloc_T.h:
          Moved ACE_Malloc_Lock_Adapter_T to the end of this file to prevent
          compile problems with VxWorks.

        * ace/OS_NS_sys_shm.cpp:
          Removed some code that was already marked as not used.

        * ace/OS_NS_Thread.{h,cpp,inl}:
          Removed old code that was guarded using ifdef 0. Don't use
          ACE_OS_TRACE in thr_getspecific_native because this method is
          used in the trace functionality and are tracing again in this
          macro, so we get a stack overflow. Changed several checks for
          VxWorks to include ACE_HAS_PTHREADS. Made several methods
          smaller by combining includes and reducing duplicated code.
          Replaced ACE casts with C++ casts.

        * ace/OS_NS_stdlib.cpp:
          Just include os_limits.h instead of limits directly

        * ace/os_include/os_limits.h:
          Dependent on ACE_USES_STD_NAMESPACE_FOR_STDCPP_LIB include
          limits or limits.h, just as we do for new

        * ace/Unbounded_Set.{h,cpp}:
          Doxygen update and return a Unbounded_Set& from the operator=
          to allow chaining.

        * examples/Misc/test_trace.cpp:
          Replaced variable with name _ by trace, this fixes compile warning
          with VxWorks.

        * tests/UPIPE_SAP_Test.cpp:
        * tests/Conn_Test.cpp:
          Removed explicit template instantiations for Borland C++, we don't use
          that.

        * tests/Cache_Map_Manager_Test.cpp:
        * tests/Cached_Accept_Conn_Test.cpp:
        * tests/Cached_Conn_Test.cpp:
        * tests/CDR_Array_Test.cpp:
        * tests/CDR_File_Test.cpp:
        * tests/CDR_Test.cpp:
        * tests/Hash_Map_Bucket_Iterator_Test.cpp:
        * tests/Logging_Strategy_Test.cpp:
        * tests/MEM_Stream_Test.cpp:
        * tests/Multicast_Test.cpp:
        * tests/Multicast_Test_IPV6.cpp:
        * tests/SOCK_Dgram_Bcast_Test.cpp:
          Replaced argv[0] with fixed program name, because argc could be zero
          with VxWorks and then we get a crash when using argv[0].

        * tests/Config_Test.cpp:
          Logged an error if tests.reg can't be opened.

        * tests/FIFO_Test.cpp:
          Only run this test when ACE_LACKS_MKFIFO is not defined, other
          platforms then win32 also can lack this. Replaced ACE casts with
          C++ casts.

        * tests/Log_Msg_Test.cpp:
          Don't try to overflow the log buffer with VxWorks, this will result
          in a crash and then the rest of this test is not done.

        * tests/MT_Reactor_Timer_Test.cpp:
          Rewrote this test a little to use ACE_ERROR instead of ACE_ASSERT,
          under VxWorks the log files are only written at the moment the
          tests ends normally and with the ACE_ASSERT we just didn't get
          a log file, with the ACE_ERROR we get one and can look better why
          it fails under VxWorks.

        * tests/Signal_Test.cpp:
          Replace ACE casts with C++ casts and changed the return types of the
          thread functions to fix compile errors with VxWorks.

        * tests/run_test.lst:
          Enabled some more tests for VxWorks.

        * tests/run_test.pl:
          Added .out to the program names generated in the VxWorks script

Sat Jan  1 00:00:00 2005  Douglas C. Schmidt  <schmidt@cs.wustl.edu>

        * Happy New Year!!!

Fri Dec 31 15:23:58 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * ace/Service_Config.cpp:
        * ace/Service_Config.h:

          Added support for -p command line argument, which specifies
          a filename to write the process id.

Thu Dec 30 13:21:37 2004  Chris Cleeland  <cleeland@ociweb.com>

        * ACE version 5.4.3 released.

Local Variables:
add-log-time-format: current-time-string
End: