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

	* tests/Message_Queue_Test.cpp (iterator_test): Changed initial
	  HWM specification for the QUEUE size to match the size of
	  'buffer'.  It seems very strange to try to send each element of
	  'buffer' into the queue, but to set QUEUE's HWM potentially
	  lower than sizeof(buffer).  This makes the test run to
	  completion on platforms like RH8 where it had been failing for a
	  good long while.

Wed Oct  6 11:20:53 2004  J.T. Conklin  <jtc@acorntoolworks.com>

	* ace/Message_Queue.cpp:
	* ace/Message_Queue.inl:

	  Move virtual dtor ACE_Message_Queue_Base::~ACE_Message_Queue_Base
	  and virtual method ACE_Message_Queue_Base::state() from *.inl to
	  *.cpp.

	* ace/Signal.cpp:
	* ace/Signal.inl:

	  Move virtual dtor ACE_Sig_Adapter::~ACE_Sig_Adapter() from *.inl
	  to *.cpp.

Wed Oct  6 12:25:29 2004  Steve Huston  <shuston@riverace.com>

	* examples/APG/Logging/Change_Mask.cpp:
	* examples/APG/Logging/Howto_Syslog.cpp:
	* examples/APG/Logging/Simple1.cpp:
	* examples/APG/Logging/Simple2.cpp:
	* examples/APG/Logging/Trace_Return.cpp:
	* examples/APG/Logging/Use_Callback.cpp:
	* examples/APG/Logging/Use_Callback2.cpp:
	* examples/APG/Logging/Use_Logger.cpp:
	* examples/APG/Logging/Use_Logging_Server.cpp:
	* examples/APG/Logging/Use_Logging_Strategy.cpp:
	* examples/APG/Logging/Use_LogManager.cpp:
	* examples/APG/Logging/Use_Multiple_Sinks.cpp:
	* examples/APG/Logging/Use_Ostream.cpp:
	* examples/APG/Logging/Use_Stderr.cpp:
	* examples/APG/Logging/Use_Syslog.cpp:
	* examples/APG/Logging/Wrap_Macros.cpp:
	* examples/APG/Logging/Wrap_Macros_Alt.cpp:
	* examples/APG/Processes/Spawn.cpp:
	* examples/APG/Reactor/Client.cpp:
	* examples/APG/Shared_Memory/Hash_Map.cpp:
	* examples/APG/Shared_Memory/Pool_Growth.cpp:
	* examples/APG/Streams/RecordingDevice_Text.cpp:
	  ACE_TRACE string gets ACE_LIB_TEXT applied - don't wrap it in
	  ACE_TEXT.

	* examples/ASX/UPIPE_Event_Server/event_server.cpp:
	* examples/ASX/UPIPE_Event_Server/Options.{cpp i h}:
	* examples/ASX/UPIPE_Event_Server/Consumer_Router.{cpp h}:
	* examples/ASX/UPIPE_Event_Server/Peer_Router.{cpp h}:
	* examples/ASX/UPIPE_Event_Server/Event_Analyzer.{cpp h}:
	* examples/ASX/UPIPE_Event_Server/Supplier_Router.{cpp h}:
	* examples/C++NPv2/Service_Reporter.cpp:
	  Corrected narrow/wide-char issues.

Wed Oct  6 15:10:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/Test_Output.cpp:
          Added missing includes for VxWorks

Wed Oct  6 15:00:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/Dynamic_Priority_Test.cpp:
          When building with VxWorks include OS_NS_string.h

Wed Oct  6 09:59:28 2004  Steve Huston  <shuston@riverace.com>

	* ace/Connector.cpp (connect_i): On connect fail, use
	  ACE_OS::last_error(), not errno, to check the cause. Thanks to
	  Todd Marshall for reporting this.

	* THANKS: Added Todd Marshall to the Hall of Fame.

Tue Oct  5 13:12:56 2004  Dale Wilson  <wilson_d@ociweb.com>

        * ace/Dev_Poll_Reactor.cpp:
        * ace/Select_Reactor_T.cpp:
        * ace/Signal.cpp:
          Allow for bad status return from ACE_Sig_Set:is_member (int signo)
          See Bugzilla #1954 for details.

Tue Oct  5 11:16:53 2004  Dale Wilson  <wilson_d@ociweb.com>

        * ace/OS_NS_stdlib.cpp:
          Build error on VC7.1: initializing float w/ double may lose data
          There was already a cast there to suppress the warning.  I included
	  entire expression in the cast.

Tue Oct  5 08:54:20 2004  Chad Elliott  <elliott_c@ociweb.com>

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

          Allow the addition to 'postcommand' within the scope of a custom
          section.  This is part of the MPC change from Tue Oct  5 08:53:10
          2004.

Mon Oct  4 13:34:08 2004  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * ace/OS_NS_stdlib.cpp:

          Added missing "ace/OS_NS_ctype.h" include.

          (mkstemp_emulation):

          ACE_OS::rand_r() accepts a reference to a non-const
          ACE_RANDR_TYPE, not a pointer to a const one.  Removed
          "address-of" "&" from ACE_OS::rand_r() seed argument, and
          removed the "const" qualifier from "seed" variable declaration.

Mon Oct  4 14:22:03 2004  Martin Corino  <mcorino@remedy.nl>

        * ace/OS_NS_stdlib.cpp:
          Fixed incorrect include ('OS_fcntl.h' -> OS_NS_fcntl.h').

Sun Oct  3 18:45:03 2004  Olli Savia  <ops@iki.fi>

        * ace/OS_NS_stdlib.cpp: (realpath)
          Removed extra "}".

Fri Oct  1 23:41:11 2004  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * ace/OS_NS_ctype.h:
        * ace/OS_NS_ctype.inl:

          Removed "const" qualifier from all pass-by-value function
          parameters.  There is no point in making such parameters
          "const".

Fri Oct  1 23:30:06 2004  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * ace/OS_NS_stdlib.h (mkstemp, mkstemp_emulation):
        * ace/OS_NS_stdlib.inl (mkstemp):
        * ace/OS_NS_stdlib.cpp (mkstemp_emulation):

          Added new mkstemp(3) implementation for the case where
          ACE_LACKS_MKSTEMP is defined.  It attempts to retain all of the
          security features that vendor supplied mkstemp() implementation
          provide, such as preventing symbolic link attacks.  A race
          condition, however, may exist when attempting to use this
          implementation to create a temporary file on a network
          filesystem.

          ACE_OS::mkstemp() is now available when ACE_LACKS_MKSTEMP is
          defined.

        From Ganesh Pai <GPai at sonusnet dot com>
        * ace/Hash_Map_Manager_T.h:
        * ace/Map_Manager.h:
        * ace/RB_Tree.h:

          Added new "lock_type" type trait.  Allows one to more easily
          determine the type of the underlying map/table lock.

Fri Oct  1 11:54:17 MST 2004  Trevor Fields  <fields_t@ociweb.com>

        * bin/MakeProjectCreator/config/messaging.mpb:
          Added requires += corba_messaging

Fri Oct  1 11:35:59 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * Makefile.am:
        * configure.ac:

          Changed to configure/build Kokyu if directory is present.

        * Kokyu/Makefile.am:
        * Kokyu/tests/Makefile.am:
        * Kokyu/tests/DSRT_MIF/Makefile.am:
        * Kokyu/tests/EDF/Makefile.am:
        * Kokyu/tests/FIFO/Makefile.am:

          New files.

Thu Sep 30 22:20:10 2004  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * m4/tls.m4 (ACE_CHECK_TLS):

          Fixed problem where leading forward slash was not included in
          the Kerberos include directory pathname.  Thanks to Steve Huston
          for reporting the problem.

Thu Sep 30 19:30:23 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * ace/Makefile.am:
        * ace/ace.mpc:

          Added Guard_T.* and IO_Cntl_Msg.h to header, inline, and
          template files.

Thu Sep 30 18:24:51 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * ace/Makefile.am:

          Update.

        * ace/ace.mpc:

          Remove headers that no longer exist / have been renamed.

Thu Sep 30 18:06:41 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * ace/ace.mpc:

          Sorted header, inline, and template file sections to make it
          easier to figure out if something is missing.

Thu Sep 30 18:00:33 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * ace/ace.mpc:

          Added many missing header, inline, and template files.  These
          were based on what used to be installed with the old automake
          builds and were lost now that ace/Makefile.am is generated by
          MPC.

Thu Sep 30 17:32:25 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * ACEXML/parser/parser/Makefile.am:

          Fix typo in includedir definition.

Thu Sep 30 14:02:26 2004  Steve Huston  <shuston@riverace.com>

        * configure.ac: Added the same kernel version-checking code to the
          ACE_HAS_EVENT_POLL check that Dev_Poll_Reactor.h uses to be sure
          that if enabled, it will compile.

Thu Sep 30 07:19:02 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * configure.ac:

          Removed aceConf.sh.in from AC_CONFIG_FILES.

        * aceConf.sh.in:

          Removed file.

Thu Sep 30 01:26:41 2004  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * configure.ac:

          Added check for Linux event poll interface.

        * m4/config_h.m4:

          Added autoheader templates for the ACE_HAS_{EVENT,DEV}_POLL
          preprocessor symbols.

        * m4/tls.m4 (ACE_CHECK_TLS):

          Fixed test for Kerberos include flags so that it wouldn't assume
          that Kerberos include flags are needed for all cases.

          Fixed problem where the Kerberos include flags would not be set
          correctly if running the `configure' script with cached results.

          Define and substitute new make variable
          "ACE_KERBEROS_INCLUDES" that contains a directory rather than a
          preprocessor command line option.  The existing
          "ACE_TLS_CPPFLAGS" preprocessor command line option variable is
          not compatible with MPC.

        * ace/SSL/Makefile.am (libACE_SSL_la_CPPFLAGS):

          Added "-I$(ACE_KERBEROS_INCLUDES)" to the preprocessor flag
          list.

          (libACE_SSL_la_LIBADD):

          Added "-lssl -lcrypto" to the library link list.

        * ace/SSL/ssl.mpc:

          Define new automake project-specific section that defines the
          OpenSSL libraries to link, and added the
          $(ACE_KERBEROS_INCLUDES) include directory variable to the
          generated include path.

Wed Sep 29 18:13:31 2004  Steve Huston  <shuston@riverace.com>

        * tests/tests.mpc: Added 'script' as a base project for Test_Output
          and set Script_Files to run_test.pl and run_test.lst. This is to
          pull the testing files to the build area for tests.

Wed Sep 29 17:50:27 2004  Steve Huston  <shuston@riverace.com>

        * ace/OS_Memory.h: If ACE_HAS_NEW_NOTHROW is defined, then make sure
          that ACE_NEW_THROWS_EXCEPTIONS is defined as well. The configure
          script checks for ACE_HAS_NEW_NOTHROW and I believe that all
          "up to date" compiler run-times throw an exception on a new()
          failure.

Wed Sep 29 17:30:25 2004  Irfan Pyarali  <irfan@oomworks.com>

        * ace/Basic_Stats.{h,inl,cpp}:

          - Removed calculation of variation squared or deviation in the
          output from dump_results(). I don't think either was been
          calculated since the formula of (sum squared / samples_count) -
          (avg squared) isn't a meaningful statistical value.

          - Also simplified division in dump_results() and removed
          unnecessary conversions.

          - <sum2> is no longer needed.

          - Made some minor simplifications to the code.

          - Made the fields of ACE_Basic_Stats public.

          - <min_at_> and <max_at_> were not being assigned in accumulate().

        * performance-tests/SCTP/SOCK_SEQPACK_srv.cpp:

          Fixed a for loop.  It should be 1 to n inclusive.

        * ace/DLL_Manager.cpp:

          Added additional debug statements.

        * bin/tao_other_tests.lst:

          TAO/performance-tests/Protocols/run_test.pl was added.

Wed Sep 29 17:11:39 2004  Steve Huston  <shuston@riverace.com>

        * ace/TMCast/LinkListener.hpp: Added #include "Protocol.hpp" to
          be able to see the Protocol namespace and "ace/OS_NS_string.h"
          to see ACE_OS::memcpy().

Wed Sep 29 13:01:00 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * ACEXML/apps/svcconf/Makefile.am:
        * ACEXML/common/Makefile.am:
        * ACEXML/parser/parser/Makefile.am:

          Update so that libraries and headers are installed.

Wed Sep 29 12:29:44 2004  Steve Huston  <shuston@riverace.com>

        * ace/TMCast/MTQueue.cpp: (new file)
        * ace/TMCast/Group.cpp: Added/fixed explicit template instantiations
          to get build working on Solaris, Forte 7.

Wed Sep 29 12:20:19 2004  Steve Huston  <shuston@riverace.com>

        * examples/Smart_Pointers/widget_test.cpp: Include "ace/Null_Mutex.h"
          to get the ACE_Null_Mutex specializations for ACE_Guards. Fixes
          build error on Sun Forte C++.

Wed Sep 29 09:41:02 2004  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/modules/AutomakeWorkspaceHelper.pm:

          Rewrote this module so that the code is generic and completely
          data driven.

        * bin/MakeProjectCreator/modules/GNUACEWorkspaceCreator.pm:

          When setting the MAKEFILE variable get the non-workspace decorated
          name.  This will allow GNUmakefile's generated from multiple
          workspaces within the same directory to work.

Wed Sep 29 14:05:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-win32-msvc-7.h:
        * ace/config-win32-msvc-8.h:
          Removed setting of ACE_HAS_BROKEN_NESTED_TEMPLATES. This is used
          in CIAO and it seems not be needed anymore with vc7 and newer

Wed Sep 29 09:54:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/platform_win32_dmc.GNU:
          Added rwho=0, dmc doesn't have the needed header files

Wed Sep 29 09:51:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/os_include/netinet/os_tcp.h:
        * ace/README:
        * ace/config-tandem.h:
        * ace/config-mvs.h:
          Removed ACE_LACKS_TCP_H, ACE_LACKS_NETINET_TCP_H is already there
          and better

        * ace/config-win32-dmc.h:
          Added ACE_LACKS_NETINET_TCP_H

Wed Sep 29 09:44:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-win32-dmc.h:
          Added ACE_LACKS_SYS_MSG_H

Wed Sep 29 07:46:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-tandem-nsk-mips-v2.h:
          Fixed pre/post include

Wed Sep 29 07:06:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/fuzz.pl:
          Fixed pre/post check, the matching of the /**/ was not
          correct. Added a check for _MSC_VER >= 1200. This is at
          level 6, when we have updated more code, we can lower the
          level.

Tue Sep 28 21:05:37 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * Makefile.am:

          Changed to add TAO to subdirs if BUILD_TAO is defined.

Tue Sep 28 15:38:57 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * ACEXML/apps/svcconf/svcconf.mpc:
        * ACEXML/common/common.mpc:
        * ACEXML/parser/parser/parser.mpc:

          Changed to inherit from core.mpb, so that libraries will
          be installed.

Tue Sep 28 15:22:01 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * bin/MakeProjectCreator/config/acedefaults.mpb:

          Changed to add $(ACE_BUILDDIR) to include path for automake
          builds.

Tue Sep 28 15:16:54 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * ACEXML/apps/svcconf/Makefile.am:
        * ACEXML/common/Makefile.am:
        * ACEXML/parser/parser/Makefile.am:
        * ace/Makefile.am:
        * ace/RMCast/Makefile.am:
        * ace/SSL/Makefile.am:
        * ace/TMCast/Makefile.am:

          Added includedir definitions so headers are installed in
          the expected place.

        * ACEXML/apps/svcconf/Makefile.am:
        * ACEXML/common/Makefile.am:
        * ACEXML/parser/parser/Makefile.am:
        * ace/Makefile.am:
        * ace/RMCast/Makefile.am:
        * ace/SSL/Makefile.am:
        * ace/TMCast/Makefile.am:
        * netsvcs/clients/Naming/Client/Makefile.am:
        * netsvcs/clients/Naming/Dump_Restore/Makefile.am:
        * netsvcs/lib/Makefile.am:

          Added _LDFLAGS definitions to set shared library version
          numbers.

Tue Sep 28 14:31:10 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * ACEXML/apps/svcconf/Makefile.am:
        * ACEXML/common/Makefile.am:
        * ACEXML/examples/SAXPrint/Makefile.am:
        * ACEXML/parser/parser/Makefile.am:
        * ACEXML/tests/Makefile.am:
        * Makefile.am:
        * ace/RMCast/Makefile.am:
        * ace/SSL/Makefile.am:
        * apps/gperf/Makefile.am:
        * apps/gperf/src/Makefile.am:
        * apps/gperf/tests/Makefile.am:
        * configure.ac:
        * netsvcs/servers/Makefile.am:
        * tests/Makefile.am:
        * tests/SSL/Makefile.am:

          Update so things successfully build when srcdir != builddir.

Tue Sep 28 12:48:37 2004  Chad Elliott  <elliott_c@ociweb.com>

        * include/makeinclude/wrapper_macros.GNU:

          My change from Mon Sep 27 14:10:15 2004 was causing problems with
          cygwin builds.  A better solution is to not set INSBIN at all and
          allow it to be set in the generated makefile or by the user on the
          make command line.

Tue Sep 28 15:25:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/os_include/os_fcntl.h:
          For the DMC compiler define _O_TEMPORARY, seems to lack this

Tue Sep 28 14:38:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-win32-dmc.h:
          When ACE_LACKS_STRUCT_DIR is defined, undef it, it must not be
          set with the DMC compiler

Tue Sep 28 14:14:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/platform_win32_dmc.GNU:
          Added -ND to the CFLAGS to indicate that we want to build with
          thread and dll support.

Tue Sep 28 09:13:57 2004  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/modules/BorlandWorkspaceCreator.pm:

          Borland Make has a maximum line length of roughly 32767.  The
          'all' target could exceed that length given a large amount of
          projects within a single workspace.  In that case, we have to
          create an 'all' target that specifically lists the target commands
          and thereby creating a larger workspace makefile, but working
          around the Borland Make limitation.

Tue Sep 28 11:28:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-g++-common.h:
          Removed setting of ACE_SIZEOF_LONG_DOUBLE, this is done in
          Basic_Types.h

Mon Sep 27 18:53:33 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * bin/MakeProjectCreator/config/script.mpb:
        * bin/MakeProjectCreator/config/man.mpb:

          New files to support scripts and manpages.  Inherit from these
          files, add the list of scripts or manapages to Script_Files or
          Man_Files, and MPC templates with script/manpage support will
          do the right thing.

Mon Sep 27 21:16:24 2004  Carlos O'Ryan  <coryan@atdesk.com>

        * bin/fuzz.pl:
          Do not complain about @file directives without a filename.
          Doxygen assumes the current file as the filename, so it cannot
          possibly be inconsistent.

Mon Sep 27 17:44:08 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * bin/MakeProjectCreator/config/orbsvcslib.mpb:

          Changed to add $(TAO_BUILDDIR)/orbsvcs to include path for
          automake builds.

Mon Sep 27 17:04:29 2004  Steve Huston  <shuston@riverace.com>

        * Makefile.am:
        * ace/Makefile.am:
        * ace/QoS/Makefile.am:
        * ace/RMCast/Makefile.am:
        * ace/SSL/Makefile.am:
        * ace/TMCast/Makefile.am:
        * ACEXML/Makefile.am:
        * ACEXML/common/Makefile.am:
        * ACEXML/parser/Makefile.am:
        * ACEXML/parser/parser/Makefile.am:
        * ACEXML/examples/Makefile.am:
        * ACEXML/examples/SAXPrint/Makefile.am:
        * ACEXML/apps/Makefile.am:
        * ACEXML/apps/svcconf/Makefile.am:
        * ACEXML/tests/Makefile.am:
        * apps/Makefile.am:
        * apps/gperf/Makefile.am:
        * apps/gperf/src/Makefile.am:
        * apps/gperf/tests/Makefile.am:
        * netsvcs/Makefile.am:
        * netsvcs/lib/Makefile.am:
        * netsvcs/clients/Makefile.am:
        * netsvcs/clients/Logger/Makefile.am:
        * netsvcs/clients/Naming/Makefile.am:
        * netsvcs/clients/Naming/Client/Makefile.am:
        * netsvcs/clients/Naming/Dump_Restore/Makefile.am:
        * tests/Makefile.am:
        * tests/SSL/Makefile.am:
        * tests/RMCast/Makefile.am:
          MPC-generated automake files, tweaked to work correctly. The rest of
          the automake files will be checked in in the coming days. This set
          replaces older ones that pre-dated the MPC-usage effort and were
          largely out of date as they were.

Mon Sep 27 14:10:15 2004  Chad Elliott  <elliott_c@ociweb.com>

        * include/makeinclude/wrapper_macros.GNU:

          Set INSBIN to $(PWD) by default.  To allow installation of apps
          (even if 'install' is not used in the mpc file), the gnu template
          always sets INSTALL to $(VBIN:%=$(INSBIN)/%) for exe's.  Without
          this change every exe built gets installed up in $(ACE_ROOT)/bin
          which is not what we want.

Mon Sep 27 13:46:21 2004  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/templates/gnu.mpd:

          Modified the template to override the value of INSBIN if it is set
          to '.'.  This is similar to what is done for INSLIB and is an
          iteration with rules.local.GNU.  When installing, it checks for
          $PWD but does not account for the fact that '.' is the same as
          $PWD.

Mon Sep 27 15:34:35 2004  Balachandran Natarajan  <bala@dre.vanderbilt.edu>

        * bin/MakeProjectCreator/config/ciao_deployment_stub.mpb:

          Added CIAO_DnC_Client to the list of libraries being linked in.

Mon Sep 27 09:25:37 2004  Jeff Parsons <j.parsons@vanderbilt.edu>

        * performance-tests/Server_Concurrency/Leader_Follower/RT_CORBA_Leader_Follower.cpp:

          Put back the recently-removed ACE_UINT64_DBLCAST_ADAPTER,
          so now it and static_cast<double> are both applied to the
          computation of elapsed_time_per_invocation, which will hopefully
          satisfy both MSVC 6 and MSVC 7.1.

Mon Sep 27 12:54:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/MakeProjectCreator/config/xerces.mpb:
          New base project which can be used when xerces is used

Sun Sep 26 18:58:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/os_include/os_limits.h:
          Removed setting of MAXSYMLINKS when not set, this is not the way
          to fix compile problems in OS_NS_stdlib.cpp, set ACE_LACKS_SYMLINKS
          instead if symbolic links are not supported

        * ace/config-openvms.h:
          Added ACE_LACKS_SYMLINKS, removed MAXSYMLINKS

        * ace/config-vxworks.h:
          Added ACE_LACKS_SYMLINKS, ACE_LACKS_REALPATH and
          ACE_HAS_NONCONST_READV

Sun Sep 26 21:06:53 2004  Olli Savia  <ops@iki.fi>

        * ace/OS_NS_stdlib.h:
          (mktemp, mkstemp) Changed protototype (parameter name) to match
          implementation.

        * ace/OS_NS_stdlib.cpp: (realpath)
          Added check for new macro ACE_LACKS_SYMLINKS to leave out symbolic
          links related code. This fixes compile errors on platforms which
          do not support symbolic links. Fixes bug 1900.

        * ace/README:
          Added ACE_LACKS_SYMLINKS.

Sun Sep 26 14:13:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/ICMP_Socket.cpp:
        * ace/Ping_Socket.cpp:
          Fixed incorrect ACE_TRACE usage

Sun Sep 26 14:10:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/MakeProjectCreator/config/imr_activator.mpb:
        * bin/MakeProjectCreator/config/imr_locator.mpb:
          Added missing Id tag

Sun Sep 26 10:10:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/ICMP_Socket.h:
        * ace/Ping_Socket.h:
          Added missing /**/ before include of pre/post.h to fix fuzz
          errors

Sun Sep 26 10:07:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/ACE_crc32.cpp:
        * ace/ACE_crc_ccitt.cpp:
          Removed trailing ; after namespace closure, fixes Tru64 build
          warning

Fri Sep 24 22:35:25 2004  Ossama Othman  <ossama@dre.vanderbilt.edu>

        From Robert S. Iakobashvili <roberti at go-WLAN dot com> and
        Gonzalo A. Diethelm <gonzalo dot diethelm at aditiva dot com>:

        * ace/ICMP_Socket.cpp:
        * ace/ICMP_Socket.h:
        * ace/ICMP_Socket.inl:
        * ace/Ping_Socket.cpp:
        * ace/Ping_Socket.h:
        * ace/Ping_Socket.inl:
        * tests/Network_Adapters_Test.cpp:
        * tests/Network_Adapters_Test.h:

          New ICMP and "ping" support, and accompanying test.

        * ace/Makefile.am (libACE_Sockets_la_SOURCES):
        * ace/ace.mpc:
        * tests/Makefile.am:
        * tests/tests.mpc:

          Added new ICMP and "ping" source files to the appropriate
          source lists.

Fri Sep 24 13:16:44 MST 2004  Trevor Fields  <fields_t@ociweb.com>

        * bin/tao_other_tests.lst:
          Added new ImplRepo tests.

Fri Sep 24 11:07:03 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * ace/ACE.h:
        * ace/ACE_crc32.cpp:
        * ace/ACE_crc_ccitt.cpp:

          Changed the buffer and iovec versions of ACE::crc32() and
          ACE_crc_ccitt() family of functions to take an additional
          initial/partial crc argument.  This allows CRCs to be computed
          over multiple buffers/iovecs by passing the result as input to
          the next call.  The default value allows callers to omit the
          argument on the first call.

Fri Sep 24 12:39:31 2004  Carlos O'Ryan  <coryan@atdesk.com>

        * build/Linux/include/makeinclude/platform_linux.GNU:
          Provide reasonable defaults for Boost.Test

        * bin/MakeProjectCreator/config/boost_unit_test.mpb:
          Different sites may have different configurations for boost,
          made the options needed to compile with it configurable via the
          platform_macros.GNU file.

Fri Sep 24 10:21:38 2004  Jeff Parsons <j.parsons@vanderbilt.edu>

        * performance-tests/Server_Concurrrency/Leader_Follower/RT_CORBA_Leader_Follower.cpp:

          Replaced ACE_UINT64_DBLCAST_ADAPTER, which doesn't satisfy
          the stricter MSVC 7.1, with static_cast<double>.

Fri Sep 24 10:55:34 2004  Steve Huston  <shuston@riverace.com>

        * ace/config-linux-common.h: If __USE_POSIX199309 is defined from
          <features.h> set ACE_HAS_CLOCK_GETTIME. This is most often the case.

Fri Sep 24 10:40:11 2004  Steve Huston  <shuston@riverace.com>

        * apps/JAWS/clients/Blobby/blobby.cpp:
        * apps/JAWS/clients/Blobby/Blob.{h cpp}:
        * apps/JAWS/clients/Blobby/Blob_Handler.cpp:
        * apps/JAWS/clients/Blobby/Options.{h cpp}:
        * apps/JAWS/clients/Caching/http_client.cpp:
        * apps/JAWS/clients/Caching/http_handler.cpp:
        * apps/JAWS/server/HTTP_Server.{h cpp}:
        * apps/JAWS/server/HTTP_Response.cpp:
          Wide-char fixes.

Fri Sep 24 10:34:26 2004  Steve Huston  <shuston@riverace.com>

        * bin/MakeProjectCreator/config/acedefaults.mpb:
        * bin/MakeProjectCreator/config/acelib.mpb: For automake projects,
          change ACE_ROOT to either top_srcdir or top_builddir depending
          on whether it's looking for source (such as includes) or libraries.

        * performance-tests/Synch-Benchmarks/Synch_Lib/Synch_Benchmarks_Synch_Lib.mpc:
          Changed base project from aceexe to acelib. This builds a library.

Fri Sep 24 07:04:29 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * ace/Makefile.am:
        * ace/ace.mpc:

          Add new files.

        * ace/ACE.h:
        * ace/ACE_crc_ccitt.cpp:

          Added ACE::crc_ccitt() family of functions in new file
          ACE_crc_ccitt.cpp.

        * ace/ACE_crc32.cpp:

          Changed table and shift expression so the special case with
          additional masking for systems where ACE_UINT32 is more than 32
          bits wide (such as the Cray) is not needed.  See "A Painless
          Guide to CRC Error Detection Algorithms" by Ross Williams for
          details.

        * ace/ACE.cpp:
        * ace/ACE_crc32.cpp:

          Split out ACE::crc32() family of functions out of ACE.cpp into
          new file ACE_crc32.cpp.

Fri Sep 24 08:36:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-lite.h:
          The ACE_UNUSED_ARG macro didn't work with the DMC compiler, so
          added a new version of this macro that silences the not used
          warning with DMC.

Fri Sep 24 08:29:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/OS_NS_sys_socket.inl (sendto):
          Removed usage of ACE_CONST_CAST

Thu Sep 23 19:27:22 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * ace/ACE.cpp:
        * ace/ACE.h:

          Changed iovec version of ACE::crc32 to take a const iovec.

Thu Sep 23 19:59:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Service_Manager.h:
        * ace/Service_Object.h:
        * ace/Signal.h:
        * ace/Service_Types.h:
        * ace/Stream_Modules.h:
        * ace/Thread.inl:
          Documentation fixes

        * ace/OS_NS_stdio.inl:
          Added some checks for __DMC__ for the Digital Mars compiler

        * ace/OS_NS_stdio.cpp:
          Added some checks for __DMC__ for the Digital Mars compiler and
          use ::_close instead of _close, the former works with all compilers
          and DMC, with DMC the _close is a macro.

Thu Sep 23 19:53:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/streams.h:
          Removed explicit check of _MSC_VER >= 1200, just check for _MSC_VER,
          version 1200 is msvc6, the oldest msvc compiler we support, this
          compiler and newer have pragma warning push/pop

Thu Sep 23 12:07:02 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * ace/ACE.cpp:
        * ace/ACE.h:

          Changed buffer version of ACE::crc32 to take a void * argument
          (to avoid requiring callers to cast non-char data structures),
          and a size_t length.

Thu Sep 23 13:24:54 2004  Chad Elliott  <elliott_c@ociweb.com>

        * ACEXML/tests/tests.mpc:
        * examples/DLL/DLL.mpc:
        * examples/Export/Export.mpc:
        * examples/NT_Service/NT_Service.mpc:
        * examples/Reactor/Ntalker/Reactor_Ntalker.mpc:
        * examples/Web_Crawler/Web_Crawler.mpc:
        * performance-tests/Misc/Misc.mpc:
        * performance-tests/Server_Concurrency/Leader_Follower/Svr_Conc_Leader_Follower.mpc:
        * performance-tests/Server_Concurrency/Queue_Based_Workers/Svr_Conc_Queue_Based_Workers.mpc:
        * performance-tests/Synch-Benchmarks/Synch_Benchmarks.mpc:
        * performance-tests/TCP/TCP.mpc:
        * performance-tests/UDP/UDP.mpc:

          Added an 'exename' setting for the projects in these mpc files.
          The cpp files contain some form of ACE_MAIN which used to be
          recognized by MPC as an entry point.  It is now necessary to set
          exename since MPC will no longer recognize ACE_MAIN as a "main"
          function.

Thu Sep 23 15:13:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Service_Config.h:
          Doxygen improvement

Thu Sep 23 07:42:33 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * ace/ACE.cpp:

          Changed buffer and iovec versions of ACE:crc32() to hoist
          computing the end position out of the loop.

Thu Sep 23 14:34:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-win32-dmc.h:
          New config file for the Digital Mars C++ compiler (see
          www.digitalmars.com). Not fully working, but a first version.

        * include/makeinclude/platform_win32_dmc.GNU:
          New GNU file for the DMC compiler, also first version

        * ace/config-win32.h:
          Added check for __DMC__

          More small changes for the DMC compiler will follow

Wed Sep 22 14:40:15 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * ace/ACE.cpp:

          Changed ACE::crc32() family of functions to NOT fold in the
          length of the string/buffer/iovec into the CRC.

        * ace/ACE.cpp:
        * ace/ACE.h:

          Changed return type of ACE::crc32() family of functions from
          u_long to ACE_UINT32.

Wed Sep 22 13:46:01 2004  Balachandran Natarajan  <bala@dre.vanderbilt.edu>

        * bin/msvc_cidlc.pl:

          CIDLC cannot be compiled in release mode. Enable only debug
          mode.

Wed Sep 22 10:35:18 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * ace/ACE.cpp:

          Added const qualifier to ACE_OS::crc_table_.

Wed Sep 22 17:37:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Dynamic_Service_Base.h:
          Doxygen fix

Wed Sep 22 07:04:46 2004  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/templates/gnu.mpd:

          Fixed a bug that I introduced in my Tue Sep 21 06:38:17 2004
          change.  INSBIN can't be set to '.'.  It causes many problematic
          interations with rules.local.GNU and rules.nested.GNU.

Tue Sep 21 20:13:40 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * configure.ac:

          Added checks for getipnodebyaddr() and getipnodebyname() which
          set ACE_LACKS_GETIPNODEBYADDR and ACE_LACKS_GETIPNODEBYNAME.

        * ace/OS_NS_netdb.inl:

          Changed __GLIBC__'s in conditionals to ACE_LACKS_GETIPNODEBYADDR
          or ACE_LACKS_GETIPNODEBYNAME.

        * ace/config-linux-common.h:
        * ace/config-netbsd.h:

          Added #define for ACE_LACKS_GETIPNODEBYADDR and
          ACE_LACKS_GETIPNODEBYNAME.

Tue Sep 21 17:50:27 2004  Steve Huston  <shuston@riverace.com>

        * examples/APG/Naming/naming.mpc: Correct the exename for Nodelocal.
          It was conflicting with that of Netlocal, which, when generated,
          confused Visual Age C++ templates and automake.

Tue Sep 21 12:16:39 2004  Steve Huston  <shuston@riverace.com>

        * ACEXML/parser/parser/Parser.cpp: parse_encoding_decl(), don't
          crash if the input source doesn't declare an encoding.
          reset(), if current_ is already 0 (the case if no parsing ever
          really got started) don't dereference it.

Tue Sep 21 18:00:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/OS_NS_unistd.inl (readlink):
          Only when ACE_LACKS_READLINK this is not supported, the checks for
          win32 or wince are removed.

        * ace/config-WinCE.h:
        * ace/config-win32-common.h:
          Define ACE_LACKS_READLINK

Tue Sep 21 15:29:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/QtReactor_Test.cpp:
          Fixed incorrect ACE_TRACE usage, thanks to Vincent Newsum
          <Newsum at fel dot tno dot nl> for reporting this, this fixes
          BUG 1940.

Tue Sep 21 06:38:17 2004  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/templates/gnu.mpd:

          This is a fix for [Bug 1915].  I moved the block of code that
          set up INSBIN and INSLIB before the include of wrapper_macros.GNU
          to ensure that the values for 'install', 'dllout' and 'libout' are
          used instead of the defaults found in wrapper_macros.GNU.  I
          didn't use the patch supplied for this bug because it didn't take
          into accout the possibility of overriding the INSBIN and INSLIB
          values on the make command line.  Thanks to Thomas Girard
          <thomas.g.girard@free.fr> for reporting this and supplying a
          patch.

Tue Sep 21 09:56:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/QtReactor.cpp:
          Fixed incorrect ACE_TRACE usage, thanks to Vincent Newsum
          <Newsum at fel dot tno dot nl> for reporting this, this fixes
          BUG 1939. We should setup a daily build with Qt soon.

Mon Sep 20 18:07:03 2004  Balachandran Natarajan  <bala@dre.vanderbilt.edu>

        * tests/run_test.pl:

          Reverted the change "Sun Sep 19 20:36:43 2004  Balachandran
          Natarajan  <bala@dre.vanderbilt.edu>" since it was giving
          troubles on every platform.

Mon Sep 20 06:54:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/MakeProjectCreator/config/global.features:
          Set ssl to 0 again, added wince=0, seems this has been removed by
          accident

Sun Sep 19 20:36:43 2004  Balachandran Natarajan  <bala@dre.vanderbilt.edu>

        * tests/run_test.pl:

          Fix for BUG 1924. Please see

          http://deuce.doc.wustl.edu/bugzilla/show_bug.cgi?id=1924

          for details. Thanks to Paul <paul at reeder dot cs> for the
          patch.

Sun Sep 19 14:51:32 2004  Carlos O'Ryan  <coryan@atdesk.com>

        * bin/tao_orb_tests.lst:
          Add yet another test to the list.

Sun Sep 19 13:49:31 2004  Carlos O'Ryan  <coryan@atdesk.com>

        * bin/MakeProjectCreator/config/global.features:
          Add new "boost" feature.  It should be enabled if you
          are planning to use the boost::unit_test_framework classes.
          Naturally you will also have to install boost (www.boost.org)
          I am writing unit tests for some classes, and I am too stubborn
          to use a sub-standard unit tests frameworks like cxxtest, but
          too smart to roll my own.

        * bin/MakeProjectCreator/config/boost_unit_test.mpb:
          New base project for unit tests based on the
          boost::unit_test_framework.  Try it, it is good for you.

Sun Sep 19 08:03:57 2004  Balachandran Natarajan  <bala@dre.vanderbilt.edu>

        * bin/msvc_cidlc.pl:

          A new perl script to compile and build the CIDL compiler.

Fri Sep 17 13:19:05 2004  Chad Elliott  <elliott_c@ociweb.com>

        * tests/Dirent_Test.cpp:
        * tests/Message_Queue_Test_Ex.cpp:

          Corrected minor build problems for VxWorks.

Fri Sep 17 11:53:10 2004  Chad Elliott  <elliott_c@ociweb.com>

        * ace/ACE.cpp:

          Return the system variable, maxFiles, in ACE::max_handles()
          instead of the FD_SETSIZE which does not reflect the actual limit.

        * ace/Capabilities.cpp:

          Template instantiations for the ACE_Hash<ACE_TString> and
          ACE_Equal_To<ACE_TString> were conflicting with template
          specialization of the same on VxWorks.  I'm not sure if they are
          required for any compiler, but I wanted to be safe and exclude
          them in a #if !defined (VXWORKS).

        * ace/Proactor.cpp:

          Moved the template instantiations for
          auto_ptr<ACE_Asynch_Result_Impl> and
          auto_ptr<ACE_Asynch_Result_Impl> into the right #if clause.

        * ace/config-vxworks5.x.h:

          The current GNU compiler for VxWorks (2.96) is the only old
          compiler that could possible build ACE and it supports template
          specialization, lacks auto_ptr and has various other platform
          differences.

        * ace/os_include/os_limits.h:

          Define MAXSYMLINKS if it isn't defined by the system headers.
          I chose 20 which is what I found in other system header files.

        * ace/os_include/sys/os_stat.h:

          Define S_ISLNK if it isn't defined by the system headers.

Fri Sep 17 12:09:27 2004  Steve Huston  <shuston@riverace.com>

        * examples/ASX/CCM_App/CCM_App.cpp:
        * examples/ASX/CCM_App/SC_Server.cpp:
        * examples/ASX/Event_Server/Event_Server/event_server.cpp:
        * examples/ASX/Event_Server/Event_Server/Options.{h cpp}:
        * examples/ASX/Event_Server/Event_Server/Supplier_Router.{h cpp}:
        * examples/ASX/Event_Server/Event_Server/Event_Analyzer.{h cpp}:
        * examples/ASX/Event_Server/Event_Server/Consumer_Router.{h cpp}:
        * examples/ASX/Event_Server/Event_Server/Peer_Router.cpp:
        * examples/ASX/Event_Server/Transceiver/transceiver.{h cpp}:
        * examples/ASX/Message_Queue/buffer_stream.cpp:
          Char width fixes to build clean with wide-char.

Fri Sep 17 08:42:50 2004  Steve Totten  <totten_s@ociweb.com>

        * bin/PerlACE/Process_Win32.pm (Executable):
          Fixed an error in which Executable() returns a UNIX-style
          path instead of a Windows-style path if the IGNOREEXESUBDIR
          member is set.  Now, test scripts can use
          PerlACE::Process::IgnoreExeSubDir() to make sure an
          executable is found in the path specified without the
          addition of the setting of -ExeSubDir.  This change was
          required for Windows Release and Static builds after the
          installation directory for various common utilities was
          changed to %ACE_ROOT%\bin.

Fri Sep 17 09:30:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-cygwin32.h:
          Added several defines, result of autoconf testing with Cygwin

Thu Sep 16 20:40:06 2004  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * bin/tao_other_tests.lst:

          Removed SecurityLevel1 test from this list of tests to run.  The
          SecurityLevel1 IDL module is longer supported by TAO.

Fri Sep 17 00:25:17 2004  Olli Savia  <ops@iki.fi>

        * ace/IOStream_T.h:
        * ace/Object_Manager.cpp:
          Changed NULL to 0 to silence compile time warning.

Thu Sep 16 14:14:31 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * bin/MakeProjectCreator/config/event_serv.mpb:

          Changed to inherit from svc_utils.

Thu Sep 16 12:36:29 2004  Steve Huston  <shuston@riverace.com>

        * ace/POSIX_Proactor.{h cpp}: Change the SystemType enumerator value
          names to begin with ACE_. This avoids conflicts with other facilities
          that use an OS_ prefix.

Thu Sep 16 09:22:08 2004  Dale Wilson  <wilson_d@ociweb.com>

        * ace/OS_NS_Thread.cpp:
          In ACE_TSS_Cleanup::exit, defer deleting TSS objects
          until it is no longer necessary to access the ACE_TSS_Cleanup
          itself.  One of the objects to be deleted is a Thread_Exit
          which may eventually cause (or at least allow) the deletion
          of the ACE_TSS_Cleanup.
          The original code worked like this but I changed it when
          I added additional cleanup operations to the exit method.

Thu Sep 16 08:14:14 2004  Chad Elliott  <elliott_c@ociweb.com>

        * ace/Memory_Pool.cpp:
        * ace/config-hpux-11.00.h:

          Removed a bug workaround for aCC A.03.04.  It is no longer a
          problem to specify other mmap base addresses when running
          64-bit HP-UX applications.

Thu Sep 16 07:47:09 2004  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/modules/GNUACEWorkspaceCreator.pm:

          Added a CUSTOM_TARGETS macro that will allow users to access
          custom targets that can be generated with the use of the
          'verbatim' clause in mpc files.

:09 2004  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/modules/GNUACEWorkspaceCreator.pm:

          Added a CUSTOM_TARGETS macro that will allow users to access
          custom targets that can be generated with the use of the
          'verbatim' clause in mpc files.

Thu Sep 16 10:07:00 UTC 2004  Martin Corino  <mcorino@remedy.nl>

        * apps/Gateway/Peer/peer.mpc:
        * apps/Gateway/Peer/svc.conf:
        * apps/Gateway/Gateway/gateway.mpc:
        * apps/Gateway/Gateway/svc.conf:

          Changed MPC configuration to generate the correct makefiles/project
          files for building a separate daemon executable and service object
          shared library.
          Changed service configurator files to use correct PATH specification.

Thu Sep 16 08:28:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/os_include/os_limits.h:
          Added special include for VxWorks, it defines _POSIX_TIMER_MAX
          in time.h

Thu Sep 16 08:20:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-cygwin32.h:
          Added ACE_HAS_POSIX_SEM and ACE_LACKS_NAMED_POSIX_SEM

        * ace/OS_NS_sys_mman.{h,inl}:
          Moved include ace/os_include/sys/os_mman.h from inl to header
          file, so that we get all the needed constants when building
          with Cygwin and inlining disabled

Thu Sep 16 07:55:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * m4/config_h.m4:
          Removed ACE_HAS_CYGWIN32_SOCKET_H

Thu Sep 16 07:33:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/msvc_static_order.lst:
          Added the new orbsvcs libs

Wed Sep 15 15:32:59 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * configure.ac:

          Added checks for fgetws and fputws.

        * ace/OS_NS_stdio.h:
        * ace/OS_NS_stdio.inl:

          Added feature test macros ACE_LACKS_FGETWS and ACE_LACKS_FPUTWS
          and disable wide character versions of fgets and fputs if they
          are not present.  Thanks to Johnny Willemsen for reporting this
          bug.

Wed Sep 15 15:17:39 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * ace/OS_NS_string.h:

          Changed preprocessor conditional for the declaration of the wide
          character version of strtok_r_emulation() to use ACE_WCHAR and
          ACE_LACKS_WCSTOK instead of ACE_HAS_REENTRANT_FUNCTIONS.  Thanks
          to Johnny Willemsen for reporting this bug.

Wed Sep 15 11:41:53 2004  Douglas C. Schmidt  <schmidt@cs.wustl.edu>

        * ace/ACE.cpp (set_handle_limit): Removed the

          ACE_NOTREACHED (return 0);

          and replaced it with

          return 0;

          Thanks to Martin Corino <mcorino@remedy.nl> for reporting this.

Wed Sep 15 10:46:07 2004  Dale Wilson  <wilson_d@ociweb.com>

        * ace/Log_Msg.cpp:

          Explicitly initialize a static int to zero to make it clear that
          the initial value is important.

Wed Sep 15 12:51:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * configure.ac:
          Removed check for ACE_HAS_CYGWIN32_SOCKET_H, this is not needed
          anymore

Tue Sep 14 22:44:39 2004  Balachandran Natarajan  <bala@dre.vanderbilt.edu>

        * ace/Inet_Addr.cpp:

          Fix for the problem reported by Charlie Duke, which is that
          ACE_INET_Addr::string_to_addr cannot accept an address string
          produced by ACE_INET_Addr::addr_to_string method. The output of
          addr_to_string method is of the form "[ipv4]:port" while the
          string_to_addr accepts "ipv4:port" i.e. cannot handle "[]".

          The fix for this is not to include "[]" in
          string_to_addr. Thanks to Charlie Duke <cduke at fvc dot com>.

        * THANKS: Updated Charlie's email address.

Tue Sep 14 15:02:05 2004  Dale Wilson  <wilson_d@ociweb.com>

        * NEWS:
          Updated: TSS leak has been conquered.

Tue Sep 14 11:07:25 2004  Steve Huston  <shuston@riverace.com>

        * ace/Malloc_T.{h inl}: Added ACE_Cached_Allocator<>::pool_depth()
          and ACE_Dynamic_Cached_Allocator<>::pool_depth(). Each returns the
          number of items in the cache available for allocating. Thank you to
          Jeff Jones <jjones@zonetrading.com> for this addition.

        * tests/Cached_Allocator_Test.cpp: Added tests of the new pool_depth()
          method.

        * THANKS: Added Jeff Jones to the Hall of Fame.

Tue Sep 14 11:58:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Dynamic_Service.h:
          Doxygen improvement

Tue Sep 14 10:21:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/platform_linux_icc.GNU:
          Added support for the Intel 8.1 C++ Compiler

Tue Sep 14 07:01:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/msvc_static_order.lst:
          Added TAO/orbsvcs/orbsvcs/CosNaming_Skel to the list of projects
          to build first.

Mon Sep 13 19:09:23 2004  J.T. Conklin  <jtc@acorntoolworks.com>

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

          Changed to use ACE_CHECK_HAS_FUNC([scandir]) and get rid of
          explicit definition, autoconf template macro, etc.

Mon Sep 13 20:33:25 2004  Douglas C. Schmidt  <schmidt@cs.wustl.edu>

        * ace/Select_Reactor_Base.cpp: Changed the
          ACE_Select_Reactor_Handler_Repository::open() method so that it
          uses the generalized ACE::set_handle_limit() method to not lower
          the handles, which caused problems for applications that want to
          use small reactor sizes but not limit the number of handles in
          the process.  Thanks to Eider Oliveira <eider at oliveira dot
          gmail at com> for suggesting this.

        * ace/ACE.cpp,
          ace/ACE.h: Generalized ACE::set_handle_limit() so
          it can be told not to lower the handle limit.

Mon Sep 13 18:15:44 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * ACE_wrappers/m4/platform.m4:

          Added new ACE_FUNC_IOCTL_ARGTYPES macro, used to set
          ACE_IOCTL_TYPE_ARG2.

        * ACE_wrappers/ace/config-netbsd.h:

          Added ACE_IOCTL_TYPE_ARG2 definition.

        * ACE_wrappers/ace/OS_NS_stropts.h:
        * ACE_wrappers/ace/OS_NS_stropts.inl:

          Added feature test macro ACE_IOCTL_TYPE_ARG2 (which defaults to
          int) so that ACE_OS::ioctl uses the same type as ::ioctl.  This
          help avoid sign extension problems on 64 bit platforms that use
          unsigned long.

Mon Sep 13 15:52:04 2004  Dale Wilson  <wilson_d@ociweb.com>

        * ace/OS_NS_Thread.h:
        * ace/OS_NS_Thread.cpp:
        * ace/TSS_T.cpp:
          Bugzilla Bug 1542 TSS Leak revisited.
          The goal is for each thread's TSS object to be
          deleted at thread exit time, and for the TSS
          key itself to be released when:
            the last thread stops using it, or
            the ACE_TSS<X> (if any) is deleted
          which ever comes *last*.

Mon Sep 13 14:56:53 2004  Balachandran Natarajan  <bala@dre.vanderbilt.edu>

        * ace/RB_Tree.h (class ACE_RB_Tree):
        * ace/RB_Tree.cpp:

          Added a special constructor useful for providing a valid vtable
          and allocator if the tree is reconstructed from shared
          memory. Thanks to Lothar Werzinger for the patches.

Mon Sep 13 12:49:22 2004  Steve Huston  <shuston@riverace.com>

        * ace/config-aix-4.x.h: Alter the value of ACE_SIZEOF_WCHAR based
          on whether or not __64BIT__ is set (4 if yes, 2 if no). See
          /usr/include/sys/types.h for verification.

        * apps/Gateway/Gateway/Connection_Handler.cpp: Add missing #include
          "ace/OS_NS_string.h".

Mon Sep 13 12:39:11 2004  Steve Huston  <shuston@riverace.com>

        * ace/DLL_Manager.cpp: Added explicit template instantiations for
          Wed Sep  8 17:13:41 2004  Steve Huston  <shuston@riverace.com>

Mon Sep 13 06:50:46 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * bin/MakeProjectCreator/config/dslogadmin_serv.mpb:

          Changed to inherit from svc_utils.

Mon Sep 13 12:02:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/msvc_static_order.lst:
          Added TAO/orbsvcs/orbsvcs/CosNotification_Skel

Mon Sep 13 10:42:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/platform_linux_icc.GNU:
          When using the 8.0 compiler, disable certain warnings about padding

Mon Sep 13 09:57:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/platform_linux_icc.GNU:
          The intel compiler on Itanium is called icc, not ecc anymore

Mon Sep 13 09:46:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/OS_NS_Thread.inl:
          Fixed compile error in VxWorks specific code

Mon Sep 13 09:44:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-icc-common.h:
          Added ACE_HAS_STD_TEMPLATE_CLASS_MEMBER_SPECIALIZATION

Mon Sep 13 09:31:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * configure.ac:
          Added ACE_CHECK_LACKS_HEADERS for wchar.h.

Mon Sep 13 09:06:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/msvc_static_order.lst:
          Added TAO/orbsvcs/orbsvcs/CosNaming_Serv to the list of projects
          to build first.

Sun Sep 12 17:20:39 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * bin/MakeProjectCreator/config/rteventlogadmin.mpb

          Update *.mpb files to reflect new libraries.

        * bin/MakeProjectCreator/config/dseventlogadmin.mpb
        * bin/MakeProjectCreator/config/dseventlogadmin_serv.mpb
        * bin/MakeProjectCreator/config/dseventlogadmin_skel.mpb
        * bin/MakeProjectCreator/config/dslogadmin.mpb
        * bin/MakeProjectCreator/config/dslogadmin_serv.mpb
        * bin/MakeProjectCreator/config/dslogadmin_skel.mpb
        * bin/MakeProjectCreator/config/dsnotifylogadmin.mpb
        * bin/MakeProjectCreator/config/dsnotifylogadmin_serv.mpb
        * bin/MakeProjectCreator/config/dsnotifylogadmin_skel.mpb

          Split Logging, Event Logging, and Notify Logging Services into
          client stub, servant skeleton, and service implementation
          libraries.

        * bin/MakeProjectCreator/config/ec_use_typed_events_serv.mpb:
        * bin/MakeProjectCreator/config/event_serv.mpb
        * bin/MakeProjectCreator/config/event_skel.mpb

          Updated dependencies.

        * bin/MakeProjectCreator/config/ec_use_typed_events_skel.mpb:

          Removed file, events skeleton w/typed events does not require
          any additional dependencies.  They have been moved to _serv.

Sun Sep 12 17:20:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Log_Msg.cpp (log):
          In then handling of %Z replaced an ACE_NEW_RETURN with a
          ACE_NEW_NORETURN, so that when allocation fails, we just do
          a break instead of return. Seems this code was written before
          the existence of ACE_NEW_NORETURN. This also fixes the crashing
          of the Intel 8.0 C++ Compiler on Itanium on this file, no idea
          why this caused a crash, that is one for Intel to sort out.

Sat Sep 11 11:41:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * apps/Gateway/Peer/Peer.cpp:
        * apps/Gateway/Peer/peerd.cpp:
          Added missing includes to fix compile problems in Cygwin build

Fri Sep 10 22:54:55 2004  Balachandran Natarajan  <bala@dre.vanderbilt.edu>

        * bin/MakeProjectCreator/config/ciao_server.mpb:
        * bin/MakeProjectCreator/config/ciao_server_dnc.mpb:

          Added utils to the list of projects that are inherited.

Sat Sep 11 00:49:39 2004  Olli Savia  <ops@iki.fi>

        * ace/IOStream.h:
          Changed NULL to 0 to silence compile time warning.

Fri Sep 10 15:39:22 2004  Steve Huston  <shuston@riverace.com>

        * ace/High_Res_Timer.{h inl cpp}: Added a new static method that
          calculates the difference between two ACE_hrtime_t quantities.
          Takes into account that the time counter may have wrapped around
          between the start and end. Changed all time difference calculations
          to use the new elapsed_hrtime() method.

Fri Sep 10 13:53:00 UTC 2004  Martin Corino  <mcorino@remedy.nl>

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

      Moved '#include "ace/Basic_Types.h"' from Time_Value.cpp to
      Time_Value.h because it's needed there since ACE_UINT64 is
      introduced (see below).

Thu Sep 09 18:29:17 2004  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * ace/Time_Value.h (msec):
        * ace/Time_Value.inl (msec):

          Even though MSVC++ 6 supports 64 bit integers, it does not
          support the "long long" syntax.  Instead it supports its own
          "__int64" built-in type.  Use "ACE_UINT64" instead of "unsigned
          long long".  Fixes syntax errors exhibited by MSVC++ 6.

Thu Sep  9 16:40:27 2004  Steve Huston  <shuston@riverace.com>

        * apps/Gateway/Gateway/Connection_Handler.cpp:
        * apps/Gateway/Gateway/Connection_Handler_Connector.cpp:
        * apps/Gateway/Gateway/File_Parser.{h cpp}:
        * apps/Gateway/Gateway/Gateway.cpp:
        * apps/Gateway/Gateway/gatewayd.cpp:
        * apps/Gateway/Peer/Options.{h cpp}:
        * apps/Gateway/Peer/Peer.{h cpp}: Narrow/wide char fixes.

        * apps/Gateway/Gateway/Options.h: Removed const char *connector_host()
          method because it's not ever defined or referenced.

        * apps/Gateway/Peer/peer.mpc: New project definition.

Thu Sep  9 16:17:38 2004  Olli Savia  <ops@iki.fi>

        * apps/JAWS3/jaws3/Templates.cpp:
          Added explicit static template member instantiations.

Thu Sep  9 05:58:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/OS_NS_unistd.cpp:
          Implemented num_processors and num_processors_online for Cygwin

Wed Sep  8 21:50:13 2004  Balachandran Natarajan  <bala@dre.vanderbilt.edu>

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

          The change added in this checkin

          Wed Sep  8 10:17:46 2004  Douglas C. Schmidt  <schmidt@cs.wustl.edu>
          should not be available on platforms that lacks long long.

Wed Sep  8 17:13:41 2004  Steve Huston  <shuston@riverace.com>

        * ace/DLL_Manager.{h cpp}: Added new private method,
          ACE_DLL_Handle::get_dll_names().
          This builds the list of names to try to dlopen() based on the
          specified dll_name and the platform's prefix/suffix/decorator
          configuration. It doesn't try to load anything and doesn't do any
          search path games like ACE::ldfind(). All of the rules for locating
          files based on environments and security policy are administered by
          the OS. This just feeds names to try, allowing for example, svc.conf
          to continue simply specifying base names like "ACE". This restores
          basic OS functionality, such as the ability to load a DLL from the
          same directory as the loading executable, as well as closing
          potential security loopholes opened by ACE's scanning the search
          path and passing absolute paths to dlopen().
          ACE_DLL_Handle::open() now calls get_dll_names() for a list of names
          to try unless ACE_MUST_HELP_DLOPEN_SEARCH_PATH is defined, in which
          case it does the old ACE::ldfind() call and dlopen()s the
          absolute path as it did before this change.

          This also allows DLLs to load on wide-char non-Windows builds without
          messing with the sprintf() format specs in Lib_Find.cpp.

Wed Sep  8 10:17:46 2004  Douglas C. Schmidt  <schmidt@cs.wustl.edu>

        * ace/Time_Value.{h,inl} Added a new msec() method that uses
          unsigned long long to compute the value to prevent overflow.
          Thanks to Boris Kaminer <boris_kaminer@mail.ru> for reporting this.

Wed Sep  8 08:15:00 UTC 2004  Simon Massey  <simon.massey@prismtechnologies.com>

        * tests/FIFO_Test.cpp
          Fixed one of the failing tests under HPUX requires delay like AIX

Wed Sep  8 08:15:00 UTC 2004  Simon Massey  <simon.massey@prismtechnologies.com>

        * tests/IOStream_Test.cpp
          Sorry, I got the wrong header file yesterday; isspace() is defined in
          ace/os_include/os_ctype.h  NOT  #include ace/OS_NS_ctype.h

Tue Sep  7 16:39:28 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * bin/MakeProjectCreator/config/dseventlogadmin.mpb
        * bin/MakeProjectCreator/config/dsnotifylogadmin.mpb
        * bin/MakeProjectCreator/config/lifecycle.mpb
        * bin/MakeProjectCreator/config/notifytest.mpb
        * bin/MakeProjectCreator/config/rtnotify.mpb
        * bin/MakeProjectCreator/config/time.mpb

          Update *.mpb files to reflect new libraries.  In many cases this
          required adding inheriting from additional base projects, as
          libraries were being linked in because of naming -- which was
          once the service implementation (and thus pulled in lots of
          other libraries) and is now just the Naming client stubs.

        * bin/MakeProjectCreator/config/ec_use_typed_events.mpb
        * bin/MakeProjectCreator/config/ec_use_typed_events_skel.mpb
        * bin/MakeProjectCreator/config/event.mpb
        * bin/MakeProjectCreator/config/event_serv.mpb
        * bin/MakeProjectCreator/config/event_skel.mpb
        * bin/MakeProjectCreator/config/naming.mpb
        * bin/MakeProjectCreator/config/naming_serv.mpb
        * bin/MakeProjectCreator/config/naming_skel.mpb
        * bin/MakeProjectCreator/config/notification.mpb
        * bin/MakeProjectCreator/config/notification_serv.mpb
        * bin/MakeProjectCreator/config/notification_skel.mpb
        * bin/MakeProjectCreator/config/trading.mpb
        * bin/MakeProjectCreator/config/trading_serv.mpc
        * bin/MakeProjectCreator/config/trading_skel.mpc

          Split Event, Naming, Notification, and Trading Services into
          client stub, servant skeleton, and service implementation
          libraries.

Tue Sep  7 15:45:00 UTC 2004  Simon Massey  <simon.massey@prismtechnologies.com>

        * examples/IOStream/server/iostream_server.cpp
          getpid() from ace/OS_NS_unistd.h actually used in both halves of
          #ifdef #else #endif guard so the conditional arround the #include
          is actually wrong and so has been removed.

        * tests/IOStream_Test.cpp
          isspace() used without #include ace/OS_NS_ctype.h, added this to
          the guarded section where it is used.

Tue Sep  7 07:08:26 2004  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/modules/BorlandProjectCreator.pm:

          As part of the -expand_env option, I moved some functionality out
          of the ProjectCreator.pm and into this module which was only used
          by this project creator.

Tue Sep  7 06:41:27 2004  Chad Elliott  <elliott_c@ociweb.com>

        * include/makeinclude/rules.local.GNU:

          Removed the if check for static_libs_only.  The STATIC_LINK_FLAG
          option will be added to the LDFLAGS if static_link is set to 1.

Mon Sep  6 10:04:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Sock_Connect.cpp:
          When using VxWorks also include OS_NS_stdio.h

Mon Sep  6 07:12:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/OS.h:
          Removed include of sys/modem.h for HPUX, this is already done in
          os_include/os_termios.h

Fri Sep  3 15:53:19 2004  Steve Huston  <shuston@riverace.com>

        * ace/config-sunos5.8.h: Added ACE_HAS_TIMEZONE. This may be
          pertinent to previous Solaris versions, but I don't have any
          to test on.

Fri Sep  3 12:34:41 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * ace/OS_NS_sys_mman.inl:

          Removed redundant conditional used to disable madvise for WIN32
          systems.  Instead use ACE_LACKS_MADVISE feature test macro.

        * ace/config-win32-common.h:

          Added ACE_LACKS_MADVISE definition.

Fri Sep  3 15:10:22 2004  Steve Huston  <shuston@riverace.com>

        * ace/config-aix-5.x.h: Add ACE_HAS_TIMEZONE.

        * ace/OS_NS_time.h: Include "ace/OS_NS_errno.h" - ACE_NOTSUP_RETURN
          sets errno.

Fri Sep  3 21:36:51 2004  Olli Savia  <ops@iki.fi>

        * apps/drwho/File_Manager.cpp:
          Use ACE_HAS_EXPLICIT_STATIC_TEMPLATE_MEMBER_INSTANTIATION
          to check if explicit template instantiation is needed.
          Thanks to Johnny Willemsen for informing me about this
          macro.

Fri Sep  3 20:02:20 2004  Olli Savia  <ops@iki.fi>

        * ace/OS_NS_unistd.inl:
          There is no need to check missing prototype since this has
          already been taken care by os_unistd.h.

        * ace/os_include/arpa/os_inet.h:
        * ace/os_include/os_stdlib.h:
        * ace/os_include/os_strings.h:
        * ace/os_include/os_unistd.h:
          To make things easier to maintain use new ACE_LACKS_xxx_PROTOTYPE
          macros to check whether we need to declare missing function
          prototype.

        * ace/README:
          Added new ACE_LACKS_xxx_PROTOTYPE macros

        * ace/config-lynxos.h:
          Modified to follow changes above.

Fri Sep  3 19:35:48 2004  Olli Savia  <ops@iki.fi>

        * ace/Log_Msg.h:
          Removed broken macro redefinition code to prevent people
          thinking that it actually works. Cleaned up #undef's.

Fri Sep  3 19:30:18 2004  Olli Savia  <ops@iki.fi>

        * ace/Global_Macros.h:
          LynxOS no longer needs special macro handling.

Fri Sep  3 19:13:24 2004  Olli Savia  <ops@iki.fi>

        * apps/drwho/File_Manager.cpp:
          LynxOS 3.x needs explicit template instantiation.

Fri Sep  3 10:44:27 2004  Steve Huston  <shuston@riverace.com>

        * ace/Process_Manager.cpp (append_proc): If the process_table_ needs
          to be enlarged, make sure it's to a size greater than 0. If the
          original size is 0, change it to DEFAULT_SIZE, else double it (as
          was always done).
          (resize): Changed to not shrink the process_table_ array. Primarily
          to guard against changing it to 0, but also guards against having to
          decide what to do with entries that won't fit in the new array.

Fri Sep  3 07:43:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * examples/DLL/test_dll.cpp:
        * examples/Export/test.cpp:
          Fixed for unicode builds

Thu Sep  2 16:39:29 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * ace/config-linux-common.h:
        * ace/config-netbsd.h:

          Changed to define ACE_HAS_TIMEZONE.

        * ace/OS_NS_time.h:

          Changed ace_timezone() to use ACE_HAS_TIMEZONE feature test
          macro instead of OS-specific macros to determine whether to
          use global timezone variable or the gettimeofday() function
          to obtain the current timezone.

        * configure.ac:

          Changed to call ACE_VAR_TIMEZONE.

        * m4/platform.m4:

          Added new macro, ACE_VAR_TIMEZONE.  Sets new feature test macro
          ACE_HAS_TIMEZONE if platform supports global timezone variable.

Thu Sep  2 16:43:29 2004  Steve Huston  <shuston@riverace.com>

        * m4/ace.m4: Added AM_CONDITIONAL for BUILD_EXCEPTIONS, BUILD_THREADS,
          BUILD_ACE_CODECS, BUILD_ACE_FILECACHE, BUILD_ACE_OTHER,
          BUILD_ACE_TOKEN, BUILD_ACE_UUID, BUILD_RWHO, BUILD_WFMO, and
          BUILD_WINREGISTRY so the MPC 'requires' feature can properly weed
          things out without configure- and build-time errors.

Thu Sep  2 12:51:00 UTC 2004  Martin Corino  <mcorino@remedy.nl>

        * tests/Process_Manager_Test.cpp:

          Changed commandline buildup of childprocesses to start with './'
          for non-WIN32 platforms as with other tests.
          By default test did not run on OpenVMS without this.

Thu Sep  2 12:51:00 UTC 2004  Martin Corino  <mcorino@remedy.nl>

        * ace/config-openvms.h:

          Added ACE_LACKS_UNIX_SIGNALS since OpenVMS cannot use signals
          in combination with PTHREAD.

        * ace/Process.cpp:
        * ace/Process_Manager.cpp:

          Implemented alternatives in timed wait() functions for systems
          with ACE_LACKS_UNIX_SIGNALS and !WIN32.

Thu Sep  2 07:24:20 2004  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/config/core.mpb:
        * bin/MakeProjectCreator/templates/bor.mpd:

          Switch the borland template over to use the INSTALL_THIS_TARGET
          template value instead of a 'verbatim' section to do the same
          thing.

Thu Sep  2 09:12:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/platform_gnuwin32_common.GNU:
          With gcc 3.4.1 -mcpu is deprecated, but -mtune must be used

Thu Sep  2 07:24:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * apps/FaCE/FaCE.mpc:
        * apps/FaCE/FaCENOACE.mpc:
          Added missing Id tag

Wed Sep  1 17:16:29 2004  Steve Huston  <shuston@riverace.com>

        * ace/Reverse_Lock_T.inl:
        * ace/Typed_SV_Message.inl: Added #include "ace/config-all.h" to get
          missing macros (ACE_NOTSUP_RETURN, ACE_TRACE).

        * apps/JAWS/clients/Caching/http_client.cpp:
        * apps/JAWS/clients/Caching/http_handler.cpp:
        * apps/JAWS/server/HTTP_Response.cpp:
        * apps/JAWS/server/HTTP_Server.{h cpp}:
        * apps/JAWS/server/IO.cpp:
        * apps/JAWS3/jaws3/Task_Timer.cpp: Add missing includes.

Wed Sep  1 12:32:31 2004  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * ace/OS_NS_Thread.inl (mutex_init):

          Explicitly cast the unused returned value of an
          ACE_ADAPT_RETVAL macro call to "void" to address a "right-hand
          operand of comma has no effect" warning exhibited by GNU g++
          3.4.x.  Thanks to Bogdan Jeram <bjeram at eso dot org> and
          Paul Lew <paullew@cisco.com> for reporting the warning.

Wed Sep  1 11:35:44 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * m4/config_h.m4:

          Removed ACE_UINT64_FORMAT_SPECIFIER autoheader template.  It
          is now defined within ACE_CHECK_FORMAT_SPECIFIERS.

        * m4/platforms.m4:

          Added new macro ACE_CHECK_FORMAT_SPECIFIERS, which is used to
          define preprocessor macros that overide the defaults provided
          for size_t, ssize_t, ACE_INT64, and ACE_UINT64 *printf format
          specifiers.  I don't think autoconf feature tests are possible,
          especially if we ever hope to support cross compilation, but at
          least this pulls everything into one place.

Wed Sep  1 12:52:40 2004  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/modules/AutomakeWorkspaceHelper.pm:

          Split out the ACE specific portion of AutomakeWorkspaceCreator.pm
          into a new helper module.  The helper module is dynamically loaded
          in by the AutomakeWorkspaceCreator.

Wed Sep  1 10:01:57 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * ace/SOCK_Dgram_Bcast.cpp:

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

        * ace/Sock_Connect.cpp:

          Added !defined(__NetBSD__) to conditional so sockaddr.sa_len
          version of the code will be used.

Wed Sep  1 12:40:28 2004  Steve Huston  <shuston@riverace.com>

        * ace/config-aix-4.x.h: Changed the ACE_HAS_3_PARAM_WCSTOK test to
          include _XOPEN_SOURCE >= 500, not == 500. Fixes compile error
          on AIX 5.2.

Wed Sep  1 12:45:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Dump_T.cpp:
          Added include of config-all.h to get ACE_TRACE

Wed Sep  1 07:43:46 2004  Douglas C. Schmidt  <schmidt@cs.wustl.edu>

        * tests/Message_Queue_Notifications_Test.cpp (producer): Fixed
          this test so it works with the changes to
          ACE_Message_Queue::is_full_i() below.  Thanks to Rick Robinson
          for this fix, as well.

        * ace/Message_Queue_T.inl: Changed the implementation of
          is_full_i() so the comparision operator is >= rather than >,
          which makes it possible to use a 0 high water mark to disable
          the enqueue side of the queue.  Thanks to Rick Robinson
          <rick@oyarsa.com> for reporting this.

        * ace/POSIX_Proactor.h: Updated the documentation to use
          the right names for ACE_POSIX_SIG_Proactor and
          ACE_POSIX_AIOCB_Proactor.  Thanks to John D. Robertson
          <john@rrci.com> for motivating this fix.

Wed Sep  1 07:00:39 2004  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/config/global.features:

          Disable the wince feature setting.

        * apps/FaCE/FaCE.mpc:
        * apps/FaCE/FaCENOACE.mpc:

          Adding mpc files to replace the vcp files.  These projects will
          only build on wince so they require the wince feature which is
          disabled by default.

        * apps/FaCE/FaCE.vcp:
        * apps/FaCE/FaCE.vcw:
        * apps/FaCE/FaCENOACE.vcp:
        * apps/FaCE/FaCENOACE.vcw:

          Removed these files.

Wed Sep  1 06:48:34 2004  Chad Elliott  <elliott_c@ociweb.com>

        * examples/Mem_Map/file-reverse/Mem_Map_File_Reverse.mpc:

          With the current version of MPC, we must specify the exename for
          this project.  MPC no longer automatically determines that
          ACE_TMAIN is the entry point.

Wed Sep  1 10:12:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-hpux-11.00.h:
          Added several new defines, these are gathered by comparing an
          autoconf generated config.h and the original file. It seems HPUX
          has much more stuff than we currently use. Everything is tested
          on HPUX 11i v2, maybe it breaks older versions, I don't think so
          but if it will, our daily builds will trigger this and we have
          to make the defines than dependent on the HPUX version. Added are:
          ACE_HAS_NEW_NO_H, ACE_HAS_AUTOMATIC_INIT_FINI,
          ACE_HAS_LONG_MAP_FAILED, ACE_HAS_MEMCHR,
          ACE_HAS_POSITION_INDEPENDENT_POINTERS, ACE_HAS_POSIX_GETPWNAM_R,
          ACE_HAS_P_READ_WRITE, ACE_HAS_RECURSIVE_THR_EXIT_SEMANTICS,
          ACE_LACKS_PRI_T, ACE_HAS_SIG_C_FUNC, ACE_HAS_SIGSUSPEND,
          ACE_HAS_SOCKLEN_T, ACE_HAS_SYS_ERRLIST, ACE_HAS_VOIDPTR_MMAP,
          ACE_HAS_VOIDPTR_SOCKOPT, ACE_HAS_GETRUSAGE_PROTOTYPE, ACE_HAS_TIMOD_H,
          ACE_HAS_SYS_XTI_H, ACE_HAS_PTHREAD_RESUME_NP. If you don't agree to
          one of these defines, let us know, then we also have some work on
          the autoconf support, because autoconf gave info all these can be
          setup.

Wed Sep  1 07:02:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Synch_Options.cpp:
        * ace/Shared_Object.cpp:
        * ace/Read_Buffer.cpp:
        * ace/SV_Message.inl:
          Added include of config-all.h to get ACE_TRACE

Tue Aug 31 12:18:01 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * ace/config-netbsd.h:

          Moved ACE_HAS_PENTIUM into "defined(__i386__)" conditional.

Tue Aug 31 14:38:19 2004  Steve Huston  <shuston@riverace.com>

        * ace/OS_NS_errno.h:
        * ace/os_include/os_errno.h: Include config-lite.h instead of
          config-all.h to minimize re-includes.

        * ace/OS_NS_errno.inl: Include config-all.h to pick up ACE_TRACE.

Tue Aug 31 08:36:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-hpux-11.00.h:
          Added ACE_HAS_STD_TEMPLATE_CLASS_MEMBER_SPECIALIZATION for the HP aCC
          compiler

Tue Aug 31 08:16:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/OS_NS_time.cpp:
          When ACE_LACKS_NATIVE_STRPTIME is defined, include
          os_include/os_ctype.h to get isdigit

Tue Aug 31 00:21:48 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * ace/config-unixware-7.1.0.h:
        * ace/config-unixware-7.1.0.udk.h:

          Removed vestigial ACE_HAS_LAZY_V definition.

Tue Aug 31 00:17:45 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * ace/config-unixware-7.1.0.h:
        * ace/config-unixware-7.1.0.udk.h:

          Removed vestigial ACE_HAS_IOMANIP_NO_H definition.

Mon Aug 30 23:57:58 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * ace/config-netbsd.h:
        * ace/config-unixware-7.1.0.h:
        * ace/config-unixware-7.1.0.udk.h:

          Removed vestigial ACE_HAS_SYS_IOCTL_H definition.  ACE now uses
          ACE_LACKS_SYS_IOCTL_H.

        * ace/config-integritySCA.h:

          Removed vestigial ACE_LACKS_SYS_FILE_H definition.

        * ace/config-integritySCA.h:
        * ace/config-psos-diab-mips.h:
        * ace/config-qnx-neutrino.h:
        * ace/config-rtp-62x.h:
        * ace/config-rtp-pre62x.h:

          Removed vestigial ACE_LACKS_RPC_H definition.

Mon Aug 30 23:47:41 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * configure.ac:

          Added check for ACE_LACKS_TOWLOWER and ACE_LACKS_TOWUPPER.

Mon Aug 30 23:39:33 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * configure.ac:

          Changed check for libc.h and osfcn.h to not export a feature
          test macro definition, as the results are only needed within
          the configure script itself.

Mon Aug 30 23:28:03 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * ace/config-macos.h:
        * ace/config-macos-panther.h:

          Removed vestigial ACE_HAS_PTHREAD_CANCEL and ACE_HAS_PTHREAD_KILL
          definitions.

Mon Aug 30 23:18:51 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * ace/config-linux-common.h:
        * ace/config-openbsd.h:

          Removed vestigial ACE_HAS_MKSTEMP definition.  ACE now uses
          ACE_LACKS_MKSTEMP.

Mon Aug 30 22:39:24 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * tests/TSS_Test.cpp:

          Changed the number of iterations from 100 to 25 so the test will
          run on systems with pthreads with the minimum required number of
          thread keys (128).  This should still be sufficient to check the
          TSS wrappers without exceeding the minimum requirements.

Mon Aug 30 18:31:28 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * ace/config-netbsd.h:

          Add ACE_SSIZE_T_FORMAT_SPECIFIER and ACE_SIZE_T_FORMAT_SPECIFIER
          definitions for NetBSD/amd64.

        * netsvcs/clients/Logger/Makefile.am:
        * netsvcs/clients/Naming/Client/Makefile.am:
        * netsvcs/clients/Naming/Dump_Restore/Makefile.am:
        * netsvcs/servers/Makefile.am:

          Fix the _LDADD definitions that MPC doesn't get right yet.

        * configure.ac:

          Added checks for: ACE_LACKS_STRCHR, ACE_LACKS_STRCSPN,
          ACE_LACKS_STRERROR, ACE_LACKS_STRPBRK, ACE_LACKS_STRSPN,
          ACE_LACKS_STRTOD, ACE_LACKS_STRTOL, ACE_LACKS_STRTOUL,
          and ACE_LACKS_SWAB.

          Added check for ACE_HAS_STRNLEN.

          Added checks for: ACE_LACKS_ARPA_INET_H, ACE_LACKS_DIRENT_H,
          ACE_LACKS_DLFCN_H, ACE_LACKS_ERRNO_H ACE_LACKS_FCNTL_H,
          ACE_LACKS_NET_IF_H, ACE_LACKS_NETDB_H, ACE_LACKS_NETINET_IN_H,
          ACE_LACKS_SEARCH_H, ACE_LACKS_SEMAPHORE_H, ACE_LACKS_SIGNAL_H,
          ACE_LACKS_STDLIB_H, ACE_LACKS_STRING_H, ACE_LACKS_STRINGS_H,
          ACE_LACKS_SYS_IOCTL_H, ACE_LACKS_SYS_IPC_H, ACE_LACKS_SYS_MMAN_H,
          ACE_LACKS_SYS_RESOURCE_H, ACE_LACKS_SYS_SEM_H, ACE_LACKS_SYS_SHM_H,
          ACE_LACKS_SYS_SOCKET_H, ACE_LACKS_SYS_STAT_H, ACE_LACKS_SYS_TIME_H,
          ACE_LACKS_SYS_UN_H, ACE_LACKS_SYS_WAIT_H, ACE_LACKS_TERMIOS_H, and
          ACE_LACKS_TIME_H.

          Removed checks for ACE_HAS_SYS_IOCTL_H.

Mon Aug 30 17:38:22 2004  Steve Huston  <shuston@riverace.com>

        Changes that get PocketPC/WinCE back into a state where they build.

        * ace/config-WinCE.h: Add ACE_LACKS_ASSERT_H, ACE_LACKS_SEARCH_H,
          and ACE_LACKS_WCHAR_H for WinCE 3.
          Add ACE_LACKS_SWAB for all versions.

        * ace/config-win32-msvc.h: Set (or clear) ACE_LACKS_RTTI based on
          whether or not the compiler switch to enable rtti is used.

        * ace/OS_Errno.{h inl}:
        * ace/OS_NS_errno.{h inl}: Moved ACE_CE_Errno from OS_Errno to
          OS_NS_errno. This seems like a more sensible place for an errno
          replacement, and avoids having to add includes for OS_Errno.h to
          a bunch of other files.

        * ace/OS_NS_stdio.inl (rename): In the char* variant, always convert
          the names to wide-char for WinCE.

        * ace/OS_NS_stdlib.{h cpp inl}: Don't attempt ACE_OS::realpath() for
          ACE_HAS_WINCE. It has no native support and there's no
          ACE_OS::getcwd() to fake it with.

        * ace/OS_NS_stropts.{h cpp}: The 9-arg version of ACE_OS::ioctl is
          ok for WinCE, but the ACE_QoS one is disabled. Changed both files
          to implement this. They were mismatched for CE.

        * ace/OS_NS_sys_select.inl: Replace #include ace/os_include/os_errno.h
          with ace/OS_NS_errno.h to pick up errno correctly across all
          platforms.

        * ace/OS_NS_sys_socket.cpp: Moved #endif closing #ifndef ACE_HAS_WINCE
          to encompass join_leaf() to match what's done in the class decl.

        * ace/OS_NS_sys_stat.inl (mkdir, stat): Added #include
          "ace/OS_NS_macros.h" to get ACE_ADAPT_RETVAL.
          For the char* mkdir() and stat(), CE needs to convert
          the strings to wide-char.

        * ace/OS_NS_time.h: Moved the day_of_week and month_name const
          strings into the ACE_OS namespace, as OS_NS_time.cpp desires.

        * ace/OS_NS_time.cpp: Removed the MT-only compile block around the
          day_of_week and month_name arrays. As suspected by Don Hinton,
          this is an incorrect condition.
          Also added #include "ace/OS_NS_stdio.h" for ACE_HAS_WINCE, as the
          ctime_r emulation needs it.

        * ace/OS_NS_unistd.inl (unlink): Convert path to wide-char for WinCE.
          (rmdir): RemoveDirectory() takes only 1 arg.
          wide-char getcwd() is a NOTSUP for WinCE, as is the char* version.

        * ace/Proactor.cpp: Add #include "ace/config-lite.h" since the
          user config is needed to decide whether to compile this file.
          Also remove 'tv' param name from the stubbed-out version of
          run_event_loop(ACE_Time_Value&).

Mon Aug 30 16:24:51 2004  Steve Huston  <shuston@riverace.com>

        * NEWS: Noted that the wide-char stuff is done and autoconf is in
          progress.

Mon Aug 30 11:54:01 2004  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * bin/MakeProjectCreator/config/security.mpb:

          Added missing "interceptors" and "corba_messaging" base
          projects.

        * bin/MakeProjectCreator/config/ssliop.mpb:

          Added missing "interceptors" base project.

Mon Aug 30 13:02:22 2004  Steve Huston  <shuston@riverace.com>

        * ace/Basic_Types.h: Don't use sizeof() when defining ACE_SIZEOF_WCHAR.
          Other code (e.g. ACEXML) in ACE uses ACE_SIZEOF_WCHAR in
          preprocessor tests, so it needs to be a preprocessor constant.
          If the config file doesn't set it, and on an XPG4 system, set
          the size to 4. If it's wrong, Basic_Types_Test will catch it.

        * tests/Basic_Types_Test.cpp: Remove the comment that says the check
          for ACE_SIZEOF_WCHAR is pointless. It's now important.

Mon Aug 30 10:05:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/MakeProjectCreator/config/amh.mpb:
        * bin/MakeProjectCreator/config/ami.mpb:
          Both use idlflags, so add taoidldefaults as base project

Mon Aug 30 06:39:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/MakeProjectCreator/config/amh.mpb:
          AMH is dependent on messaging and doesn't require ami

Sun Aug 29 16:53:00 UTC 2004  Martin Corino <mcorino@remedy.nl>

        * ace/config-linux-common.h:

        Added '__GLIBC_MINOR__ < 2' test for setting ACE_POLL_IS_BROKEN
        on Alpha platform.

Fri Aug 27 11:40:37 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * bin/MakeProjectCreator/ftrtevent.mpb:
        * bin/MakeProjectCreator/portablegroup.mpb:

          Changed to inherit from messaging.mpb.

        * bin/MakeProjectCreator/rtsched.mpb:

          Changed to inherit from svc_utils.mpb.

Fri Aug 27 13:38:25 2004  Steve Huston  <shuston@riverace.com>

        * netsvcs/clients/Naming/Client/Client_Test.cpp:
        * netsvcs/clients/Naming/Client/main.cpp:
        * netsvcs/clients/Naming/Dump_Restore/Dump_Restore.{h cpp}:
        * netsvcs/clients/Naming/Dump_Restore/main.cpp:
        * netsvcs/servers/main.cpp:
        * websvcs/lib/URL_Addr.cpp: Fix wide-char errors.

Fri Aug 27 12:01:37 2004  Steve Huston  <shuston@riverace.com>

        * netsvcs/lib/Client_Logging_Handler.cpp:
        * netsvcs/lib/Log_Message_Receiver.{h cpp}:
        * netsvcs/lib/Name_Handler.{h cpp}:
        * netsvcs/lib/Server_Logging_Handler_T.{h cpp}:
        * netsvcs/lib/TS_Server_Handler.{h cpp}:
        * netsvcs/lib/TS_Clerk_Handler.{h cpp}: Correct Service Configurator
          framework entrypoints (init(), etc.) to match ACE_TCHAR* instead of
          char*. Also corrected char-width problems and naked text literals.

        * ACEXML/parser/parser/Parser.cpp: Fixed uninitialized variable.

Fri Aug 27 08:18:21 2004  Balachandran Natarajan  <bala@dre.vanderbilt.edu>

        * bin/footprint_stats.sh:

          Fixed the path to the libraries. Thanks to Johnny for spotting
          the error in the scoreboard.

Fri Aug 27 10:20:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/MakeProjectCreator/config/security.mpb:
          Security library uses valuetype, so added valuetype as base
          project.

Fri Aug 27 09:48:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * examples/QOS/Change_Receiver_FlowSpec/QoS_Util.{h,cpp}:
        * examples/QOS/Change_Receiver_FlowSpec/receiver.cpp:
          Fixed unicode build errors

Fri Aug 27 09:36:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * examples/Service_Configurator/IPC-tests/server/Handle_R_Stream.{h,cpp,i}:
        * examples/Service_Configurator/IPC-tests/server/Handle_Timeout.{h,cpp,i}:
        * examples/Service_Configurator/IPC-tests/server/Handle_Thr_Stream.{h,cpp}:
          Fixed unicode build errors

Fri Aug 27 09:06:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/MakeProjectCreator/config/loadbalancing.mpb:
          Loadbalancing uses iorinterceptor, so added that as base

Fri Aug 27 08:06:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        Integrated ORTrefactor_2 branch into main. Previously the PortableServer
        library was dependent on IORInterceptor, ObjRefTemplate and Valuetype,
        this dependency has been removed. PortableServer doesn't use these libs
        anymore, but IORInterceptor, ObjRefTemplate and Valuetype are now
        dependent on PortableServer. This will reduce the size of corba servers
        which don't use IORInterceptor, ObjRefTemplate and Valuetype.

        This are the needed MPC changes. Without MPC this would have been a
        hard job to change all makefiles by hand.

        Fri Aug 20 13:18:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

                * bin/MakeProjectCreator/config/portableserver.mpb:
                * tao/PortableServer.mpc:
                  PortableServer is not dependent on ValueType anymore, so removed it
                  as base project

        Fri Aug 20 11:47:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

                * bin/MakeProjectCreator/config/iorinterceptor.mpb:
                  When using iorinterceptor use portableserver and objreftemplate

                * bin/MakeProjectCreator/config/objreftemplate.mpb:
                  When using objreftemplate, you must use portableserver

                * bin/MakeProjectCreator/config/portableserver.mpb:
                  When using portableserver there is no need to use objreftemplate and
                  iorinterceptor

Fri Aug 27 07:40:00 UTC 2004  Martin Corino <mcorino@remedy.nl>

        * ace/ace_wchar.h:

        Fixed for broken OpenVMS build because of missing <cwchar>
        and <cwctype> includes.

Thu Aug 26 19:55:03 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * ace/Makefile.am:

          Fixed thinko in last change.  CVS and .svn directories *and*
          their contents must be pruned in install-local-data target.

Thu Aug 26 19:37:10 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * ace/Makefile.am:

          Changed dist-hook and install-local-data targets to skip .svn as
          well as CVS directories to support subversion.

Thu Aug 26 19:22:31 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * ace/Makefile.am:

          Added If_Then_Else.h to HEADER_FILES.

Thu Aug 26 11:53:26 2004  Steve Huston  <shuston@riverace.com>

        * ace/Time_Value.h: Added extern "C++" around the ACE_Time_Value class
          declaration for WinCE. This is a total hack that I hate, but I have
          not been able to find any other way around it. The same code
          worked before the great ACE_OS reorg, but I don't know what tickled
          it to start misbehaving. Without the hack, eVC complains that
          the operators are C functions and so can't return a class.

        * ace/Dev_Poll_Reactor.{cpp h}: Inserted /**/ in #include directives
          to silence MSVC warnings that the files are missing dependencies.

Thu Aug 26 11:39:29 2004  Steve Huston  <shuston@riverace.com>

        * ACEXML/common/XML_Types.h: Add #include "ace/Basic_Types.h" to
          pick up ACE_SIZEOF_WCHAR.

Thu Aug 26 12:22:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/OS_NS_unistd.cpp:
          Tru64 also provides sysconf functionality to retrieve number
          of cpu's. Implemented ACE_OS::num_processors() and
          ACE_OS::num_processors_online() for Tru64 (Digital Unix)

        * tests/OS_Test.cpp:
          Corrected copy/paste error

Thu Aug 26 11:54:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/OS_Test.cpp:
          Added test for ACE_OS::num_processors() and
          ACE_OS::num_processors_online()

Thu Aug 26 09:23:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ACE-INSTALL.html:
          I know we are working on footprint, but stating that an entire
          build of ACE/TAO could use more than 2MB of diskspace is an
          understatement ;-). Updated this to could use more than 4GB of
          diskspace, which is something we have seen on the 64 bit systems.
          Also updated the peak memory usage from 256Mb to 512Mb, the
          Notification Service is a very memory consuming services when
          being build.

Thu Aug 26 09:16:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ACE-INSTALL.html:
          Updated instructions to build SSL with Borland C++, no OpenSSL
          patch is necessary anymore and now MPC must be used. Updated HPUX
          supported platforms.

Thu Aug 26 07:58:00 UTC 2004  Martin Corino <mcorino@remedy.nl>

        * ace/config-linux-common.h:

          Included check on defined(__alpha) for correctly setting 64 bit
          format specifiers.

        * examples/Threads/cancel.cpp:
        * performance-tests/Synch-Benchmarks/Perf_Test/Benchmark_Performance.cpp:

          Fixed 64 bit conversion warnings.

Thu Aug 26 06:47:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Auto_Ptr.h:
          Readded disappeared include of post.h

Wed Aug 25 23:31:02 2004  Chris Cleeland  <cleeland_c@ociweb.com>

        * include/makeinclude/platform_linux.GNU:

          Fixed an error caused by a misplaced newline in Rich's previous
          commit.

        * include/makeinclude/platform_sunos5_sunc++.GNU:

          Brought over the following changes from OCITAO 1.3a.
          Added -ladm to LIBS.  This is needed for SunOS 5.6 for
          resolving symbols for regular expression processing (e.g.,
          compile, step), and does not appear to cause a problem on
          later version of SunOS.

          Change directory that is argument to ld's '-R' to use the new
          $ACE_ROOT/lib directory rather than $ACE_ROOT/ace.

Wed Aug 25 21:10:37 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * configure.ac:

          Fixed tipo introduced by:
          Mon Aug 23 23:23:18 2004  Ossama Othman  <ossama@dre.vanderbilt.edu>

Wed Aug 25 17:33:47 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * ace/config-netbsd.h:

          Removed ACE_NTRACE definition.  It slipped in again.

Wed Aug 25 16:00:11 2004  Chris Cleeland  <cleeland_c@ociweb.com>

        * ace/Auto_Ptr.h:
        * ace/Auto_Ptr.inl:

          Added new ACE_Auto_Ptr which can be used more portably than
          auto_ptr even with the ACE auto_ptr workarounds. Specifically,
          this obviates the need for the ACE_AUTO_PTR_RESET macro, and
          will have better performance than the pre-standard auto_ptr that
          comes with VC6.

Wed Aug 25 14:58:51 2004  Rich Seibel <seibel_r@ociweb.com>

      * include/makeincludes/platform_linux.GNU:
        Generalized the way the rt library is searched.  The
        previous code did not find it on RedHat AS 3.0 for opteron.

Wed Aug 25 14:49:11 2004  Rich Seibel <seibel_r@ociweb.com>

        * ace/Basic_Types.h:
        added __x86_64 to long double to satisy opteron.

Wed Aug 25 11:15:33 2004  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * ACE-INSTALL.html:

          Updated ACE_SSL library build notes to refer to MPC, i.e. the
          proper way to add ACE_SSL support to GNUmakefiles and MSVC++
          workspace/project files.  Thanks to Johnny for pointing out that
          the documentation was out of date.

          Wrap the "Last modified" line within an Emacs "hhtms" block to
          allow Emacs to automatically update the date and time this file
          was last modified.

Wed Aug 25 11:46:49 2004  Steve Huston  <shuston@riverace.com>

        * ace/os_include/sys/os_pstat.h: If ACE_HAS_SYS_PSTAT_H, include
          <sys/param.h> and <sys/pstat.h> (not <time.h>) as directed by
          HP-UX man page. HP-UX 11 is the only config that sets this.

Wed Aug 25 08:46:02 2004  Chad Elliott  <elliott_c@ociweb.com>

        * include/makeinclude/wrapper_macros.GNU:

          Fixed the ace_filecache misspelling.

Wed Aug 25 08:38:29 2004  Steve Huston  <shuston@riverace.com>

        * ace/OS_NS_unistd.inl (rmdir): Removed the ACE_USES_WCHAR case from
          the char* version of this method.

Wed Aug 25 09:36:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ACE-INSTALL.html:
          Minor updates to Cygwin notes

Wed Aug 25 09:04:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/os_include/sys/os_pstat.h:
          Corrected incorrect doxygen file tag

Wed Aug 25 08:47:00 UTC 2004  Martin Corino <mcorino@remedy.nl>

        * ace/config-lite.h:

          Introduced new macro ACE_HAS_PROCESS_SPAWN to be able to do
          better checks for availability of subprocessing than is
          possible with ACE_LACKS_FORK. See [Bug 1793].

        * tests/MEM_Stream_Test.cpp:
        * tests/Malloc_Test.cpp
        * tests/SOCK_Dgram_Bcast_Test.cpp

          Changed to use new ACE_HAS_PROCESS_SPAWN macro to test for
          subprocessing capabilities. See [Bug 1793].

Wed Aug 25 01:19:03 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * configure.ac:

          Add checks for ACE_HAS_SYS_PSTAT_H and ACE_HAS_SYS_LOADAVG_H.

Wed Aug 25 08:17:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/platform_hpux_aCC.GNU:
          The warnings disabled in this file are for major version 03 of aCC
          only (PA-RISC), for version 05 (Itanium), disable 1016 and 1031,
          these are binary incompatible warnings.

Wed Aug 25 07:12:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/os_include/sys/os_loadavg.h:
        * ace/os_include/sys/os_pstat.h:
          New files to include sys/loadavg.h and sys/pstat.h when
          ACE_HAS_SYS_LOADAVG_H and ACE_HAS_SYS_PSTAT_H is set

        * ace/config-hpux-11.00.h:
          HPUX has sys/pstat.h, so added define ACE_HAS_SYS_PSTAT_H

        * ace/README:
          Documented ACE_HAS_SYS_LOADAVG_H and ACE_HAS_SYS_PSTAT_H

        * ace/OS.h:
          Removed including of sys/pstat.h, it is really not needed here

        * ace/OS_NS_unistd.cpp:
          Instead of including sys/pstat.h include os_include/sys/os_pstat.h

Wed Aug 25 07:04:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/platform_hpux_aCC.GNU:
          Changed CXXVERS to CXXMINORVERS and added CXXMAJORVERS,
          we just compare minor version at this moment, but we really
          should also check major vers soon, major version 3 is aCC
          on PARISC, version 5 is on Itanium. Changed the way we
          detect itanium to a portable way that works with all
          HPUX versions.

Tue Aug 24 19:59:18 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * ace/config-netbsd.h:

          Fixed typo in last change, add back typedef for ACE_UINT64.

Tue Aug 24 19:32:07 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * ace/config-netbsd.h:

          Removed extraneous cruft left over from autoheader generated
          file.  Added conditional support for NetBSD/AMD64.

Tue Aug 24 15:03:22 2004  Steve Huston  <shuston@riverace.com>

        * ace/OS_NS_Thread.inl (thread_mutex_init): Fixed wchar_t version to
          pass a 0 sa value. Corrects the passing of the lock_type value
          through to ACE_OS::mutex_init(), restoring behavior of recursive
          mutexes.

Tue Aug 24 14:07:22 2004  Steve Huston  <shuston@riverace.com>

        Changes to improve the functionality of wide-char operation on
        non-Windows platforms:

        * ace/ace_wchar.h: If ACE_HAS_XPG4_MULTIBYTE_CHAR is defined, but not
          ACE_HAS_WCHAR, set ACE_HAS_WCHAR.

        * ace/ACE.cpp (timestamp): Use ACE_TCHAR for temp char arrays,
          not char. If ACE_USES_WCHAR on non-Windows, use %ls for printf
          strings, not %s.

        * ace/ARGV.cpp (constructor): Replaced most of the body with a call
          to ACE_OS::argv_to_string().

        * ace/Basic_Types.h:
        * ace/Cleanup.h:
        * ace/Object_Manager_Base.h:
        * ace/OS_NS_string.h:
        * ace/os_include/os_float.h:
        * ace/os_include/os_inttypes.h:
        * ace/os_include/os_limits.h:
        * ace/os_include/os_signal.h:
        * ace/os_include/os_stdint.h:
        * ace/os_include/os_stdlib.h:
        * ace/os_include/os_time.h:
        * ace/os_include/os_ucontext.h:
        * ace/os_include/os_unistd.h:
        * ace/os_include/sys/os_ipc.h:
        * ace/os_include/sys/os_mman.h:
        * ace/os_include/sys/os_msg.h:
        * ace/os_include/sys/os_resource.h:
        * ace/os_include/sys/os_select.h:
        * ace/os_include/sys/os_sem.h:
        * ace/os_include/sys/os_shm.h:
        * ace/os_include/sys/os_socket.h:
        * ace/os_include/sys/os_stat.h:
        * ace/os_include/sys/os_statvfs.h:
        * ace/os_include/sys/os_timeb.h:
        * ace/os_include/sys/os_time.h:
        * ace/os_include/sys/os_times.h:
        * ace/os_include/sys/os_types.h:
        * ace/os_include/sys/os_uio.h:
        * ace/os_include/sys/os_un.h:
        * ace/os_include/sys/os_utsname.h:
        * ace/os_include/sys/os_wait.h: #include "config-lite.h" rather than
          "config-all.h". Only need the user config.h and "lite" things.
          Including config-all.h introduces a circular include
          dependency from OS_main.h.

        * ace/Default_Constants.h: Add ACE_LIB_TEXT() to ACE_DEFAULT_SVC_CONF
          strings.

        * ace/Env_Value_T.i (fetch_value): For non-Win32, force the env var
          name to narrow-char then convert the result back to ACE_TCHAR.

        * ace/FILE_Connector.cpp (connect): When generating a temp name,
          convert it to ACE_TCHAR for ACE_FILE_Addr.

        * ace/Get_Opt.cpp (constructor): When checking for POSIXLY_CORRECT,
          must always use char *, not ACE_TCHAR*, on non-Win32.

        * ace/High_Res_Timer.cpp: Added ACE_LIB_TEXT to naked string literals.
          Use 'char' when it must be narrow char; ACE_TCHAR when it has to
          change based on ACE_USES_WCHAR.

        * ace/Lib_Find.cpp (ldfind, get_temp_dir): Environment variables on
          non-Windows are always narrow char, so account for that.

        * ace/Log_Msg_UNIX_Syslog.cpp: Operate internally with all narrow
          chars because the underlying OS APIs are only narrow char.

        * ace/Log_Msg.cpp (log): For 'D', 'M', 'm', 'N', and 'p', use the
          proper 's' format code for the platform/char width. Similar to
          Log_Record.cpp below.

        * ace/Log_Msg.h (ACE_ASSERT): Convert __FILE__ name to proper char
          width when necessary.

        * ace/Log_Record.cpp: When formatting log strings, have to change
          printf formats if using wide chars on non-Windows. Wide-char
          strings are printed with %ls, whereas Windows uses %s for
          wide-char strings if the format is wide-char.

        * ace/Memory_Pool.cpp (ctor): Change backing_store_name to narrow
          char when needed to pass it to sscanf().

        * ace/Object_Manager_Base.cpp (print_error_message): Add
          ACE_TEXT_ALWAYS_CHAR to the message arg to convert on wide-char
          builds.

        * ace/OS_main.h: For ACE_MAIN on non-Windows ACE_USES_WCHAR platforms,
          convert the argv to wchar_t, and pass the wide-char strings to the
          ACE_TCHAR[]-expecting real main program.

        * ace/OS_NS_dirent.inl (opendir): Moved the const_cast-needing
          VxWorks part to its own #elif section. Added ACE_TEXT_ALWAYS_CHAR
          to the other invocation of ::opendir().

        * ace/OS_NS_dlfcn.inl (dlerror, dlopen, dlsym): Corrected use of
          narrow/wide-char.

        * ace/OS_NS_stdio.inl (cuserid, fdopen, freopen): Don't use
          ACE_TCHAR when a char is always needed.
          (fgets, fputs, perror, puts): Changed to have both narrow- and
          wide-char variants.
          (checkUnicodeFormat): Use a platform-neutral 2-byte type to
          read 2 bytes. Need a non-Windows 'whence' arg for fseek().
          (vsprintf (wchar_t)): Added the non-Windows, XPG5 code for this to
          use the XPG5 vswprintf() when equippped.

        * ace/OS_NS_stdlib.{h inl cpp}:
          (ACE_OS::mktemp() and mkstemp()): Changed to have both narrow-
          and wide-char variants for the !ACE_LACKS_MKTEMP case.
          Offering both for the ACE_LACKS_MKTEMP case is a low-return
          use of time since the wide-char variant will probably never be used.
          (strenvdup): Handle ACE_USES_WCHAR on non-Windows by converting
          back and forth to narrow-char.
          (system): On non-Windows, convert command line string to narrow-char.
          (getcwd): Changed to have both narrow- and wide-char variants.

        * ace/OS_NS_sys_stat.inl (creat, mkfifo): For non-Windows, convert
          name to narrow-char when needed.
          (lstat): Change from a single ACE_TCHAR-based interface to both
          char* and wchar_t*.

        * ace/OS_NS_time.inl (ctime, ctime_r): Corrected narrow/wide char
          usage.

        * ace/OS_NS_unistd.inl (truncate): For non-Windows, convert the path
          to narrow-char when needed.
          (realpath): Changed to have both narrow- and wide-char variants.

        * ace/OS_NS_unistd.{h inl cpp}:
          (rmdir): Changed to have both narrow- and wide-char variants.
          (argv_to_string): Handle narrow and wide-char environment variables.
          (fork_exec): Convert path and argv to narrow-char when needed.

        * ace/Process.cpp (spawn): Convert argv, procname, env vars to narrow
          char for non-Windows wide-char builds.

        * ace/Process.i (setreugid): Convert user name to narrow char for
          getpwnam().

        * ace/Process_Mutex.cpp (ctor): Don't convert name to ACE_TCHAR for
          ACE_SV_Semaphore case - it requires char*.

        * ace/Process_Semaphore.cpp (ctor): Convert name to narrow char
          for ACE_SV_Semaphore_Complex case.

        * ace/Sock_Connect.cpp (get_bcast_addr):
        * ace/SOCK_Dgram_Bcast.cpp (mk_broadcast): Host name needs to be
          converted to narrow-char for wide-char builds.

        * ace/SOCK_Dgram_Mcast.cpp (make_multicast_ifaddr): Interface name
          needs to be converted to narrow-char for wide-char builds.

        * ace/SV_Semaphore_Simple.{h,i,cpp}: Added wide-char versions of
          the named constructor and open() methods. They forward to the
          narrow-char versions.

        * tests/Dirent_Test.cpp: Account for dirent's d_name is an ACE_TCHAR
          when ACE_LACKS_STRUCT_DIR and a char* otherwise.

        * tests/FIFO_Test.cpp: Change ACE_ALPHABET to char[].

        * tests/Proactor_Test.cpp: Change complete_message from ACE_TCHAR
          to char. This is easier to handle; as ACE_TCHAR, we'd need to
          correct all the message block pointer adjustments to take the
          charset width into account.

        * tests/Log_Msg_Test.cpp:
        * tests/MEM_Stream_Test.cpp:
        * tests/Message_Queue_Test.cpp:
        * tests/Pipe_Test.cpp:
        * tests/Process_Manager_Test.cpp:
        * tests/Process_Mutex_Test.cpp:
        * tests/Process_Strategy_Test.cpp:
        * tests/Signal_Test.cpp:
        * tests/SOCK_Connector_Test.cpp:
        * tests/SOCK_Dgram_Test.cpp:
        * tests/SOCK_Send_Recv_Test.cpp:
        * tests/SOCK_Test.cpp:
        * tests/SV_Shared_Memory_Test.cpp: Char width correction.

        * tests/Service_Config_Test.cpp:
        * tests/Service_Config_Test.WCHAR_T.conf:
        * tests/Service_Config_Test.WCHAR_T.conf.xml: Added WCHAR_T-coded
          versions of the test input file and changed the test to use
          them on non-Windows ACE_USES_WCHAR builds.

        * tests/Test_Output.cpp (set_output): Handle env var and filepath
          building correctly even on wide-char non-Windows builds.

        * ACEXML/common/XML_Types.h: typedef ACEXML_Char as ACE_TCHAR, else
          it doesn't match any char interfaces when wchar_t is not 2 bytes.

        * ACEXML/parser/parser/Parser.cpp (parse_char_reference): Add the
          case where wide-char is 4 bytes.

        Also brought in this fix:
        Mon Mar  8 15:52:33 2004  Steve Huston  <shuston@riverace.com>

        * ace/POSIX_Proactor.cpp: Comment out the signal setup; this should
          not be necessary and, indeed, is erroneous, at least on Linux.
          It's commented out instead of removed in case further testing on
          other platforms determines that it is needed sometimes.

Tue Aug 24 10:22:18 2004  Steve Huston  <shuston@riverace.com>

        * ace/config-linux-common.h: Added ACE_HAS_SCANDIR and a new
          macro, ACE_SCANDIR_CMP_USES_VOIDPTR, saying that scandir()
          cmp() function takes void pointers, not dirent pointers.

        * ace/OS_NS_dirent.inl (scandir): When calling native scandir()
          with ACE_SCANDIR_CMP_USES_VOIDPTR, cast comparator appropriately.
          Also, for native scandir(), ACE_TEXT_ALWAYS_CHAR the dirname.

        * ace/OS_NS_dlfcn.inl:
        * tests/Test_Output.cpp: Added #include "ace/OS_NS_string.h" to get
          ACE_OS string methods. Fixes compile error on inline=0 build.

Tue Aug 24 11:16:00 2004  Jules White   <jules@dre.vanderbilt.edu>

        * ACE-INSTALL.html: Added a section on using ACE within Eclipse

Tue Aug 24 10:10:22 2004  Steve Huston  <shuston@riverace.com>

        * ace/config-all.h: Moved #include "ace/OS_main.h" down to the bottom
          of the file, lest it invoke a circular dependency.

        * ace/OS_NS_stdlib.inl: Added #include "ace/config-all.h" to get
          ACE_TRACE.

Mon Aug 23 23:23:18 2004  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * Makefile.am (AUTOMAKE_OPTIONS):

          Removed required Automake version from `Makefile.am'.
          `configure.ac' already defines it.

        * configure.ac:

          Updated required version of Automake to 1.9.

          Added test for partial template specialization.  Issue a warning
          if it isn't support by the compiler since ACE will require it in
          the near future.

        * ace/ACE.h:

          Corrected ACE namespace documentation to describe the ACE
          namespace itself rather than summarizing the contents of this
          header (i.e. the value added global ACE functions).

        * ace/If_Then_Else.h:

          Doxygen documentation corrections and improvements.

Mon Aug 23 22:19:16 2004  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * tests/CDR_Test.cpp (run_main):

          Added run-time assertions that verify proper CDR type sizes
          (e.g. sizeof (ACE_CDR::Boolean) == 1).

Mon Aug 23 19:18:58 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * m4/config_h.m4:

          Removed autoheader template for ACE_LACKS_PARAM_H.

Mon Aug 23 18:33:40 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * configure.ac:

          Added check for ACE_HAS_ITOA.
          Added check for ACE_LACKS_ITOW.

Mon Aug 23 18:22:25 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * ace/config-dgux-4.11-epc.h
        * ace/config-dgux-4.x-ghs.h
        * ace/config-freebsd.h
        * ace/config-lynxos.h
        * ace/config-m88k.h
        * ace/config-macosx-panther.h
        * ace/config-macosx.h
        * ace/config-openbsd.h
        * ace/config-sunos4-g++.h
        * ace/config-sunos4-lucid3.2.h
        * ace/config-sunos4-sun3.x.h
        * ace/config-sunos4-sun4.1.4.h
        * ace/config-sunos4-sun4.x.h
        * ace/config-sunos5.4-centerline-2.x.h
        * ace/config-sunos5.4-g++.h
        * ace/config-sunos5.4-sunc++-4.x.h
        * ace/config-sunos5.5.h
        * ace/config-tandem.h
        * ace/config-unixware-2.01-g++.h
        * ace/config-unixware-2.1.2-g++.h
        * ace/config-unixware-7.1.0.h
        * ace/config-unixware-7.1.0.udk.h
        * ace/os_include/os_stropts.h

          Changed name of feature test macro ACE_HAS_SOCKIO_H to
          ACE_HAS_SYS_SOCKIO_H.

Mon Aug 23 17:41:40 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * m4/config_h.m4:
        * m4/platform.m4:

          Removed support for unused ACE_NETBSD feature test macro.

Mon Aug 23 17:37:16 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * m4/platform.m4:

          Add check for ACE_LACKS_PERFECT_MULTICAST_FILTERING.

Mon Aug 23 16:33:59 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * ace/config-netbsd.h:

          Remove PACKAGE, PACKAGE_*, and VERSION definitions.  The latter
          conflicts with some of the test/example programs.  I'll get rid
          of the others just to be safe.

          Comment out ACE_NTRACE, as the constant definition conflicts
          with Misc_test_trace.  We probably need an option to control
          whether tracing and debugging features are enabled when ACE/
          TAO is compiled that is separate from the one used after it
          has been built.

Mon Aug 23 16:06:39 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * configure.ac:

          Added checks for ACE_HAS_VWFPRINTF and ACE_HAS_VWSPRINTF.

Tue Aug 24 00:34:30 2004  Marek Brudka  <mbrudka@elka.pw.edu.pl>

        * ace/QtReactor.cpp:
        Removed unecessary #include <qeventloop.h>. Thanks to
        Gan Deng <gan.deng@vanderbilt.edu> for a patch.


Mon Aug 23 17:53:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/platform_hpux_aCC.GNU:
          Added support for itanium on HPUX 11iv2 (11.23). Different options
          have to be passed when on itanium, so when version 11.23 is detected,
          set itanium to 1 and dependent on that set different compiler options.

Mon Aug 23 16:58:18 UTC 2004  Don Hinton  <don.hinton@vanderbilt.edu>

        * include/makeinclude/rules.local.GNU:
          Added CCFLAGS to the list of arguments passed to the dependency
          generator.  Thanks to Matthew Townsend <mtownsen@harris.com>
          for reporting the problem.

        * THANKS:
          Added Matthew Townsend to the hall of fame.

Mon Aug 23 08:34:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-hpux11.h:
          Removed this file from the repo, use config-hpux-11.00.h instead,
          the contents of this file refers to config-hpux11-xx.h files
          which are not there, making this file unusable.

Sun Aug 22 21:49:14 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * ace/config-netbsd.h:

          Update with autoconf generated results.  While not perfect, the
          old version would be difficult to update by hand.

Mon Aug 23 01:04:34 2004  Balachandran Natarajan  <bala@dre.vanderbilt.edu>

        * ace/Select_Reactor_T.cpp:

          Made some slight changes to the BUG 1890 patch after receiving
          some clarifications from Kobi.

Sun Aug 22 11:11:00 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/MakeProjectCreator/config/amh.mpb:
          When using amh, you must have valuetype support, so add valuetype
          as base project of amh

Sun Aug 22 09:53:00 UTC 2004  Martin Corino <mcorino@remedy.nl>

        * tests/MEM_Stream_Test.cpp:

          Changed to remove compile warning resulting from bad use
          of ACE_UNUSED_ARG().

Fri Aug 20 15:29:29 MST 2004  Trevor Fields  <fields_t@ociweb.com>

         * bin/auto_run_tests.pl:
         * tests/run_test.pl:
           Changed the run test scripts to time the execution
           and print test finished messages.  This for the
           generation of statistics.

Fri Aug 20 15:10:08 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * bin/MakeProjectCreator/config/core.mpb:

          Changed to define INSTALL_THIS_TARGET for automake builds.

        * bin/MakeProjectCreator/config/taodefaults.mpb:

          Changed to add $(TAO_BUILDDIR) to includes for automake builds.

        * bin/MakeProjectCreator/config/acedefaults.mpb:

          Changed to add $(ACE_BUILDDIR) to includes for automake builds.

Fri Aug 20 12:17:39 2004  J.T. Conklin  <jtc@acorntoolworks.com>

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

          Added check for ACE_SIZEOF_WCHAR.

Fri Aug 20 16:13:29 2004  Dale Wilson  <wilson_d@ociweb.com>

        * ace/OS_NS_Thread.h:
        * ace/OS_NS_Thread.cpp:
        * ace/TSS_T.cpp:
          Revert.  It triggers (or causes) an intermittent problem
          in the Timer_Cancellation_Test

Fri Aug 20 10:22:34 2004  Dale Wilson  <wilson_d@ociweb.com>

        * TAO/tests/MT_Client/client.cpp:
          Revert this.  It wasn't supposed to be included in my previous
          check in. (Thu Aug 19 12:42:19 2004)

Fri Aug 20 15:20:31 2004  Balachandran Natarajan  <bala@dre.vanderbilt.edu>

        Fixes for Bug 1890. Please see

        http://deuce.doc.wustl.edu/bugzilla/show_bug.cgi?id=1890

        for details of this bug. What follows are the individual changes.

        * ace/Select_Reactor_Base.cpp:
        * ace/Select_Reactor_Base.h:

          Added a new method clear_dispatch_mask (), which as the name
          indicates clears the masks in the dispatch_set. The dispatch set
          is a new addition, which keeps track of the handles that can be
          used for dispatching.

        * ace/Select_Reactor_Base.inl:
        * ace/Select_Reactor_T.cpp:
        * ace/Select_Reactor_T.h: Modified dispatch_io_set () so that it
          doesn't break the loop when state_changes occur. This is the
          crux of the 1890 bug report. If unbinding occurs as part of an
          upcall, the bit_ops () calls clear_dispatch_mask (), which
          prevents dispatching to already removed (and potentially
          rebounded) handles.

          Additional cosmetic changes.

        * ace/Priority_Reactor.cpp:
        * ace/Priority_Reactor.h:
        * ace/TP_Reactor.cpp:
        * ace/TP_Reactor.h:
        * ace/TP_Reactor.inl:

          Replicate changes to the above reactors.

        * ace/Signal.h:
        * ace/Signal.inl:

          Added a default argument to the ACE_Signal class, which is used
          by the ACE_Select_Reactor.

          Thanks to Kobi for the patches.

Fri Aug 20 14:26:00 UTC 2004  Martin Corino <mcorino@remedy.nl>

        * tests/Process_Mutex_Test.cpp:

          Changed to use a separate logfile per child (based on PID like
          in MEM_Stream_Test) because of concurrency problems in using a
          single non-synchronized child logfile (at least under windows).

Fri Aug 20 14:10:00 UTC 2004  Martin Corino <mcorino@remedy.nl>

        * tests/MEM_Stream_Test.cpp:

          Changed to use child processes instead of threads for testing.
          See also [Bug 1793].

Fri Aug 20 07:47:00 UTC 2004  Martin Corino <mcorino@remedy.nl>

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

          Added $(EXEEXT) to BIN build target.
          Removed from $(EXEEXT) from install and cleanup target
          because these are derived from build target.
          This improves link behaviour (disables unnecessary links
          because dependency checks on build targets did not function)
          on platforms using GNU make and having a executable extension
          (like MingW; .exe).
          Fixes [Bug 1876].

        * apps/gperf/tests/tests.mpc:

          Added $(EXEEXT) to verbatim 'runtests' targets because
          otherwise dependencies on build targets do not function
          anymore.

Thu Aug 19 16:45:05 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * bin/MakeProjectCreator/config/security.mpb:

          Changed to inherit from orbsvcslib.

Thu Aug 19 12:42:19 2004  Dale Wilson  <wilson_d@ociweb.com>

        * TAO/tests/MT_Client/client.cpp:

        * ace/OS_NS_Thread.h:
        * ace/OS_NS_Thread.cpp:
        * ace/TSS_T.cpp:
        Repeat part of the checkin from Fri Aug 13 15:26:40 2004
        This corrects the incorrect thread-in-use count problem
        that leads to premature TSS key deletion, but does not fix
        the TSS leak because fixing that reveals other problems
        that I don't have a solution for, yet.

Thu Aug 19 08:26:11 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * apps/drwho/Rwho_DB_Manager.h:

          Changed to #include <sys/types.h> before <protocols/rwhod.h>,
          as the latter needs the former on some systems.

Thu Aug 19 08:07:53 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * examples/APG/Signals/SigAction.cpp:

          Changed to use a (conditional) extern "C" linkage block around
          my_sighandler, because the plain extern "C" directive resulted
          in a declaration with multiple storage classes.

Thu Aug 19 08:44:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * PROBLEM-REPORT-FORM:
          Ask for the default.features file used by MPC.

Wed Aug 18 21:02:34 2004  Dale Wilson  <wilson_d@ociweb.com>

        * ace/OS_NS_Thread.h:
        * ace/OS_NS_Thread.cpp:
        * ace/Object_Manager.cpp:
        * ace/TSS_T.cpp:
          Revert TSS leak fix (temporarily, I hope)
          until I can find and eliminate the hang.

Wed Aug 18 15:07:00 UTC 2004  Martin Corino <mcorino@remedy.nl>

        * bin/msvc_static_compile.pl:
          bin/msvc_mpc_auto_compile.pl:

        Fixed wrong comment characters.

Wed Aug 18 13:35:00 UTC 2004  Martin Corino <mcorino@remedy.nl>

        * bin/msvc_static_compile.pl:

        Added support for building VC8 projects.

Wed Aug 18 13:29:00 UTC 2004  Martin Corino <mcorino@remedy.nl>

        * bin/msvc_mpc_auto_compile.pl:

        Added support for building VC8 projects.

Wed Aug 18 08:50:00 UTC 2004  Simon Massey  <simon.massey@prismtechnologies.com>

        * ace/Asynch_Connector.h:
        * ace/Asynch_Connector.cpp:

          Thanks to Douglas for his assistance. This change introduces a
          class-static "local_default" for use as the default parameter
          for the second attribute of
          ACE_Asynch_Connector<>::connect(). This "simplifies" the nested
          templated class for the Solaris Lynxos GCC295 cross compiler
          which was faulting due to the complexity of this
          definition. This change does not appreachiably modify the
          signature of the member function, just stops clients from having
          to create their own local default parameter.

Wed Aug 18 01:05:37 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * include/makeinclude/platform_netbsd.GNU:

          Update to support current NetBSD platforms.

Tue Aug 17 21:03:08 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * bin/MakeProjectCreator/config/interceptors.mpb:

          New file, with base project requiring interceptors.  Project
          files should inherit from this instead of providing explicit
          requires statements to eliminate duplicate entries in list.

Tue Aug 17 17:42:16 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * bin/MakeProjectCreator/config/rtcosscheduler.mpb:

          Changed to inherit from orbsvcslib.

Tue Aug 17 09:50:46 2004  Balachandran Natarajan  <bala@dre.vanderbilt.edu>

        * bin/MakeProjectCreator/config/ciao_servant.mpb:
        * bin/MakeProjectCreator/config/ciao_servant_dnc.mpb:

          Added the path to $TAO_ROOT/orbsvcs to the CIDL compiler.

Tue Aug 17 14:30:00 UTC 2004  Simon Massey  <simon.massey@prismtechnologies.com>
        * tests/Proactor_Test.cpp
          Revertion of change to this file (for the sake of being complete).

Tue Aug 17 13:00:00 UTC 2004  Simon Massey  <simon.massey@prismtechnologies.com>
        * ace/Asynch_Connector.h
          Revertion of change to this file as it breaks the windows build and
          changed the public interface of the template class.

Tue Aug 17 10:03:00 UTC 2004  Martin Corino <mcorino@remedy.nl>

        * ace/ACE.cpp:

          Added ACE_UNUSED_ARG() to is_sock_error() for non-WIN32
          builds.

Tue Aug 17 09:43:00 UTC 2004  Martin Corino <mcorino@remedy.nl>

        * bin/msvc_static_order.lst:

          Removed DOS style linefeeds.

Tue Aug 17 08:49:00 UTC 2004  Martin Corino <mcorino@remedy.nl>

        * ace/OS_NS_String.cpp:

          Removed some hidden characters causing compile problems.

Tue Aug 17 08:00:00 UTC 2004  Simon Massey  <simon.massey@prismtechnologies.com>
        * ace/Asynch_Connector.h
        * tests/Proactor_Test.cpp
          Due to a long standing fatal cross development compiler bug in the
          Solaris -> Lynxos cross development environment.
          (LynxOS gcc 2.95.3 cross compiler)

Tue Aug 17 08:00:00 UTC 2004  Martin Corino <mcorino@remedy.nl>

        * ace/ACE.h:
          ace/ACE.cpp:

          Added ACE::is_sock_error() to be able to test if errorcode is
          WinSock error *before* converting to error string.

        * ace/OS_NS_String.cpp:

          Fixed WCHAR bug in ACE_OS::strerror().
          Introduced use of ACE::is_sock_error().

Mon Aug 16 22:53:53 2004  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * ace/SSL/SSL_SOCK_Stream.cpp (~ACE_SSL_SOCK_Stream):

          Removed useless invalidation of "ssl_" pointer member by
          assignment of zero.  Once the destructor is called, the object
          no longer exists so invalidation is unnecessary.

Mon Aug 16 16:54:18 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * bin/MakeProjectCreator/config/ftorbutils.mpb
        * bin/MakeProjectCreator/config/smart_proxies.mpb
        * bin/MakeProjectCreator/config/svc_utils.mpb

          Changed to inherit from orbsvcslib instead of taolib_with_idl.

        * bin/MakeProjectCreator/config/orbsvcslib.mpb:

          Added $(TAO_ROOT)/orbsvcs to includes.
          Added -I$(TAO_ROOT)/orbsvcs to idlflags.

Mon Aug 16 15:58:21 2004  Steve Huston  <shuston@riverace.com>

        * ace/Signal.cpp: Added template instantiations for
          ACE_Fixed_Set_Iterator_Base. Related to:
          Mon Aug  2 08:55:17 2004  Douglas C. Schmidt  <schmidt@cs.wustl.edu>

Mon Aug 16 15:30:29 2004  Steve Huston  <shuston@riverace.com>

        * ace/Task.cpp (svc_run): Added "defined (ACE_WIN32)" to the
          "defined (__IBMCPP__)" test for how to cast a thread result.
          __IBMCPP__ is defined for both Windows (where the alternate cast
          is needed) and AIX (where it is prohibited).
          This is related to this change:
          Fri Aug  6 08:34:12 UTC 2004  Johnny Willemsen  <jwillemen@remedy.nl>

Mon Aug 16 11:54:50 2004  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * ace/ACE.h (debug):

          Corrected the export qualifier for these functions.  They are no
          longer inlined.

Mon Aug 16 11:16:02 2004  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * ace/ACE.h:

          Moved remaining ACE namespace variables out of header and into
          the '.cpp' file.  They should not be accessed/modified
          directly.

        * ace/ACE.inl (hex_chars_, nibble2hex):

          No need to declare/define the hex_chars_ constant variable in
          the ACE namespace.  Define it as a static constant in the
          nibble2hex() function instead, the only place it is used.

        * ace/ACE.cpp (debug):

          Unlined these functions.  They generally aren't performance
          critical, and doing so allows us to remove the ACE::debug_
          internal variable to the '.cpp' file.

Mon Aug 16 11:16:02 2004  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * ace/ACE.h:
        * ace/ACE.cpp:

          Added remaining missing DLL export qualifiers.  Fixes
          "unresolved external symbol" errors in MS Windows builds.

          Moved variables in ACE namespace that are internal to ACE into
          the '.cpp' file.  They should be not be accessed or modified
          directly.

Mon Aug 16 10:58:09 2004  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * ace/ACE.h (recv):

          Fixed DLL export qualifier.  Addresses "unresolved external
          symbol" link-time errors in MS Windows builds.

Mon Aug 16 12:14:37 2004  Balachandran Natarajan  <bala@dre.vanderbilt.edu>

        * bin/MakeProjectCreator/config/ciao_deployment_stub.mpb:
        * bin/MakeProjectCreator/config/ciao_deployment_svnt.mpb:
        * bin/MakeProjectCreator/config/ciao_server_dnc.mpb:

          Changed the names of the Deployment libraries. Arranged the
          dependencies in such a manner so that it is easier to use it in
          the application.

Mon Aug 16 09:27:12 UTC 2004  Martin Corino  <mcorino@remedy.nl>

        * bin/msvc_mpc_auto_compile.pl:

           Added MSVC 7.1 compatibility through '-vc7' option.

        * bin/msvc_static_compile.pl:

          Added MSVC 7.1 compatibility through '-vc7' option. Added
          support for MPC '-name_modifier' option.

        * bin/msvc_static_compile.lst:

          Removed projectfile extensions to be able to generate these
          dynamically from 'msvc_static_compile.pl'.

Sat Aug 14 19:38:20 2004  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * ace/CDR_Base.h:

          Do not include "ace/If_Then_Else.h" when using MSVC++ 6.  It
          can't handle the partial template specializations in that file.

Sat Aug 14 19:34:02 2004  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * ace/Sock_Connect.cpp (ipv6_enabled_):

          Fixed syntax error.

Sat Aug 14 13:07:50 2004  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * ace/QoS/SOCK_Dgram_Mcast_QoS.cpp (subscribe_ifs):

          The "ACE_Sock_Connect" interim pseudo namespace no longer
          exists.  Use the true "ACE" C++ namespace instead.  Fixes a
          compile-time error.

Sat Aug 14 14:48:01 2004  Balachandran Natarajan  <bala@dre.vanderbilt.edu>

        * bin/MakeProjectCreator/templates/gnu.mpd:

          Add /usr/lib as a path for library check. If the location of the
          library is not specified by the application, the compiler,
          linker and loader knows where to look in for *nix based
          systems. So should our library checker.Without this applications
          MPC file starts pointing to /usr/lib to locate libraries like
          PCAP and XERCES, which can be installed with system
          libraries. It is bad to see installation specific thingies
          making its way up the order.

Sat Aug 14 09:28:19 2004  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * ace/CDR_Base.h (ACE_CDR::Boolean):

          MSVC++ 6 can't handle partial template specializations so fall
          back on an unsigned char typedef if _MSC_VER < 1300 (i.e. MSVC++
          version is less than 7).  This is an interim solution to get the
          MSVC++ 6 builds going again.

        * ace/IfThenElse.h:
        * ace/If_Then_Else.h:

          Renamed the former to the latter, including the class template
          defined within, to match ACE naming conventions.  Thanks to Doug
          for pointing this out.

Sat Aug 14 01:43:16 2004  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * ace/CDR_Base.h (ACE_CDR):

          Parenthesize boolean condition that is the first argument to the
          ACE::IfThenElse<> template to avoid any potential confusion.

Sat Aug 14 00:33:59 2004  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * ace/IfThenElse.h (IfThenElse):

          Place sample code within a Doxygen code block.  Addresses some
          documentation formatting problems.

Fri Aug 13 23:26:56 2004  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * ace/IfThenElse.h:

          New template that allows one to choose between two types at
          compile-time based on a boolean value.  This is basically the
          IfThenElse template described in the book "C++ Templates" by
          Vandevoorde and Josuttis.

        * ace/CDR_Base.h (ACE_CDR::Boolean):

          Detect at compile-time whether the C++ "bool" type can be used
          as the underlying ACE_CDR::Boolean type using the new
          ACE::IfThenElse template.

        * ace/ACE.h:
        * ace/Flag_Manip.cpp:
        * ace/Flag_Manip.h:
        * ace/Flag_Manip.inl:
        * ace/Handle_Ops.cpp:
        * ace/Handle_Ops.h:
        * ace/Init_ACE.cpp:
        * ace/Init_ACE.h:
        * ace/Lib_Find.cpp:
        * ace/Lib_Find.h:
        * ace/Sock_Connect.cpp:
        * ace/Sock_Connect.h:

          Functions that were in the pseudo "ACE" namespace are now in a
          true "ACE" C++ namespace.

        * ace/ACE.inl (log2):

          Use the prefix increment operator when incrementing the loop
          index.  It is generally more efficient than the postfix
          increment operator.

        * ace/Asynch_Acceptor.cpp:
        * ace/Asynch_Connector.cpp:
        * ace/DEV_Connector.cpp:
        * ace/DLL_Manager.cpp:
        * ace/FILE_Addr.cpp:
        * ace/FILE_Connector.cpp:
        * ace/INET_Addr.inl:
        * ace/IO_SAP.cpp:
        * ace/IPC_SAP.cpp:
        * ace/Logging_Strategy.cpp:
        * ace/MEM_Acceptor.cpp:
        * ace/Memory_Pool.cpp:
        * ace/Naming_Context.cpp:
        * ace/POSIX_Asynch_IO.cpp:
        * ace/POSIX_Proactor.cpp:
        * ace/SOCK_Acceptor.cpp:
        * ace/SOCK_Dgram.cpp:
        * ace/SOCK_Dgram_Mcast.cpp:
        * ace/SOCK_SEQPACK_Acceptor.cpp:
        * ace/SPIPE_Connector.cpp:
        * ace/System_Time.cpp:
        * ace/UPIPE_Connector.cpp:
        * tests/Enum_Interfaces_Test.cpp:
        * tests/FIFO_Test.cpp:
        * tests/INET_Addr_Test.cpp:
        * tests/INET_Addr_Test_IPV6.cpp:

          Updated all calls to functions that were in the pseudo "ACE"
          namespace through a former ACE class base class
          (e.g. ACE_Sock_Connect, ACE_Flag_Manip, etc) to use the correct
          "ACE" namespace.  Use of the base class names should never have
          been used since it was known long ago that the "ACE" pseudo
          namespace would be changed to true C++ namespace.

        * ace/Basic_Types.h:
        * ace/OS_NS_fcntl.inl:
        * ace/OS_NS_stdio.h:
        * ace/OS_NS_stdlib.h:

          Nuked trailing whitespace.

Sat Aug 14 03:44:02 2004  Balachandran Natarajan  <bala@dre.vanderbilt.edu>

        * ace/TSS_T.cpp:

          Fixed compilation errors in the SingleThreaded builds.

Sat Aug 14 03:37:44 2004  Balachandran Natarajan  <bala@dre.vanderbilt.edu>

        * ace/OS_NS_Thread.cpp:

          Fixed a unused variable warning in the daily builds.

Sat Aug 14 01:58:32 2004  Balachandran Natarajan  <bala@dre.vanderbilt.edu>

        * Release:

          Added the NEWS file to the release. Thanks to Ramiro Morales
          <rm0 at gmx dot net> for reporting the problem.

Fri Aug 13 16:17:32 2004  Douglas C. Schmidt  <schmidt@cs.wustl.edu>

        * ace/Module.h (class ACE_Module):
        * ace/Task.h (ACE_Task_Base):
          Updated the documentation so it's more clear.  Thanks to Andrew
          Athan <aathan-ace-bugs-1524@cloakmail.com> for motivating this.

        * ace/Stream.h: Updated the documentation for push() and pop() to
          clarify how it affects open() and close() hooks on the tasks.
          Thanks to Andrew Athan <aathan-ace-bugs-1524@cloakmail.com> for
          motivating this.

Fri Aug 13 15:26:40 2004  Dale Wilson  <wilson_d@ociweb.com>

        * ace/TSS_T.cpp:
          Pass the TSS key to ACE_OS::thr_key_detach.  This
          eliminates the table lookup formerly required to
          identify the key being detached.

        * ace/OS_NS_Thread.h:
        * ace/OS_NS_Thread.cpp:
          --Accept and use the TSS key from TST_T.cpp
          --Typedef the function pointer used to delete TSS
          objects.  This improves readability.
          --Change the name of the ACE_TSS_Info member from
          tss_obj_ to tss_info_.  This avoids confusion
          due to conflicting use of the name "tss_obj"
          --Check to see if a thread has actually used
          a TSS key before decrementing the "number of
          threads using this key" counter.  This eliminates
          a messy situation in which the key is deleted
          while threads are still using it.
          --Fix bugzilla 1542:  Leaks in ACE_TSS
          Note that the patch suggested
          in the bugzilla report did not completely address
          the problem, so this fix takes a different approach.
          Significant features of this change:
          > The ACE_TSS_Cleanup::detach method now frees the
            thread's specified TSS entry.  Formerly it leaked it.
          > The exit method defers to the detach method to
            free the entry. This ensures entries are handled
            consistently -- no matter how they are freed up.
          > The ACE_TSS_Cleanup::in_use_ entry receives special
            handling to avoid using it while deleting it.  Formerly
            it was leaked, so it didn't matter.
          -- Note this does NOT address bugzilla 1797.  I'll
          look at that one next.

        * ace/Object_Manager.cpp:
          Eliminating TSS leaks revealed another problem.  The
          main thread was not waiting for other threads to exit
          before dismantling the ACE infrastructure in
          Object_Manager::fini.  There's a hack in Thread_Manager
          that disables the wait method when the Object_Manager
          is shutting down.
          Unfortunatly this causes a messy race condition in which
          one thread is deleting objects while other threads are
          using them.
          The "solution" here is to call Thread_Manager::wait()
          with a short (1 second) timeout.  If the threads have
          already exited -- no problem, and no delay.  If they
          haven't, they get a chance to exit cleanly.

Fri Aug 13 18:43:01 2004  Balachandran Natarajan  <bala@dre.vanderbilt.edu>

        * ace/CDR_Base.h (ACE_CDR):

          Reverted the usage of C++ bool as a typedef of
          ACE_CDR::Boolean. We will now use unsigned char on all
          platforms. MacOSX (Panther) atleast makes the size of bool to be
          4 bytes which creates problems for TAO. Thanks to Rich Shapiro
          <rshapiro at bbn dot com> for reporting the problem.

Fri Aug 13 18:44:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/IOStream_T.h:
          When ACE_LACKS_IOSTREAM_FX is defined, also include ace/os_include/
          os_ctype.h

Fri Aug 13 12:03:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/MakeProjectCreator/templates/bor.mpd:
          Also install pidl files

Fri Aug 13 07:15:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/platform_gnuwin32_common.GNU:
          Pass the def file with -Wl, to the compiler, it is a linker option
          and with the Cygwin GCC 3.3.3 it seems the compiler thinks the def
          file is a modula2 file. By marking it as linker option it works
          without problems again

        * etc/*.doxygen:
          Set INTERNAL_DOCS to YES, that way we generate documentation for
          stuff marked with @internal, but doxygen will make sure the
          documentation says it is for internal use only

Thu Aug 12 21:17:05 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * bin/MakeProjectCreator/config/taolib.mpb:
          Inherit from pidl.mpb:

        * bin/MakeProjectCreator/config/pidl.mpb:
          New file, custom file type definition for *.pidl files.

Thu Aug 12 16:12:18 2004  Balachandran Natarajan  <bala@dre.vanderbilt.edu>

        * bin/fuzz.pl:

          Priority of synch.h inclusion is reduced.

Thu Aug 12 13:23:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/MakeProjectCreator/config/acedefaults.mpb:
          Use LIBMODIFIER with bmake, not LIB_MODIFIER

Thu Aug 12 07:54:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/platform_hpux_gcc.GNU:
          Removed support for buildbits=64 again, the way I tried it doesn't
          work

Wed Aug 11 22:20:49 2004  Balachandran Natarajan  <bala@dre.vanderbilt.edu>

        * bin/fuzz.pl:

          Priority of OS.h and Synch.h inclusions have been reduced.

Wed Aug 11 11:55:46 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * bin/MakeProjectCreator/config/event.mpb
        * bin/MakeProjectCreator/config/ftorbutils.mpb
        * bin/MakeProjectCreator/config/ftrtevent.mpb
        * bin/MakeProjectCreator/config/rtcorbacommon.mpb
          Changed to inherit from minimum_corba instead of providing avoids
          statements to eliminate duplicate entries in list.

Wed Aug 11 08:48:48 2004  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/modules/BorlandProjectCreator.pm:
        * bin/MakeProjectCreator/modules/BorlandWorkspaceCreator.pm:
        * bin/MakeProjectCreator/modules/GNUACEProjectCreator.pm:
        * bin/MakeProjectCreator/modules/GNUACEWorkspaceCreator.pm:

          Call $self->mpc_dirname() instead of dirname() to be consistent
          with the modules in MPC.

        * bin/mpc.pl:
        * bin/mwc.pl:

          Put back the getBasePath() function and cleaned up the VMS
          support.

Wed Aug 11 10:32:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/tao_other_tests.lst:
          Don't run the PluggableUDP examples when NO_DIOP is defined,
          makes it possible to exclude these examples in builds that don't
          have DIOP

Wed Aug 11 08:32:12 UTC 2004  Martin Corino  <mcorino@remedy.nl>

        * ace/Process.cpp:
          Added OpenVMS version of ACE_Process::spawn().

        * include/makeinclude/platform-openvms.GNU:
          Removed mathlibrary from required libs.
          Added dummy code to circumvent 'touch' problem with OpenVMS make port.

Wed Aug 11 08:00:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/tao_other_tests.lst:
          Don't run TAO/orbsvcs/tests/Notify/performance-tests/Filter when
          MINIMUM is set, this test isn't build with minimum corba

Tue Aug 10 10:57:00 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * configure.ac:
          Enable check for ACE_HAS_WCHAR.  We'll never shake out any
          wide character configuration bugs that may remain if it's
          disabled.

Tue Aug 10 11:08:31 2004  Steve Huston  <shuston@riverace.com>

        * ace/config-linux-common.h: Removed ACE_LACKS_TOWLOWER and
          ACE_LACKS_TOWUPPER. These functions are present but, I suspect,
          marked "lacks" because of type conflicts, which J.T. Conklin fixed:
          Mon Aug  9 23:13:48 2004  J.T. Conklin  <jtc@acorntoolworks.com>

Tue Aug 10 06:52:47 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * configure.ac:
          Removed AC_LANG_PUSH([C])/.../AC_LANG_POP([C]) which forced the
          use of C for selected AC_CHECK_FUNC calls.  The current version
          of autoconf always uses C.

Tue Aug 10 14:00:00 UTC 2004  Simon Massey  <simon.massey@prismtechnologies.com>

        I shouldn't have been rushed into these guarded #includes. The
        following two files now need these guarded #includes to be moved
        after the rest.

        * ace/FILE_IO.h
        * ace/FIFO_Send_Msg.h
          Moved guarded  #include "ace/OS_NS_stropts.h"  to end of other
          #includes

Tue Aug 10 11:20:00 UTC 2004  Simon Massey  <simon.massey@prismtechnologies.com>

        * examples/IOStream/server/iostream_server.cpp
          Added missing  #include "ace/OS_NS_unistd.h"  inside the guard of
          #if defined (ACE_HAS_STRING_CLASS)

        * tests/IOStream_Test.cpp
          Added missing  #include "ace/OS_NS_unistd.h"  inside the guard of
          #if !defined (ACE_LACKS_ACE_IOSTREAM)

Tue Aug 10 12:01:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/tao_orb_tests.lst:
        * bin/tao_other_tests.lst:
          When DISABLE_BIDIR is set, don't run the BiDIR tests, this can be
          used for builds that build without BiDIR GIOP

Tue Aug 10 11:20:00 UTC 2004  Simon Massey  <simon.massey@prismtechnologies.com>

        Thanks to Johnny Willemsen <jwillemsen@remedy.nl> for the information
        leading to these guard conditions.

        * ace/Sock_Connect.cpp
          Added guard checks around #include "ace/OS_NS_fcntl.h"

        * ace/DEV_IO.h
        * ace/FILE_IO.h
        * ace/FIFO_Send_Msg.h
          Added guard checks around #include "ace/OS_NS_stropts.h"

        * ace/Pipe.cpp
        * ace/SPIPE_Acceptor.cpp
          Added guard checks around #include "ace/OS_NS_unistd.h"

Mon Aug  9 23:13:48 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * ace/config-freebsd.h:
          Remove #define of ACE_LACKS_TOWLOWER and ACE_LACKS_TOWUPPER.
          FreeBSD has these functions, but they were disabled because
          of the problem below.

        * ace/OS_NS_ctype.h:
        * ace/OS_NS_ctype.inl:
        * ace/OS_NS_strings.cpp:
        * ace/OS_NS_wchar.cpp:
        * examples/Service_Configurator/IPC-tests/server/Handle_L_Pipe.cpp:
        * tests/Config_Test.cpp:
        * tests/Proactor_Test.cpp:
        * tests/Proactor_Test_IPV6.cpp:
          Renamed ACE_OS::to_upper(int) and ACE_OS::to_upper(wint_t) to
          ACE_OS::ace_toupper() and ACE_OS::ace_towupper() because they
          are ambiguous on systems where wint_t is in fact an int.  The
          same was done for ACE_OS::to_lower(), etc.

Mon Aug  9 18:12:12 UTC 2004  Johnny Willemsen  <jwillemen@remedy.nl>

        * ace/OS_NS_stdlib.cpp (realpath):
          Applied ACE code formatting to make it readable

Mon Aug  9 15:20:00 UTC 2004  Simon Massey  <simon.massey@prismtechnologies.com>

        * ace/Sock_Connect.cpp
          Added missing #include "ace/OS_NS_fcntl.h"

        * ace/DEV_IO.h
        * ace/FILE_IO.h
        * ace/FIFO_Send_Msg.h
          Added missing #include "ace/OS_NS_stropts.h"

        * ace/Pipe.cpp
        * ace/SPIPE_Acceptor.cpp
          Added missing #include "ace/OS_NS_unistd.h"

Mon Aug  9 15:05:12 UTC 2004  Johnny Willemsen  <jwillemen@remedy.nl>

        * include/makeinclude/platform_hpux_gcc.GNU:
          When buildbits is set to 64, add -m64 to the CPPFLAGS

Mon Aug  9 09:25:12 2004  Huang-Ming Huang  <hh1@cse.wustl.edu>

        * tests/Dynamic_Priority_Test.cpp:
          Fixed buffer overrun problem when ACE_HAS_TIMED_MESSAGE_BLOCKS
          macro is defined.

Mon Aug  9 09:56:12 UTC 2004  Johnny Willemsen  <jwillemen@remedy.nl>

        * examples/APG/Processes/Spawn.cpp:
          Changed the check of the result of spawn, use ACE_INVALID_PID
          instead of -1.

Mon Aug  9 08:55:12 UTC 2004  Johnny Willemsen  <jwillemen@remedy.nl>

        * ace/OS_NS_unistd.inl (chdir):
          Fixed Visual Age on Win32 implementation

          Thanks to Boris Kaminer <boris_kaminer@mail.ru> for reporting
          this.

Sun Aug  8 22:43:37 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * ace/config-integritySCA.h:
        * m4/config_h.m4:
          Removed vestigial mentions of ACE_HAS_ONE_DEFINITION_RULE.

Sun Aug  8 17:38:05 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * ace/README:
        * ace/config-g++-common.h:
          Removed vestigial mentions of ACE_HAS_GNUG_PRE_2_8.

        * m4/compiler.m4:
        * m4/config_h.m4:
          Removed check for ACE_HAS_GNUC_BROKEN_TEMPLATE_INLINE_FUNCTIONS
          and ACE_HAS_GNUG_PRE_2_8, as those feature test macros have been
          removed from ACE for some time.

        * m4/config_h.m4:
        * m4/threads.m4:
          Replaced AH_TEMPLATE for ACE_HAS_STHREADS and ACE_HAS_PTHREADS
          with third argument to AC_DEFINE.

Sun Aug  8 07:12:32 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * configure.ac:
          Start converting checks for for prototypes to use AC_CHECK_DECL
          instead of AC_EGREP_CPP or AC_EGREP_HEADER.

        * ace/OS_NS_sys_resource.inl:
          Changed so conditionals aren't used inside macro call.

        * m4/subsets.m4:
          Changed AC_HELP_STRING to AS_HELP_STRING.

        * ace/config-sco-4.2-nothread.h:
        * ace/config-sco-5.0.0-mit-pthread.h:
        * ace/config-sco-5.0.0.h:
        * ace/config-tandem.h:
          Removed (commented-out) definition of ACE_HAS_SYSCALL_GETRUSAGE.

        * ace/config-hpux11.h:
        * ace/config-hpux-11.00.h:
          Removed ACE_HAS_SYSCALL_GETRUSAGE.  getrusage() was added in
          HPUX 10.10.

        * configure.ac:
          Fixed check for setregid() and setreuid() prototypes to look for
          them in <unistd.h>, not <time.h>.

        * m4/config_h.m4:
          Replace some AH_TEMPLATE definitions.  ACE_CHECK_HAS_HEADERS and
          ACE_CHECK_LACKS_HEADERS provide autoheader templates themselves.

        * configure.ac:
          Replace some calls to AC_CHECK_HEADERS with ACE_CHECK_HAS_HEADERS
          or ACE_CHECK_LACKS_HEADERS.

        * m4/ace_headers.m4:
          New file, with ACE_CHECK_HAS_HEADERS and ACE_CHECK_LACKS_HEADERS
          autoconf macros.  These macros are similar to AC_CHECK_HEADERS,
          but define either ACE_HAS_<foo> or ACE_LACKS_<foo>.

        * ace/OS_NS_unistd.inl:
        * config-rtems.h:
          Changed name of feature test macro ACE_HAS_GETOPT_PROTO to
          ACE_HAS_GETOPT_PROTOTYPE.

        * ace/config-linux-common.h:
        * ace/config-unixware-7.1.0:
        * ace/config-unixware-7.1.0.udk.h:
        * ace/os_include/sys/os_resource.h:
          Changed name of feature test macro ACE_HAS_GETRUSAGE_PROTO to
          ACE_HAS_GETRUSAGE_PROTOTYPE.

        * ace/Basic_Types.h:
        * ace/config-chorus.h:
        * ace/config-integritySCA.h:
        * ace/config-mvs.h:
        * ace/config-openvms.h:
        * ace/config-psos-diab.h:
        * ace/config-psos-diab-mips.h:
        * ace/config-psos-diab-ppc.h:
        * ace/config-psos-tm.h:
        * ace/config-psosim-g++.h:
        * ace/config-tandem.h:
        * ace/config-vxworks5.x.h:
        * ace/config-win32-common.h:
        * ace/os_include/os_limits.h:
          Changed name of feature test macro ACE_LACKS_PARAM_H to
          ACE_LACKS_SYS_PARAM_H.

        * ace/OS.inl:
        * ace/config-dgux-4.11-epc.h:
        * ace/config-freebsd.h:
        * ace/config-hpux-10.x.h:
        * ace/config-hpux-11.00.h:
        * ace/config-hpux11.h:
        * ace/config-irix5.2.h:
        * ace/config-irix5.3-g++.h:
        * ace/config-irix5.3-sgic++.h:
        * ace/config-irix6.x-common.h:
        * ace/config-linux-common.h:
        * ace/config-m88k.h:
        * ace/config-macosx-panther.h:
        * ace/config-macosx.h:
        * ace/config-netbsd.h:
        * ace/config-openbsd.h:
        * ace/config-osf1-3.2.h:
        * ace/config-osf1-4.0.h:
        * ace/config-sco-4.2-nothread.h:
        * ace/config-sco-5.0.0-mit-pthread.h:
        * ace/config-sco-5.0.0.h:
        * ace/config-sunos4-g++.h:
        * ace/config-sunos4-lucid3.2.h:
        * ace/config-sunos4-sun3.x.h:
        * ace/config-sunos4-sun4.1.4.h:
        * ace/config-sunos4-sun4.x.h:
        * ace/config-sunos5.4-centerline-2.x.h:
        * ace/config-sunos5.4-g++.h:
        * ace/config-sunos5.4-sunc++-4.x.h:
        * ace/config-sunos5.5.h:
        * ace/config-tandem-nsk-mips-v2.h:
        * ace/config-tandem.h:
        * ace/config-unixware-2.01-g++.h:
        * ace/config-unixware-2.1.2-g++.h:
        * ace/config-unixware-7.1.0.h:
        * ace/config-unixware-7.1.0.udk.h:
        * ace/os_include/sys/os_resource.h:
          Changed name of feature test macro ACE_HAS_SYSCALL_H to
          ACE_HAS_SYS_SYSCALL_H.

Sat Aug  7 10:43:51 2004  Jeff Parsons <j.parsons@vanderbilt.edu>

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

          Uninlined the ACE_OS::strerror() method, so the #include of ACE.h
          necessitated by the changes in

          Fri Aug  6 07:58:54 2004  Douglas C. Schmidt  <schmidt@cs.wustl.edu>

          can be moved to the .cpp file.

Fri Aug  6 20:22:02 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * configure.ac:
          Added check for mkstemp() which sets ACE_LACKS_MKSTEMP if
          it is not available.

Fri Aug  6 19:13:12 UTC 2004  Martin Corino  <mcorino@remedy.nl>

        * ace/config-openvms.h:
        Added ACE_HAS_VOIDPTR_GETTIMEOFDAY.

Fri Aug  6 08:17:23 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * m4/ace.m4:
          Split new ACE_WITH_RMCAST, ACE_WITH_QOS, and ACE_WITH_SSL macros
          out of ACE_CONFIGURATION_OPTIONS so they can be used with other
          packages.

        * ace/OS_NS_sys_uio.cpp:
        * ace/OS_NS_sys_uio.h:
        * ace/OS_NS_sys_uio.inl:
          Changed ACE_OS::readv_emulation() and ACE_OS::writev_emulation()
          to use const iovec * instead of type of system iovec parameter.
          Changed ACE_OS::readv() to cast const qualification of iovec
          parameter away if ACE_HAS_NONCONST_READV.
          Changed ACE_OS::writev() to cast const qualifiaction of iovec
          parameter away if ACE_HAS_NONCONST_WRITEV.
        * ace/os_include/os_uio.h:
          Removed ACE_READV_TYPE type definition.
          Removed ACE_WRITEV_TYPE type definition.
          Changed readv_timedwait and writev_timedwait definitions to
          use const iovec *'s for iovec parameter.

        * ace/OS_sys_socket.inl:
          Cast const qualifiaction away if ACE_HAS_NONCONST_SENDMSG.
        * ace/os_include/sys/os_socket.h:
          Removed ACE_SENDMSG_TYPE type definition.

        * ace/OS_sys_resource.h:
        * ace/OS_sys_resource.inl:
          Changed ACE_OS::setrlimit() to use const struct rlimit*
          instead of type of system rlimit parameter.  Cast const
          qualification away if ACE_HAS_NONCONST_SETRLIMIT.
        * ace/os_include/sys/os_resource.h:
          Removed ACE_SETRLIMIT_TYPE type definition.

        * ace/config-chorus.h:
        * ace/config-linux-common.h:
        * ace/config-lynxos.h:
        * ace/config-m88k.h:
        * ace/config-osf1-3.2.h:
        * ace/config-osf1-4.0.h:
        * ace/config-psos-diab-mips.h:
        * ace/config-psos-diab-ppc.h:
        * ace/config-psos-diab.h:
        * ace/config-psos-tm.h:
        * ace/config-psosim-g++.h
        * ace/config-rtems.h:
        * ace/config-sunos5.4-centerline-2.x.h:
        * ace/config-sunos5.4-g++.h:
        * ace/config-sunos5.4-sunc++-4.x.h:
        * ace/config-tandem-nsk-mips-v2.h:
        * ace/config-tandem.h:
        * ace/config-vxworks5.x.h:
        * configure.ac:
        * m4/config_h.m4:
          Rename ACE_HAS_BROKEN_SETRLIMIT, ACE_HAS_BROKEN_SENDMSG,
          ACE_HAS_BROKEN_READV, and ACE_HAS_BROKEN_WRITEV to
          ACE_HAS_NONCONST_SETRLIMIT, ACE_HAS_NONCONST_SENDMSG,
          ACE_HAS_NONCONST_READV, and ACE_HAS_NONCONST_WRITEV to
          be more descriptive of what's really broken.

        * bin/MakeProjectCreator/config/ec_used_typed_events.mpb:
          Changed to inherit from dynamicinterface and ifr_client instead
          of providing libs and after statements so that dependency chain
          is complete.

Fri Aug  6 10:26:20 2004  Jeff Parsons <j.parsons@vanderbilt.edu>

        * ace/OS_NS_string.h:

          Added include of ACE.h needed for WIN32 version of change in

          Fri Aug  6 07:58:54 2004  Douglas C. Schmidt  <schmidt@cs.wustl.edu>

        * ace/OS_NS_string.inl:

          Fixed typo and mismatched return type for WIN32.

Fri Aug  6 14:15:12 UTC 2004  Johnny Willemsen  <jwillemen@remedy.nl>

        * ace/config-win32-common.h:
          Don't define export macro's also for Visual Age.

        * ace/config-win32-visualage.h:
          Added special Visual Age export macros

          Thanks to Boris Kaminer <boris_kaminer@mail.ru> for reporting
          this.

Fri Aug  6 14:14:12 UTC 2004  Martin Corino  <mcorino@remedy.nl>

        * ace/OS_NS_sys_socket.h:
          Removed include for 'ace/os_include/netinet/os_tcp.h'.
        * ace/Pipe.cpp:
          Added include for 'ace/os_include/netinet/os_tcp.h' to provide
          TCP macros/constants (f.i. TCP_NODELAY) for OS like OpenVMS.

Fri Aug  6 07:58:54 2004  Douglas C. Schmidt  <schmidt@cs.wustl.edu>

        * ace/Message_Block.cpp (crunch): If rd_ptr_ was greater than
          wr_ptr_ memory was overwritten, so added a check for this case
          and return -1 in this case.  Also, simplified the initial if
          statement.  Thanks to Boris Kaminer for reporting this.

        * ace/OS_NS_string.inl: Updated ACE_OS::strerror() so it checks
          for socket errors explicitly.  Thanks to Boris Kaminer
          <boris_kaminer@mail.ru> for reporting this.

Fri Aug  6 10:18:12 UTC 2004  Martin Corino  <mcorino@remedy.nl>

        * ace/config-openvms.h:
          Added ACE_LACKS_REALPATH.
          Added '#define MAXSYMLINKS 0'.
          Removed uppercase macros for pthread symbols.

Fri Aug  6 10:08:12 UTC 2004  Martin Corino  <mcorino@remedy.nl>

        * ace/OS_NS_sys_socket.h:
          Added include for 'ace/os_include/netinet/os_tcp.h' to provide
          TCP macros/constants (f.i. TCP_NODELAY) for OS like OpenVMS.

Fri Aug  6 09:50:12 UTC 2004  Johnny Willemsen  <jwillemen@remedy.nl>

        * bin/make_release:
          For generating the project files for borland, vc6 & vc71 set
          qos=1 in the default.features file, these environments support
          qos.

Fri Aug  6 09:41:12 UTC 2004  Johnny Willemsen  <jwillemen@remedy.nl>

        * bin/MakeProjectCreator/modules/BorlandWorkspaceCreator.pm:
          Just always use Makefile.bor as workspace name, this is the way
          our Borland users expect things to work.

Fri Aug  6 09:15:00 UTC 2004  Simon Massey  <simon.massey@prismtechnologies.com>

        * apps/JAWS3/jaws3/Reactive_IO_Helpers.h
          private -> public ~JAWS_IO_Reactive_Handler (void) due to
          aCC: HP ANSI C++ B3910B A.03.39 compiler bug not allowing
          friend derived classes access.

Fri Aug  6 08:34:12 UTC 2004  Johnny Willemsen  <jwillemen@remedy.nl>

        * ace/config-win32-msvc-7.h:
        * ace/config-win32-msvc-8.h:
          Added ACE_HAS_TEMPLATE_TYPEDEFS

        * ace/config-win32-visualage.h:
          Added huge list of new defines

        * ace/Event_Handler_T.h:
          Instead of -1 use ACE_INVALID_HANDLE to make it portable

        * ace/Malloc.cpp:
          Corrected assert

        * ace/OS_NS_sys_stat.h:
          For IBMCPP also define ACE_stat as stat

        * ace/OS_NS_sys_stat.inl (stat):
          For Visual Age use special _stat call

        * ace/Task.cpp (svc_run):
          For Visual Age also do a static cast

          Thanks to Boris Kaminer <boris_kaminer@mail.ru> for reporting
          this.

Fri Aug  6 08:03:12 UTC 2004  Johnny Willemsen  <jwillemen@remedy.nl>

        * ace/config-win32-msvc-8.h:
          Added this file for msvc8, is a copy of msvc7 but this will change as
          things are tested for msvc8.

        * ace/config-win32-msvc.h:
          If msvc_ver >= 1400 then we are including the msvc-8 file.

Thu Aug  5 23:50:38 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * bin/MakeProjectCreator/config/ec_use_typed_events.mpb:
          Changed to inherit from dynamicinterface and ifr_client instead
          of providing libs and after statements so that dependency chain
          is complete.

Thu Aug  5 13:17:26 2004  Douglas C. Schmidt  <schmidt@cs.wustl.edu>

        * ace/ACE.cpp (sock_error): Changed the WSAEWOULDBLOCK message
          back to "resource temporarily unavailable" to be consistent with
          the UNIX error string.  Thanks to Boris Kaminer
          <boris_kaminer@mail.ru> for reporting this.

        * examples/NT_Service/ntsvc.{h,cpp}: Added a destructor to
          Service that cancels the timer.  Thanks to Scott Harris
          <harris_s@ociweb.com> for this fix.

        * ace/ACE.cpp (sock_error): Added support for WSAEISCONN.
          Thanks to Boris Kaminer <boris_kaminer@mail.ru> for reporting
          this.

Thu Aug  5 07:45:53 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * m4/config_h.m4:
          Replace some AH_TEMPLATE definitions.  ACE_CHECK_HAS_FUNCS and
          ACE_CHECK_LACKS_FUNCS provide autoheader templates themselves.

        * configure.ac:
          Replace some calls to AC_CHECK_FUNCS with ACE_CHECK_HAS_FUNCS or
          ACE_CHECK_LACKS_FUNCS.

        * m4/ace_functions.m4:
          New file, with ACE_CHECK_HAS_FUNCS and ACE_CHECK_LACKS_FUNCS
          autoconf macros.  These macros are similar to AC_CHECK_FUNCS,
          but define either ACE_HAS_<foo> or ACE_LACKS_<foo>.

Thu Aug  5 09:21:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        The following changes are from Martin Corino <mcorino@remedy.nl>

        * bin/mwc.pl:
        * bin/mpc.pl:
        * bin/depgen.pl:
        * bin/cle.pl:
          Added various changes to support autobuild MPC generation on
          OpenVMS.

Wed Aug  4 18:09:47 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * m4/ace.m4:
        * configure.ac:
          Support --with/without-tao flag to provide find grain
          control over TAO configuration.

Wed Aug  4 16:19:40 2004  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * ace/Global_Macros.h (ACE_CORBA_1, ACE_CORBA_2, ACE_CORBA_3):

          Marked these macros as deprecated, and removed the version of
          these macros that defined the obsolete "CORBA_foo" broken
          namespace workaround classes.

Wed Aug  4 14:46:07 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * Makefile.am:
        * configure.ac:
          Configure TAO if TAO subdirectory is present.

Wed Aug  4 16:33:14 2004  Balachandran Natarajan  <bala@dre.vanderbilt.edu>

        * ace/Select_Reactor_T.cpp:

          Fix for Bug 1893. Please see

          http://deuce.doc.wustl.edu/bugzilla/show_bug.cgi?id=1893

          for details. Thanks to Alan L Batongbacal <alanlb at vt dot edu>
          for the patch.

Wed Aug  4 08:31:43 2004  Douglas C. Schmidt  <schmidt@cs.wustl.edu>

        * ace/config-linux-common.h: If the version of glibc
          is less than 2.1 add the ACE_HAS_NONCONST_MSGSND macro.  Thanks
          to Anand <anand@icmgworld.com> and Johnny Willemsen for this
          fix.

Tue Aug  3 15:25:43 2004  Ossama Othman  <ossama@dre.vanderbilt.edu>

        From Jaroslaw Nozderko <jaroslaw.nozderko@polkomtel.com.pl>.
        * ace/Dev_Poll_Reactor.cpp (register_handler_i):

          Allow same handler to be registered with a different event,
          which is consistent with the other reactor implementations.

Tue Aug  3 13:04:24 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * ace/Svc_Handler.h:
        * ace/Svc_Handler.cpp:
          Add throw() exception specifier to no-throw version of class
          local operator new.  In addition to squelching warnings from
          gcc, this tells the compiler to check the return value before
          constructing the object.

Tue Aug  3 08:55:37 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * ace/Condition_Recursive_Thread_Mutex.cpp:
        * ace/Functor.inl:
        * ace/config-borland-common.h:
        * ace/config-g++-common.h:
        * ace/config-hpux-11.00.h:
        * ace/config-lite.h:
        * ace/config-lynxos.h:
        * ace/config-sunos5.5.h:
        * ace/config-tandem-nsk-mips-v2.h:
        * ace/config-win32-ghs.h:
          Remove vestigial traces of ACE_TEMPLATE_METHOD_SPECIALIZATION.

Tue Aug  3 14:42:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Containers_T.cpp:
          Fixed incorrect trace macro

Tue Aug  3 08:22:10 2004  Douglas C. Schmidt  <schmidt@cs.wustl.edu>

        * ace/config-aix-5.x.h:
          ace/OS_NS_dirent.inl (readdir_r): Added support for AIX and G++.
          Thanks to Raz Ben-Yehuda <raz.b@corigin.com>.

Tue Aug  3 11:56:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/msvc_static_order.lst:
          Updated location of TAO vc6 static project files

Tue Aug  3 06:19:06 2004  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/config/acedefaults.mpb:

          Added macros in a specific section for the bmake project type.

Tue Aug  3 07:07:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/MakeProjectCreator/modules/BorlandProjectCreator.pm:
        * bin/MakeProjectCreator/templates/bor.mpd:
          Updated Borland templates to handle resource files in
          subdirectories, this is needed for the moving of the mpc
          files in TAO. Thanks to J.T. Conklin for making these
          patches.

Mon Aug  2 15:33:27 2004  Steve Huston  <shuston@riverace.com>

        * ace/Containers_T.cpp (ACE_Fixed_Set_Iterator::remove()): Had to
          qualify 'iterated_items_' with 'this->' to make it visible in this
          class now that iterated_items_ is in an inherited class. This per
          HP-UX aC++, citing [temp.dep], 14.6.2(3) in the C++ Standard.

Mon Aug  2 15:20:37 2004  Steve Huston  <shuston@riverace.com>

        * apps/JAWS3/jaws3/Event_Result.h: Added #include
          "ace/os_include/os_stddef.h" to pick up size_t for platforms where
          it's not defined by the compiler, such as Cygwin. Thanks to
          Johnny Willemsen for reporting this.

Mon Aug  2 08:55:17 2004  Douglas C. Schmidt  <schmidt@cs.wustl.edu>

        * ace/Containers_T.h: The class ACE_Fixed_Set had some bugs in
          it's interface declaration and also some in it's implementation:
          1) typedef the wrong class for is constant iterator and
          2) its method size() misbehave in certain circumstances where
             elements were randomly deleted from a set object.
          Moreover, the iterators of ACE_Fixed_Set has a lot of code in
          common so the can be refactored to have a common abstract
          ancestor with all the shared code.  Therefore, refactored the
          three classes and fixed the bug on the size() method.  Thanks
          to J. Abelardo Gutierrez <jabelardo@cantv.net> for these fixes.

Mon Aug  2 09:06:39 2004  Steve Huston  <shuston@riverace.com>

        * ace/os_include/os_signal.h: Removed the #include os_time.h - it's
          not needed for anything in this header, and for some reason, it
          introduces a type oddity on HP-UX - aC++ gets the idea there's a
          tentative struct sigaction and doesn't match the real one, causing
          compile errors in ACE_OS::sigaction().

        * ace/OS_TLI.h: Removed stray '#'.

        * ace/Signal.{h inl}: Removed the hack typedef ACE_SIGACTION that
          was allegedly put in for an HP-UX C++ bug. It's not needed and is
          causing further problems. #include "ace/os_include/os_signal.h"
          to get the needed signal-related types.

        * apps/JAWS3/jaws3/Event_Result.h: Changed #include "ace/OS.h" to
          "ace/OS_NS_errno.h". Removing the "big hammer" OS.h stuff. This
          fixes a compile error in OS_TLI.inl on HP-UX w/ aC++. Why? I
          have no idea... there's something odd still about orders of
          includes and/or preprocessor defs or something. This odd compile
          error creeps up every once in a while and is always related to
          fudging something somewhere (see fix above for signal...) but
          this one doesn't have an apparant cause.

        * include/makeinclude/platform_hpux_aCC.GNU: Removed AREXTRA. It
          was breaking static lib builds.

Sun Aug  1 08:15:23 2004  J.T. Conklin  <jtc@acorntoolworks.com>

        * configure.ac:
          Moved subdirectory configuration above call to AC_OUTPUT.

        * ace/OS_Memory.h:
          Provide ACE_nothrow and ACE_nothrow_t definitions for platforms
          where definitions are not handled by special cases.

        * configure.ac:
        * m4/config_h.m4:
          Added check for ACE_HAS_NEW_NOTHROW.

Sun Aug  1 15:04:12 UTC 2004  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/QoS/qos.mpc:
          Also with bmake set macros += ACE_HAS_WINSOCK2_GQOS

        * ace/Select_Reactor_Base.h:
        * ace/Object_Manager_Base.cpp:
        * ace/Object_Manager.cpp:
        * ace/Global_Macros.h:
        * ace/Dev_Poll_Reactor.h:
          Doxygen improvements/fixes

        * ace/config-openvms.h:
          Removed commented out lines

        * ace/CDR_Stream.h:
          Changed to signature for the to_string methods from char to
          ACE_CDR::char so that they match the implementation

Sun Aug  1 09:07:16 2004  Balachandran Natarajan  <bala@dre.vanderbilt.edu>

        * ChangeLogs/ChangeLog-04a:

          Moved contents from this file to a new file.

Sat Jul 31 17:01:27 2004  Balachandran Natarajan  <bala@dre.vanderbilt.edu>

        * bin/generate_rel_manpages:

          This is now executed at tao.dre for generating doxygen
          documentation. The files are then scp'ed to the main website.

Sat Jul 31 11:13:20 2004  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * ACE version 5.4.2 released.

Local Variables:
add-log-time-format: current-time-string
End: