summaryrefslogtreecommitdiff
path: root/ChangeLog
blob: ab34a698c6114dc3509578236a64f9728d716a8d (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
Thu May 12 18:08:47 UTC 2011  Steve Huston  <shuston@riverace.com>

        * include/makeinclude/wrapper_macros.GNU: Added command settings for
          preprocessing C and C++ source files.

        * include/makeinclude/rules.local.GNU: Added rules to preprocess
          C and C++ files when directed.
        
          These allow one to now quickly produce a preprocessed version of
          a source file. Ala... make -f GNUmakefile.ACE ACE.i
          would preprocess ACE.cpp and put the result in ACE.i.

Fri Apr 29 14:01:29 UTC 2011  Steve Huston  <shuston@riverace.com>

        * tests/tests.mpc: For Message_Queue_Test add -bmaxdata:0x20000000 to
          linker options to extend the available data space at run time.
          Avoids the heap smashing the stacks.

Fri Apr 22 15:19:29 UTC 2011  Steve Huston  <shuston@riverace.com>

        * include/makeinclude/platform_aix_ibm.GNU: Add support for XL C++ 11.

Wed Mar 16 12:08:36 UTC 2011  Steve Huston  <shuston@riverace.com>

        * ace/config-aix-7.h: New config for AIX 7.

Thu Mar 10 16:42:09 UTC 2011  Steve Huston  <shuston@riverace.com>

        * ace/ace.mpc: Add OS.h to the Headers to be installed. Thanks to
          Phil Mesnier for pointing this out.

Wed Mar  9 19:14:01 UTC 2011  Steve Huston  <shuston@riverace.com>

        * ace/OS.h: Re-added OS.h due to popular demand. It's been slimmed down
          from its pre-ACE 6 days, now including primarily the OS_NS_*.h files
          which can be disabled by setting the preprocessor macro
          DO_NOT_INCLUDE_OS_H before including OS.h.
          This file is here to maintain backwards build compatibility with
          older ACE versions. Using it will slow your compile time over
          simply including the requisite OS_NS_*.h file(s).

Tue Jan 25 15:17:58 UTC 2011  Steve Huston  <shuston@riverace.com>

        * bin/MakeProjectCreator/config/acemfcexe.mpb: The SubSystem value
          for "Windows" on VC10 is "Windows", not "2" as it is for VC8-9.

Mon Feb 28 20:29:59 UTC 2011  Steve Huston  <shuston@riverace.com>

        * examples/ASX/Event_Server/Event_Server/Event_Analyzer.cpp:
        * examples/ASX/UPIPE_Event_Server/Event_Analyzer.cpp: Replaced the
          name "mod_name" with "module_name" to avoid a clash with macro
          defined in /usr/include/sys/stropts.h encountered when optimized
          build was done.

Mon Feb 28 18:10:19 UTC 2011  Steve Huston  <shuston@riverace.com>

        * include/makeinclude/platform_aix_ibm.GNU: Remove the -qfuncsect
          option from CCFLAGS; it caused an occasional odd problem and the
          only reason it was added (Jul 17 2002) was to try and remove
          duplicate symbol diagnostics from template instantiations.
          Thanks to Phil Mesnier for raising this issue and identifying
          the fix.

Mon Feb 21 16:19:49 EST 2011  Steve Huston  <shuston@riverace.com>

	* ACE version 6.0a released.

Tue Feb  1 14:28:18 UTC 2011  Steve Huston  <shuston@riverace.com>

        * ace/String_Base.cpp (operator+=): Add a temporary for the return
          value to quiet an IBM XL C++ 10 optimizer warning about returning
          the address of a temporary. No, I'm not kidding.

Wed Jan 26 20:17:28 UTC 2011  Steve Huston  <shuston@riverace.com>

        * include/makeinclude/platform_aix_ibm.GNU: If XL C/C++ 10.1 is used,
          use the same compiler options as for XL C/C++ 9.

Fri Jan 21 17:04:29 UTC 2011  Steve Huston  <shuston@riverace.com>

        * ace/config-hpux-11.00.h: Set ACE_LACKS_(STR|WCS)TO[U]LL when
          the requisite long-long compiler settings are missing. Enables
          use of these functions when they're available.

        * m4/ace_func.m4: Remove the parts of ACE_FUNC_WCSTOLL and
          ACE_FUNC_WCSTOULL that set ACE_LACKS_*_PROTOTYPE. The use of
          the ACE_LACKS_*_PROTOTYPE was removed from ACE code in
          Thu Jan 20 11:42:53 UTC 2010  Martin Corino  <mcorino@remedy.nl>
          plus, it's wrong. The functions (at least on HP-UX, which seems
          to center on the issue here) are available when needed via a
          #pragma extern, which effectively inlines the code from the
          compiler. Adding a prototype is the wrong thing to do in this
          case.

        * m4/compiler.m4: Add -ext to aCC's options. Turns on long-long.

        * include/makeinclude/platform_hpux_aCC.GNU: Remove all the specific
          macro setting to try and select particular threading features and
          Rogue Wave libs. Use -mt and be done with it. -mt does the right
          thing wrt RW and preprocessor feature macros based on the -AA/-AP
          options. Also add -ext to turn on long-long.

Fri Jan 21 00:15:19 UTC 2011  Steve Huston  <shuston@riverace.com>

        * bin/MakeProjectCreator/config/acemfcexe.mpb: New base project
          that sets the proper subsystem and macros for an MFC app.

        * tests/ACE_Init_Test.ico:
        * tests/ACE_Init_Test.rc:
        * tests/ACE_Init_Test_Resource.h: Modernized resource defs to let
          ACE_Init_Test build and run properly.

        * tests/tests.mpc: Added the rest of the needed files for ACE_Init_Test
          and made it require mfc; base it off acemfcexe (new, above).

Mon Jan 17 20:47:01 UTC 2011  Steve Huston  <shuston@riverace.com>

        * ace/Asynch_Acceptor.cpp (handle_accept): If the new handler has
          already set its own proactor pointer, don't reset it. Fixes
          Bugzilla #3947.

Wed Jan  5 23:10:05 UTC 2011  Steve Huston  <shuston@riverace.com>

        * tests/Bug_2610_Regression_Test.cpp: Fixed a bunch of ACE_ERROR
          statements to log the actual error cause; also fixed for IPv6.

Wed Dec 29 16:10:21 UTC 2010  Steve Huston  <shuston@riverace.com>

        * ace/SOCK_Stream.h: Noted that the timeout on the counted send/recv
          methods applies per operation, restarting on retries, not to the
          overall set of retries.

Tue Dec 14 13:13:17 CET 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ACE version 6.0.0 released.

Wed Dec  8 09:36:00 UTC 2010  Martin Corino <mcorino@remedy.nl>

        * ace/Configuration.cpp:
          Fixed uninitialized use warning.
          
Tue Dec  7 23:07:27 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/Bug_3878_Regression_Test.cpp:
          Fixed problem in single threaded build

Tue Dec  7 23:04:14 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/Bug_3539_Regression_Test.cpp:
          Fixed problem in single threaded build

Tue Dec  7 15:52:02 UTC 2010  Steve Huston  <shuston@riverace.com>

        * tests/Atomic_Op_Test.cpp: For platforms w/o built-in atomic op
          support, run fewer iterations of the test loop. Those platforms
          sometimes time out during regression tests. This was a problem
          with Riverace's PA-RISC box so if this change causes problems
          otherwise, please let me know.

Mon Dec  6 15:59:52 UTC 2010  Adam Mitz  <mitza@ociweb.com>

        * bin/make_release.py:

          Enabled the calls to update_latest_tag() now that the bug in that
          functions has been fixed in:
          Tue Sep 14 16:42:26 UTC 2010  Adam Mitz  <mitza@ociweb.com>

Sat Dec  4 14:25:26 UTC 2010  Steve Huston  <shuston@riverace.com>

        * ace/ACE.cpp (timestamp):
        * ace/Log_Msg.cpp (log):
        * ace/Log_Msg_UNIX_Syslog.cpp (log):
        * ace/Log_Record.cpp (format_msg):
        * examples/Misc/test_timestamp.cpp: Cleanups, correcting buffer sizes
          from old 35-char length to 27 based on new timestamp format. Thanks
          to Thomas Lockhart for these.

Thu Dec  2 18:29:36 UTC 2010  Steve Huston  <shuston@riverace.com>

        * ace/ACE.{h cpp} (timestamp): Changed the format produced from
          ACE::timestamp() from ctime-ish "Day Mon dd hh:mm:ss yyyy" to
          ISO-8601 yyyy-mm-dd hh:mm:ss.mmmmmm. Thank you to Thomas
          Lockhart for this fix. Resolves Bugzilla #3210.
          Also fixed up the doxygen comments related.

        * ace/Log_Record.cpp (format_msg): VERBOSE[_LITE] timestamp also
          changed to ISO-8601 format but uses 3 decimal places after secs.

        * NEWS: Described above change for users.

Mon Nov 29 17:20:47 UTC 2010  Jeff Parsons <j.parsons@vanderbilt.edu>

        * THANKS:

          Added Shi John <John dot Shi at acxiom dot com>.

Fri Nov 26 17:36:10 UTC 2010  Steve Huston  <shuston@riverace.com>

        * ace/os_include/os_pthread.h: Removed the #defines for
          PTHREAD_CANCEL_{ENABLE, DISABLE, DEFERRED, ASYNCHRONOUS}. They
          were breaking the LynxOS build (LynxOS sets these via enum, not
          macro). If a platform doesn't have these symbols then the
          ACE_LACKS_PTHREAD_CANCEL config setting should be used to avoid
          code that references them.

Thu Nov 25 12:17:31 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/OS_NS_unistd.h:
        * ace/OS_NS_unistd.cpp:
          Removed not enabled ftruncate workaround

        * ace/Env_Value_T.h:
          Doxygen change

        * ace/OS_NS_sys_utsname.cpp:
        * ace/OS_NS_sys_wait.cpp:
        * ace/OS_NS_time.cpp:
        * ace/OS_NS_wchar.cpp:
          Layout changes

Tue Nov 23 23:20:07 UTC 2010  Steve Huston  <shuston@riverace.com>

        * ace/os_include/os_pthread.h: Give definite values to THR_CANCEL_*
          flags - using the PTHREAD_CANCEL_* values gives the THR_CANCEL_*
          options overlapping bits making it impossible to distinguish them.

        * ace/Base_Thread_Adapter.{h, cpp}:
        * ace/OS_NS_Thread.cpp (thr_create):
        * ace/OS_Thread_Adapter.{h, cpp}:
        * ace/Thread_Adapter.{h, cpp}:
        * ace/Thread_Manager.cpp (spawn):
          Added a member in the thread adapters to carry the cancel flags
          through to the spawned thread. In the spawned thread, check the
          cancel-related flags and act on them if set. This enables proper
          support for spawning threads with the THR_CANCEL_* flags as
          documented.

        * ace/OS_NS_Thread.{h inl} (thr_setcancelstate, thr_setcanceltype):
          Map the THR_CANCEL_* values to PTHREAD_CANCEL_* values on both
          sides of the pthread call. Makes this API portable across OSes
          in case cancel support is ever added anywhere else.
          Added comments for doxygen to pick up explaining this.

        * tests/Thread_Attrs_Test.cpp: Added test cases for spawning threads
          with various cancel settings.

          Resolves Bugzilla #3932.

Fri Nov 19 18:55:58 UTC 2010  Jeff Parsons <j.parsons@vanderbilt.edu>

        * THANKS:

          Added Wendsomde Yameogo <wendsomde at yameogo dot com>.

Fri Nov 19 15:46:07 UTC 2010  Vladimir Zykov  <vladimir.zykov@prismtech.com>

        * include/makeinclude/platform_g++_common.GNU:
          Attempted to fix compile problems with using tao_idl3_to_xmi
          in cross builds.

Wed Nov 17 09:29:42 UTC 2010  Vladimir Zykov  <vladimir.zykov@prismtech.com>

        * apps/gperf/src/Key_List.cpp:
          Fixed memory leaks.

Mon Nov 15 12:58:26 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/Malloc_Test.cpp:
          Use ACE_auto_ptr_reset

Mon Nov 15 12:41:22 UTC 2010  Steve Huston  <shuston@riverace.com>

        * protocols/ace/INet/inet.mpc: Renamed 2nd instance of http_simple_wget
          to be slightly different in ssl case - prevents name clash when
          regenerating automake files.

Mon Nov 15 12:29:51 UTC 2010  Steve Huston  <shuston@riverace.com>

        * m4/ace.m4: Restored TAO-related conditionals; there's no way to set
          them to true, but they're referred to in many Makefile.ams so
          the conditional needs to be there.
          Also added enable/disable for protocols/ace/INet.

Mon Nov 15 09:40:48 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * Makefile.am:
          Zap TAO as directory

        * ACEXML/common/XML_Types.h:
        * ace/Auto_Ptr.h:
        * ace/Basic_Types.h:
        * ace/OS_NS_Thread.cpp:
        * ace/Obchunk.cpp:
        * ace/Object_Manager.cpp:
        * ace/Object_Manager_Base.cpp:
        * ace/Proactor.h:
        * ace/SOCK_Dgram.h:
        * ace/SOCK_Dgram.inl:
        * ace/SOCK_Dgram_Mcast.h:
        * ace/SOCK_Dgram_Mcast.cpp:
        * ace/SString.h:
        * ace/SString.cpp:
        * ace/Thread_Exit.cpp:
        * ace/Timer_List.h:
        * ace/config-lite.h:
        * apps/JAWS/clients/Caching/Locator_Request_Reply.cpp:
        * apps/JAWS/clients/Caching/URL_Properties.h:
        * apps/JAWS/clients/Caching/URL_Properties.inl:
        * apps/JAWS/clients/Caching/URL_Properties.cpp:
          Clean of deprecated define ACE_USHORT16 and ACE_AUTO_PTR_RESET

        * configure.ac:
          Updated support address

Wed Nov 10 18:12:41 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Makefile.am:
        * ace/ace.mpc:
        * ace/ace_for_tao.mpc:
          Updated for removed file

        * ace/Strategies.h:
          Removed this file, was for backwards compatibility but had an invalid
          include in it. Thanks to Helmut Böing for reporting this

Wed Nov 10 14:49:57 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/SOCK_Dgram_Mcast.h:
          Doxygen changes

        * configure.ac:
        * m4/ace.m4:
        * m4/tao.m4:
          Removed support for TAO, thanks to Mark <markg85 at gmail dot com>
          for reporting this

Wed Nov 10 10:17:27 UTC 2010  Vladimir Zykov  <vladimir.zykov@prismtech.com>

        * bin/MakeProjectCreator/templates/gnu.mpd:
          Added support for tao_idl3_to_xmi in makefiles.

Sun Nov  7 00:13:13 UTC 2010  Steve Huston  <shuston@riverace.com>

        * tests/INET_Addr_Test.cpp: Mismatching the addr->name test is not
          necessarily an error.

Fri Nov  5 14:23:26 UTC 2010  Steve Huston  <shuston@riverace.com>

        * include/makeinclude/rules.local.GNU: Added a hook for users to
          include site-private rules in a build. If the user places a
          "rules.private.GNU" in any build directory it will get included
          from rules.local.GNU. The "private_rules_file" make variable
          can be set to override the name and/or location of the file.
          If no such rules file exists, its absence is silently ignored.
          This facility can be used, for example, to integrate a specialized
          code checker into the build process.

        * NEWS: Describe this new hook.

Fri Nov  5 00:29:08  2010  Steve Huston  <shuston@riverace.com>

        * ace/Process_Manager.h: Removed remaining references to reap().
          Noted that terminate() doesn't remove the process entry, and the
          caller is advised to also call wait() or remove().

Thu Nov  4 15:17:51 UTC 2010  Steve Huston  <shuston@riverace.com>

        * ace/INET_Addr.cpp (set): For platforms that have the GNU-extended
          gethostbyname2_r() function, use it instead of getaddrinfo() for
          a IPv6 hostname lookup. Customer reports that it getaddrinfo() is
          hugely slower than gethostbyname2 on large vlans. The alternate
          code is used if ACE_HAS_GETHOSTBYNAME2 is set in config.h.
          (This is a revised fix from Tue Nov  2 00:18:34 UTC 2010)

        * tests/INET_Addr_Test.cpp: Add some IPv6 address and name lookups.

Tue Nov  2 13:26:56 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/ATM_Stream.inl:
        * ace/Atomic_Op.inl:
        * ace/Atomic_Op_GCC_T.inl:
          Layout changes

        * ace/OS_NS_dlfcn.inl:
          Removed old code

        * ace/config-macros.h:
          When using ACE_HAS_VALGRIND, disable the dlclose functionality,
          valgrind needs to have all loaded dll's still in memory in order
          to show the full callstack, if the dll is unloaded before process
          shutdown valgrind will show ???

        * ace/os_include/os_dlfcn.h:
          Removed old defines

        * debian/TODO:
        * debian/debian.rules:
          Cleanup

        * debian/cmp-installation.sh:
          Removed this file.

Tue Nov  2 01:25:05 UTC 2010  Douglas C. Schmidt  <schmidt@dre.vanderbilt.edu>

        * ace/Log_Msg.cpp (ACE_Log_Msg::log): Added

          ACE_OS::memset(format,'\0',128);

          to ensure the format string has known values.  Thanks to Chad
          Beaulac <chad dot beaulac at objectivesolutions dot com> for
          this suggestion.  This fixes bugid 3923.

Tue Nov  2 00:18:34 UTC 2010  Steve Huston  <shuston@riverace.com>

        * ace/INET_Addr.cpp (set): For platforms that have the GNU-extended
          gethostbyname2_r() function, use it instead of getaddrinfo() for
          a IPv6 hostname lookup. Customer reports that it getaddrinfo() is
          hugely slower than gethostbyname2 on large vlans. The alternate
          code is used if ACE_HAS_GETHOSTBYNAME2 is set in config.h.

        * configure.ac: Check for ACE_HAS_GETHOSTBYNAME2.

Mon Nov  1 15:03:05 UTC 2010  Steve Huston  <shuston@riverace.com>

        * ace/Reactor.h: Clarified some behavior descriptions related to
          timer expiry behavior and return value from handle_timeout().

Mon Nov  1 14:57:11 UTC 2010  Adam Mitz  <mitza@ociweb.com>

        * ace/OS_NS_sys_mman.inl:

          For 64-bit Windows, pass the high 32 bits of ACE_OS::mmap()'s "len"
          parameter as the 3rd parameter to CreateFileMapping(), which was
          previously hard-coded to zero.  This both avoids a warning and also
          enables the user to pass a value > MAX_INT as the maximum size.

Mon Nov  1 07:18:43 UTC 2010  Olli Savia  <ops@iki.fi>

        * ace/config-linux-common.h:
          Reverted some of changes in previous commit which
          were accidentally cheked in.

Sun Oct 31 10:14:10 UTC 2010  Olli Savia  <ops@iki.fi>

        * ace/config-linux-common.h:
          Removed some legacy GLIBC 1.x related settings.

Sat Oct 30 10:09:47 UTC 2010  Olli Savia  <ops@iki.fi>

        * ace/config-linux-common.h:
          Removed some legacy settings.

Fri Oct 29 14:33:33 UTC 2010  Olli Savia  <ops@iki.fi>

        * include/makeinclude/platform_g++_common.GNU:
          Removed GCC 2.x support.

Thu Oct 28 17:45:10 UTC 2010  Steve Huston  <shuston@riverace.com>

        * ace/INET_Addr.cpp (set): Corrected ACE_HAS_IPV6 checks made in
          Wed Oct 27 22:16:12 UTC 2010  Steve Huston  <shuston@riverace.com>.

Thu Oct 28 11:40:01 UTC 2010  Vladimir Zykov  <vladimir.zykov@prismtech.com>

        * bin/make_release.py:
          Fixed incorrect spelling of DANCE.

Thu Oct 28 11:18:12 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/make_release.py:
          Fixed generation of dsc file

Thu Oct 28 07:38:47 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Array_Map.h:
        * ace/Array_Map.cpp:
        * ace/Auto_Functor.h:
        * ace/Auto_Functor.inl:
        * ace/Value_Ptr.h:
        * ace/config-g++-common.h:
        * ace/config-win32-msvc-8.h:
        * performance-tests/Misc/test_singleton.cpp:
          Cleanup because GCC < 3 isn't supported anymore

        * include/makeinclude/platform_hpux_aCC.GNU:
          aCC 3.31 isn't supported anymore for a long time

Thu Oct 28 07:08:00 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * examples/APG/Logging/Trace_Return.cpp:
        * examples/APG/Logging/Wrap_Macros.cpp:
          Fixed compile errors

Wed Oct 27 22:16:12 UTC 2010  Steve Huston  <shuston@riverace.com>

        * ace/INET_Addr.cpp (set): When looking up a hostname, always use
          gethostbyname() for IPv4 requests, even if IPv6 is available.
          getaddrinfo() (used when IPv4 and 6 are both available) is hugely
          slower than gethostbyname() in large vlan environments. Note that
          even though gethostbyname() can grok IPv6 on Linux, it can't
          anywhere else, so I avoided trying to go that route.

Wed Oct 27 19:35:09 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * debian/libace-5.8.3.docs:
        * rpmbuild/ace-tao.spec:
          FAQ got removed

Wed Oct 27 17:47:55 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-g++-common.h:
        * examples/APG/Logging/Trace.h:
        * examples/APG/Logging/Trace_Return.cpp:
        * examples/APG/Logging/Wrap_Macros.cpp:
          Removed support for GCC < 3

Wed Oct 27 17:40:19 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * docs/Download.html:
          Make x.8.3 available for download

        * debian/ace.dsc:
          Updated size and md5

        * rpmbuild/ace-tao.spec:
          Corrected executable names

Wed Oct 27 12:29:47 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * etc/index.html:
          Added x.8.3

        * bin/diff-builds-and-group-fixed-tests-only.sh:
          Updated for x.8.3

        * bin/make_release.py:
          Generate spaces and removed some not needed excludes

        * bin/generate_rel_manpages:
          Print a message when we are ready

Wed Oct 27 10:38:47 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ChangeLog:
        * NEWS:
          Updated for next release

Wed Oct 27 12:01:05 CEST 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

       * ACE version 5.8.3 released.

Tue Oct 26 11:21:35 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/diff-builds-and-group-fixed-tests-only.sh:
          Fixed DANCE_ROOT, could cause problems with the test stats email

Mon Oct 25 21:01:02 UTC 2010  Olli Savia  <ops@iki.fi>

        * NEWS:
          Updated.

Mon Oct 25 14:07:15 UTC 2010  Phil Mesnier  <mesnier_p@ociweb.com>

        * ace/Service_Gestalt.cpp:
          Another fix to error processing behavior. If the result of
          process_directives() was > 0, that value was replaced by the
          result of process_commandline_directives(), which is contrary to
          the expected behavior. Now the result is the sum of these to
          return values, unless either returns -1, then the result is just
          -1.

Mon Oct 25 06:30:35 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Atomic_Op_T.h:
        * ace/Auto_IncDec_T.h:
          Doxygen changes

Sun Oct 24 12:35:28 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Event_Handler.h:
        * ace/Reactor.h:
        * ace/Reactor_Notification_Strategy.h:
        * ace/Read_Buffer.h:
        * ace/Registry_Name_Space.h:
        * ace/Remote_Tokens.h:
          Doxygen changes

Fri Oct 22 11:19:33 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Reactor.h:
          Doxygen changes

Thu Oct 21 11:10:56 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/ACE.cpp:
        * ace/FILE_IO.h:
        * ace/Free_List.h:
        * ace/Handle_Set.h:
        * ace/Log_Msg.h:
        * ace/WIN32_Asynch_IO.h:
          Doxygen changes

Wed Oct 20 18:19:51 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/fuzz.pl:
          If we just see dollarIddollar we trigger an error, svn:keywords is
          than lacking

Wed Oct 20 16:07:09 UTC 2010  Steve Huston  <shuston@riverace.com>

        * ace/Timer_Queue_Adapters.cpp (ACE_Thread_Timer_Queue_Adapter::svc):
        * ace/Timer_Queue_T.cpp (expire):
          Temporarily release and reacquire the mutex around timer dispatch.
          This prevents a deadlock on user code with multiple threads doing
          timer-related operations.

Wed Oct 20 09:22:46 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/MakeProjectCreator/config/global.features:
          Add nddsmonitor as default to 0

Wed Oct 20 09:19:25 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Log_Msg.h:

        * bin/MakeProjectCreator/config/global.features:

        * tests/Time_Value_Test.cpp:

Tue Oct 19 18:11:57 UTC 2010  Olli Savia  <ops@iki.fi>

        * ace/Caching_Utility_T.cpp:
          Added missing include.

Tue Oct 19 09:44:45 UTC 2010  Olli Savia  <ops@iki.fi>

        * ace/Caching_Utility_T.cpp:
          Use ACE::is_equal() to compare floating point values.

Fri Oct 15 10:18:05 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/Bug_3911_Regression_Test.cpp:
          Fixed warning

Thu Oct 14 18:29:35 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/run_test.lst:
        * tests/tests.mpc:
          3911 doesn't work with ace_for_tao

Thu Oct 14 13:15:00 UTC 2010  Martin Corino  <mcorino@remedy.nl>

        * ace/Process.h:
        * ace/Process.cpp:
          Changes to allow to dynamically define the max. number of cmdline args.
          The tao_idl compiler was running out of room in certain instances and
          the static max was very conservative.

Thu Oct 14 09:38:00 UTC 2010  Martin Corino  <mcorino@remedy.nl>

        * tests/Bug_3911_Regression_Test.cpp:
          Wchar build fixes.

Wed Oct 13 08:24:00 UTC 2010  Martin Corino  <mcorino@remedy.nl>

        * tests/Bug_3911_Regression_Test.cpp:
          Wchar build fixes.

Wed Oct 13 06:15:00 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Framework_Component.h:
        * ace/Framework_Component.inl:
        * ace/Framework_Component.cpp:
        * ace/Framework_Component_T.h:
          Use ACE_Copy_Disabled, change c-style cast to const cast, use
          sync macros instead of ACE_MT. Thanks to Ranjit Hande
          <hande at avaya dot com> for reporting the c-style cast warnings

        * tests/Framework_Component_Test.h:
          Layout change

Tue Oct 12 21:12:51 UTC 2010  Adam Mitz  <mitza@ociweb.com>

        * bin/DependencyGenerator/GNUObjectGenerator.pm:

          Fixed incorrect Perl regex escaping from my previous commit.

Tue Oct 12 11:41:00 UTC 2010  Martin Corino  <mcorino@remedy.nl>

        * tests/Bug_3911_Regression_Test.cpp:
          Fuzz fixes.

Tue Oct 12 08:06:00 UTC 2010  Martin Corino  <mcorino@remedy.nl>

        * tests/Bug_3911_Regression_Test.cpp:
        * tests/run_test.lst:
        * tests/tests.mpc:
          Added reproducer test for Bugzilla #3911.

Mon Oct 11 16:31:12 UTC 2010  Adam Mitz  <mitza@ociweb.com>

        * bin/DependencyGenerator/GNUObjectGenerator.pm:

          If the source file contains '../', remove the directory part from
          the name of the object file (see gnu.mpd:383 OBJS make variable).

Mon Oct 11 11:53:43 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Dev_Poll_Reactor.cpp:
        * ace/Select_Reactor_T.cpp:
          Fixed problems with threads=0, thanks to Elez <elezsh at gmail dot com>
          for reporting this and providing a patch

Fri Oct  8 11:19:44 UTC 2010  Olli Savia  <ops@iki.fi>

        * protocols/ace/RMCast/Flow.cpp:
          Added missing include.

Fri Oct  8 08:42:37 UTC 2010  Olli Savia  <ops@iki.fi>

        * ace/config-linux-common.h:
        * ace/os_include/os_unistd.h:
        * configure.ac:
        * m4/config_h.m4:
          Removed references to ACE_LACKS_PREAD_PROTOTYPE. It is no
          longer used.

Fri Oct  8 08:20:04 UTC 2010  Olli Savia  <ops@iki.fi>

        * ace/OS_NS_stdio.inl:
        * ace/README:
        * tests/OS_Test.cpp:
          Removed references to ACE_LACKS_RENAME. It is no
          longer used.

Fri Oct  8 07:51:46 UTC 2010  Olli Savia  <ops@iki.fi>

        * ace/config-integritySCA.h:
          Removed references to ACE_LACKS_IPC_H. It is no
          longer used.

Fri Oct  8 07:48:38 UTC 2010  Olli Savia  <ops@iki.fi>

        * ace/README:
          Removed references to ACE_LACKS_IOSTREAMS_TOTALLY. It is no
          longer used.

        * ace/os_include/os_stropts.h:
          Fixed typo.

Fri Oct  8 07:42:26 UTC 2010  Olli Savia  <ops@iki.fi>

        * ace/OS_NS_stdio.h:
        * ace/OS_NS_stdio.inl:
        * ace/README:
        * ace/Svc_Conf_Lexer.cpp:
          Removed references to ACE_LACKS_CLEARERR. It is no
          longer used.

Fri Oct  8 06:58:56 UTC 2010  Olli Savia  <ops@iki.fi>

        * protocols/ace/RMCast/Flow.cpp:
        * tests/CDR_Array_Test.cpp:
        * tests/CDR_File_Test.cpp:
        * tests/CDR_Test.cpp:
        * tests/Upgradable_RW_Test.cpp:
          Use ACE::is_equal() to compare floating point values.

Thu Oct  7 12:34:20 UTC 2010  Olli Savia  <ops@iki.fi>

        * ASNMP/tests/Counter64_Test.cpp:
        * ace/ETCL/ETCL_Constraint.cpp:
        * ace/Monitor_Control/CPU_Load_Monitor.cpp:
          Use ACE::is_equal() to compare floating point values.

Tue Oct  5 07:23:19 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ACE-INSTALL.html:
        * COPYING:
          Small updates

        * docs/ACE-porting.html:
          Updated links

        * include/makeinclude/wrapper_macros.GNU:
          Added support for valgrind=1

Mon Oct  4 19:55:33 UTC 2010  William R. Otte  <wotte@dre.vanderbilt.edu>

        * bin/make_release.py:

          Updates.

Mon Oct  4 12:32:02 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/LSOCK_Stream.h:
          Doxygen changes

        * ace/Makefile.am:
          Removed zapped file

        * include/makeinclude/platform_sunos5_sunc++.GNU:
          Removed SUN_CC_HAS_PVFC_BUG, this got added 8 years ago and is
          used for any SunCC compiler version. If some old SunCC compiler breaks
          we can readd this flag for just that compiler version

Fri Oct  1 16:00:51 UTC 2010  William Otte  <wotte@zifnab>

        * COPYING:

          Updated to include DAnCE.

Fri Oct  1 11:55:23 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-g++-common.h:
        * ace/config-qnx-neutrino.h:
        * ace/config-qnx-rtp-common.h:
          Fixed redefinition warnings

        * ace/ace_for_tao.mpc:
          Zapped some files

        * ace/config-win32-common.h:
        * ace/config-win32-msvc.h:
        * ace/config-win32.h:
          Cleanup

        * ace/config-win32-ghs.h:
          Removed this file.

Thu Sep 30 10:49:38 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * debian/mpc-ace.install:
          Improved

        * docs/bczar/bczar.html:
          Added DAnCE to doxygen instructions

Thu Sep 30 08:09:34 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/IOStream.h:
        * ace/config-g++-common.h:
        * ace/config-hpux-11.00.h:
        * ace/config-linux-common.h:
        * ace/config-mvs.h:
        * ace/config-sunos5.5.h:
        * ace/config-win32-borland.h:
        * ace/config-win32-cegcc.h:
        * ace/config-win32-dmc.h:
        * ace/config-win32-ghs.h:
        * ace/config-win32-mingw.h:
        * ace/config-win32-msvc.h:
          Cleanup, move g++ version defines to config-g++-common.h

Thu Sep 30 05:45:10 UTC 2010  Marcel Smit  <msmit@remedy.nl>

        * NEWS:
        * ace/Cache_Map_Manager_T.h:
        * ace/Cache_Map_Manager_T.inl:
        * ace/Cache_Map_Manager_T.cpp:
        * ace/Cached_Connect_Strategy_T.h:
        * ace/Cached_Connect_Strategy_T.cpp:
        * ace/Caching_Strategies_T.h:
        * ace/Caching_Utility_T.cpp:
        * ace/Cleanup_Strategies_T.cpp:
        * ace/Hash_Cache_Map_Manager_T.h:
        * ace/Hash_Cache_Map_Manager_T.cpp:
        * ace/Map_T.h:
        * ace/Map_T.inl:
        * ace/Map_T.cpp:
        * ace/Pair_T.h:
        * ace/Pair_T.inl:
        * examples/Web_Crawler/URL_Visitor.h:
        * tests/Cache_Map_Manager_Test.cpp:
        * tests/Cached_Accept_Conn_Test.h:
        * tests/Cached_Conn_Test.cpp:
        * tests/Map_Manager_Test.cpp:
          Removed ACE_Pair from the ACE library.

Wed Sep 29 14:06:40 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Cache_Map_Manager_T.h:
        * ace/MEM_SAP.h:
        * ace/Metrics_Cache_T.h:
        * ace/Metrics_Cache_T.inl:
        * ace/Metrics_Cache_T.cpp:
          Doxygen changes

Wed Sep 29 12:19:17 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Caching_Utility_T.h:
        * ace/Caching_Utility_T.cpp:
          Use bool and ACE_Copy_Disabled

        * ace/Malloc_Base.h:
        * ace/Malloc_T.h:
          Typo fixes

Wed Sep 29 12:08:58 UTC 2010  Marijke Hengstmengel  <mhengstmengel@remedy.nl>

        * bin/MakeProjectCreator/config/global.features:
          Add ccm_noevent option, default 0, events in CCM are enabled.
          If set, events in CCM are disabled.

Tue Sep 28 18:48:58 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * apps/JAWS3/jaws3-todo:
          Removed, todo for years now

Tue Sep 28 18:16:52 UTC 2010  Adam Mitz  <mitza@ociweb.com>

        * performance-tests/TCP/tcp_test.cpp:

          If the 1st char of the host name is a digit, need to set the IP
          address and port as network byte order since that is what's
          returned from ACE_OS::inet_addr().

Tue Sep 28 11:34:05 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Asynch_Connector.cpp:
        * ace/Barrier.h:
        * ace/Barrier.cpp:
        * ace/Condition_Thread_Mutex.h:
        * ace/Condition_Thread_Mutex.inl:
        * ace/Containers_T.cpp:
        * ace/Functor.h:
        * ace/Functor.inl:
        * ace/IO_Cntl_Msg.cpp:
        * ace/Intrusive_List.cpp:
        * ace/Local_Tokens.inl:
        * ace/MEM_IO.cpp:
        * ace/MEM_Stream.h:
        * ace/MEM_Stream.inl:
        * ace/Malloc_T.inl:
        * ace/OS_NS_Thread.inl:
        * ace/OS_NS_string.inl:
        * ace/Object_Manager_Base.cpp:
        * ace/POSIX_Proactor.cpp:
        * ace/Ping_Socket.cpp:
        * ace/Signal.inl:
        * ace/Throughput_Stats.h:
        * ace/Throughput_Stats.cpp:
        * ace/Time_Value.cpp:
        * ace/Timer_Hash_T.cpp:
        * ace/Timer_Heap_T.cpp:
        * ace/Vector_T.h:
        * ace/Vector_T.cpp:
        * ace/config-linux-common.h:
          Removed code that was ifdefed out for years now

Tue Sep 28 08:31:37 UTC 2010  Vladimir Zykov  <vladimir.zykov@prismtech.com>

        * performance-tests/Misc/test_guard.cpp:
        * tests/ACE_Test.cpp:
        * examples/Reactor/TP_Reactor/client.cpp:
          Fixed compilation errors with missing includes.

Mon Sep 27 18:04:34 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/ACE.h:
        * ace/Thread.h:
        * ace/Thread_Adapter.h:
        * ace/Thread_Mutex.h:
          Doxygen changes

Mon Sep 27 14:47:47 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/String_Base.h:
          Doxygen changes

        * ace/Svc_Conf_Lexer.cpp:
          Const changes

        * bin/msvc_static_order.lst:
          Some updates, but this list is very outdated

Mon Sep 27 14:27:25 UTC 2010  Jeff Parsons <j.parsons@vanderbilt.edu>

        * THANKS:

          Added Matthew Waller <matthewrwaller at gmail dot com>

Mon Sep 27 14:08:11 UTC 2010  Vladimir Zykov  <vladimir.zykov@prismtech.com>

        * ace/Log_Msg.h:
        * ace/Log_Msg.cpp:
          Fixed compilation with ACE_HAS_DUMP. The later happens because
          ACE_Log_Msg depends on ACE_Atomic_Op and ACE_Atomic_Op needs
          ACE_DEBUG when ACE_HAS_DUMP is defined. This change moves
          include of ace/Atomic_Op.h from header to CPP file and adds
          forward declaration for ACE_Atomic_Op.

        * ace/Atomic_Op_T.cpp:
        * ace/Guard_T.cpp:
          Removed unnecessary this paramater when doing ACE_END_DUMP.

        * examples/Misc/test_dump.h:
        * examples/Threads/thread_specific.cpp:
          Fixed logging in these tests.

Mon Sep 27 11:24:02 UTC 2010  Vladimir Zykov  <vladimir.zykov@prismtech.com>

        * examples/C++NPv2/AIO_Client_Logging_Daemon.h:
          Another attempt to fix compile error.

Mon Sep 27 09:42:29 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/fuzz.pl:
          Enable export file check, use TAO_IDL to generate export files or
          remove the generated by line from the export file itself. Currently
          only for CIAO and DAnCE

Sat Sep 25 06:41:39 UTC 2010  Olli Savia  <ops@iki.fi>

        * ace/ACE.h:
          Modified ACE::is_equal() comment once again to make fuzz happy.

Fri Sep 24 14:52:44 UTC 2010  Steve Huston  <shuston@riverace.com>

        * ace/Pipe.{h inl cpp}: Added two new methods, close_read() and
          close_write() to close individual pipe handles. Refactored the
          original close() method to use these and factored out the actual
          closing code to a new inlined close_handle() method.

          Thanks to John Lilley <jlilley at datalever dot com> for this
          addition.

        * NEWS: Added description of the new methods.

Fri Sep 24 12:41:13 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ACE-INSTALL.html:
          Updated Remedy platforms

        * ACEXML/parser/parser/Parser.h:
        * ace/Containers_T.h:
        * ace/Containers_T.cpp:
        * ace/OS_NS_string.h:
        * ace/OS_NS_wchar.h:
        * apps/JAWS/clients/WebSTONE/src/nsapi-includes/base/shexp.h:
          Fixed typo

Fri Sep 24 12:32:44 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Containers_T.h:
        * ace/Containers_T.cpp:
        * ace/OS_NS_string.h:
        * ace/OS_NS_wchar.h:
          Fixed typo

Fri Sep 24 12:24:01 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ACE-INSTALL.html:
          Documented vc10, thanks to Paul Carter <pcarter at scires dot com>
          for reporting this.

Fri Sep 24 11:44:06 UTC 2010  Olli Savia  <ops@iki.fi>

        * ace/ACE.h:
          Adjusted ACE::is_equal() comment to make fuzz happy.

Fri Sep 24 09:35:00 UTC 2010  Vladimir Zykov  <vladimir.zykov@prismtech.com>

        * examples/C++NPv2/AIO_Client_Logging_Daemon.h:
          Removed code that is problematic for GCC 2.95.3 in a crossbuild
          for LynxOS 4.0.

Fri Sep 24 07:35:27 UTC 2010  Olli Savia  <ops@iki.fi>

        * ace/ACE.h:
          Added a simple helper ACE::is_equal() which compares equality of two
          objects without using operator==. This is useful for comparing floating
          point values.

        * tests/OS_Test.cpp:
          Use ACE::is_equal() instead of local copy.

Thu Sep 23 16:14:12 UTC 2010  Adam Mitz  <mitza@ociweb.com>

        * ace/SSL/ssl.mpc:
        * bin/MakeProjectCreator/config/pkgconfig.mpb:
        * bin/MakeProjectCreator/templates/gnu.mpd:
        * bin/ace_install_pkgconfig.pl:
        * include/makeinclude/rules.lib.GNU:
        * include/makeinclude/wrapper_macros.GNU:

          Added support for installing pkg-config (.pc) files as part of the
          gnuace "make install".  This includes a refactoring of how the
          shared library version numbers are set internally in the makefiles.

Thu Sep 23 12:32:05 UTC 2010  Vladimir Zykov  <vladimir.zykov@prismtech.com>

        * ace/Service_Gestalt.cpp:
          Fixed memory leak. Previously it could happen that svc_queue_ was
          allocated during processing of arguments but was not freed if
          application didn't call process_commandline_directives().

        * tests/Network_Adapters_Test.cpp:
          Removed non-ASCII character from the comments.

Wed Sep 22 18:42:25 UTC 2010  William R. Otte  <wotte@dre.vanderbilt.edu>

        * bin/msvc_mpc_auto_compile.pl:

          Updates for DAnCE.

Wed Sep 22 14:17:11 UTC 2010  Marcel Smit  <msmit@remedy.nl>

        * debian/Basic_Logging_Service.sgml:
        * debian/Event_Logging_Service.sgml:
        * debian/Notify_Logging_Service.sgml:
        * debian/RTEvent_Logging_Service.sgml:
          Renamed TAO orb services. See $TAO_ROOT/NEWS for details.

Wed Sep 22 14:06:25 UTC 2010  Marcel Smit  <msmit@remedy.nl>

        * debian/libtao-orbsvcs-1.8.2.install:
        * debian/libtao-orbsvcs-dev.install:
        * debian/tao-imr.install:
        * debian/tao-naming.install:
        * debian/tao-notify.install:
        * debian/tao-rtevent.install:
          Renamed TAO orb services. See $TAO_ROOT/NEWS for details.

Wed Sep 22 13:58:46 UTC 2010  Marcel Smit  <msmit@remedy.nl>

        * debian/tao-concurrency.install:
        * debian/tao-event.install:
        * debian/tao-ft.install:
        * debian/tao-ifr.install:
        * debian/tao-lifecycle.install:
        * debian/tao-load.install:
        * debian/tao-log.install:
        * debian/tao-scheduling.install:
        * debian/tao-time.install:
        * debian/tao-trading.install:
          Renamed TAO orb services. See $TAO_ROOT/NEWS for details.

Tue Sep 21 08:27:47 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ASNMP/agent/main.cpp:
          Fixed compile error

Mon Sep 20 13:24:56 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ASNMP/agent/agent.mpc:
        * ASNMP/agent/main.cpp:
          Enable for wchar, thanks to Christian Freund <freund at wrz dot de>
          for reporting this and providing a patch, fixes bugzilla 3889

        * ace/String_Base.h:
        * apps/JAWS3/http/HTTP_Service_Handler.h:
        * apps/JAWS3/small/SS_Service_Handler.h:
          Fixed typo in comment

        * ace/config-win32-borland.h:
          Some updates based on QC emails

        * debian/libtao-dev.install:
        * debian/mpc-ace.install:
          Fixed paths

Fri Sep 17 20:14:33 UTC 2010  Adam Mitz  <mitza@ociweb.com>

        * ace/FlReactor/ace_flreactor.mpc:
        * ace/FoxReactor/ace_foxreactor.mpc:
        * ace/QtReactor/ace_qt3reactor.mpc:
        * ace/QtReactor/ace_qt4reactor.mpc:
        * ace/TkReactor/ace_tkreactor.mpc:
        * ace/XtReactor/ace_xtreactor.mpc:

          Since these have been moved, the default install_dir isn't what we
          want.  Set the install_dir to ace/*Reactor.

Fri Sep 17 07:51:06 UTC 2010  Marcel Smit  <msmit@remedy.nl>

        * bin/fuzz.pl:
          Added Id check for cdp files.

Fri Sep 17 07:16:16 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Log_Msg.h:
        * ace/OS_Errno.cpp:
          Layout changes

        * ace/Malloc_T.h:
        * ace/Malloc_T.cpp:
        * ace/Map_Manager.inl:
        * ace/Map_Manager.cpp:
          Moved some methods inline

        * ace/OS_NS_signal.cpp:
          Fixed problem with versioned macros

Thu Sep 16 13:36:51 UTC 2010  Martin Corino  <mcorino@remedy.nl>

        * protocols/ace/INet/ClientRequestHandler.h:
        * protocols/ace/INet/URLBase.h:
        * protocols/ace/INet/HTTP_ClientRequestHandler.h:
           Changes to fix export problems with nested classes with MSVC 9.

Thu Sep 16 09:25:51 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/ace.mpc:
          Removed Service_Templates.h

Thu Sep 16 09:08:39 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * protocols/tests/HTBP/Send_Large_Msg/server.cpp:
        * protocols/tests/HTBP/ping/client.cpp:
          Added missing includes

Wed Sep 15 12:45:13 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Auto_Event.h:
        * ace/OS_NS_arpa_inet.inl:
        * ace/OS_NS_arpa_inet.cpp:
        * ace/OS_NS_errno.cpp:
        * ace/OS_NS_fcntl.cpp:
        * ace/OS_NS_math.cpp:
        * ace/OS_NS_pwd.inl:
        * ace/OS_NS_pwd.cpp:
        * ace/OS_NS_regex.inl:
        * ace/OS_NS_regex.cpp:
        * ace/OS_NS_signal.cpp:
        * ace/OS_NS_sys_resource.cpp:
        * ace/OS_NS_sys_wait.inl:
        * ace/OS_NS_wctype.inl:
        * ace/OS_NS_wctype.cpp:
        * ace/config-tandem.h:
        * ace/os_include/os_pthread.h:
        * ace/os_include/os_signal.h:
        * ace/os_include/sys/os_resource.h:
        * ace/os_include/sys/os_socket.h:
          Small cleanup and layout changes

Wed Sep 15 12:31:07 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * protocols/tests/HTBP/Reactor_Tests/server.cpp:
        * protocols/tests/HTBP/Send_Recv_Tests/server.cpp:
        * protocols/tests/HTBP/ping/server.cpp:
          Fixed solaris compile problems

Wed Sep 15 09:33:38 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/ace.mpc:
        * ace/ace_for_tao.mpc:
          Zapped removed files

        * docs/svn/config:
          Added another file type

Wed Sep 15 07:51:33 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/MakeProjectCreator/templates/gnu.mpd:
          Removed invalid comma, thanks to Frank Preischl
          <Frank dot Preischl at ids dot de> for reporting this and Olli Savia
          for correcting my initial patch

Tue Sep 14 18:18:36 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/ace.mwc:
          No need for a workspace with all projects in it

        * ace/ace_ce_dll.cfg:
          Removed this file, ancient and not used

Tue Sep 14 16:42:26 UTC 2010  Adam Mitz  <mitza@ociweb.com>

        * bin/make_release.py (update_latest_tag):

          Fixed a bug with the new DAnCE changes and changed the way it does
          the svn properties edits.  This function is still not called, but
          the calls are ready to be un-commented whenever the buildczar or
          release manager can re-enable this.

Tue Sep 14 13:00:44 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Log_Record.h:
        * ace/Log_Record.inl:
        * ace/Log_Record.cpp:
          Removed deprecated encode/decode methods

Tue Sep 14 12:05:19 UTC 2010  Steve Huston  <shuston@riverace.com>

        * examples/APG/Logging/Callback-3.h: Replaced use of deprecated
          ACE_Log_Record::encode() with CDR converter.

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

        * ace/FlReactor/ace_flreactor.mpc:
        * ace/FoxReactor/ace_foxreactor.mpc:
        * ace/QtReactor/ace_qt3reactor.mpc:
        * ace/QtReactor/ace_qt4reactor.mpc:
        * ace/TkReactor/ace_tkreactor.mpc:
        * ace/XtReactor/ace_xtreactor.mpc:
        * ace/ace_flreactor.mpc:
        * ace/ace_foxreactor.mpc:
        * ace/ace_qt3reactor.mpc:
        * ace/ace_qt4reactor.mpc:
        * ace/ace_tkreactor.mpc:
        * ace/ace_xtreactor.mpc:
          Moved these files to the subdirectory they need to be in

Tue Sep 14 11:40:39 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/Array.pl:
        * bin/Array_Helper:
        * bin/Hash_Map_Manager.pl:
        * bin/Hash_Map_Manager_Helper:
        * bin/vxworks_modify.pl:
          Removed these files, very old and will not work at all

        * bin/PythonACE:
        * bin/PythonACE/__init__.py:
        * bin/PythonACE/fuzz:
        * bin/PythonACE/fuzz/__init__.py:
        * bin/PythonACE/fuzz/_fuzz.py:
        * bin/PythonACE/fuzz/_generic_handler.py:
        * bin/PythonACE/fuzz/_mailer.py:
        * bin/PythonACE/fuzz/_path.py:
        * bin/PythonACE/fuzz/_singleton.py:
        * bin/PythonACE/fuzz/_types.py:
        * bin/PythonACE/fuzz/_warning_handler.py:
        * bin/PythonACE/fuzz/check_includes.py:
        * bin/PythonACE/fuzz/check_no_tabs.py:
        * bin/PythonACE/fuzz/cpp_inline.py:
        * bin/PythonACE/fuzz/inline.py:
        * bin/PythonACE/fuzz/math_include.py:
        * bin/PythonACE/fuzz/max_filename.py:
        * bin/PythonACE/fuzz/max_project_len.py:
        * bin/PythonACE/fuzz/newline.py:
        * bin/PythonACE/fuzz/no_conflict_markers.py:
        * bin/PythonACE/fuzz/noncvs.py:
        * bin/PythonACE/fuzz/ptr_arith_t.py:
        * bin/PythonACE/fuzz/refcountservantbase.py:
        * bin/PythonACE/fuzz/streams_include.py:
        * bin/PythonACE/fuzz/verify_changelog.py:
        * bin/fuzz.py:
          Deleted, fuzz is still perl, if we need a PythonACE later we can
          easily get this again from svn

Tue Sep 14 11:31:42 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/generate_doxygen.pl:
        * html/index.html:
          Removed ciao config handlers

Tue Sep 14 11:30:18 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/generate_doxygen.pl:
        * html/index.html:
          Removed pss

Tue Sep 14 09:41:06 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * debian/mpc-ace.install:
          Don't use environment variables

        * protocols/ace/HTBP/HTBP_Filter.h:
          Added missing includes

Tue Sep 14 09:36:06 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/make_release.py:
          Updated generation of dsc file

        * protocols/examples/RMCast/Send_Msg/Sender.cpp:
        * protocols/tests/RMCast/Sender.cpp:
        * tests/Based_Pointer_Test.cpp:
        * tests/SSL/Bug_2912_Regression_Test.cpp:
          Added missing includes

Mon Sep 13 18:15:27 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

          *:
          Zapped trailing whitespaces using
          find -name \*.h -o -name \*.cpp -name \*.inl | xargs perl -i -pe's/\s+\n/\n/'

Mon Sep 13 14:04:48 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        Reverted change below, not correct given new info from Adam

        Thu Sep  9 11:49:30 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/MakeProjectCreator/templates/gnu.mpd:
          Removed invalid comma, thanks to Frank Preischl
          <Frank dot Preischl at ids dot de> for reporting this

        * debian/debian.rules:
        * debian/mpc-ace.install:
          Improved

Mon Sep 13 09:25:22 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/generate_doxygen.pl:
          Updated for DAnCE move

        * ace/ETCL/ETCL_Constraint.cpp:
        * ace/ETCL/ETCL_l.cpp.diff:
        * ace/ETCL/ETCL_l.cpp:
        * ace/Makefile.am:
        * ace/Thread_Control.inl:
        * ace/ace.mpc:
        * ace/ace_for_tao.mpc:
        * apps/JAWS3/bench/average.cpp:
        * apps/JAWS3/bench/mkfiles.cpp:
        * apps/JAWS3/bench/rqfiles.cpp:
        * apps/JAWS3/http/HTTP_Data.h:
        * apps/JAWS3/http/HTTP_Service_Handler.h:
        * apps/JAWS3/http/HTTP_Service_Handler.cpp:
        * apps/JAWS3/http/HTTP_States.h:
        * apps/JAWS3/jaws3-todo/Reactive_Socket.h:
        * apps/JAWS3/jaws3-todo/Reactive_Socket_Helpers.h:
        * apps/JAWS3/jaws3-todo/Reactive_Socket_Helpers.cpp:
        * apps/JAWS3/jaws3-todo/Socket.h:
        * apps/JAWS3/jaws3/Concurrency_T.h:
        * apps/JAWS3/small/SS_Data.h:
        * apps/JAWS3/small/SS_Service_Handler.h:
        * apps/JAWS3/small/SS_Service_Handler.cpp:
        * apps/JAWS3/small/SS_State_DONE.h:
        * apps/JAWS3/small/SS_State_DONE.cpp:
        * apps/JAWS3/small/SS_State_ERROR.h:
        * apps/JAWS3/small/SS_State_ERROR.cpp:
        * apps/JAWS3/small/SS_State_PARSE.h:
        * apps/JAWS3/small/SS_State_PARSE.cpp:
        * apps/JAWS3/small/SS_State_READ.h:
        * apps/JAWS3/small/SS_State_READ.cpp:
        * apps/JAWS3/small/SS_State_WRITE.h:
        * apps/JAWS3/small/SS_State_WRITE.cpp:
        * apps/JAWS3/small/SS_Templates.cpp:
        * contrib/FaCE/FaCE.h:
        * examples/APG/Svc_Config/HA_Status_Dynamic.h:
        * examples/APG/Svc_Config/HA_Status_Static.h:
        * examples/Reactor/TP_Reactor/client.cpp:
        * examples/Reactor/TP_Reactor/server.cpp:
        * protocols/ace/HTBP/HTBP_Channel.cpp:
        * protocols/ace/HTBP/HTBP_Filter.h:
        * protocols/ace/HTBP/HTBP_Inside_Squid_Filter.cpp:
        * protocols/ace/HTBP/HTBP_Session.cpp:
        * protocols/ace/TMCast/Group.cpp:
        * protocols/examples/RMCast/Send_Msg/Sender.cpp:
        * protocols/tests/HTBP/Reactor_Tests/client.cpp:
        * protocols/tests/HTBP/Reactor_Tests/server.cpp:
        * protocols/tests/HTBP/Reactor_Tests/test_config.h:
        * protocols/tests/HTBP/Send_Large_Msg/client.cpp:
        * protocols/tests/HTBP/Send_Large_Msg/server.cpp:
        * protocols/tests/HTBP/Send_Recv_Tests/client.cpp:
        * protocols/tests/HTBP/Send_Recv_Tests/server.cpp:
        * protocols/tests/HTBP/ping/client.cpp:
        * protocols/tests/HTBP/ping/server.cpp:
        * protocols/tests/RMCast/Sender.cpp:
        * tests/Based_Pointer_Test.cpp:
        * tests/Bug_2980_Regression_Dll.cpp:
        * tests/SSL/Bug_2912_Regression_Test.cpp:
          Removed include of ace/OS.h, only in a few files we really had
          to add an include of OS_NS_*.h

        * ace/OS.h:
        * ace/OS.inl:
        * ace/OS.cpp:
          Removed these files, replaced with OS_NS_* files a long time ago

Sun Sep 12 19:27:58 UTC 2010  William R. Otte  <wotte@dre.vanderbilt.edu>

        * bin/make_release.py:

          Some updates to handle moved DAnCE package.

Sun Sep 12 19:22:21 UTC 2010  William Otte  <wotte@zifnab>

        * bin/MakeProjectCreator/modules/GNUACEProjectCreator.pm:
        * bin/MakeProjectCreator/templates/:

          Added rules to pullin rules.dance.GNU.

Fri Sep 10 16:43:39 UTC 2010  Steve Huston  <shuston@riverace.com>

        * ace/Makefile.am: Removed references to files removed at
         Thu Sep  9 11:14:45 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

Fri Sep 10 11:07:56 UTC 2010  Marcel Smit  <msmit@remedy.nl>

        * ace/TSS_T.h:
          Resolved compile issue regarding ACE_Copy_Disabled class.

Fri Sep 10 07:36:39 UTC 2010  Marcel Smit  <msmit@remedy.nl>

        * ace/Thread_Control.inl:
          Include before versioning macros.

Fri Sep 10 07:05:45 UTC 2010  Marcel Smit  <msmit@remedy.nl>

        * ace/Thread_Control.inl:
          Resolved compile error (ACE_OS_TRACE could not be found).

Thu Sep  9 12:53:39 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Asynch_Acceptor.h:
        * ace/Asynch_Acceptor.cpp:
        * ace/Hash_Multi_Map_Manager_T.h:
        * ace/OS_NS_Thread.h:
        * ace/OS_NS_Thread.cpp:
        * ace/Service_Config.cpp:
        * ace/TSS_T.cpp:
        * ace/Thread.h:
        * ace/Thread.inl:
        * ace/config-macosx-snowleopard.h:
        * ace/config-macosx-tiger.h:
        * ace/config-macosx.h:
        * tests/Hash_Multi_Map_Manager_Test.cpp:
          Removed deprecated methods and arguments

        * docs/FAQ:
        * FAQ:
          Moved to docs

Thu Sep  9 11:54:10 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * apps/soreduce/Signature.cpp:
        * tests/TkReactor_Test.cpp:
          Fixed fuzz

Thu Sep  9 11:49:30 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/MakeProjectCreator/templates/gnu.mpd:
          Removed invalid comma, thanks to Frank Preischl
          <Frank dot Preischl at ids dot de> for reporting this

Thu Sep  9 11:14:45 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * Kokyu/Dispatch_Deferrer.h:

        * ace/Atomic_Op_T.h:
        * ace/Atomic_Op_T.inl:
        * ace/Configuration.h:
        * ace/Configuration.cpp:
        * ace/Default_Constants.h:
        * ace/Hash_Multi_Map_Manager_T.h:
        * ace/Hash_Multi_Map_Manager_T.cpp:
        * ace/Intrusive_List.h:
        * ace/Intrusive_List.inl:
        * ace/Local_Name_Space_T.h:
        * ace/Log_Msg.h:
        * ace/Log_Msg.cpp:
        * ace/MEM_Acceptor.h:
        * ace/MEM_Acceptor.inl:
        * ace/MEM_Connector.h:
        * ace/MEM_Connector.inl:
        * ace/Message_Queue.h:
        * ace/OS.h:
        * ace/OS_Memory.h:
        * ace/OS_TLI.h:
        * ace/Obstack_T.h:
        * ace/Obstack_T.inl:
        * ace/POSIX_Asynch_IO.h:
        * ace/Process_Manager.h:
        * ace/Process_Manager.cpp:
        * ace/Recursive_Thread_Mutex.h:
        * ace/Recursive_Thread_Mutex.cpp:
        * ace/Refcountable_T.h:
        * ace/Strategies_T.h:
        * ace/Strategies_T.inl:
        * ace/Synch.h:
        * ace/Task.h:
        * ace/Task_Ex_T.h:
        * ace/Task_Ex_T.inl:
        * ace/Task_T.h:
        * ace/Task_T.inl:
        * ace/Thread_Control.cpp:
        * ace/Token_Collection.h:
        * ace/Token_Invariants.h:
        * ace/Token_Manager.h:
        * ace/ace_wchar.h:
        * ace/config-macosx-leopard.h:
        * ace/os_include/net/os_if.h:
        * ace/os_include/sys/os_mman.h:
        * apps/Gateway/Gateway/Concrete_Connection_Handlers.cpp:
        * netsvcs/lib/Time_Request_Reply.h:
        * netsvcs/lib/Time_Request_Reply.cpp:
        * tests/Conn_Test.cpp:
        * tests/Dirent_Test.cpp:
        * tests/Svc_Handler_Test.cpp:
          Removed several methods, files, and macros that are marked deprecated
          for several years now.

        * ace/Map.h:
        * ace/Method_Object.h:
        * ace/OS_Dirent.h:
        * ace/OS_String.h:
        * ace/Pair.h:
        * ace/Refcountable.h:
        * ace/Service_Templates.h:
          Removed these files.

Thu Sep  9 09:37:22 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/generate_doxygen.pl:
          Fixed errors

        * debian/debian.rules:
          Moving forward with OBS

Thu Sep  9 09:29:30 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/CDR_Base.h:
        * ace/CDR_Base.cpp:
        * ace/DEV.h:
        * ace/FILE.h:
        * ace/Global_Macros.h:
        * ace/INET_Addr.inl:
        * ace/Malloc_T.h:
        * ace/Malloc_T.inl:
        * ace/Malloc_T.cpp:
        * ace/SOCK_Dgram_Bcast.cpp:
        * ace/SSL/SSL_SOCK.h:
        * ace/Shared_Memory_Pool.cpp:
        * ace/Sock_Connect.cpp:
        * ace/config-aix-5.x.h:
        * ace/config-doxygen.h:
        * ace/config-g++-common.h:
        * ace/config-hpux-11.00.h:
        * ace/config-icc-common.h:
        * ace/config-integritySCA.h:
        * ace/config-linux-common.h:
        * ace/config-macros.h:
        * ace/config-mvs.h:
        * ace/config-openvms.h:
        * ace/config-suncc-common.h:
        * ace/config-sunos5.5.h:
        * ace/config-sunos5.6.h:
        * ace/config-tandem-nsk-mips-v2.h:
        * ace/config-tandem-nsk-mips-v3.h:
        * ace/config-win32-borland.h:
        * ace/config-win32-dmc.h:
        * ace/config-win32-ghs.h:
        * ace/config-win32-msvc-10.h:
        * ace/config-win32-msvc-7.h:
        * ace/config-win32-msvc-8.h:
        * ace/config-win32-msvc-9.h:
        * examples/IOStream/server/iostream_server.h:
        * examples/IPC_SAP/SOCK_SAP/C-inserver.cpp:
        * examples/IPC_SAP/SSL_SAP/SSL-server-fancy.cpp:
        * examples/Reactor/Misc/test_event_handler_t.cpp:
        * tests/Basic_Types_Test.cpp:
        * tests/Conn_Test.cpp:
        * tests/Message_Queue_Test.cpp:
        * tests/SSL/Thread_Pool_Reactor_SSL_Test.h:
        * tests/SSL/Thread_Pool_Reactor_SSL_Test.cpp:
          Cleanup, all compilers support templated typedefs

        * ace/config-cray.h:
        * ace/config-cxx-common.h:
          Removed these files, obsolete

Thu Sep  9 09:01:10 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/ACE.cpp:
        * ace/ACE_export.h:
        * ace/ETCL/ETCL_y.cpp:
        * ace/INET_Addr.cpp:
        * ace/Log_Msg.cpp:
        * ace/OS.inl:
        * ace/OS_NS_Thread.h:
        * ace/OS_NS_Thread.inl:
        * ace/OS_NS_Thread.cpp:
        * ace/OS_NS_ctype.cpp:
        * ace/OS_NS_netdb.inl:
        * ace/OS_NS_pwd.inl:
        * ace/OS_NS_stdlib.inl:
        * ace/OS_NS_time.inl:
        * ace/OS_NS_time.cpp:
        * ace/POSIX_CB_Proactor.cpp:
        * ace/POSIX_Proactor.cpp:
        * ace/config-cxx-common.h:
        * ace/config-doxygen.h:
        * ace/config-integritySCA.h:
        * ace/config-lynxos.h:
        * ace/config-macros.h:
        * ace/config-openvms.h:
        * ace/config-tandem-nsk-mips-v2.h:
        * ace/config-tandem-nsk-mips-v3.h:
        * ace/config-vxworks6.4.h:
        * ace/config-win32-common.h:
        * ace/os_include/os_pthread.h:
        * ace/os_include/os_pwd.h:
        * ace/os_include/os_signal.h:
        * ace/os_include/os_stdlib.h:
        * ace/os_include/os_time.h:
        * ace/os_include/sys/os_types.h:
          Removed Tru64, Irix, Unixware, and SCO support

        * debian/debian.rules:
          Improved

        * examples/QOS/Change_Receiver_FlowSpec/Receiver_QoS_Event_Handler.h:
        * examples/QOS/Change_Receiver_FlowSpec/Sender_QoS_Event_Handler.h:
        * examples/QOS/Change_Sender_TSpec/Receiver_QoS_Event_Handler.h:
        * examples/QOS/Change_Sender_TSpec/Sender_QoS_Event_Handler.h:
        * examples/QOS/Simple/Receiver_QoS_Event_Handler.h:
        * examples/QOS/Simple/Sender_QoS_Event_Handler.h:
          Zapped ACE_RCSID

        * ace/config-irix6.5.x-sgic++.h:
        * ace/config-irix6.x-common.h:
        * ace/config-irix6.x-g++.h:
        * ace/config-irix6.x-sgic++.h:
        * ace/config-sco-5.0.0-nothread.h:
        * ace/config-sco-5.0.0.h:
        * ace/config-unixware-7.1.0.h:
        * ace/config-unixware-7.1.0.udk.h:
        * include/makeinclude/platform_irix6.x_common.GNU:
        * include/makeinclude/platform_irix6.x_g++.GNU:
        * include/makeinclude/platform_irix6.x_sgic++.GNU:
        * include/makeinclude/platform_tru64_cxx.GNU:
        * include/makeinclude/platform_tru64_g++.GNU:
        * include/makeinclude/platform_tru64_post.GNU:
        * include/makeinclude/platform_tru64_pre.GNU:
        * include/makeinclude/platform_unixware_g++.GNU:
          Removed the files because Tru64, Irix, Unixware, and SCO support are
          removed now

Wed Sep  8 14:54:45 UTC 2010  William Otte  <wotte@zifnab>

        * docs/bczar/bczar.html:

        Updated documentation for removal of Release makefile.

Wed Sep  8 14:40:57 UTC 2010  William Otte  <wotte@zifnab>

        * Release:

        Removing obsolete release makefile.

Wed Sep  8 10:57:12 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * debian/ace.dsc:
        * debian/debian.changelog:
        * debian/debian.control:
        * debian/debian.rules:
        * debian/changelog:
        * debian/control:
        * debian/dsc:
        * debian/rules:
          Renamed to the names we use on OBS

Wed Sep  8 09:11:03 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/SSL/Bug_2912_Regression_Test.cpp:
          Fixed compile error

Wed Sep  8 05:53:24 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * examples/APG/ThreadPools/Futures.cpp:
          Added missing include

Tue Sep  7 17:07:58 UTC 2010  Steve Huston  <shuston@riverace.com>

        * ace/Process.h: Noted the affects of handle_inheritance() on Windows.

Tue Sep  7 14:23:13 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Message_Queue_T.cpp:
        * examples/APG/ThreadPools/LF_ThreadPool.cpp:
        * examples/APG/ThreadPools/ThreadPool.cpp:
        * examples/APG/ThreadSafety/Mutex.cpp:
        * examples/APG/Threads/Condition_Variables.cpp:
        * protocols/ace/HTBP/HTBP_ID_Requestor.h:
        * protocols/ace/TMCast/Group.cpp:
        * protocols/ace/TMCast/MTQueue.hpp:
        * tests/Bug_3878_Regression_Test.cpp:
        * tests/Upgradable_RW_Test.cpp:
          Fixed compile problems

Tue Sep  7 11:35:04 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/fuzz.pl:
          Fix fuzz problem

Tue Sep  7 10:52:59 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * Kokyu/DSRT_Direct_Dispatcher_Impl_T.cpp:
          Use ACE_GUARD

        * Kokyu/Dispatcher_Task.cpp:
          Initialise pointer with 0

        * PROBLEM-REPORT-FORM:
        * VERSION:
          Updated support email addresses

        * ace/ACE.inl:
          Layout changes

        * ace/ACE.cpp:
          Layout changes, simplified some ifdef checks

        * ace/Auto_IncDec_T.h:
        * ace/Env_Value_T.h:
          Use ACE_Copy_Disabled

        * ace/Bound_Ptr.inl:
          Documentation updates

        * ace/CORBA_macros.h:
          Removed all deprecated macros

        * ace/Dynamic_Service_Base.cpp:
          Use ACE_GUARD_RETURN

        * ace/Event_Handler_T.h:
        * ace/Event_Handler_T.inl:
        * ace/Event_Handler_T.cpp:
          Removed checks for ACE_HAS_TEMPLATE_TYPEDEFS, I think all compilers
          have this now, let us see if nothing breaks

        * ace/FILE.h:
          Doxygen updates

        * ace/Future.h:
        * ace/Future.cpp:
          Use mutex defines

        * ace/Future_Set.h:
          Use ACE_Copy_Disabled

        * ace/Future_Set.cpp:
          Initialise pointer with 0

        * ace/Global_Macros.h:
          Removed checks for ACE_HAS_TEMPLATE_TYPEDEFS, doxygen changes, make it
          possible for users to redefine ACE_GUARD macros

        * ace/Guard_T.h:
        * ace/Guard_T.inl:
        * ace/Guard_T.cpp:
          Doxygen changes, disable ACE_Guard checks for this file

        * ace/Hash_Map_Manager_T.h:
        * ace/Hash_Multi_Map_Manager_T.h:
        * ace/Map_Manager.h:
          Update to indicate the usage of ACE_GUARD

        * ace/INET_Addr.h:
          Doxygen changes

        * ace/Local_Tokens.h:
          Disable part of this file for ACE_Guard fuzz check

        * ace/Log_Msg.cpp:
          Use ACE_OS::thr_self

        * ace/Malloc_T.h:
          Disable part of this file for ACE_Guard fuzz check, doxygen changes

        * ace/Message_Queue_T.h:
        * ace/Message_Queue_T.cpp:
        * ace/Message_Queue_Vx.h:
        * ace/Message_Queue_Vx.cpp:
          Removed ACE_Guard argument to some methods, not used and now cause
          fuzz to fail

        * ace/Mutex.h:
        * ace/Mutex.inl:
          Added non const lock(), this fixes bugzilla 3878. Thanks to
          Susan Finster <sfinster at daetwyler-rd dot com> for reporting this

        * ace/Null_Barrier.h:
        * ace/Null_Condition.h:
        * ace/Null_Mutex.h:
        * ace/Null_Semaphore.h:
          Removed old comments, disable part for ACE_Guard, removed
          ACE_Null_Mutex_Guard

        * ace/OS_NS_Thread.cpp:
          Layout changes, use ACE_Guard

        * ace/OS_NS_poll.cpp:
        * ace/OS_NS_sys_select.cpp:
          Layout changes

        * ace/OS_NS_sys_socket.inl:
          Comment change

        * ace/Read_Buffer.h:
        * ace/Remote_Tokens.h:
        * ace/SOCK.h:
          Doxygen changes

        * ace/SOCK_Connector.h:
        * ace/SOCK_Dgram_Mcast.h:
          Doxygen changes

        * ace/SOCK_Connector.cpp:
          Layout and const changes

        * ace/Select_Reactor.h:
          Disable part of this file for ACE_Guard fuzz check

        * ace/Service_Gestalt.h:
          Use ACE_Copy_Disabled

        * ace/Sig_Handler.cpp:
          Use ACE_GUARD macros

        * ace/Synch_Traits.h:
          Removed ACE_HAS_TEMPLATE_TYPEDEFS checks

        * ace/TSS_T.h:
        * ace/TSS_T.cpp:
          Use ACE_Copy_Disabled, reworked some code to fix ACE_Guard fuzz
          checks

        * ace/Task_Ex_T.h:
          Use ACE_Copy_Disabled

        * apps/Gateway/Peer/Peer.cpp:
        * apps/JAWS/server/HTTP_Server.cpp:
        * apps/JAWS/server/JAWS_IO.cpp:
          Initialise pointers with 0

        * apps/JAWS/server/HTTP_Helpers.cpp:
          Use ACE_GUARD macros

        * apps/JAWS2/JAWS/Cache_Hash_T.cpp:
        * apps/JAWS2/JAWS/Cache_Manager_T.cpp:
        * apps/JAWS2/JAWS/Cache_Object.cpp:
        * apps/JAWS2/JAWS/Concurrency.cpp:
        * apps/JAWS2/JAWS/FILE.cpp:
        * apps/JAWS2/JAWS/Jaws_IO.cpp:
        * apps/JAWS2/JAWS/Reaper.cpp:
        * apps/JAWS3/jaws3/FILE.cpp:
          Use ACE_GUARD macros

        * apps/gperf/src/Options.cpp:
          Rename of local variable so that we don't need to disable ACE_OS
          fuzz check

        * bin/fuzz.pl:
          Improved ACE_Guard checks and enable this one by default

        * bin/generate_doxygen.pl:
          Let DANCE use the CIAO version file for the moment

        * bin/make_release.py:
          Don't create static and wince solutions as part of the release anymore,
          if you use these, generate them by hand in the future. Added vc10
          project files

        * examples/APG/Proactor/HA_Proactive_Status.cpp:
        * examples/APG/Reactor/Client.cpp:
        * examples/APG/Reactor/HAStatus.cpp:
        * examples/APG/Streams/Answerer.cpp:
        * examples/APG/Streams/CommandStream.cpp:
        * examples/APG/ThreadManagement/Pool.cpp:
        * examples/APG/ThreadPools/LF_ThreadPool.cpp:
        * examples/APG/ThreadPools/Task_ThreadPool.cpp:
        * examples/APG/ThreadSafety/Semaphore.cpp:
        * examples/APG/Threads/Message_Blocks.cpp:
        * examples/APG/Threads/Message_Queue.cpp:
        * examples/ASX/Message_Queue/bounded_buffer.cpp:
        * examples/ASX/Message_Queue/priority_buffer.cpp:
        * examples/Bounded_Packet_Relay/Thread_Bounded_Packet_Relay.cpp:
        * examples/C++NPv2/AIO_Client_Logging_Daemon.cpp:
        * examples/C++NPv2/display_logfile.cpp:
        * examples/IPC_SAP/UPIPE_SAP/ex1.cpp:
        * examples/Reactor/Misc/test_demuxing.cpp:
        * examples/Reactor/WFMO_Reactor/Talker.cpp:
        * examples/Threads/barrier2.cpp:
        * examples/Threads/thread_pool.cpp:
          Initialise pointers with 0

        * examples/APG/ThreadPools/ThreadPool.cpp:
          Use ACE_Thread_ID to store a print a thread id using ACE_DEBUG, that
          is the only way that is 100% portable

        * examples/APG/Threads/Guards.cpp:
          Disable ACE_Guard fuzz

        * examples/Threads/reader_writer.cpp:
        * examples/Threads/recursive_mutex.cpp:
          Use ACE_GUARD macros

        * examples/Threads/thread_specific.cpp:
        * examples/Threads/tss1.cpp:
          Removed code not used

        * include/makeinclude/platform_g++_common.GNU:
          Added CROSS_COMPILE support to this file

        * include/makeinclude/platform_linux.GNU:
        * include/makeinclude/platform_linux_common.GNU:
          Moved some bits to platform_g++_common.GNU, works with G++ in
          general

        * include/makeinclude/platform_qnx_neutrino.GNU:
        * include/makeinclude/platform_qnx_rtp_gcc.GNU:
          Cleanup

        * netsvcs/lib/Log_Message_Receiver.h:
        * netsvcs/lib/Log_Message_Receiver.cpp:
          Use ACE_GUARD macros

        * performance-tests/Misc/Misc.mpc:
          Enable test_guard

        * performance-tests/Misc/test_guard.cpp:
          Made this compiling again

        * performance-tests/Synch-Benchmarks/Base_Test/Baseline_Test.cpp:
        * performance-tests/TCP/tcp_test.cpp:
          Renamed variable to not need ACE_OS fuzz disable code

        * protocols/ace/HTBP/HTBP_ID_Requestor.cpp:
        * protocols/ace/HTBP/HTBP_Session.cpp:
          Use ACE_GUARD macros

        * protocols/ace/RMCast/Acknowledge.h:
        * protocols/ace/RMCast/Acknowledge.cpp:
        * protocols/ace/RMCast/Bits.h:
        * protocols/ace/RMCast/Flow.h:
        * protocols/ace/RMCast/Flow.cpp:
        * protocols/ace/RMCast/Fragment.h:
        * protocols/ace/RMCast/Fragment.cpp:
        * protocols/ace/RMCast/Link.h:
        * protocols/ace/RMCast/Link.cpp:
        * protocols/ace/RMCast/Parameters.h:
        * protocols/ace/RMCast/Protocol.h:
        * protocols/ace/RMCast/Protocol.cpp:
        * protocols/ace/RMCast/Reassemble.h:
        * protocols/ace/RMCast/Reassemble.cpp:
        * protocols/ace/RMCast/Retransmit.h:
        * protocols/ace/RMCast/Retransmit.cpp:
        * protocols/ace/RMCast/Simulator.h:
        * protocols/ace/RMCast/Simulator.cpp:
        * protocols/ace/RMCast/Socket.h:
        * protocols/ace/RMCast/Socket.cpp:
        * protocols/ace/RMCast/Stack.h:
        * protocols/ace/RMCast/Stack.cpp:
        * protocols/ace/TMCast/FaultDetector.hpp:
        * protocols/ace/TMCast/Group.cpp:
        * protocols/ace/TMCast/Group.hpp:
        * protocols/ace/TMCast/GroupFwd.hpp:
        * protocols/ace/TMCast/LinkListener.hpp:
        * protocols/ace/TMCast/MTQueue.hpp:
        * protocols/ace/TMCast/MTQueue.cpp:
        * protocols/ace/TMCast/Messaging.hpp:
        * protocols/ace/TMCast/Protocol.hpp:
        * protocols/ace/TMCast/Protocol.cpp:
        * protocols/ace/TMCast/TransactionController.hpp:
          Removed commented out code, Id changes, disable ACE_Guard check
          for this project

        * rpmbuild/ace-tao.spec:
          Fixed some problems in this spec file

        * tests/Aio_Platform_Test.cpp:
        * tests/Basic_Types_Test.cpp:
        * tests/Bug_1576_Regression_Test.cpp:
        * tests/Bug_3532_Regression_Test.cpp:
        * tests/Bug_3673_Regression_Test.cpp:
        * tests/Bug_3709_Regression_Test.cpp:
        * tests/Bug_3744_Regression_Test.cpp:
        * tests/Compiler_Features_03_Test.cpp:
        * tests/Compiler_Features_09_Test.cpp:
        * tests/Compiler_Features_13_Test.cpp:
        * tests/Compiler_Features_14_Test.cpp:
        * tests/Env_Value_Test.cpp:
        * tests/Hash_Map_Bucket_Iterator_Test.cpp:
        * tests/Logging_Strategy_Test.cpp:
        * tests/MT_SOCK_Test.cpp:
        * tests/Pipe_Test.cpp:
        * tests/Priority_Task_Test.cpp:
        * tests/Proactor_UDP_Test.cpp:
        * tests/QtReactor_Test.cpp:
        * tests/Reactor_Notification_Queue_Test.cpp:
        * tests/Reactor_Registration_Test.cpp:
        * tests/Reference_Counted_Event_Handler_Test.cpp:
        * tests/Time_Service_Test.cpp:
          Zapped ACE_RCSID

        * tests/Message_Block_Test.cpp:
        * tests/Multicast_Test_IPV6.cpp:
          Initialise pointer with 0

        * tests/Reader_Writer_Test.cpp:
          Use ACE_GUARD

        * tests/Recursive_Mutex_Test.cpp:
          Disable ACE_Guard fuzz for part of this file

        * tests/Bug_3878_Regression_Test.cpp:
          New test for bugzilla 3878

        * tests/SSL/Bug_2912_Regression_Test.cpp:
        * tests/TP_Reactor_Test.cpp:
          Use ACE_GUARD

        * tests/Simple_Message_Block_Test.cpp:
        * tests/Svc_Handler_Test.cpp:
        * tests/Thread_Pool_Test.cpp:
        * tests/UPIPE_SAP_Test.cpp:
          Initialise pointers with 0

        * tests/Thread_Mutex_Test.cpp:
          Disable ACE_Guard fuzz

        * tests/Upgradable_RW_Test.cpp:
          Use ACE_GUARD

        * tests/run_test.lst:
        * tests/tests.mpc:
          Added 3878

Mon Sep  6 09:30:00 UTC 2010  Simon Massey  <buildczar at prismtech dot com>

        * ace/Acceptor.cpp:
          Due to the way the code was formatted, I mistook a do {} while loop for
          a while loop with my change. I have corrected this.

Mon Sep  6 08:10:00 UTC 2010  Simon Massey  <buildczar at prismtech dot com>

        * ace/ACE.cpp:
        * ace/Acceptor.cpp:
        * ace/SOCK_IO.cpp:
        * ace/SOCK_Dgram.cpp:
        * tests/SOCK_Test.cpp:
        * tests/MT_SOCK_Test.cpp:
        * NEWS:
          Now that release x.8.3. is out, we are attempting to provide the correct
          fix to the original commit by Steve Huston related to handle_ready()
          (Fri Aug 27 19:17:11 UTC 2010  Steve Huston  <shuston@riverace.com>)
          and added back the corresponding NEWS entry.

Sat Sep 04 18:08:03 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * NEWS:
        * bin/diff-builds-and-group-fixed-tests-only.sh:
        * bin/make_release.py:
        * docs/Download.html:
        * etc/index.html:
          Updated because of release

Sat Sep 04 11:30:18 CEST 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ACE version 5.8.2 released.

Thu Sep  2 14:46:56 UTC 2010  Vladimir Zykov  <vladimir.zykov@prismtech.com>

        * ace/Acceptor.cpp:
        * ace/SOCK_IO.cpp:
        * ace/SOCK_Dgram.cpp:
        * ace/ACE.cpp:
        * tests/SOCK_Test.cpp:
        * tests/MT_SOCK_Test.cpp:
        * NEWS:
          Reverted both commits by Steve Huston related to handle_ready()
          and a NEWS entry.
          Wed Sep  1 19:31:24 UTC 2010  Steve Huston  <shuston@riverace.com>
          Fri Aug 27 19:17:11 UTC 2010  Steve Huston  <shuston@riverace.com>
          This is necessary for a quick release of 1.8.2.

Wed Sep  1 19:31:24 UTC 2010  Steve Huston  <shuston@riverace.com>

        * ace/ACE.cpp (handle_ready): Changed the timeout behavior to just
          return 0, no errno, as ACE_OS::poll() and ACE_OS::select() both do.
          This restores historic behavior changed inadvertently at
          Fri Aug 27 19:17:11 UTC 2010  Steve Huston  <shuston@riverace.com>

        * ace/SOCK_Dgram.cpp:
        * ace/SOCK_IO.cpp:
        * tests/MT_SOCK_Test.cpp:
        * tests/SOCK_Test.cpp: Re-added the if/switch on return value from
          ACE::handle_read|write_ready() to detect timeout and set errno
          here.

          These changes were necessary to fix the TAO faults test. Thanks
          to Johnny and Simon for narrowing down the cause and testing
          the fix.

Wed Sep  1 15:58:47 UTC 2010  Adam Mitz  <mitza@ociweb.com>

        * bin/MakeProjectCreator/templates/gnu.mpd:

          Changed the short-circuit logic for the .NOTPARALLEL checks to ||
          instead of &&.  If any one file is newer, we will have to rebuild.
          Also added a missing foreach for the output files with dependent libs.

Wed Sep  1 09:59:42 UTC 2010  Vladimir Zykov  <vladimir.zykov@prismtech.com>

        * tests/Time_Value_Test.cpp:
          Fixed compile warning on QNX. time_t on QNX is defined as unsigned
          int.

Tue Aug 31 16:53:07 UTC 2010  Jeff Parsons <j.parsons@vanderbilt.edu>

        * THANKS:

          Added Catherine L. Paquin <catherine dot paquin at ngc dot com>.

Tue Aug 31 14:40:17 UTC 2010  Adam Mitz  <mitza@ociweb.com>

        * NEWS:

          Updated to proper name of Visual Studio 2010, which may assist
          those searching for it in the NEWS file.

Tue Aug 31 12:56:36 UTC 2010  Steve Huston  <shuston@riverace.com>

        * NEWS: Added an entry for the change at
          Fri Aug 27 19:17:11 UTC 2010  Steve Huston  <shuston@riverace.com>

        * ace/README:
        * ace/config-sunos5.6.h:
        * ace/config-sunos5.7.h: Removed all mention of ACE_HAS_LIMITED_SELECT.

Mon Aug 30 18:41:24 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/ace.mpc:
          Added Obstack.h

Mon Aug 30 16:48:34 UTC 2010  Steve Huston  <shuston@riverace.com>

        * ace/FIFO.h:
        * ace/FIFO_Recv.h:
        * ace/FIFO_Send.h: Clarified initialization and open behavior.

Mon Aug 30 15:33:57 UTC 2010  Steve Huston  <shuston@riverace.com>

        * ace/Process.h (set_handles): Add a note that passing a socket handle
          with this mechanism does not work on Windows.

Mon Aug 30 10:06:24 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * examples/Reactor/Proactor/test_proactor2.cpp:
        * examples/Reactor/Proactor/test_proactor3.cpp:
        * tests/Proactor_Test.cpp:
        * tests/Proactor_Test_IPV6.cpp:
        * tests/Proactor_UDP_Test.cpp:
          ACE_Guard changes

Fri Aug 27 19:17:11 UTC 2010  Steve Huston  <shuston@riverace.com>

        * ace/ACE.cpp (handle_ready, handle_timed_complete,
                       handle_timed_accept): On platforms where poll() is
          available, prefer that to using select() for checking a single
          handle's state and/or waiting for a condition. This preference
          was previously only used if ACE_HAS_LIMITED_SELECT was set. The
          ACE_HAS_LIMITED_SELECT choice is removed, making ACE_HAS_POLL the
          setting that switches this preference. The driving reason for this
          is that if select() is called to detect changes on a handle whose
          values falls outside that which can safely be stored in an fdset,
          the handle-setting macros/functions will set/clear bits outside
          of the fdset. This results in very weird memory changes, often in
          the stack, which are very hard to diagnose. poll()'s operation
          does not suffer from this affect. With the growing use of large
          numbers of handles and use of ACE_Dev_Poll_Reactor on Linux,
          the rate at which this problem was cropping up was increasing.
          Thanks to Olivier Langlois for diagnosing this problem and
          proposing the patch.

          (handle_ready): Properly set the poll condition for read and/or
          write. Thanks to kumaran.prem@gmail.com for this fix.

        * ace/Acceptor.cpp:
        * ace/SOCK_IO.cpp:
        * ace/SOCK_Dgram.cpp:
        * tests/MT_SOCK_Test.cpp:
        * tests/SOCK_Test.cpp: Replaced use of ACE_OS::select() with
          ACE::handle_ready() and friends.

        This all resolves Bugzilla #3606.

Fri Aug 27 19:10:16 UTC 2010  Brian Johnson  <johnsonb@ociweb.com>

        * bin/MakeProjectCreator/templates/gnu.mpd:

          Merging dependent_libs support for gnuace from TAO 1.5a.
          (Bugzilla #3281)

Fri Aug 27 18:36:37 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/OS_NS_Thread.h:
        * ace/OS_NS_Thread.inl:
          Added assignment operator for ACE_Thread_Id

Fri Aug 27 15:01:41 UTC 2010  Steve Huston  <shuston@riverace.com>

        * Connector.{h cpp} (ACE_NonBlocking_Connect_Handler): Add a
          handle_close() which calls handle_input() if called by the
          ACE_Dev_Poll_Reactor to remove a failed connect. Apparently,
          Linux epoll, at least sometimes, signals EPOLLERR on a failed
          nonblocking connect, unlike the select() case which selects the
          failed fd for read. Thanks to Kannan Ramaswamy <kannan dot
          ramaswamy at cogcap dot com> for this information and fix.

        * THANKS: Added Kannan to the Hall of Fame.

Fri Aug 27 14:17:56 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Atomic_Op.h:
          Doxygen changes

        * ace/OS_NS_Thread.cpp:
          Use ACE_GUARD

        * bin/fuzz.pl:
          Added check for ACE_Guard

Fri Aug 27 06:56:11 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * etc/ace.doxygen:
        * etc/acexml.doxygen:
          Fuzz fixes

Thu Aug 26 13:20:48 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/diff-builds-and-group-fixed-tests-only.sh:
          Added DANCE_ROOT

Thu Aug 26 13:08:56 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * netsvcs/servers/servers.mpc:
          Use ace_netsvcs as executable name, this makes more sense when
          we install this file in a target directory

Thu Aug 26 13:04:06 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/fuzz.pl:
          Check doxygen files for tabs

        * etc/ace.doxygen:
        * etc/ace_inet.doxygen:
        * etc/ace_qos.doxygen:
        * etc/ace_rmcast.doxygen:
        * etc/ace_ssl.doxygen:
        * etc/acexml.doxygen:
        * html/index.html:
          Changed documentation subdirectories to make debian packaging easier

Thu Aug 26 12:30:33 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * debian/control:
          Made some fixes for x.8.1

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

        * bin/auto_run_tests.pl:
          Extended script to also check for $DANCE_ROOT/bin/dance_tests.lst

Thu Aug 26 10:20:41 UTC 2010  Martin Corino  <mcorino@remedy.nl>

        * ace/OS_NS_Thread.cpp:
          Changes implementing the patches from Bugzilla #3653 (with
          changes and some rejects; *no* asserts allowed in ACE).

Wed Aug 25 19:58:19 UTC 2010  Steve Huston  <shuston@riverace.com>

        * ace/Dev_Poll_Reactor.{h cpp}: Regarding change number 2 at
          Fri Mar 26 14:07:55 UTC 2010  Steve Huston  <shuston@riverace.com>
          dispatching notifies in only one thread at a time was 1) wrong
          (TP_Reactor doesn't do this), 2) broke important existing
          applications at a customer site. This has been fixed so that the
          notify dispatch behavior is like ACE_TP_Reactor: when the
          notify handle is signaled, extract one notification, release
          the token, dispatch the notification. Thus, each thread will
          dispatch one notification, and multiple threads can dispatch
          them at the same time if there are multiples.

          Also fixed an error where it was possible to lose notice of a
          notification. Resolves Bugzilla #3328.

Wed Aug 25 09:49:41 UTC 2010  Martin Corino  <mcorino@remedy.nl>

        * ace/Arg_Shifter.h:
        * ace/config-macosx-leopard.h:
        * ace/Guard_T.h:
        * ace/Global_Macros.h:
          Selected changes from patches in Bugzilla 3652.

Tue Aug 24 14:21:01 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/OS_NS_Thread.h:
          Layout changes

        * ace/config-win32-common.h:
          Improved MinGW GCC 4.4 support. Thanks to
          Jani Hakala <jani dot j dot hakala at jyu dot fi> for creating the
          patch

Tue Aug 24 14:15:45 UTC 2010 Marijke Hengstmengel <mhengstmengel@remedy.nl>

        * ace/Log_Msg.cpp
        * ace/Log_Msg.h
        * tests/Log_Msg_Test.cpp
        Revert changes for logging thread id as argument.

Tue Aug 24 12:59:30 UTC 2010  Martin Corino  <mcorino@remedy.nl>

        * protocols/ace/INet/ClientRequestHandler.h:
        * protocols/ace/INet/URLBase.h:
        * protocols/ace/INet/HTTP_ClientRequestHandler.h:
          Changes to fix export problems with nested classes with MSVC 7/8.

Tue Aug 24 11:29:45 UTC 2010 Marijke Hengstmengel <mhengstmengel@remedy.nl>

        * ace/Log_Msg.h:
        * ace/Log_Msg.cpp:
        * tests/Log_Msg_Test.cpp:
        * ChangeLog:
        Add %#t to log a thread id that is coming from user code, as argument .

Mon Aug 23 19:51:59 UTC 2010  Phil Mesnier  <mesnier_p@ociweb.com>

        * tests/Missing_Svc_Conf_Test.cpp:

          Fix some scoreboard problems.

Mon Aug 23 15:05:56 UTC 2010  Adam Mitz  <mitza@ociweb.com>

        * ace/Select_Reactor.h:

          vc10 needs an "ACE_Export" declaration on the explicit template
          instantiation of ACE_Select_Reactor.

Mon Aug 23 13:23:03 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-kfreebsd.h:
          New config file for kfreebsd

        * ace/config-win32-common.h:
          Removed commented out defines

Mon Aug 23 11:57:30 UTC 2010  Martin Corino  <mcorino@remedy.nl>

        * protocols/ace/INet/INet_SSL_Export.h:
        * protocols/ace/INet/HTTPS_Context.h:
        * protocols/ace/INet/HTTPS_SessionFactory.h:
        * protocols/ace/INet/HTTPS_URL.h:
        * protocols/ace/INet/SSL_CallbackManager.h:
        * protocols/ace/INet/SSL_CertificateCallback.h:
        * protocols/ace/INet/SSL_PasswordCallback.h:
        * protocols/ace/INet/SSL_X509Cert.h:
        * protocols/ace/INet/inet_ssl.mpc:
          Changes to fix MSVC 7/8 link errors.

Mon Aug 23 11:34:30 UTC 2010  Martin Corino  <mcorino@remedy.nl>

        * protocols/ace/INet/HTTPS_URL.h:
          Fixed GCC41 error concerning comma at end of enum list.

Sat Aug 21 12:53:05 UTC 2010  Phil Mesnier  <mesnier_p@ociweb.com>

        * tests/Missing_Svc_Conf_Test.cpp:

          Added a descriptive comment block to the source.

Fri Aug 20 13:29:22 UTC 2010  Phil Mesnier  <mesnier_p@ociweb.com>

        * ace/Service_Gestalt.cpp:

          One more shot at fixing the behavior of the service configurator
          in the face of missing defaulted svc.conf file.

        * tests/Missing_Svc_Conf_Test.cpp:
        * tests/run_test.lst:
        * tests/tests.mpc:

          Added a proper test to ensure changes to this behavior are caught
          in the future.

Fri Aug 20 11:58:20 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/TSS_T.cpp:
          Updated comment

        * include/makeinclude/platform_g++_common.GNU:
          If minimaltoc is set to 1, add -mminimal-toc to compiler flags

        * include/makeinclude/platform_linux.GNU:
          Removed check for ppc64, if you build for ppc64 and need -mminimal-toc
          add minimaltoc=1 to your platform_macros.GNU file

Fri Aug 20 09:52:30 UTC 2010  Martin Corino  <mcorino@remedy.nl>

        * protocols/ace/INet/inet_ssl.mpb:
          Removed feature subproject config.

        * protocols/ace/INet/inet_ssl.mpc:
          Added sublibrary project I forgot yesterday.

Thu Aug 19 12:37:14 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Functor_T.h:
          Doxygen changes

        * include/makeinclude/platform_linux.GNU:
          Make it possible to control -mminimal-toc through the
          platform_macros.GNU file using minimaltoc

Thu Aug 19 12:09:30 UTC 2010  Martin Corino  <mcorino@remedy.nl>

        * bin/MakeProjectCreator/config/inet.mpb:
        * bin/MakeProjectCreator/config/inetssl.mpb:
        * protocols/ace/INet/inet.mpc:
        * protocols/ace/INet/inet_ssl.mpb:
          Changes to split INet into 2 libraries; regular and SSL.
          Fixes dependencies of DAnCE tools on SSL.

Wed Aug 18 09:26:04 UTC 2010  Vladimir Zykov  <vladimir.zykov@prismtech.com>

        * netsvcs/lib/Client_Logging_Handler.cpp:
          Fixed a compile warning.

Tue Aug 17 07:34:31 UTC 2010  Marijke Hengstmengel  <mhengstmengel@remedy.nl>

        * ace/CDR_Stream.cpp
        Add Id

Mon Aug 16 22:00:06 UTC 2010  Adam Mitz  <mitza@ociweb.com>

        * examples/Reactor/Misc/Reactor_Misc.mpc:

          Explicitly list an empty Template_Files so that the *_t.cpp doesn't
          get added to Template_Files.

Mon Aug 16 12:58:31 UTC 2010  Marijke Hengstmengel  <mhengstmengel@remedy.nl>

        * ace/Auto_Event.cpp:
        * ace/CDR_Stream.cpp:
        * ace/Cleanup.cpp:
        * ace/Codecs.cpp:
        * ace/DEV_Addr.cpp:
        * ace/Dynamic_Service_Base.cpp:
        * ace/Filecache.cpp:
        * ace/Flag_Manip.cpp:
        * ace/FlReactor/FlReactor.cpp:
        * ace/FoxReactor/FoxReactor.cpp:
        * ace/Handle_Ops.cpp:
        * ace/Hashable.cpp:
        * ace/INET_Addr.cpp:
        * ace/Init_ACE.cpp:
        * ace/Local_Tokens.cpp:
        * ace/Logging_Strategy.cpp:
        * ace/Malloc.cpp:
        * ace/MEM_Addr.cpp:
        * ace/Message_Block.cpp:
        * ace/Method_Request.cpp:
        * ace/Multihomed_INET_Addr.cpp:
        * ace/Name_Request_Reply.cpp:
        * ace/OS_NS_string.cpp:
        * ace/OS_Thread_Adapter.cpp:
        * ace/Parse_Node.cpp:
        * ace/Ping_Socket.cpp:
        * ace/POSIX_Asynch_IO.cpp:
        * ace/POSIX_CB_Proactor.cpp:
        * ace/Proactor.cpp:
        * ace/Proactor_Impl.cpp:
        * ace/Process_Manager.cpp:
        * ace/QoS/QoS_Decorator.cpp:
        * ace/QoS/QoS_Manager.cpp:
        * ace/QoS/QoS_Session_Factory.cpp:
        * ace/QoS/QoS_Session_Impl.cpp:
        * ace/QoS/SOCK_Dgram_Mcast_QoS.cpp:
        * ace/Reactor.cpp:
        * ace/Refcountable_T.cpp:
        * ace/Remote_Name_Space.cpp:
        * ace/Select_Reactor_Base.cpp:
        * ace/Service_Config.cpp:
        * ace/Service_Gestalt.cpp:
        * ace/Shared_Memory_SV.cpp:
        * ace/Singleton.cpp:
        * ace/Sock_Connect.cpp:
        * ace/SSL/SSL_Asynch_BIO.cpp:
        * ace/SSL/SSL_Asynch_Stream.cpp:
        * ace/SSL/SSL_Context.cpp:
        * ace/SSL/SSL_SOCK.cpp:
        * ace/SSL/SSL_SOCK_Acceptor.cpp:
        * ace/SSL/SSL_SOCK_Connector.cpp:
        * ace/SSL/SSL_SOCK_Stream.cpp:
        * ace/SString.cpp:
        * ace/Svc_Conf.y
        * ace/Svc_Conf_y.cpp:
        * ace/Task.cpp:
        * ace/Thread_Manager.cpp:
        * ace/Timer_Hash_T.cpp:
        * ace/TkReactor/TkReactor.cpp:
        * ace/Token_Collection.cpp:
        * ace/WIN32_Asynch_IO.cpp:
        * ace/XtReactor/XtReactor.cpp:
        Removed ACE_RCSID

Thu Aug 12 16:07:55 UTC 2010  Steve Huston  <shuston@riverace.com>

        * configure.ac: Added feature test for ACE_LACKS_STRUCT_LIFNUM.

Thu Aug 12 08:39:31 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * rpmbuild/ace-tao.spec:
          Fixed problem compiling FC packages on OSB

Wed Aug 11 20:50:37 UTC 2010  Adam Mitz  <mitza@ociweb.com>

        * bin/MakeProjectCreator/templates/gnu.mpd:

          With ARCH set, we need to create the local ARCH directory for the
          executable in case there are no object files that would otherwise
          have required it.

Wed Aug 11 13:45:52 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-g++-common.h:
          Only enable GCC builtin atomic op when threads are enabled. Thanks to
          Rafi <rafi dot net at gmail dot com> for reporting this

Tue Aug 10 17:24:05 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ACEXML/apps/svcconf/Svcconf.cpp:
          Fixed compile problem

Tue Aug 10 08:55:17 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Makefile.am:
          Removed zapped file

Mon Aug  9 17:14:27 UTC 2010  Jeff Parsons <j.parsons@vanderbilt.edu>

        * THANKS:

          Added Robert Shectman <shectman at llnl dot gov>

Mon Aug  9 16:02:08 UTC 2010  Adam Mitz  <mitza@ociweb.com>

        * include/makeinclude/platform_vxworks6.3.GNU:
        * include/makeinclude/platform_vxworks6.8.GNU:

          The location of user-mode (RTP) libraries has changed in 6.8.

Mon Aug  9 15:14:43 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ACEXML/apps/svcconf/Svcconf_Handler.cpp:
          Zap emulated exception macros

        * ace/config-macros.h:
          Only define ACE_HAS_EXCEPTIONS when it is not defined yet

Mon Aug  9 06:38:34 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-sunos5.5.h:
          Fixed compile error

Mon Aug  9 06:35:14 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/ace.mpc:
          Removed zapped file

Sun Aug  8 23:31:32 UTC 2010  William R. Otte  <wotte@dre.vanderbilt.edu>

        * ace/config-macosx-snowleopard.h:

          Clang uses ACE_ANY_OPS_USE_NAMESPACE.

Fri Aug  6 17:36:45 UTC 2010  Adam Mitz  <mitza@ociweb.com>

        * bin/fuzz.pl:

          Added a "trailing whitespace" check (not enabled by default).
          Added the ability to pass multiple test names on the command line.
          Extend the "too long file name" check to some additional file types.

Fri Aug  6 08:39:38 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * protocols/ace/TMCast/TMCast.mpc:
          Removed exceptions as base project

Thu Aug  5 16:56:01 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/MakeProjectCreator/config/tmcast.mpb:
        * protocols/tests/RMCast/RMCast.mpc:
          Removed exceptions as base project

Thu Aug  5 09:00:49 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/ACE.cpp:
        * ace/ACE_crc32.cpp:
        * ace/ACE_crc_ccitt.cpp:
        * ace/ARGV.cpp:
        * ace/ATM_Acceptor.cpp:
        * ace/ATM_Addr.cpp:
        * ace/ATM_Connector.cpp:
        * ace/ATM_Params.cpp:
        * ace/ATM_QoS.cpp:
        * ace/ATM_Stream.cpp:
        * ace/Acceptor.cpp:
        * ace/Activation_Queue.cpp:
        * ace/Active_Map_Manager.cpp:
        * ace/Addr.cpp:
        * ace/Arg_Shifter.cpp:
        * ace/Argv_Type_Converter.cpp:
        * ace/Assert.cpp:
        * ace/Asynch_Acceptor.cpp:
        * ace/Asynch_IO.cpp:
        * ace/Asynch_Pseudo_Task.cpp:
        * ace/Atomic_Op.cpp:
        * ace/Atomic_Op_GCC_T.cpp:
        * ace/Atomic_Op_T.cpp:
        * ace/Auto_Ptr.cpp:
        * ace/Barrier.cpp:
        * ace/Base_Thread_Adapter.cpp:
        * ace/Basic_Stats.cpp:
        * ace/CDR_Base.cpp:
        * ace/Capabilities.cpp:
        * ace/Codeset_IBM1047.cpp:
        * ace/Codeset_Registry.cpp:
        * ace/Condition_Thread_Mutex.cpp:
        * ace/Connection_Recycling_Strategy.cpp:
        * ace/Containers.cpp:
        * ace/Copy_Disabled.cpp:
        * ace/Countdown_Time.cpp:
        * ace/DEV.cpp:
        * ace/DEV_Connector.cpp:
        * ace/DEV_IO.cpp:
        * ace/DLL.cpp:
        * ace/DLL_Manager.cpp:
        * ace/Date_Time.cpp:
        * ace/Dev_Poll_Reactor.cpp:
        * ace/Dirent_Selector.cpp:
        * ace/Dump.cpp:
        * ace/Dynamic.cpp:
        * ace/Dynamic_Message_Strategy.cpp:
        * ace/Dynamic_Service_Dependency.cpp:
        * ace/Event.cpp:
        * ace/Event_Handler.cpp:
        * ace/FIFO.cpp:
        * ace/FIFO_Recv.cpp:
        * ace/FIFO_Recv_Msg.cpp:
        * ace/FIFO_Send.cpp:
        * ace/FIFO_Send_Msg.cpp:
        * ace/FILE.cpp:
        * ace/FILE_Addr.cpp:
        * ace/FILE_Connector.cpp:
        * ace/FILE_IO.cpp:
        * ace/File_Lock.cpp:
        * ace/Framework_Component.cpp:
        * ace/Functor.cpp:
        * ace/Functor_String.cpp:
        * ace/Future.cpp:
        * ace/Get_Opt.cpp:
        * ace/Handle_Set.cpp:
        * ace/High_Res_Timer.cpp:
        * ace/ICMP_Socket.cpp:
        * ace/IOStream.cpp:
        * ace/IO_Cntl_Msg.cpp:
        * ace/IO_SAP.cpp:
        * ace/IPC_SAP.cpp:
        * ace/LSOCK.cpp:
        * ace/LSOCK_Acceptor.cpp:
        * ace/LSOCK_CODgram.cpp:
        * ace/LSOCK_Connector.cpp:
        * ace/LSOCK_Dgram.cpp:
        * ace/LSOCK_Stream.cpp:
        * ace/Lib_Find.cpp:
        * ace/Local_Memory_Pool.cpp:
        * ace/Local_Name_Space.cpp:
        * ace/Lock.cpp:
        * ace/Log_Msg.cpp:
        * ace/Log_Msg_Backend.cpp:
        * ace/Log_Msg_Callback.cpp:
        * ace/Log_Msg_IPC.cpp:
        * ace/Log_Msg_NT_Event_Log.cpp:
        * ace/Log_Record.cpp:
        * ace/MEM_Acceptor.cpp:
        * ace/MEM_Connector.cpp:
        * ace/MEM_IO.cpp:
        * ace/MEM_SAP.cpp:
        * ace/MEM_Stream.cpp:
        * ace/MMAP_Memory_Pool.cpp:
        * ace/Malloc_Allocator.cpp:
        * ace/Manual_Event.cpp:
        * ace/Mem_Map.cpp:
        * ace/Message_Queue.cpp:
        * ace/Message_Queue_NT.cpp:
        * ace/Message_Queue_Vx.cpp:
        * ace/Msg_WFMO_Reactor.cpp:
        * ace/Mutex.cpp:
        * ace/Name_Proxy.cpp:
        * ace/Name_Space.cpp:
        * ace/Naming_Context.cpp:
        * ace/Notification_Strategy.cpp:
        * ace/OS.cpp:
        * ace/OS_Errno.cpp:
        * ace/OS_Log_Msg_Attributes.cpp:
        * ace/OS_NS_Thread.cpp:
        * ace/OS_NS_arpa_inet.cpp:
        * ace/OS_NS_ctype.cpp:
        * ace/OS_NS_dirent.cpp:
        * ace/OS_NS_dlfcn.cpp:
        * ace/OS_NS_errno.cpp:
        * ace/OS_NS_fcntl.cpp:
        * ace/OS_NS_math.cpp:
        * ace/OS_NS_netdb.cpp:
        * ace/OS_NS_poll.cpp:
        * ace/OS_NS_pwd.cpp:
        * ace/OS_NS_regex.cpp:
        * ace/OS_NS_signal.cpp:
        * ace/OS_NS_stdio.cpp:
        * ace/OS_NS_stdlib.cpp:
        * ace/OS_NS_strings.cpp:
        * ace/OS_NS_stropts.cpp:
        * ace/OS_NS_sys_mman.cpp:
        * ace/OS_NS_sys_msg.cpp:
        * ace/OS_NS_sys_resource.cpp:
        * ace/OS_NS_sys_select.cpp:
        * ace/OS_NS_sys_shm.cpp:
        * ace/OS_NS_sys_socket.cpp:
        * ace/OS_NS_sys_stat.cpp:
        * ace/OS_NS_sys_time.cpp:
        * ace/OS_NS_sys_uio.cpp:
        * ace/OS_NS_sys_utsname.cpp:
        * ace/OS_NS_sys_wait.cpp:
        * ace/OS_NS_time.cpp:
        * ace/OS_NS_unistd.cpp:
        * ace/OS_NS_wchar.cpp:
        * ace/OS_NS_wctype.cpp:
        * ace/OS_TLI.cpp:
        * ace/OS_main.cpp:
        * ace/Obchunk.cpp:
        * ace/Object_Manager.cpp:
        * ace/Object_Manager_Base.cpp:
        * ace/PI_Malloc.cpp:
        * ace/Pagefile_Memory_Pool.cpp:
        * ace/Pipe.cpp:
        * ace/Priority_Reactor.cpp:
        * ace/Process.cpp:
        * ace/Process_Mutex.cpp:
        * ace/Process_Semaphore.cpp:
        * ace/Profile_Timer.cpp:
        * ace/RW_Mutex.cpp:
        * ace/RW_Process_Mutex.cpp:
        * ace/RW_Thread_Mutex.cpp:
        * ace/Reactor_Impl.cpp:
        * ace/Reactor_Notification_Strategy.cpp:
        * ace/Reactor_Timer_Interface.cpp:
        * ace/Read_Buffer.cpp:
        * ace/Recursive_Thread_Mutex.cpp:
        * ace/Recyclable.cpp:
        * ace/Registry.cpp:
        * ace/Registry_Name_Space.cpp:
        * ace/Remote_Tokens.cpp:
        * ace/SOCK.cpp:
        * ace/SOCK_Acceptor.cpp:
        * ace/SOCK_CODgram.cpp:
        * ace/SOCK_Connector.cpp:
        * ace/SOCK_Dgram.cpp:
        * ace/SOCK_Dgram_Bcast.cpp:
        * ace/SOCK_Dgram_Mcast.cpp:
        * ace/SOCK_IO.cpp:
        * ace/SOCK_SEQPACK_Acceptor.cpp:
        * ace/SOCK_SEQPACK_Association.cpp:
        * ace/SOCK_SEQPACK_Connector.cpp:
        * ace/SOCK_Stream.cpp:
        * ace/SPIPE.cpp:
        * ace/SPIPE_Acceptor.cpp:
        * ace/SPIPE_Addr.cpp:
        * ace/SPIPE_Connector.cpp:
        * ace/SPIPE_Stream.cpp:
        * ace/SUN_Proactor.cpp:
        * ace/SV_Message.cpp:
        * ace/SV_Message_Queue.cpp:
        * ace/SV_Semaphore_Complex.cpp:
        * ace/SV_Semaphore_Simple.cpp:
        * ace/SV_Shared_Memory.cpp:
        * ace/Sample_History.cpp:
        * ace/Sbrk_Memory_Pool.cpp:
        * ace/Sched_Params.cpp:
        * ace/Select_Reactor_T.cpp:
        * ace/Semaphore.cpp:
        * ace/Service_Manager.cpp:
        * ace/Service_Object.cpp:
        * ace/Service_Repository.cpp:
        * ace/Service_Types.cpp:
        * ace/Shared_Memory.cpp:
        * ace/Shared_Memory_MM.cpp:
        * ace/Shared_Memory_Pool.cpp:
        * ace/Shared_Object.cpp:
        * ace/Sig_Adapter.cpp:
        * ace/Sig_Handler.cpp:
        * ace/Signal.cpp:
        * ace/Stack_Trace.cpp:
        * ace/Stats.cpp:
        * ace/Synch_Options.cpp:
        * ace/System_Time.cpp:
        * ace/TLI.cpp:
        * ace/TLI_Acceptor.cpp:
        * ace/TLI_Connector.cpp:
        * ace/TLI_Stream.cpp:
        * ace/TP_Reactor.cpp:
        * ace/TSS_Adapter.cpp:
        * ace/TTY_IO.cpp:
        * ace/Thread.cpp:
        * ace/Thread_Adapter.cpp:
        * ace/Thread_Control.cpp:
        * ace/Thread_Exit.cpp:
        * ace/Thread_Hook.cpp:
        * ace/Thread_Mutex.cpp:
        * ace/Thread_Semaphore.cpp:
        * ace/Throughput_Stats.cpp:
        * ace/Time_Value.cpp:
        * ace/Timeprobe.cpp:
        * ace/Timer_List_T.cpp:
        * ace/Token.cpp:
        * ace/Token_Invariants.cpp:
        * ace/Token_Manager.cpp:
        * ace/Token_Request_Reply.cpp:
        * ace/Trace.cpp:
        * ace/UNIX_Addr.cpp:
        * ace/UPIPE_Acceptor.cpp:
        * ace/UPIPE_Connector.cpp:
        * ace/UPIPE_Stream.cpp:
        * ace/UUID.cpp:
        * ace/WFMO_Reactor.cpp:
        * ace/WIN32_Proactor.cpp:
        * ace/XTI_ATM_Mcast.cpp:
        * ace/ace_wchar.cpp:
        * ace/gethrtime.cpp:
          Removed ACE_RCSID

Thu Aug  5 08:13:51 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/CORBA_macros.h:
        * ace/Global_Macros.h:
        * ace/Vector_T.h:
        * ace/ace_wchar.h:
        * ace/config-cxx-common.h:
        * ace/config-doxygen.h:
        * ace/config-g++-common.h:
        * ace/config-hpux-11.00.h:
        * ace/config-icc-common.h:
        * ace/config-integritySCA.h:
        * ace/config-macros.h:
        * ace/config-netbsd.h:
        * ace/config-openvms.h:
        * ace/config-suncc-common.h:
        * ace/config-sunos5.4-sunc++-4.x.h:
        * ace/config-sunos5.5.h:
        * ace/config-tandem-nsk-mips-v2.h:
        * ace/config-tandem-nsk-mips-v3.h:
        * ace/config-unixware-7.1.0.h:
        * ace/config-unixware-7.1.0.udk.h:
        * ace/config-win32-borland.h:
        * ace/config-win32-dmc.h:
        * ace/config-win32-ghs.h:
        * ace/config-win32-interix.h:
        * ace/config-win32-msvc-10.h:
        * ace/config-win32-msvc-7.h:
        * ace/config-win32-msvc-8.h:
        * ace/config-win32-msvc-9.h:
        * include/makeinclude/platform_aix.GNU:
        * include/makeinclude/platform_aix_g++.GNU:
        * include/makeinclude/platform_aix_ibm.GNU:
        * include/makeinclude/platform_cray.GNU:
        * include/makeinclude/platform_freebsd.GNU:
        * include/makeinclude/platform_gnuwin32_common.GNU:
        * include/makeinclude/platform_hpux_aCC.GNU:
        * include/makeinclude/platform_hpux_gcc.GNU:
        * include/makeinclude/platform_integrity_ghs.GNU:
        * include/makeinclude/platform_irix6.x_common.GNU:
        * include/makeinclude/platform_linux_common.GNU:
        * include/makeinclude/platform_lynxos.GNU:
        * include/makeinclude/platform_macosx.GNU:
        * include/makeinclude/platform_macosx_common.GNU:
        * include/makeinclude/platform_macosx_icc.GNU:
        * include/makeinclude/platform_macosx_panther.GNU:
        * include/makeinclude/platform_netbsd.GNU:
        * include/makeinclude/platform_openbsd.GNU:
        * include/makeinclude/platform_openvms.GNU:
        * include/makeinclude/platform_qnx_rtp_gcc.GNU:
        * include/makeinclude/platform_rtems.x_g++.GNU:
        * include/makeinclude/platform_sunos5_g++.GNU:
        * include/makeinclude/platform_sunos5_sunc++.GNU:
        * include/makeinclude/platform_tandem.GNU:
        * include/makeinclude/platform_tru64_cxx.GNU:
        * include/makeinclude/platform_tru64_g++.GNU:
        * include/makeinclude/platform_unixware_g++.GNU:
        * include/makeinclude/platform_vxworks5.5.x.GNU:
        * include/makeinclude/platform_vxworks6.2.GNU:
        * include/makeinclude/platform_vxworks6.3.GNU:
        * include/makeinclude/platform_win32_dmc.GNU:
        * include/makeinclude/platform_win32_icc.GNU:
        * include/makeinclude/platform_win32_interix.GNU:
        * include/makeinclude/wrapper_macros.GNU:
        * tests/Bug_3673_Regression_Test.cpp:
        * tests/Reactor_Exceptions_Test.cpp:
        * tests/tests.mpc:
          Removed support for non exception builds, ACE_HAS_EXCEPTIONS is
          now always defined

        * rpmbuild/ace-tao.spec:
          Small updates

        * ace/Exception_Macros.h:
        * bin/MakeProjectCreator/config/exceptions.mpb:
          Removed these files.

Thu Aug  5 07:40:00 UTC 2010  Build CZar  <buildczar at prismtech dot com>

        * ace/OS_NS_Thread.cpp:
          Add the missing ; to the lines added by the fix below.
          Wed Aug  4 14:16:46 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

Wed Aug  4 17:21:17 UTC 2010  Chris Cleeland  <cleeland@ociweb.com>

        * bin/MakeProjectCreator/config/crosscompile.mpb:
          Added specific clause for cdt6.

Wed Aug  4 14:16:46 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/OS_NS_Thread.cpp:
          Check more internal return values

        * rpmbuild/ace-tao.spec-bugfixonly.patch:
          Removed this file, not needed

Tue Aug  3 12:14:51 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/generate_doxygen.pl:
        * html/index.html:
          DAnCE has its own file now and also some documentation got moved
          out of the tao directory

Sun Aug  1 18:14:03 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * NEWS:
        * bin/diff-builds-and-group-fixed-tests-only.sh:
        * bin/make_release.py:
        * docs/Download.html:
        * etc/index.html:
          Updated because of release

        * debian/*:
          Did rename actions the release script didn't do, have to sort this
          out later

Sun Aug 01 11:30:54 CEST 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ACE version 5.8.1 released.

Thu Jul 29 14:41:32 UTC 2010  Steve Huston  <shuston@riverace.com>

        * ace/Process.h (set_handles): Clarify that passing ACE_INVALID_HANDLE
          for any of the handle values will cause a duplicate of the
          corresponding ACE_STDIN/OUT/ERR to be used in the options.

Thu Jul 29 10:43:32 UTC 2010  Marcel Smit  <msmit@remedy.nl>

        * bin/MakeProjectCreator/config/global.features:
        * bin/MakeProjectCreator/config/inetssl.mpb:
        * protocols/ace/INet/inet_ssl.mpb:
          Created a new feature, inet_ssl. When set, the INet libary
          builds, using SSL. To let the INet libary use SSL, one should
          enable the inet_ssl feature in default.features and add ssl=1 to
          the platform_macos.GNU.

Mon Jul 26 20:26:53 UTC 2010  Steve Huston  <shuston@riverace.com>

        * ace/OS_NS_Thread.h: Note that the cpu_set_size to the get/set
          affinity methods is a byte count.

Mon Jul 26 07:02:30 UTC 2010  Martin Corino  <mcorino@remedy.nl>

        * bin/MakeProjectCreator/config/inet.mpb:
        * protocols/ace/INet/inet.mpc:
          Added avoids += corba_e_compact.

Thu Jul 22 04:35:30 UTC 2010  Martin Corino  <mcorino@remedy.nl>

        * bin/MakeProjectCreator/config/inet.mpb:
        * protocols/ace/INet/inet.mpc:
          Added avoids += ace_for_tao.

Wed Jul 21 18:23:32 UTC 2010  Douglas C. Schmidt  <schmidt@dre.vanderbilt.edu>

        * ace/Basic_Types.h (ACE_INT8_FORMAT_SPECIFIER): Added the missing
          "_ASCII" to the ACE_INT8_FORMAT_SPECIFIER macro usage.  Thanks
          to Andre Kostur <akostur at incognito dot com> for reporting
          this.

Wed Jul 21 15:52:32 UTC 2010  Phil Mesnier  <mesnier_p@ociweb.com>

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

          Reverted for_TAO specific change, revised the processing to
          ensure default first, then files, then cmdline directives.

Wed Jul 21 03:07:28 UTC 2010  Phil Mesnier  <mesnier_p@ociweb.com>

        * ace/Service_Gestalt.h:
        * ace/Service_Gestalt.cpp:

          Fix errors in premature committal.

Wed Jul 21 02:30:45 UTC 2010  Phil Mesnier  <mesnier_p@ociweb.com>

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

          Add a specialized open method to be called by TAO. TAO depends
          on a modified order of directive evaluation.

Tue Jul 20 18:02:03 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * docs/Download.html:
          Fixed some typos, thanks to Thomas Lockhart
          <Thomas dot lockhart at jpl dot nasa dot gov> for reporting this

Tue Jul 20 15:08:49 UTC 2010  Phil Mesnier  <mesnier_p@ociweb.com>

        * tests/Bug_3319_Regression_Test.cpp:

          Fix the test to be consistent with revised service config
          behavior. The test had assumed that ACE_Service_Config::open()
          would return 0 even if svc.conf were not present, but since it
          was setting the ignore_default_svc_conf_file to 0, the restore
          behavior of the service configurator is to fail with ENOENT in
          that case.

Tue Jul 20 08:48:00 UTC 2010  Vladimir Zykov  <vladimir.zykov@prismtech.com>

        * ace/TSS_T.cpp:
          Fixed a bug in ACE_TSS::ts_get() that only exhibited on
          SunOS/Studio builds. The later configutsyion uses ACE_HAS_THR_C_DEST
          and with that define ts_get() behaved differently. In particular it
          didn't create a ts_obj if tss_adapter was not 0.

Tue Jul 20 07:38:30 UTC 2010  Martin Corino  <mcorino@remedy.nl>

        * protocols/ace/INet/SSL_CallbackManager.h:
          Fixed comment typo.

Tue Jul 20 05:25:30 UTC 2010  Martin Corino  <mcorino@remedy.nl>

        * protocols/ace/INet/HTTP_BasicAuthentication.cpp:
        * protocols/ace/INet/HTTP_BasicAuthentication.h:
        * protocols/ace/INet/HTTP_BasicAuthentication.inl:
        * protocols/ace/INet/inet.mpc:
          Added basic support for HTTP Basic Authentication scheme.

Tue Jul 20 03:56:30 UTC 2010  Martin Corino  <mcorino@remedy.nl>

        * protocols/ace/INet/HTTP_SessionBase.cpp:
          Fixed MSVC 7.1 compile problems.

        * protocols/ace/INet/HTTP_Simple_exec.cpp:
          Fixed compile problems for non-SSL builds.

Tue Jul 20 03:25:30 UTC 2010  Martin Corino  <mcorino@remedy.nl>

        * bin/MakeProjectCreator/config/inetssl.mpb:
        * protocols/ace/INet/inet_ssl.mpb:
          Fuzz fixes.

Mon Jul 19 11:50:59 UTC 2010  Vladimir Zykov  <vladimir.zykov@prismtech.com>

        * ace/TSS_T.inl:
        * ace/TSS_T.h:
        * ace/TSS_T.cpp:
          Mostly fixed bug 3539. It doesn't fix a case when main thread
          doesn't own ACE_TSS but still uses it. Fixing the later is not
          straight forward and will require a lot more efforts.
          Also rearranged the code so that it has less duplicates.

        * tests/run_test.lst:
          Marked the test as fixed.

Mon Jul 19 09:15:30 UTC 2010  Martin Corino  <mcorino@remedy.nl>

        * bin/MakeProjectCreator/config/inet.mpb:
        * bin/MakeProjectCreator/config/global.features:
        * protocols/ace/INet/inet.mpc:
          Added new feature 'exclude_inet' to allow builds to
          explicitly exclude building INet.

Mon Jul 19 08:49:30 UTC 2010  Martin Corino  <mcorino@remedy.nl>

        * protocols/ace/INet/HTTPS_Session.cpp:
        * protocols/ace/INet/HTTPS_Session.h:
          Fixed compile errors byadding version check to disable
          'relatively' new OpenSSL functionality for builds using
          outdated OpenSSL installations (OpenSSL <= 0.9.8e).

Sat Jul 17 14:06:30 UTC 2010  Martin Corino  <mcorino@remedy.nl>

        * protocols/ace/INet/ClientRequestHandler.h:
        * protocols/ace/INet/URLBase.h:
          Some include shuffling to fix an incomplete type warning
          with MSVC.

Sat Jul 17 11:39:30 UTC 2010  Martin Corino  <mcorino@remedy.nl>

        * protocols/ace/INet/inet_ssl.mpb:
          Replaced ace_openssl base project by ssl. Fixes missing
          ACE_SSL lib link errors.

        * protocols/ace/INet/SSL_CallbackManager.cpp:
          Fixed MSVC compile errors.

Sat Jul 17 10:26:30 UTC 2010  Martin Corino  <mcorino@remedy.nl>

        * bin/MakeProjectCreator/config/inetssl.mpb:
        * bin/MakeProjectCreator/config/inet.mpb:
          Added feature project for SSL based parts of INet.
          Setting feature ssl=1 will automatically cause correct
          dependencies for SSL to be generated in INet based projects.

        * protocols/ace/INet/HTTPS_Context.cpp:
        * protocols/ace/INet/HTTPS_Context.h:
        * protocols/ace/INet/HTTPS_Context.inl:
        * protocols/ace/INet/HTTP_SessionBase.cpp:
        * protocols/ace/INet/HTTP_SessionBase.h:
        * protocols/ace/INet/HTTP_SessionBase.inl:
        * protocols/ace/INet/HTTPS_Session.cpp:
        * protocols/ace/INet/HTTPS_SessionFactory.cpp:
        * protocols/ace/INet/HTTPS_SessionFactory.h:
        * protocols/ace/INet/HTTPS_Session.h:
        * protocols/ace/INet/HTTPS_URL.cpp:
        * protocols/ace/INet/HTTPS_URL.h:
        * protocols/ace/INet/HTTPS_URL.inl:
        * protocols/ace/INet/SSL_CallbackManager.cpp:
        * protocols/ace/INet/SSL_CallbackManager.h:
        * protocols/ace/INet/SSL_CallbackManager.inl:
        * protocols/ace/INet/SSL_CertificateCallback.cpp:
        * protocols/ace/INet/SSL_CertificateCallback.h:
        * protocols/ace/INet/SSL_CertificateCallback.inl:
        * protocols/ace/INet/SSL_PasswordCallback.cpp:
        * protocols/ace/INet/SSL_PasswordCallback.h:
        * protocols/ace/INet/SSL_Proxy_Connector.cpp:
        * protocols/ace/INet/SSL_Proxy_Connector.h:
        * protocols/ace/INet/SSLSock_IOStream.cpp:
        * protocols/ace/INet/SSLSock_IOStream.h:
        * protocols/ace/INet/SSL_X509Cert.cpp:
        * protocols/ace/INet/SSL_X509Cert.h:
        * protocols/ace/INet/SSL_X509Cert.inl:
          New files implementing SSL/HTTPS support.
          Includes support for proxy CONNECT tunneling.

        * protocols/ace/INet/inet_ssl.mpb:
          Feature project which will include SSL/HTTPS support
          into INet when MPC feature ssl=1 is set.

        * protocols/ace/INet/ClientRequestHandler.cpp:
        * protocols/ace/INet/ClientRequestHandler.h:
        * protocols/ace/INet/ConnectionCache.cpp:
        * protocols/ace/INet/ConnectionCache.h:
        * protocols/ace/INet/FTP_ClientRequestHandler.cpp:
        * protocols/ace/INet/FTP_URL.cpp:
        * protocols/ace/INet/FTP_URL.h:
        * protocols/ace/INet/FTP_URL.inl:
        * protocols/ace/INet/HeaderBase.h:
        * protocols/ace/INet/HTTP_ClientRequestHandler.cpp:
        * protocols/ace/INet/HTTP_ClientRequestHandler.h:
        * protocols/ace/INet/HTTP_ClientRequestHandler.inl:
        * protocols/ace/INet/HTTP_Session.cpp:
        * protocols/ace/INet/HTTP_Session.h:
        * protocols/ace/INet/HTTP_StreamPolicyBase.h:
        * protocols/ace/INet/HTTP_StreamPolicy.h:
        * protocols/ace/INet/HTTP_URL.cpp:
        * protocols/ace/INet/HTTP_URL.h:
        * protocols/ace/INet/HTTP_URL.inl:
        * protocols/ace/INet/inet.mpc:
        * protocols/ace/INet/RequestHandler.h:
        * protocols/ace/INet/StreamHandler.cpp:
        * protocols/ace/INet/StreamInterceptor.h:
        * protocols/ace/INet/URLBase.h:
          Some redesign to accomodate addition of HTTPS.
          Some additional logging.
          Some additional documentation.

        * protocols/ace/INet/HTTP_Simple_exec.cpp:
          Extended to include HTTPS support.

        * protocols/tests/INet/MT_Get/Main.cpp:
          Added some traces.

Fri Jul 16 22:08:05 UTC 2010  Phil Mesnier  <mesnier_p@ociweb.com>

        * ace/Service_Gestalt.h:
        * ace/Service_Gestalt.cpp:

          Further refinement of service initialization process. This
          restores the order of processing, and is more explicit about
          handling a defaulted svc.conf.

Thu Jul 15 17:53:47 UTC 2010  Phil Mesnier  <mesnier_p@ociweb.com>

        * ace/Service_Gestalt.cpp:
        * THANKS:

          Restore pre-gestalt behavior of returning -1 if svc.conf does
          not exist and an ACE_Service_Config::open() is expecting to use
          the default file.

          Thanks to Daynesh Mangal (daynesh@gmail.com) for reporting the
          errant behavior.

Thu Jul 15 12:53:53 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * etc/ace.doxygen:
        * etc/ace_inet.doxygen:
        * etc/ace_man.doxygen:
        * etc/ace_qos.doxygen:
        * etc/ace_rmcast.doxygen:
        * etc/ace_ssl.doxygen:
        * etc/acexml.doxygen:
          Generate deprecated/todo pages

Thu Jul 15 12:35:30 UTC 2010  Martin Corino  <mcorino@remedy.nl>

        * ace/SSL/SSL_SOCK_Stream.h:
        * ace/SSL/SSL_SOCK_Stream.inl:
          Added two method overloads available in ACE_SOCK_Stream but
          missing from ACE_SSL_SOCK_Stream.

Thu Jul 15 09:49:28 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-doxygen.h:
          Added ACE_HAS_POSITION_INDEPENDENT_POINTERS

Thu Jul 15 09:29:58 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/generate_doxygen.pl:
        * etc/ace_inet.doxygen:
        * html/index.html:
          Added ACE INet library

Thu Jul 15 09:11:51 UTC 2010  William R. Otte  <wotte@dre.vanderbilt.edu>

        * ace/config-macosx-snowleopard.h:
        * include/makeinclude/platform_clang_common.GNU:
        * include/makeinclude/platform_macosx_common.GNU:

          Preliminary support for clang compiler.

Tue Jul 13 14:39:55 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * NEWS:
          Updated

Tue Jul 13 14:33:23 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Cached_Connect_Strategy_T.h:
        * ace/Capabilities.h:
          Doxygen fixes

Tue Jul 13 14:20:09 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/os_include/os_errno.h:
          Fixed problems with msvc 10, , thanks to Max Zhou
          <earthdog at 126.com> for supplying these changes, this fixes
          bugzilla 3873

Tue Jul 13 11:08:38 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/MakeProjectCreator/config/vc10nmake.mpb:
        * netsvcs/lib/lib.mpc:
          vc10 support, thanks to Max Zhou <earthdog at 126.com> for
          supplying these changes

Mon Jul 12 11:04:58 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/ACE.cpp:
        * ace/Activation_Queue.h:
        * ace/Active_Map_Manager.h:
        * ace/Dev_Poll_Reactor.h:
        * ace/Dev_Poll_Reactor.inl:
        * ace/Event_Handler.h:
        * ace/Filecache.h:
        * ace/Manual_Event.h:
        * ace/Map_Manager.h:
        * ace/Mem_Map.h:
        * ace/Message_Block.h:
        * ace/OS_Log_Msg_Attributes.h:
        * ace/OS_NS_unistd.h:
        * ace/Object_Manager.h:
        * ace/Recursive_Thread_Mutex.h:
          Layout, const, and doxygen fixes

Mon Jul 12 10:11:24 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/DLL.h:
        * ace/DLL_Manager.h:
        * ace/Dirent.h:
        * ace/Dump_T.h:
        * ace/Event_Handler.h:
        * ace/File_Lock.h:
        * ace/INET_Addr.h:
        * ace/Log_Msg_Callback.h:
        * ace/Log_Record.h:
        * ace/Logging_Strategy.h:
          Fixed set of doxygen warnings

Mon Jul 12 08:19:58 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Connector.h:
        * ace/Malloc_Base.h:
        * ace/SString.h:
        * ace/Stream.h:
        * ace/Task.h:
          Fixed set of doxygen warnings

Fri Jul 09 09:35:30 UTC 2010  Martin Corino  <mcorino@remedy.nl>

        * bin/PerlACE/Process_Unix.pm:
          Fix killall() valgrind handling.

Thu Jul 08 14:41:30 UTC 2010  Martin Corino  <mcorino@remedy.nl>

        * bin/PerlACE/Process_Unix.pm:
          Fix killall() valgrind handling.

Thu Jul 08 07:56:30 UTC 2010  Martin Corino  <mcorino@remedy.nl>

        * bin/PerlACE/Process_Unix.pm:
          Make killall() recognize and handle valgrind runs correctly.

Wed Jul  7 14:53:12 UTC 2010  Vladimir Zykov  <vladimir.zykov@prismtech.com>

        * tests/run_test.lst:
        * tests/Bug_3539_Regression_Test.cpp:
        * tests/tests.mpc:
          Added a test for bug 3539 as non-fixed.

Wed Jul  7 11:43:16 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * docs/bczar/bczar.html:
          Extended instructions

Tue Jul  6 12:28:43 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * docs/Download.html:
          CIAO is also online available

Tue Jul  6 11:29:41 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Message_Queue_T.cpp:
        * ace/Service_Repository.h:
        * ace/Task_T.h:
          Fixed doxygen warnings

Tue Jul  6 11:22:08 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * etc/ace.doxygen:
          Improved doxygen configuration

Tue Jul  6 11:11:06 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * etc/ace.doxygen:
        * etc/ace_man.doxygen:
        * etc/ace_qos.doxygen:
        * etc/ace_rmcast.doxygen:
        * etc/ace_ssl.doxygen:
        * etc/acexml.doxygen:
          Reduced the size of the colloboration graphs

Mon Jul  5 15:20:14 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * rpmbuild/ace-tao.spec:
          Removed some test code

Mon Jul  5 14:59:25 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * rpmbuild/ace-tao.spec:
          Added missing file, thanks to Anatoli Sakhnik
          <sakhnik at gmail dot com> for reporting this, this should fix
          bugzilla 3870

Mon Jul 05 14:32:30 UTC 2010  Martin Corino  <mcorino@remedy.nl>

        * bin/PerlACE/Process_Unix.pm:
          Fixes problem with killall() function being not selective enough.

Mon Jul  5 13:56:57 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * etc/ace.doxygen:
        * etc/ace_qos.doxygen:
        * etc/ace_rmcast.doxygen:
        * etc/ace_ssl.doxygen:
        * etc/acexml.doxygen:
          Disable include and included graphs, this should reduce the size
          of the documentation a lot

Mon Jul  5 13:29:23 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/generate_doxygen.pl:
          Some preparations to move the DAnCE doxygen files to DAnCE

        * docs/bczar/bczar.html:
          Updated release notes, made it possible to generate doxygen on
          a regular system instead of on naboo, the side effect is that the
          doxygen packages on naboo are 350Mb, on FC13 with all latest tools
          they are 1.4GB

Mon Jul  5 11:22:09 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Select_Reactor_Base.cpp:
          Fixed doxygen warning

        * etc/ace.doxygen:
        * etc/ace_man.doxygen:
        * etc/ace_qos.doxygen:
        * etc/ace_rmcast.doxygen:
        * etc/ace_ssl.doxygen:
        * etc/acexml.doxygen:
          Define ACE_INLINE as inline and not as 1

Mon Jul  5 10:56:15 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * rpmbuild/ace-tao.spec-release.patch:
          Removed this file.

Mon Jul  5 09:11:21 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * docs/Download.html:
          Removed link to very old patches and fixed typo

Mon Jul  5 09:05:43 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * docs/Download.html:
          Updated filenames in text

Mon Jul  5 08:57:09 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * docs/Download.html:
          Update latest minor release to x.8.0

Mon Jul  5 08:19:17 UTC 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/diff-builds-and-group-fixed-tests-only.sh:
          Updated for x.8.0

        * bin/generate_rel_manpages:
          Remove restriction to run on naboo, removed doxygen check, updated
          error message

        * docs/Download.html:
          Updated to x.8.0

        * etc/ace.doxygen:
          Layout changes

        * etc/index.html:
          Added 5.8

        * rpmbuild/ace-tao.spec:
          Changed version numbers to x.8.0 and added new ACE INet library

Sun Jul 04 18:57:33 CEST 2010  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ACE version 5.8 released.

Local Variables:
mode: change-log
add-log-time-format: (lambda () (progn (setq tz (getenv "TZ")) (set-time-zone-rule "UTC") (setq time (format-time-string "%a %b %e %H:%M:%S %Z %Y" (current-time))) (set-time-zone-rule tz) time))
indent-tabs-mode: nil
End: