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
|
Fri Mar 5 18:12:24 2004 Steve Huston <shuston@riverace.com>
* ace/Asynch_Acceptor.cpp (open): If any of the steps in the open fail,
close the socket and reset listen_handle_ to ACE_INVALID_HANDLE
before returning. Also added ACE_LIB_TEXT around the naked literal
strings for ACE_ERROR.
Fri Mar 5 22:56:45 UTC 2004 Don Hinton <dhinton@dre.vanderbilt.edu>
* bin/MakeProjectCreator/templates/gnu.mpd:
Converted it back to unix file by running dos2unix. Added -*-
Makefile -*- to top of file.
Fri Mar 5 16:56:25 2004 Yamuna Krishnamurthy <yamuna@oomworks.com>
* bin\tao_other_tests.lst:
Replaced the string 'RTP/UDP' with 'RTP_UDP' where specified as
a command line argument to the AVStreams tests run_test.pl. This
was to ensure that the '/' in the string does not confuse the
script parser. This should fix the run time errors in the
builds.
Fri Mar 5 12:14:56 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/config/mfc.mpb:
Set the ACE_HAS_MFC to 1 instead of just defining it.
* bin/MakeProjectCreator/config/notifytest.mpb:
* bin/MakeProjectCreator/config/rtnotify.mpb:
Switched these projects to use notification instead of notify.
The notify base project only inherited from notification and
provided nothing else.
* bin/MakeProjectCreator/config/notify.mpb:
Removed this file.
Fri Mar 5 10:56:35 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/modules/ProjectCreator.pm:
* bin/MakeProjectCreator/modules/TemplateParser.pm:
* bin/MakeProjectCreator/modules/VC7WorkspaceCreator.pm:
* bin/MakeProjectCreator/modules/WorkspaceCreator.pm:
More code optimizations. A significant time reduction has
occurred with the use of -hierarchy.
Fri Mar 5 09:47:55 2004 Olli Savia <ops@iki.fi>
* ACE-INSTALL.html
Updated LynxOS section and fixed some HTML errors.
* include/makeinclude/platform_lynxos.GNU
Compile flag -Wall is now used on all versions of LynxOS.
Fri Mar 5 01:41:54 UTC 2004 Don Hinton <dhinton@dre.vanderbilt.edu>
* ace/Node.h:
Added forward declaration for ACE_Unbounded_Queue_Const_Iterator.
* include/makeinclude/rules.bin.GNU:
* include/makeinclude/rules.lib.GNU:
* include/makeinclude/rules.local.GNU:
Moved the IDL_SRC dependencies from rules.local.GNU to the bin
and lib files to get around a problem with hand crafted makefile
rules including all dependencies in the link line.
Thu Mar 4 17:45:29 2004 Steve Huston <shuston@riverace.com>
* include/makeinclude/platform_aix_ibm.GNU: For AIX 5.2, add a compile
flag, -U__C99_RESTRICT, to work around a compiler problem that is
tickled by aio.h. This can be removed when IBM supplies a compiler
fix for Visual Age C++, which they intend to do in May 2004.
* ace/POSIX_Asynch_IO.cpp: Add #include "ace/ACE.h" to see
ACE::set_flags(), and "ace/OS_NS_sys_stat.h" to see
ACE_OS::filesize() on AIX.
Thu Mar 4 07:39:52 2004 Douglas C. Schmidt <schmidt@cs.wustl.edu>
* ace/Node.h: Added ACE_Unbounded_Queue_Const_Iterator as a
friend to ACE_Node. Thanks to Matthew Harris
<mharris@hynomics.com> for reporting this. This closes BUGID
1759.
Thu Mar 4 16:14:04 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/modules/ProjectCreator.pm:
Fixed an infinite loop introduced by the previous change.
* bin/MakeProjectCreator/modules/WorkspaceCreator.pm:
Added progress indication when writing out workspaces.
Thu Mar 4 13:19:06 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/DependencyGenerator/DependencyEditor.pm:
* bin/DependencyGenerator/DependencyGenerator.pm:
* bin/DependencyGenerator/Preprocessor.pm:
* bin/depgen.pl:
Added an option to exclude dependency information from user
specified files.
* include/makeinclude/rules.local.GNU:
Added the option to exclude dependencies found from config.h to
avoid pulling in files such as config-linux.h, config-sunos5.6.h,
etc.
* bin/g++dep:
Added an option to be compatible with depgen.pl.
Thu Mar 4 11:17:27 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/modules/AutomakeProjectCreator.pm:
* bin/MakeProjectCreator/modules/BMakeProjectCreator.pm:
* bin/MakeProjectCreator/modules/BorlandProjectCreator.pm:
* bin/MakeProjectCreator/modules/Driver.pm:
* bin/MakeProjectCreator/modules/GNUACEProjectCreator.pm:
Removed extraneous calls to sort.
* bin/MakeProjectCreator/modules/ProjectCreator.pm:
* bin/MakeProjectCreator/modules/TemplateInputReader.pm:
* bin/MakeProjectCreator/modules/TemplateParser.pm:
More code optimizations for an additional 8% performance increase.
Thu Mar 4 07:59:15 2004 Chad Elliott <elliott_c@ociweb.com>
* ace/config-lynxos.h:
* include/makeinclude/platform_lynxos.GNU:
Enable alloca for LynxOS and remove the -ansi option from CCFLAGS
(which allows users to use alloca). Thanks to Olli Savia
<ops@iki.fi> for providing this patch.
Thu Mar 4 06:39:11 2004 Olli Savia <ops@iki.fi>
* tests/Max_Default_Port_Test_IPV6.cpp
Fixed compile error on LynxOS.
Thu Mar 4 04:28:53 UTC 2004 Don Hinton <dhinton@dre.vanderbilt.edu>
* include/makeinclude/rules.local.GNU:
Added a dependency rule that all objects depend on IDL_SRC, if
it is defined. This makes more sense that having the resulting
lib or exe dependent since it's the objects that use them, or
more precisely, the cpp's include the headers, etc... Thanks to
Bala for motivating this.
Thu Mar 4 01:30:45 UTC 2004 Don Hinton <dhinton@dre.vanderbilt.edu>
* include/makeinclude/wrapper_macros.GNU:
Rolled back change: Tue Mar 2 23:57:29 UTC 2004 Don Hinton
<dhinton@dre.vanderbilt.edu>. Apparently, some compilers need
things like -I, etc..., when dealing with templates at link
time. After the BFO release, we may try to determine who needs
what, but since it isn't critical path, I've rolled it back.
Thanks to Steve Huston from pointing this out.
Wed Mar 3 13:06:59 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/modules/ProjectCreator.pm:
* bin/MakeProjectCreator/modules/TemplateParser.pm:
* bin/MakeProjectCreator/modules/WorkspaceCreator.pm:
Put in some more optimizations that make MPC about 9% faster.
Also, fixed a problem with generating implicit project
dependencies too many times when the -hierarchy option is used.
Wed Mar 3 16:58:16 UTC 2004 Don Hinton <dhinton@dre.vanderbilt.edu>
* include/makeinclude/rules.nested.GNU:
Don't use the "-C" option when invoking make recursively, use
the "cd subdir && make ..." variant instead. This fixes a
compatibility problem Clearmake. Thanks to "Pai, Ganesh"
<GPai@sonusnet.com> for this suggestion.
Wed Mar 3 13:43:17 UTC 2004 Don Hinton <dhinton@dre.vanderbilt.edu>
* bin/MakeProjectCreator/modules/GNUACEWorkspaceCreator.pm:
Use a variable $TARGET_SEP instead of '-' to seperate the
project name from the target. Thanks to Chad Elliott
<elliott_c@ociweb.com> for reporting the problem.
Wed Mar 3 07:42:54 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/modules/StringProcessor.pm:
Rewrote my optimization from Tue Mar 2 12:28:09 2004 such that
escaped double quotes are preserved.
Wed Mar 3 07:08:11 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/modules/ProjectCreator.pm:
When dealing with template's, we need to take into account the
possibility of windows absoulte paths (eg. c:\foo\gnu.mpd).
Tue Mar 2 20:03:43 2004 Ossama Othman <ossama@dre.vanderbilt.edu>
* ace/OS_NS_unistd.h (rmdir):
* ace/OS_NS_unistd.inl (rmdir):
Added ACE_OS::rmdir() implementation submitted by Andrew
T. Finnell <andrew@activesol.net>. [Bug 1409]
Wed Mar 3 03:23:35 UTC 2004 Don Hinton <dhinton@dre.vanderbilt.edu>
* bin/MakeProjectCreator/modules/GNUACEProjectCreator.pm:
Add a reverseclean target that only has a realclean dependency,
so that callers expecting a reverseclean target will get still
work. Since reverseclean is not implemented in normal
makefiles, just in top level ones, this target must be handled
explicitly. A lot of autobuilds still call reverseclean.
Tue Mar 2 18:59:53 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/modules/StringProcessor.pm:
Reverted my change from Tue Mar 2 12:28:09 2004 which broke in
certain usages.
Tue Mar 2 18:36:08 2004 Chad Elliott <elliott_c@ociweb.com>
* ace/TMCast/TMCast.mpc:
Fixed the requires by removing the comma.
Tue Mar 2 23:57:29 UTC 2004 Don Hinton <dhinton@dre.vanderbilt.edu>
* bin/MakeProjectCreator/modules/GNUACEProjectCreator.pm:
Added a check for "ciao" that mimics the behavior of
already in place for tao. This will enable us to know
if it's a ciao project so we can include a ciao specific
rules file.
* bin/MakeProjectCreator/modules/Parser.pm:
Output the name of the file that can't be opened
instead of just saying unable to read.
* bin/MakeProjectCreator/modules/ProjectCreator.pm:
Don't always tack on a file extension. This was particularly
vexing when trying to pass a different template file.
This way, you can let your shell complete the file name
that you find without having to hit the delete key 5 times.
Allow calls to pass the absolute path--just easier for
scripts to handle.
* include/makeinclude/wrapper_macros.GNU:
Removed $(CCFLAGS) $(CPPFLAGS) from the link step. Thanks
to Boris Kolpackov <boris@dre.vanderbilt.edu> for pointing
this out.
* include/makeinclude/rules.local.GNU:
Make sure assignments to CLEANUP_OBJS is always additive.
* include/makeinclude/platform_chorus.GNU:
* include/makeinclude/platform_chorus4.x_g++.GNU:
* include/makeinclude/platform_freebsd.GNU:
* include/makeinclude/platform_linux.GNU:
* include/makeinclude/platform_lynxos.GNU:
* include/makeinclude/platform_macosx.GNU:
* include/makeinclude/platform_macosx_panther.GNU:
* include/makeinclude/platform_openbsd.GNU:
* include/makeinclude/platform_psosim_g++.GNU:
* include/makeinclude/platform_qnx_neutrino.GNU:
* include/makeinclude/platform_qnx_rtp_gcc.GNU:
* include/makeinclude/platform_sunos5_g++.GNU:
* include/makeinclude/platform_unixware_g++.GNU:
Don't always include -pipe in CFLAGS, let users
control it with the pipes option.
Tue Mar 2 18:46:11 2004 Steve Huston <shuston@riverace.com>
* tests/SSL/Thread_Pool_Reactor_SSL_Test.cpp:
* tests/RMCast/RMCast_Fragment_Test.cpp:
* tests/RMCast/RMCast_Reassembly_Test.cpp: Added #include
"ace/OS_NS_string.h" to get missing ACE_OS methods on AIX.
* tests/RMCast/RMCast_Retransmission_Test.cpp: Added #include
"ace/ACE.h" to get missing methods on AIX.
Tue Mar 2 23:40:42 UTC 2004 Don Hinton <dhinton@dre.vanderbilt.edu>
* bin/create_ace_build.pl:
Don't remove files with the .exp extension from the list
of files used to create a workspace since they are used
by the gperf tests and will break autobuilds that use
this script.
Tue Mar 2 23:26:28 UTC 2004 Don Hinton <dhinton@dre.vanderbilt.edu>
* bin/g++dep:
Added the -MG option so that missing dependency files won't
cause g++ to stop processing. Thanks for Steve Huston for
pointing this out.
Modified the sed script that modifies the output to correctly
blow away only the platform specific config file. This was
needed since we now have config-all.h and config-lite.h. Thanks
to Bala for pointing out the problem.
* ace/Makefile.ace:
* ace/RMCast/Makefile:
Updated dependencies.
Tue Mar 2 23:12:17 UTC 2004 Don Hinton <dhinton@dre.vanderbilt.edu>
* tests/Dirent_Test.cpp:
Fixed the CVS Id tag.
Tue Mar 2 22:58:40 UTC 2004 Don Hinton <dhinton@dre.vanderbilt.edu>
* bin/MakeProjectCreator/modules/WorkspaceCreator.pm:
Rewrote the output generation to be more human readable
by using standard makefile techniques. Also, discovered
a bug in the dependencies (that was also present prior
to this change) since it's now easier to grok the
generated makefile. I'll fix it once I've checked in
all the other MPC changes in my queue.
Tue Mar 2 12:28:09 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/templates/bmake.mpd:
* bin/MakeProjectCreator/templates/bmakedllexe.mpt:
* bin/MakeProjectCreator/templates/bmakelibexe.mpt:
* bin/MakeProjectCreator/templates/em3vcp.mpd:
* bin/MakeProjectCreator/templates/em3vcpdllexe.mpt:
* bin/MakeProjectCreator/templates/em3vcplibexe.mpt:
* bin/MakeProjectCreator/templates/nmake.mpd:
* bin/MakeProjectCreator/templates/nmakeexe.mpt:
* bin/MakeProjectCreator/templates/vc6dsp.mpd:
* bin/MakeProjectCreator/templates/vc6dspdllexe.mpt:
* bin/MakeProjectCreator/templates/vc6dsplibexe.mpt:
* bin/MakeProjectCreator/templates/vc7.mpd:
* bin/MakeProjectCreator/templates/vc7exe.mpt:
* bin/MakeProjectCreator/templates/vc7libexe.mpt:
Allow the user to generate projects with executable names with a
modifier for different configurations similar to the library
modifier for debug/release. To enable this add '-value_template
use_modifier=1' to your MPC command line.
Tue Mar 2 12:33:51 2004 Steve Huston <shuston@riverace.com>
* m4/compiler.m4: Added HPUX_VERS to HP-UX compiler options, and
-D_HPUX_SOURCE to aC++ options. This mirrors what the traditional
platform options do.
Tue Mar 2 11:16:03 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/modules/BMakeWorkspaceCreator.pm:
* bin/MakeProjectCreator/modules/BorlandWorkspaceCreator.pm:
* bin/MakeProjectCreator/modules/NMakeWorkspaceCreator.pm:
Avoid looping and using substr to count instances of '/', use tr
instead.
* bin/MakeProjectCreator/modules/Creator.pm:
* bin/MakeProjectCreator/modules/Driver.pm:
* bin/MakeProjectCreator/modules/FeatureParser.pm:
* bin/MakeProjectCreator/modules/Parser.pm:
* bin/MakeProjectCreator/modules/ProjectCreator.pm:
* bin/MakeProjectCreator/modules/StringProcessor.pm:
* bin/MakeProjectCreator/modules/TemplateInputReader.pm:
* bin/MakeProjectCreator/modules/TemplateParser.pm:
* bin/MakeProjectCreator/modules/VC7ProjectCreator.pm:
Performed various optimizations to gain roughly a 10% increase in
performance.
* bin/MakeProjectCreator/modules/GNUACEWorkspaceCreator.pm:
Rewrote the workspace generation code to be similar to the other
make based creators and reduced the size of the generated
workspace.
* bin/MakeProjectCreator/modules/Version.pm:
Incremented the version number.
* bin/MakeProjectCreator/modules/WorkspaceCreator.pm:
Fixed two bugs in the workspace creator:
1) Using implicit as a scoped assignment caused project files to
be added multiple times which is an error.
2) When a project name with characters that could be special
characters in regular expressions are not used within a
workspace, but are referenced by other projects, the code
would bomb out.
Mon Mar 1 18:03:22 2004 Steve Huston <shuston@riverace.com>
* tests/Multicast_Test_IPV6.cpp: Added #include "ace/Min_Max.h" to
see ACE_MIN, ACE_MAX.
Mon Mar 1 22:50:51 UTC 2004 Craig Rodrigues <crodrigu@bbn.com>
* performance-tests/SCTP/SOCK_SEQPACK_srv.cpp:
Fix this test so that it actually reports
multiple interfaces properly.
Mon Mar 01 14:54:14 2004 Irfan Pyarali <irfan@oomworks.com>
* tests\MT_Reference_Counted_Notify_Test.cpp (Simple_Event_Handler):
* tests\Timer_Queue_Reference_Counting_Test.cpp (Simple_Event_Handler):
Removed asserts in add_reference() and remove_reference() for
event handlers not participating in reference counting.
Sun Feb 29 14:45:11 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/MakeProjectCreator/templates/gnu.mpd:
When building a static build, add always the staticflags flags
to the CPPFLAGS. Previously we did this only when building the
libraries, but then the executables get link errors. This fixes
compile problems when using Cygwin or MinGW in a static build.
Sun Feb 29 14:04:41 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Framework_Component_DLL_Export.h:
Added check for ACE_AS_STATIC_LIBS for setting the export flags for
proper building of static libraries.
Sun Feb 29 13:59:13 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* performance-tests/Synch-Benchmarks/Synch_Lib/export_mac.h:
Added check for ACE_AS_STATIC_LIBS for setting the export flags for
proper building of static libraries.
Sun Feb 29 09:53:15 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/msvc_static_order.lst:
Added an other dsp to build first
Sat Feb 28 15:56:11 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/msvc_static_order.lst:
Added more dsps that must be build first
Fri Feb 27 12:33:10 2004 Irfan Pyarali <irfan@oomworks.com>
* ace\Event_Handler.cpp (add_reference and remove_reference):
Previously, add_reference() and remove_reference() were called
on a event handler only if the reference counting policy was
enabled. Unfortunately, this meant that at every place where
add_reference() and remove_reference() were called, a check had
to be made to see if the reference counting policy was enabled.
It also meant that Event_Handler_var class could not be used
with event handlers that do not enable the reference counting
policy since the Event_Handler_var class was calling
add_reference() and remove_reference() without checking the
reference counting policy.
So I modified the add_reference() and remove_reference() methods
so that they check perform the necessary check for the reference
counting policy. This way the Event_Handler_var can be used
without concern for whether the event handler has the reference
counting policy enabled. Similarly, add_reference() and
remove_reference() can also be called without concern for
whether the event handler has the reference counting policy
enabled. Only in some places in the ACE library,
remove_reference() cannot be called on the event handler because
it might have been closed. Therefore, an explicit check for the
reference counting policy still needs to be performed.
Reference counting in the following files was made simple
because of above change:
- ace/Select_Reactor_Base.cpp
- ace/Select_Reactor_T.cpp
- ace/Timer_Queue_T.cpp
- ace/WFMO_Reactor.cpp
The tests/Reference_Counted_Event_Handler_Test.cpp test was
extended to check this change.
Thanks to Dom Monteiro <d.monteiro@netia.net> and Liat
(vliat1@hotmail.com) for pointing out this problem.
Fri Feb 27 11:20:30 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/modules/Creator.pm:
* bin/MakeProjectCreator/modules/Parser.pm:
* bin/MakeProjectCreator/modules/ProjectCreator.pm:
* bin/MakeProjectCreator/modules/WorkspaceCreator.pm:
Change the way lines are read so line continuation (ending a line
in \) would work uniformly within mpb, mpc and mwc files.
Fri Feb 27 08:51:20 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/modules/Creator.pm:
* bin/MakeProjectCreator/modules/ProjectCreator.pm:
Fixed a bug where 'specific' assignments were always added to
existing values. It did not allow for straight assignments or
subtractions. Now, specific assignments (additions and
subtractions) are processed as they are read instead of at the end
of the project.
Fri Feb 27 11:34:11 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/compiler.bor:
When doing a release build with BCB5 also don't use -O2. Thanks
to Andreas Wagner <awagner@ls-wagner.de> for reporting this. This
fixes bug [1754].
Fri Feb 27 09:02:07 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/OS_NS_unistd.h:
Fixed definition fsync to fix linker errors in the msvc6
static builds.
Thu Feb 26 18:08:19 2004 Steve Huston <shuston@riverace.com>
* examples/APG/Reactor/Client.cpp: Add missing #include
"ace/OS_NS_string.h" to get ACE_OS::strlen().
Thu Feb 26 18:02:41 2004 Steve Huston <shuston@riverace.com>
* m4/tls.m4: Add handling for ACE_TLS_LDFLAGS so user can specify
linker options (e.g. -L) necessary to find SSL libs.
Thu Feb 26 12:26:28 2004 Ossama Othman <ossama@dre.vanderbilt.edu>
* tests/Makefile.am (Bug_1576_Regression_Test):
Added this test to the list of tests. It was missing. Thanks
to Kevin Stacy <kevin_405@yahoo.com> for reporting the problem.
* tests/DLL_Test.cpp (dynamic_cast_test):
Corrected spelling in error message.
* THANKS:
Added Kevin Stacy to the hall of fame.
Thu Feb 26 10:54:42 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* Makefile:
Removed the CIAO_Core target, since it was brain dead in the
first place. Thanks to Ed Mulholland for motivating this.
Thu Feb 26 11:15:39 2004 Steve Huston <shuston@riverace.com>
* examples/C++NPv2/AIO_Client_Logging_Daemon.cpp: In declaration of
ACE_Output_Handler, add "using ACE_Service_Handler::open;" before
declaring the override of it. Helps to disambiguate which open()
we mean, ACE_Task::open(), or ACE_Service_Handler::open(). Sun
Forte 8 complained about this ambiguity. Thanks to Johnny Willemsen
for reporting this and working on a fix.
Wed Feb 25 13:11:47 2004 Douglas C. Schmidt <schmidt@cs.wustl.edu>
* ace/OS_NS_unistd.inl: Added support for ACE_OS::fsync().
Thanks to Michel Drapeau <michel.drapeau@asdfsadfh.com> for
reporting this.
Wed Feb 25 16:37:11 2004 Steve Huston <shuston@riverace.com>
* tests/Proactor_Test_IPV6.cpp: Fixed problem introduced in change
earlier today.
Wed Feb 25 11:39:38 2004 Chad Elliott <elliott_c@ociweb.com>
* ace/codecs.mpb:
Removed unnecessary macros. I missed this one in the previous
commit.
Wed Feb 25 11:28:11 2004 Chad Elliott <elliott_c@ociweb.com>
* ace/OS_NS_unistd.inl:
If ACE_HAS_CLOCK_GETTIME is defined, use nanosleep() in
ACE_OS::sleep (const ACE_Time_Value &tv) as is used in
the other version, ACE_OS::sleep (u_int seconds).
* ace/other.mpb:
* ace/uuid.mpb:
Removed unnecessary macros.
Wed Feb 25 12:09:31 2004 Steve Huston <shuston@riverace.com>
* tests/Proactor_Test_IPV6.cpp: Fixed problems with mismatched
char/wchar_t usage.
Wed Feb 25 10:43:32 2004 Chad Elliott <elliott_c@ociweb.com>
* ace/config-lynxos.h:
Fixed the portion of the header that determines whether we are
building on LynxOS 4.0.x or not. Thanks to Olli Savia
<ops@iki.fi> for reporting this problem and testing my changes on
LynxOS 3.1.0.
Tue Feb 24 17:31:22 2004 Steve Huston <shuston@riverace.com>
* examples/APG/Reactor/Client.cpp: Fixed manipulation and iterations_
count and way that memory is copied into a new ACE_Message_Block.
Thanks to Karen L. Regner <karen.regner@swri.org> for reporting
these problems.
* THANKS: Added Karen Regner to the Hall of Fame.
Tue Feb 24 17:22:45 2004 Steve Huston <shuston@riverace.com>
* ace/Message_Block.h: Fixed up some of the documentation; clarified
that the data buffer given to a constructor is not copied anywhere,
but referenced.
Tue Feb 24 18:57:11 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/msvc_static_order.lst:
Added another dsp that must be build first
Tue Feb 24 18:13:19 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* performance-tests/Synch-Benchmarks/Base_Test/Baseline_Test{h,cpp}:
Fixed compile problems in wchar builds
Tue Feb 24 17:58:43 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Hash_Map_Manager_T.{h,i}:
Added protected accessor methods cur_size and table. People which
create a derived class can use these accessors. Thanks to Ganesh Pai
<GPai@sonusnet.com> for the idea.
Tue Feb 24 17:34:11 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* performance-tests/Synch-Benchmarks/Perf_Test/Adaptive_Lock_Performance_Test_Base.h:
* performance-tests/Synch-Benchmarks/Perf_Test/adaptive_mutex_test.cpp:
* performance-tests/Synch-Benchmarks/Perf_Test/adaptive_recursive_lock_test.cpp:
* performance-tests/Synch-Benchmarks/Perf_Test/adaptive_sema_test.cpp:
* performance-tests/Synch-Benchmarks/Perf_Test/Benchmark_Performance.{h,cpp}:
* performance-tests/Synch-Benchmarks/Perf_Test/guard_test.cpp:
* performance-tests/Synch-Benchmarks/Perf_Test/Performance_Test.{h,cpp}:
* performance-tests/Synch-Benchmarks/Perf_Test/Performance_Test_Options.{h,cpp,i}:
* performance-tests/Synch-Benchmarks/Perf_Test/pipe_proc_test.cpp:
* performance-tests/Synch-Benchmarks/Perf_Test/pipe_thr_test.cpp:
* performance-tests/Synch-Benchmarks/Perf_Test/sysvsema_test.cpp:
Fixed compile problems in wchar builds
Tue Feb 24 07:49:17 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/modules/GNUACEProjectCreator.pm:
Added a fill_value() template value called mpc_files which returns
an array of mpb files and the mpc file that is currently being
processed.
* bin/MakeProjectCreator/modules/HTMLProjectCreator.pm:
Fixed a divide by zero error that would arise when there is no
inheritance at all.
* bin/MakeProjectCreator/README:
* bin/MakeProjectCreator/modules/ProjectCreator.pm:
* bin/MakeProjectCreator/templates/bmake.mpd:
* bin/MakeProjectCreator/templates/bor.mpd:
* bin/MakeProjectCreator/templates/em3vcp.mpd:
* bin/MakeProjectCreator/templates/gnu.mpd:
* bin/MakeProjectCreator/templates/html.mpd:
* bin/MakeProjectCreator/templates/make.mpd:
* bin/MakeProjectCreator/templates/nmake.mpd:
* bin/MakeProjectCreator/templates/va4icc.mpd:
* bin/MakeProjectCreator/templates/vc6dsp.mpd:
* bin/MakeProjectCreator/templates/vc7.mpd:
Added a new keyword called pure_libs which is similar to lit_libs
however no file extension is added to the name. So, it is
expected that the user will provide the complete library name when
using pure_libs.
Mon Feb 23 16:57:19 2004 Steve Huston <shuston@riverace.com>
* ace/OS_NS_unistd.inl (write): On Windows with overlapped mode in
an error condition, need to use ACE_FAIL_RETURN, not naked return,
to properly set errno to GetLastError.
Mon Feb 23 17:33:04 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/msvc_static_order.lst:
Added some more project files that must be build first
Mon Feb 23 16:08:43 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/ACE_export.h:
When using Cygwin and MinGW GCC version 3.3.1 or later we get dozens
of warnings about methods that are defined locally after being
referenced with dllimport. So, when using Cygwin or MinGW, when
building with inlining enabled, make sure the methods in the ACE_OS
namespace are marked as inline and not with dllimport. This fixes
the warnings in the ACE_OS namespace but not the warnings in all
other places. Thanks to Wu Yongwei <adah@netstd.com> for sending
a fix for this.
Mon Feb 23 07:03:11 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/USAGE:
* bin/MakeProjectCreator/templates/html.mpd:
* bin/MakeProjectCreator/modules/HTMLProjectCreator.pm:
* bin/MakeProjectCreator/modules/HTMLWorkspaceCreator.pm:
* bin/MakeProjectCreator/modules/TemplateParser.pm:
* bin/MakeProjectCreator/modules/MPC.pm:
* bin/MakeProjectCreator/modules/MWC.pm:
Added Justin Michel's HTML workspace and project creator and put
in many enhancements including an inheritance hierarchy display
and information from the MPC templates (when used with the -ti
option).
* bin/MakeProjectCreator/modules/ProjectCreator.pm:
Provide the full file names to the base projects and let the
individual project creators deal with that.
* bin/MakeProjectCreator/modules/VA4ProjectCreator.pm:
* bin/MakeProjectCreator/modules/VC6ProjectCreator.pm:
* bin/MakeProjectCreator/modules/VC7ProjectCreator.pm:
Removed the unused separate_static_project() method.
* bin/MakeProjectCreator/templates/em3vcp.mpd:
* bin/MakeProjectCreator/templates/em3vcpdll.mpt:
* bin/MakeProjectCreator/templates/em3vcpdllexe.mpt:
* bin/MakeProjectCreator/templates/em3vcplib.mpt:
* bin/MakeProjectCreator/templates/em3vcplibexe.mpt:
Renamed some temple variables.
Sat Feb 21 14:24:20 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* include/makeinclude/platform_macosx_panther.GNU:
Added -mpcpu=G3 and -mtune=G4 to OCFLAGS. Mac OS X 10.3 requires
a PowerPC G3 chip and hence this isn't adding any restrictions
to ACE/TAO that the target platform doesn't already have for
itself. Thanks to Thomas Costa <oohrah@mac.com> for the
patches.
Sat Feb 21 19:56:13 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/msvc_static_order.lst:
Added some more project files that must be build first when doing
at full static build.
Sat Feb 21 19:49:11 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/msvc_static_order.lst:
Build FaultTolerance.dsp after FTORB_Utils and PortableGroup
Sat Feb 21 15:14:43 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* Kokyu/tests/EDF/test.cpp:
Fixed compile problem in wchar build.
Sat Feb 21 15:08:12 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* performance-tests/Synch-Benchmarks/synch_driver.cpp:
Fixed compile problem in wchar build.
Sat Feb 21 08:33:55 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* ace/DEV_IO.i (recv_n):
Using ACE::recv_n () created problems on Win32 serial port
code. Now we call recv_n () on all platform on all platforms but
Win32. On Win32 we call read_n () which works. Thanks to Philip
Miller <pwmiller@sarnoff.com> for reporting the problem.
Sat Feb 21 08:30:53 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* ace/CDR_Base.h:
* ace/CDR_Base.cpp:
Reverted this change "Fri Feb 20 17:14:46 2004 Irfan Pyarali
<irfan@oomworks.com>" as I work about a way to handle
this.
Fri Feb 20 18:21:39 2004 Steve Huston <shuston@riverace.com>
* examples/C++NPv2/AC_Client_Logging_Daemon.cpp:
AC_Input_Handler::close() should accept a u_long, not u_int, to
properly override ACE_Svc_Handler::close().
AC_CLD_Connector::connect_svc_handler() first arg is a
ACE_Svc_Handler*&, not ACE_Svc_Handler*, to properly override
ACE_Connector::connect_svc_handler().
Thanks to Johnny Willemsen for pointing these out.
Fri Feb 20 17:14:46 2004 Irfan Pyarali <irfan@oomworks.com>
* ace/CDR_Base.{h,cpp} (NonNative LongLong and LongDouble):
Added assignment operators for these two types.
* ace/CDR_Stream.cpp (read_16):
The function for reading a longdouble was adjusting and aligning
the buffer to longlong size rather than to longdouble size.
Fri Feb 20 17:12:14 2004 Yamuna Krishnamurthy <yamuna@oomworks.com>
* bin/tao_other_tests.lst:
Modified script to run Pluggable and Simple_Two_Stage tests with
SCTP_SEQ transport protocol only when the SCTP config flag is
set.
Fri Feb 20 21:18:13 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* Static_Performance.dsw:
* netsvcs/clients/Naming/Dump_Restore/Dump_Restore_static.dsp:
* examples/Service_Configurator/IPC-tests/server/Server_static.dsp:
* examples/ASX/CCM_App/CCM_App_static.dsp:
Removed these static msvc6 project files. Use MPC to generate these
if you need them. These are outdated and should have gone before 1.4
was released.
Fri Feb 20 18:47:26 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/msvc_static_order.lst:
Added FaultTolerance.dsp, RTCosScheduling and FtRtEvent.dsp to this
file, so that they are build first with all other needed libs in the
static builds.
Fri Feb 20 16:40:13 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* apps/mkcsregdb/mkcsregdb.cpp:
Fixed warning in BCB builds about comparing signed and unsigned
values
Fri Feb 20 07:51:04 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* etc/ace.doxygen:
Reverted the change "Sun Dec 28 15:09:34 UTC 2003 Don Hinton
<dhinton@dresystems.com>" since it broke stuff in
ACE-categories.html. Don seems to have a better fix. Till
then. This reversal will create problems for folks who untar
doxygen documentation on platforms where the path length could
be an issue.
Thu Feb 19 15:22:49 2004 Steve Huston <shuston@riverace.com>
* ace/Template_Instantiations.cpp: Add a block to keep HP aC++ from
issuing a warning about an empty translation unit.
* ace/Global_Macros.h: Added #include "ace/config-lite.h" because
this file checks on config options.
* ace/config-all.h: No need to include "ace/Global_Macros.h" from here.
* ace/MEM_Addr.cpp (same_host): To account for IPv4/IPv6 differences,
use ACE_INET_Addr::operator==. Because that method takes the port
number into account when comparing, and we don't care about the
port number, copy the two addresses to new ACE_INET_Addr objects
and set their port numbers to 0, then compare.
* tests/Multicast_Test_IPV6.cpp:
* tests/Proactor_Test_IPV6.cpp: Corrected name of log file so
the test script can find it.
Thu Feb 19 08:06:09 2004 Douglas C. Schmidt <schmidt@cs.wustl.edu>
* ace/OS_NS_sys_stat.inl (lstat): Removed the ACE_WIN32
branch since Windows doesn't support _lstat(). Thanks to
Johnny Willemsen for this.
* ace/config-win32-common.h: Added ACE_LACKS_LSTAT. Thanks to
Johnny Willemsen for this.
Thu Feb 19 11:40:11 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Dirent_Test.cpp:
Fixed typo
Wed Feb 18 13:51:28 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/modules/Creator.pm:
* bin/MakeProjectCreator/modules/FeatureParser.pm:
* bin/MakeProjectCreator/modules/OutputMessage.pm:
* bin/MakeProjectCreator/modules/Parser.pm:
Make all of the error and diagnostic messages go through the
OutputMessage module.
* bin/MakeProjectCreator/modules/ProjectCreator.pm:
Made inheritance hierarchy information available to the project
creator subclasses.
* bin/MakeProjectCreator/modules/Version.pm:
Increment the version number.
* bin/MakeProjectCreator/modules/WorkspaceCreator.pm:
Fixed a problem with the implicit inter-project dependency
generation code. It now looks at indirect project dependency to
avoid adding inter-project dependencies when they are not needed.
This fixes [BUGID 1653].
Wed Feb 18 11:36:44 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/templates/bmake.mpd:
Added a missing <%endif%>.
Wed Feb 18 10:41:07 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* ace/OS_NS_sys_stat.inl: Removed an extra endif. Thanks to Don
Hinton for sending the patch.
Wed Feb 18 07:04:55 2004 Douglas C. Schmidt <schmidt@cs.wustl.edu>
* ace/OS_NS_sys_stat.{h,inl}: Changed the first parameter of
lstat() to be ACE_TCHAR rather than just char and revised the
#defines so things should work better on Windows. Thanks to
Johnny Willemsen for reporting this.
* tests/Dirent_Test.cpp (dirent_count): Rearranged some
code so the test would work. Thanks to Zvika Ashani
<zvika@aspectusvi.com> for reporting this and testing it.
* ace/os_include/sys/os_stat.h: Changed S_IFLNK to 0200000.
Thanks to Zvika Ashani <zvika@aspectusvi.com> for reporting
this and testing it.
Tue Feb 17 19:55:56 UTC 2004 Craig Rodrigues <crodrigu@bbn.com>
* ace/SOCK_SEQPACK_Connector.cpp:
Add #include <ace/OS_NS_string.h> to get ACE_OS::memcpy().
Tue Feb 17 10:29:34 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/USAGE:
* bin/MakeProjectCreator/modules/ProjectCreator.pm:
* bin/MakeProjectCreator/modules/VC6ProjectCreator.pm:
* bin/MakeProjectCreator/modules/VC7ProjectCreator.pm:
Added an environment variable,
MPC_DEPENDENCY_COMBINED_STATIC_LIBRARY, to control the creation of
inter-project dependencies of static libraries for the em3, vc6,
vc7 and vc71 project types. If the environment variable is set,
MPC will generate inter-project dependencies for static libraries.
Whereas, normally it would not.
* bin/MakeProjectCreator/modules/VA4ProjectCreator.pm:
Removed a redundant version of the translate_value() method.
Mon Feb 16 08:06:23 2004 Douglas C. Schmidt <schmidt@cs.wustl.edu>
* ace/os_include/sys/os_stat.h: Changed the value of S_IFLNK so
that it's different than S_IFREG. Thanks to Zvika Ashani
<zvika@aspectusvi.com> for reporting this.
Mon Feb 16 13:40:34 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/config/openssl.mpb:
* bin/MakeProjectCreator/config/qos.mpb:
* bin/MakeProjectCreator/config/qt.mpb:
* bin/MakeProjectCreator/config/zlib.mpb:
Added bmake to the specific sections for these base projects.
Sun Feb 15 16:34:58 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* ace/os_include/sys/os_stat.h:
Fixed a typo that was causing compile errors on Win32.
Sun Feb 15 09:40:46 2004 Douglas C. Schmidt <schmidt@cs.wustl.edu>
* ace/os_include/sys/os_stat.h: Added a #define for
S_IFLNK for Windows platforms, which lack this #define. Thanks
to Zvika Ashani for reporting this.
Sun Feb 15 10:00:58 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* tests/Dirent_Test.cpp:
Fixed unused function warnings.
Sat Feb 14 11:41:27 2004 Douglas C. Schmidt <schmidt@cs.wustl.edu>
* ace/OS_NS_sys_stat.inl: Implement lstat() so that it'll
use stat() on platforms that don't support lstat().
* tests/Dirent_Test.cpp: Updated this test so it will
illustrate how to recurse through a hierarchical directory
structure. Thanks to Zvika Ashani <zvika@aspectusvi.com> for
helping to motivate this example and for providing the initial
implementation.
Sat Feb 14 09:22:25 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* ace/TMCast/Makefile:
* ace/TMCast/TMCast.mpc:
Needs threads=1 to compile.
Sat Feb 14 08:48:10 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* ace/TMCast/Group.cpp:
Fixed compile errors in daily builds.
Fri Feb 13 12:21:06 2004 Douglas C. Schmidt <schmidt@cs.wustl.edu>
* ace/Process_Manager.cpp (wait): If the
ACE_Event_Handler::handle_exit() methods kills a managed
process, the process_table_ array is modified before
this->remove_proc (idx) is called. In this case the value of idx
is wrong, so we replace remove_proc(idx) with remove(pid).
Thanks to Carsten Prescher <carsten.prescher@sysde.eads.net> for
reporting this. This fixes bugid 1743.
Fri Feb 13 09:47:25 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* ace/CDR_Stream.cpp (clone_from):
The check that is done before we go for an allocation needs to
include the CDR alignment.
* ace/TMCast/Group.cpp:
Use standard macros like ACE_SYNCH_MUTEX that can compile in
single-threaded and multi-threaded builds. Thanks to Duane
Binder for providing the patches.
Fri Feb 13 10:50:31 2004 Steve Huston <shuston@riverace.com>
* examples/APG/Timers/Task.cpp: In main(), interval should be
initialized with 100000 usecs, not 1000, to be .1 sec as the
comment indicates. Thanks to Norm Whitehead
<Norm_Whitehead@raytheon.com> for reporting this.
* THANKS: Added Norm Whitehead to the Hall of Fame.
Thu Feb 12 10:40:40 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* docs/ACE-categories.html:
Fixed the url location. But the file names will not work since
we have broken the name generation in doxygen. We will fix that
next.
Thu Feb 12 09:34:37 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/depgen.pl:
Added the ACE_PLATFORM_CONFIG environment variable to the
replacement list. I'm not sure why this is desirable, but g++dep
does it so now depgen.pl does it.
* bin/DependencyGenerator/DependencyEditor.pm:
* bin/DependencyGenerator/DependencyGenerator.pm:
* bin/DependencyGenerator/GNUDependencyWriter.pm:
* bin/DependencyGenerator/GNUObjectGenerator.pm:
* bin/DependencyGenerator/NMakeObjectGenerator.pm:
* bin/DependencyGenerator/ObjectGenerator.pm:
* bin/DependencyGenerator/Preprocessor.pm:
Made many optimizations to compensate for the additional
replacement variable.
* bin/MakeProjectCreator/config/fault_tolerance.mpb:
The fault_tolerance base project needs the ftorb base project.
Wed Feb 11 16:25:11 2004 Steve Huston <shuston@riverace.com>
* ace/INET_Addr.cpp (get_host_addr): On Windows for IPv6, don't try
to call ACE_OS::inet_ntop() - it's not supported. The rough
equivalent is getnameinfo(). Rather than add this at the ACE_OS
layer after BFO (getnameinfo() may have been replaced by newer
APIs in other OSes) add the getnameinfo() call in here.
This fixes the crash in INET_Addr_Test on Windows w/ IPv6.
Wed Feb 11 13:14:39 2004 Steve Huston <shuston@riverace.com>
* tests/INET_Addr_Test_IPV6.cpp: Cast INADDR_ANY to ACE_UINT32 to
disambiguate it from a 0 char*. Fixes compile error on Windows.
Wed Feb 11 15:39:29 GMT 2004 Paul Morrison <epm@prismtechnologies.com>
* examples/APG/Signals/SigAction.cpp
Added a reinterpret_cast to fix a build error with LynxOS.
Wed Feb 11 15:31:06 GMT 2004 Paul Morrison <epm@prismtechnologies.com>
* TAO/orbsvcs/Logging_Service/Basic_Logging_Service/Makefile
* TAO/orbsvcs/Logging_Service/Event_Logging_Service/Makefile
* TAO/orbsvcs/Logging_Service/Notify_Logging_Service/Makefile
* TAO/orbsvcs/examples/Log/RTEvent/Makefile
Added -lTAO_Svc_Utils to LDLIBS line to remove link errors with
LynxOS build.
Wed Feb 11 07:36:16 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/config/default.rel:
* bin/MakeProjectCreator/modules/Driver.pm:
Added the ability to use wildcards in the default.rel file. For
example, *_ROOT is now used to pick up all environment variables
that end in _ROOT.
Tue Feb 10 13:32:51 2004 Steve Huston <shuston@riverace.com>
* examples/APG/Proactor/HA_Proactive_Status.cpp: Add ACE_TEXT
around string literal and make the "need async I/O" message
more explicit.
Tue Feb 10 11:27:59 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/config/bison.mpb:
* bin/MakeProjectCreator/config/flex.mpb:
* bin/MakeProjectCreator/config/lex.mpb:
Added base projects with custom definitions for bison, flex and
lex. Currently, yacc can't be supported since the output file
can't be explicitly specified.
* bin/MakeProjectCreator/modules/ProjectCreator.pm:
Added the line number to an informational message.
* bin/MakeProjectCreator/templates/make.mpd:
Fixed this template to allow source files to exist within
sub-directories, but have the object files go in the build
directory.
Tue Feb 10 15:51:50 UTC 2004 Craig Rodrigues <crodrigu@bbn.com>
* include/makeinclude/platform_linux.GNU:
Even if the user overrides PLATFORM_SCTP_CPPFLAGS in
platform_macros.GNU, either ACE_HAS_OPENSS7_SCTP or
ACE_HAS_LKSCTP *must* be added to PLATFORM_SCTP_CPPFLAGS, otherwise
wrong code will get compiled. Also, for sctp=lksctp, do
not hardcode PLATFORM_SCTP_LIBS to /usr/local/lib/libsctp.a.
` Instead set PLATFORM_SCTP_LDFLAGS to -L/usr/local/lib
and set PLATFORM_SCTP_LIBS to -lsctp.
Tue Feb 10 08:45:10 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/templates/gnu.mpd:
Fixed a bug in the template where no binary targets would be built
if there are no libraries linked in.
Tue Feb 10 07:29:55 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* ace/OS_NS_wchar.h:
#included ace/os_include/os_errno.h. Needed for builds where
ACE_HAS_SIGNAL_SAFE_OS_CALLS is defined. Thanks to Kobi
Cohen-Arazi for the patch.
Mon Feb 9 18:21:41 2004 Steve Huston <shuston@riverace.com>
* examples/APG/Naming/Name_Binding.h: The Name_Binding destructor
should use ACE_OS::free(), not delete[], to release type_. It
was allocated using ACE_OS::strdup().
Mon Feb 9 16:10:07 2004 Douglas C. Schmidt <schmidt@cs.wustl.edu>
* ace/Memory_Pool.cpp: ACE_Shared_Memory_Pool::commit_backing_store_name()
and ACE_Shared_Memory_Pool::handle_signal() ACE_ERROR_RETURN
macros were returning the wrong value (0 instead of -1). Thanks
to Kobi Cohen-Arazi <kobi-co@barak-online.net> for reporting
this problem.
Mon Feb 9 13:58:30 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/DependencyGenerator/GNUObjectGenerator.pm:
Fixed a bug where cpp files in subdirectories would have the wrong
target name generated in the dependencies.
* bin/DependencyGenerator/Preprocessor.pm:
Removed an unnecessary directory in the include search path.
Mon Feb 9 10:31:40 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/DependencyGenerator/Preprocessor.pm:
If the file for which dependencies are being generated contains a
directory name, then we need to look for include files in that
directory.
Mon Feb 9 07:00:05 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/templates/bmake.mpd:
Added the custom generated files to the realclean target.
Sun Feb 8 15:36:30 2004 Douglas C. Schmidt <schmidt@cs.wustl.edu>
* THANKS: Just added the 1,800th contributor to the THANKS file!!
Sun Feb 8 15:34:11 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/MakeProjectCreator/templates/bor.mpd:
Also generate a realclean target for the IDL files so that IDL
generated files are removed when running a realclean.
Sun Feb 8 14:25:43 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/MakeProjectCreator/templates/cbx.mpd:
Added first version support of using the Cygwin compiler within
the CBuilderX Development Environment
Sun Feb 8 14:02:53 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/MakeProjectCreator/templates/cbx.mpd:
Added MinGW support for in the CBuilderX IDE
Sun Feb 8 13:06:13 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/MakeProjectCreator/templates/cbx.mpd:
Improved the CBuilderX template. Don't compile template files and
disabled some warnings.
Sat Feb 7 19:33:56 2004 Douglas C. Schmidt <schmidt@cs.wustl.edu>
* examples/RMCast/Send_File/Sender.cpp (ACE_TMAIN):
Fixed a typo in the comments. Thanks to Olli Savia <ops@iki.fi>
for the patch.
Fri Feb 6 15:49:37 2004 Jeff Parsons <j.parsons@vanderbilt.edu>
* bin/MakeProjectCreator/config/ciao_client.mpb:
* bin/MakeProjectCreator/config/ciao_servant.mpb:
Added TAO_ROOT/tao and CIAO_ROOT/ciao to the include
paths (C++ and (C)IDL). These additions allow users
to include <orb.idl> or <Components.idl> without
being concerned about the specific directory they
reside in.
Fri Feb 6 14:53:27 2004 Tao Lu <lu@dre.vanderbilt.edu>
* bin/MakeProjectCreator/config/global.features:
Added a new feature cidl into the global features.
This feature is turned off by default, so no makefiles
or project files will be gnerated for CCF and CIDLC.
Fri Feb 6 14:13:25 2004 Douglas C. Schmidt <schmidt@cs.wustl.edu>
* ace/Time_Value.inl (msec): Changed the return type of
ACE_Time_Value::msec() from long to unsigned long to prevent
problems with wrap-arounds that yield negative numbers. Thanks
to Matthew Gillen <gillen@ohio.edu> for this fix.
Fri Feb 6 11:50:36 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* ace/INET_Addr.cpp:
Fixes a problem that this change "Thu Jan 15 08:02:23 2004
Douglas C. Schmidt <schmidt@cse.wustl.edu>" opened up and which
Craig Rodrigues reported. This problem has been lying around for
almost an year now. In the static method
get_port_number_from_name (), if we get a portnumber 0
(perfectly valid to send a 0) we missed to check for port
0. This has now been fixed. Thanks to Craig for reporting this.
Fri Feb 6 09:48:01 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* include/makeinclude/platform_sunos5_sunc++.GNU (CPPFLAGS):
* include/makeinclude/platform_sunos5_g++.GNU (CPPFLAGS):
Reverted the change "Fri Feb 6 09:31:30 2004 Balachandran
Natarajan <bala@dre.vanderbilt.edu>" since it creates more
problems.
* ace/config-sunos5.5.h:
Added ACE_LACKS_SWAB. This is a lie. There are signatures
mismatch and adding compile time options that get the right
signatures messes things up a lot. Someone needs to take a look
at it fix the compile time options properly.
Fri Feb 6 09:35:13 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/config/rteventlogadmin.mpb:
Changed to inherit from dslogadmin and rtoldevent instead of
dseventlogadmin.
Fri Feb 6 09:31:30 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* include/makeinclude/platform_sunos5_sunc++.GNU (CPPFLAGS):
* include/makeinclude/platform_sunos5_g++.GNU (CPPFLAGS):
Added -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED=1 to
CPPFLAGS. This should fix the compile errors in Solaris builds.
Fri Feb 6 09:04:50 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/templates/make.mpd:
Added support for dynamicflags, staticflags and rc files.
* bin/MakeProjectCreator/templates/makedll.mpt:
Added the _REENTRANT macro to the extracppflags for many of the
platforms.
Fri Feb 6 06:35:32 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/USAGE:
Updated the usage to reflect the new Cbx workspace type.
* bin/MakeProjectCreator/modules/CbxWorkspaceCreator.pm:
* bin/MakeProjectCreator/modules/MWC.pm:
Added the workspace counterpart to the CbxProjectCreator. Thanks
to Johnny Willemsen for providing me an example workspace.
Fri Feb 6 11:48:13 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/rules.local.GNU:
Fixed typo in this file which caused build problems when .rc are
used (Cygwin and MinGW do this).
Thu Feb 5 13:38:15 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/templates/bmake.mpd:
Added rules for all of the MPC supported C++ file extensions.
Thu Feb 5 11:25:50 2004 Boris Kolpackov <boris@dre.vanderbilt.edu>
* include/makeinclude/rules.bin.GNU:
* include/makeinclude/rules.lib.GNU:
* include/makeinclude/rules.local.GNU:
Modified build rules to allow projects with sources in sub-
directoris. Thanks to Don Hinton <dhinton@dre.vanderbilt.edu>
for his help.
Thu Feb 5 08:48:27 2004 Douglas C. Schmidt <schmidt@cs.wustl.edu>
* ace/Thread_Manager.{h,cpp}: added a new methods called
testterminate() which checks to see whether a thread has
terminated or not. Thanks to Avi Ouziel <ouziel_a@hotmail.com>
for this suggestion.
Thu Feb 5 07:55:10 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/modules/BorlandProjectCreator.pm:
Fixed a bug where Borland projects generated on UNIX would not
reflect the correct cppdir value.
* bin/MakeProjectCreator/modules/BorlandWorkspaceCreator.pm:
* bin/MakeProjectCreator/modules/GNUACEWorkspaceCreator.pm:
* bin/MakeProjectCreator/modules/MakeWorkspaceCreator.pm:
* bin/MakeProjectCreator/modules/NMakeWorkspaceCreator.pm:
Sort the projects names so projects are easier to find in large
lists.
* bin/MakeProjectCreator/modules/Driver.pm:
Fixed a bug in the usage output.
* bin/MakeProjectCreator/modules/Version.pm:
Updated the MPC version number.
* bin/MakeProjectCreator/USAGE:
Updated the usage to reflect the new alternative Borland Make
project type.
* bin/MakeProjectCreator/modules/MPC.pm:
* bin/MakeProjectCreator/modules/MWC.pm:
* bin/MakeProjectCreator/modules/BMakeWorkspaceCreator.pm:
* bin/MakeProjectCreator/modules/BMakeProjectCreator.pm:
* bin/MakeProjectCreator/templates/bmake.mpd:
* bin/MakeProjectCreator/templates/bmakecommon.mpt:
* bin/MakeProjectCreator/templates/bmakedll.mpt:
* bin/MakeProjectCreator/templates/bmakedllexe.mpt:
* bin/MakeProjectCreator/templates/bmakelib.mpt:
* bin/MakeProjectCreator/templates/bmakelibexe.mpt:
Added a new alternative Borland Make project type called bmake.
It does not rely on any of the .bor files in
ACE_wrappers/include/makeinclude.
Wed Feb 4 21:55:38 UTC 2004 Don Hinton <dhinton@dre.vanderbilt.edu>
* ace/config-lynxos.h:
* ace/os_include/os_stdlib.h:
* ace/os_include/os_unistd.h:
Moved the prototypes for getopt() and putenv() out of
config-lynxos.h and into the appropriate os_include header.
Added prototype of swab() to os_unistd.h. Thanks to Olli Savia
<ops@iki.fi> for the patch.
Wed Feb 4 14:21:46 2004 Jeff Parsons <j.parsons@vanderbilt.edu>
* bin/MakeProjectCreator/config/ciao_client.mpb:
* bin/MakeProjectCreator/config/ciao_servant.mpb:
* bin/MakeProjectCreator/config/orbsvcsexe.mpb:
* bin/MakeProjectCreator/config/orbsvcslib.mpb:
* bin/MakeProjectCreator/config/taodefaults.mpb:
* bin/MakeProjectCreator/config/taoidldefaults.mpb:
* bin/MakeProjectCreator/config/valuetype.mpb:
Removed all path includes except TAO_ROOT and CIAO_ROOT,
for IDL, CIDL and C++ compilers.
Wed Feb 4 18:15:16 UTC 2004 Craig Rodrigues <crodrigu@bbn.com>
* include/makeinclude/platform_linux.GNU: Allow
user to override SCTP flags in platform_macros.GNU
before including platform_linux.GNU.
Wed Feb 4 17:41:25 UTC 2004 Craig Rodrigues <crodrigu@bbn.com>
* include/makeinclude/platform_freebsd.GNU:
Change thread flags to reflect new changes in FreeBSD.
KSE-based -lpthread is now the default library in
FreeBSD-CURRENT.
Tue Feb 3 16:21:49 2004 Steve Huston <shuston@riverace.com>
* m4/compiler.m4: If --disable-rtti is specified on AIX, add
-DACE_LACKS_RTTI to CXXFLAGS.
* netsvcs/clients/Naming/Client/Makefile.am:
* netsvcs/clients/Naming/Dump_Restore/Makefile.am: Removed the
extraneous path prefix for the required same-directory libraries in
main_LDADD to allow the Makefile to see the library and build it
first at make time.
Tue Feb 3 14:35:53 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* ace/config-win32-msvc-6.h:
* ace/config-win32-common.h:
Moved the definition of ACE_HAS_NONCONST_SWAB from VC6 to
win32-common.h. Thanks to Andrew G. Harvey <agh@cisco.com>
for the suggestion.
Tue Feb 3 11:36:41 2004 Steve Huston <shuston@riverace.com>
* examples/APG/Reactor/Client.cpp:
* examples/APG/ThreadSafety/TSS.cpp: Add template instantiations needed
to correct LynxOS build. Thanks to Olli Savia <ops@iki.fi> for
these fixes.
Tue Feb 3 07:37:20 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/templates/make.mpd:
Added a missing foreach for the configurations. It's necessary in
order to access the platforms.
Mon Feb 2 13:53:08 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/modules/OutputMessage.pm:
Added an interface for printing informational, warning and error
messages. This allows messages to be manipulated prior to being
printed. Informational messages are off by default and can be
enabled by setting the MPC_INFORMATION environment variable. The
informational and warning messages can be turned off by setting the
MPC_SILENT environment variable.
* bin/MakeProjectCreator/modules/Creator.pm:
* bin/MakeProjectCreator/modules/Driver.pm:
* bin/MakeProjectCreator/modules/FeatureParser.pm:
* bin/MakeProjectCreator/modules/Parser.pm:
* bin/MakeProjectCreator/modules/ProjectCreator.pm:
* bin/MakeProjectCreator/modules/StringProcessor.pm:
* bin/MakeProjectCreator/modules/TemplateInputReader.pm:
* bin/MakeProjectCreator/modules/TemplateParser.pm:
* bin/MakeProjectCreator/modules/WorkspaceCreator.pm:
Use the OutputMessage interface instead of print for messages.
Mon Feb 2 13:48:23 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/templates/bor.mpd:
Move the location of the custom build rules to ensure that they
are added to the all target before the object files. This ensures
that the custom build rules are processed before source files are
compiled.
Mon Feb 02 10:00:29 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* ace/config-win32-msvc-6.h:
Looks like VC6 has a non-const swab.
* ace/OS_NS_unistd.inl:
Fixed the non-const part of the swab () to compile with vc6.
Mon Feb 2 08:18:41 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/modules/CbxProjectCreator.pm:
Removed an unused implementation of the fill_value() method.
Mon Feb 2 07:41:25 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/README:
* bin/MakeProjectCreator/modules/ProjectCreator.pm:
* bin/MakeProjectCreator/templates/bor.mpd:
* bin/MakeProjectCreator/templates/em3vcp.mpd:
* bin/MakeProjectCreator/templates/gnu.mpd:
* bin/MakeProjectCreator/templates/make.mpd:
* bin/MakeProjectCreator/templates/nmake.mpd:
* bin/MakeProjectCreator/templates/va4icc.mpd:
* bin/MakeProjectCreator/templates/vc6dsp.mpd:
* bin/MakeProjectCreator/templates/vc7.mpd:
Removed the ssl and defaultlibs keyword. These were unncessary
and should have been removed long ago.
Mon Feb 2 07:16:42 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* ace/OS_NS_unistd.h:
* ace/OS_NS_unistd.inl:
Changed the parameters to void * instead of char * since most of
the platforms take a void *.
Mon Feb 2 06:56:32 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* ace/Makefile.ace:
Building applications which use ACE library fail because
LynxOS's linker is unable to find dlopen() which is used in
DLL_Manager.o and implemented in OS_NS_dlfcn.o.
To fix this, OS_NS_dlfcn.o must be placed after DLL_Manager.o
when creating libACE.a with ar. Thanks to Olli Savia for the
patch.
Sun Feb 1 19:09:54 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-borland-common.h:
* ace/config-win32-borland.h:
Kylix doesn't have swab, CBuilder has a non-const swab, CBuilderX
has the normal swab
Sun Feb 1 17:06:13 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/OS_NS_unistd.inl:
* ace/README:
Some platforms have a swab function where the first argument is
non const, added ACE_HAS_NONCONST_SWAB which then must be set.
* ace/config-win32-borland.h:
Added ACE_HAS_NONCONST_SWAB
Sun Feb 1 15:15:44 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/platform_linux.GNU:
Added missing libraries that are needed when linking with fltk
support.
Sun Feb 1 12:36:13 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/build_lib.bor:
Added support for using the CBX ar with the -M commandline option
to pass it a script. This fixes the too long commandline.
Sat Jan 31 11:01:33 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* ace/OS_NS_unistd.h:
* ace/OS_NS_unistd.inl:
Thanks to Olli Savia, we now have a ACE_OS::swab (). This calls
the platform specific swab () function. There is a emulation
which could be used on platforms that don't support ::swab
(). The emulation can be used by defining ACE_LACKS_SWAB.
I haven't added ACE_LACKS_SWAB in any config file. We will do it
as and when things showup in our daily builds.
Sat Jan 31 08:52:13 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/MakeProjectCreator/config/smart_proxies.mpb:
Removed requires smart_proxies, there is no need for this and
only prevents the smart_proxies tests from compiling
Fri Jan 30 19:33:49 UTC 2004 Craig Rodrigues <crodrigu@bbn.com>
* include/makeinclude/platform_linux.GNU: Allow user to override
OCFLAGS in platform_macros.GNU file.
Fri Jan 30 10:30:26 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/templates/bor.mpd:
Force the custom build targets to be processed before compiling
any of the cpp files.
Fri Jan 30 09:02:30 2004 Douglas C. Schmidt <schmidt@cs.wustl.edu>
* ace/Proactor.cpp (proactor_run_event_loop): Make sure to
return if the handle_events() call return 0, which indicates
a timeout. Thanks to Daniel Buchs <acelib@dbux.ch> for
this fix.
Fri Jan 30 07:41:20 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/modules/MPC.pm:
* bin/MakeProjectCreator/modules/MWC.pm:
* bin/mpc.pl:
* bin/mwc.pl:
Pulled the creator lists out of the perl scripts and moved them
into the new MPC and MWC modules. This will allow the extension
of MPC by providing a way to hook new workspace and project types
into MPC without adding anything to the MPC repository.
Thu Jan 29 14:10:51 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/modules/MakeWorkspaceCreator.pm:
Clean up some double quoted strings.
* bin/MakeProjectCreator/modules/BorlandWorkspaceCreator.pm:
* bin/MakeProjectCreator/modules/NMakeWorkspaceCreator.pm:
Changed the workspace output to allow a user to make a specific
target within the workspace. If the user specified target
requires other projects, then those projects are built also. For
example, a user could execute "nmake CosNaming" using the Makefile
generated from the TAOACE.mwc file and the CosNaming library
would be built including everything else that was required to
build that library.
Thu Jan 29 14:04:50 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* ace/Asynch_Connector.cpp:
* ace/Local_Name_Space_T.cpp:
* ace/Local_Tokens.cpp:
* ace/MEM_Acceptor.cpp:
* ace/MEM_Connector.cpp:
* ace/Multihomed_INET_Addr.cpp:
* ace/Process_Manager.cpp:
* ace/Remote_Tokens.cpp:
* ace/Service_Config.cpp:
* ace/Service_Manager.cpp:
* ace/Sock_Connect.cpp:
* ace/Timeprobe_T.cpp:
* ace/Token.cpp:
* ace/Token_Invariants.cpp:
* ace/CLASSIX/CLASSIX_Select_Reactor.cpp:
Thanks to Duane Binder<duane.binder@veritas.com> for providing
patches to fix some of the messages printed out using
ACE_Log_Msg.
Thu Jan 29 14:03:42 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/README:
* bin/MakeProjectCreator/config/amh.mpb:
* bin/MakeProjectCreator/config/ciao_client.mpb:
* bin/MakeProjectCreator/config/smart_proxies.mpb:
* bin/MakeProjectCreator/config/taoidldefaults.mpb:
* bin/MakeProjectCreator/config/valuetype.mpb:
* bin/MakeProjectCreator/modules/NMakeWorkspaceCreator.pm:
* bin/MakeProjectCreator/modules/ProjectCreator.pm:
* bin/MakeProjectCreator/modules/TemplateParser.pm:
* bin/MakeProjectCreator/templates/automake.mpd:
* bin/MakeProjectCreator/templates/bor.mpd:
* bin/MakeProjectCreator/templates/bordll.mpt:
* bin/MakeProjectCreator/templates/borexe.mpt:
* bin/MakeProjectCreator/templates/cbx.mpd:
* bin/MakeProjectCreator/templates/cbxdll.mpt:
* bin/MakeProjectCreator/templates/cbxexe.mpt:
* bin/MakeProjectCreator/templates/em3vcp.mpd:
* bin/MakeProjectCreator/templates/em3vcpdll.mpt:
* bin/MakeProjectCreator/templates/em3vcpdllexe.mpt:
* bin/MakeProjectCreator/templates/em3vcplib.mpt:
* bin/MakeProjectCreator/templates/em3vcplibexe.mpt:
* bin/MakeProjectCreator/templates/gnu.mpd:
* bin/MakeProjectCreator/templates/gnudll.mpt:
* bin/MakeProjectCreator/templates/gnuexe.mpt:
* bin/MakeProjectCreator/templates/make.mpd:
* bin/MakeProjectCreator/templates/makedll.mpt:
* bin/MakeProjectCreator/templates/nmake.mpd:
* bin/MakeProjectCreator/templates/nmakedll.mpt:
* bin/MakeProjectCreator/templates/nmakeexe.mpt:
* bin/MakeProjectCreator/templates/va4iccdll.mpt:
* bin/MakeProjectCreator/templates/va4iccdllexe.mpt:
* bin/MakeProjectCreator/templates/va4icclib.mpt:
* bin/MakeProjectCreator/templates/va4icclibexe.mpt:
* bin/MakeProjectCreator/templates/vc6dsp.mpd:
* bin/MakeProjectCreator/templates/vc6dspdll.mpt:
* bin/MakeProjectCreator/templates/vc6dspdllexe.mpt:
* bin/MakeProjectCreator/templates/vc6dsplib.mpt:
* bin/MakeProjectCreator/templates/vc6dsplibexe.mpt:
* bin/MakeProjectCreator/templates/vc7.mpd:
* bin/MakeProjectCreator/templates/vc7dll.mpt:
* bin/MakeProjectCreator/templates/vc7exe.mpt:
* bin/MakeProjectCreator/templates/vc7lib.mpt:
* bin/MakeProjectCreator/templates/vc7libexe.mpt:
Removed IDL_Files as a built-in build type and replaced it as a
custom build type. The syntax of IDL_Files has only changed in
that idlgendir is no longer a usable keyword. gendir should be
used in its place. Additionally, the custom build rules can not
be executed in parallel when using the GNUACE project type. This
does not stop multiple unrelated projects from being built in
parallel. In order to get the IDL custom build type, your project
must inherit, either directly or indirectly, from taoidldefaults.
The amh, ciao_client, taoexe and taolib_with_idl base projects all
inherit from taoidldefaults. Others get it indirectly.
* bin/MakeProjectCreator/config/idl_compiler.mpt:
* bin/MakeProjectCreator/config/idl_compiler_win32.mpt:
Removed these files.
Thu Jan 29 13:32:17 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/modules/WorkspaceCreator.pm:
Remove the WARNING: from the informational message that a
workspace wasn't created because no projects were created.
Thu Jan 29 10:10:26 2004 Boris Kolpackov <boris@dre.vanderbilt.edu>
* THANKS:
Added Hans-Peter Bock <Hans-Peter.Bock@isw.uni-stuttgart.de>.
Wed Jan 28 13:21:00 2004 Chad Elliott <elliott_c@ociweb.com>
* ace/ace.mpc:
Only inherit from qt_reactor instead of qt_moc and qt_reactor.
* ace/qt_reactor.mpb:
Inherit from ace_qt and qt_moc.
* bin/MakeProjectCreator/config/ace_qt.mpb:
* bin/MakeProjectCreator/config/acedefaults.mpb:
* bin/MakeProjectCreator/config/qt.mpb:
Inherit from the ace_qt base project as part of the reorganization
of qt and qt_moc.
* bin/MakeProjectCreator/modules/Creator.pm:
* bin/MakeProjectCreator/modules/ProjectCreator.pm:
Allow features to inherit from other base projects just as
projects do.
* bin/MakeProjectCreator/config/qt-min.mpb:
* bin/MakeProjectCreator/config/qt-min_moc.mpb:
Removed these files.
Wed Jan 28 10:26:17 2004 Boris Kolpackov <boris@dre.vanderbilt.edu>
* ace/TMCast/README:
Fixed a few typos.
Wed Jan 28 09:17:36 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/modules/ProjectCreator.pm:
Added custom build output inference that takes gendir settings
into account. If a custom build file is listed, gendir is set and
the generated source isn't listed in the Source_Files list, then
the correct generated source files will be listed with the correct
path determined by gendir.
Wed Jan 28 08:54:29 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/modules/GNUACEProjectCreator.pm:
* bin/MakeProjectCreator/modules/GNUACEWorkspaceCreator.pm:
Changed the output name from Makefile to GNUmakefile in accordance
with [BUGID 1726]. GNU Make will look for GNUmakefile before it
looks for Makefile.
Wed Jan 28 08:20:59 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/README:
* bin/MakeProjectCreator/config/ciao_servant.mpb:
Prefixed cidl with a dot in the inputexts assignment.
Wed Jan 28 06:46:55 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/ACE.h:
* ace/config-cygwin32.h:
Moved os_math.h include from config-cygwin32.h to ACE.h. When
ACE_NTRACE is set we got include problems. Cygwin defines log2
as macro and we have ACE::log2. The include of os_math.h is only
done for Cygwin. Thanks to Yi Zuo <Yi.Zuo@alcatel-sbell.com.cn>
for reporting this.
Tue Jan 27 20:49:12 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/msvc_static_order.lst:
Added ETCL.dsp to the list of projects to build first in a static build.
Mon Jan 26 17:12:38 2004 Steve Huston <shuston@riverace.com>
* ace/OS_NS_sys_stat.inl (filesize): Declare sb using ACE_stat instead
of struct stat to pick up whatever gets set up for that platform.
Fixes compile error on HP-UX aCC.
Mon Jan 26 15:18:06 2004 Gautam Thaker <gthaker@atl.lmco.com>
* bin/count_lines (initfiletypes):
Added .py for python and .php for php scripts.
Mon Jan 26 15:47:55 2004 Steve Huston <shuston@riverace.com>
* examples/APG/Timers/PCB.cpp: Don't put needed things inside
ACE_ASSERT - they disappear when built with ACE_NDEBUG.
Mon Jan 26 13:01:42 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/templates/make.mpd:
* bin/MakeProjectCreator/templates/makedll.mpt:
Added support for cygwin32 and mingw32.
Mon Jan 26 18:10:13 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/build_lib.bor:
* include/makeinclude/compiler.bor:
Added support for the CBuilderX Preview ar.
Mon Jan 26 16:14:32 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/clean.bor:
Changed this file a little, special independent clean fules for cbx
and other versions and dependent on the version used the right clean
rule is used.
Mon Jan 26 16:02:13 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/MakeProjectCreator/templates/bor.mpd:
* include/makeinclude/build_dll.bor:
* include/makeinclude/build_exe.bor:
* include/makeinclude/build_lib.bor:
* include/makeinclude/clean.bor:
The CBuilderX Preview compiler uses the .o extension for object
files, all other Borland versions use .obj. Some time ago I
introduced $(OBJ_EXT) to handle this, but this was not complete
yet. Change the makefile instructure to handle $(OBJ_EXT) instead
of obj and changed the MPC Borland template to generate $(OBJ_EXT)
instead of obj. This way everything works as normally, but when
you use the new CBuilderX Preview environment you must regenerate
your makefiles using MPC.
Mon Jan 26 09:35:51 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/templates/make.mpd:
When calling the prelink script, the object files should be in
double quotes.
Mon Jan 26 07:19:13 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/config/ftrteventchannel.mpb:
* bin/MakeProjectCreator/config/utils.mpb:
Added base projects for the TAO_FTRT_EventChannel and TAO_Utils
libraries.
Sun Jan 25 18:05:31 2004 Steve Huston <shuston@riverace.com>
* examples/APG/Streams/RecordingDevice_Text.cpp: Fixed formatting
to fit in its spots in the book.
Sun Jan 25 20:46:03 UTC 2004 Don Hinton <dhinton@dre.vanderbilt.edu>
* ace/Global_Macros.h:
* ace/config-lite.h:
* ace/config-all.h:
Moved the ACE_TRACE defines from Global_Macros.h to config-all.
and ACE_OS_TRACE from config-lite.h to config-all.h, and added
ACE_OS_NTRACE to config-all.h with the same symantics. Thanks
to Johnny Willemsen <jwillemsen@remedy.nl> for motivating this
change.
* examples/ASX/Event_Server/Event_Server/Options.cpp:
* examples/ASX/UPIPE_Event_Server/Options.cpp:
Added #include OS_NS_strings.h if ACE_HAS_TRACE is defined.
Sun Jan 25 15:55:13 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/OS_NS_stdio.h:
Removed check for ACE_MT_SAFE for the win32 specific methods.
Sun Jan 25 09:11:40 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* bin/msvc_mpc_auto_compile.pl:
Some cosmetic fixes to get ACEXEML and Kokyu compiled well
before other things. The dsw's in TAO hierarchy do not have the
dsp's of ACE hierarchy included but for TAOACE.dsw.
Sun Jan 25 08:59:40 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* Kokyu/Kokyu.mwc:
* ACEXML/ACEXML.mwc:
Added new workspace files. The above pieces should be compilable
without going into TAO and using TAOACE.mwc.
Sun Jan 25 12:26:19 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Auto_IncDec_Test.cpp:
Extended debug info with the total number of threads. This then shows
that with Cygwin threads that exit are not removed from the
thread manager
Sun Jan 25 11:34:31 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Tests.bor:
Added SOCK_Test_IPv6
Sun Jan 25 11:26:43 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-borland-common.h:
CBuilderX Preview doesn't support multithreaded builds, so removed
fix for _endthreadex
Sun Jan 25 10:49:13 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/msvc_static_compile.pl:
Cleaned up some old stuff
Sat Jan 24 16:11:43 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/OS_NS_stdlib.inl:
With CBuilderX Preview putenv, wcstod, wcstol and wcstoul are in the
std namespace, so added ACE_STD_NAMESPACE which expands to std with
Borland, to nothing with other compilers.
* ace/OS_NS_stdio.inl:
The vswprintf for Dinkum STL is different. CBuilderX Preview has
std::tempnam, so added checking for borland version.
* ace/OS_NS_stdio.cpp:
vswprintf and vsnprintf are different with CBuilderX Preview
* ace/config-win32-borland.h:
CBuilderX Preview has no itoa
Sat Jan 24 15:29:11 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-win32-borland.h:
CBuilderX Preview doesn't have wcsdup
Fri Jan 23 14:04:31 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/README:
* bin/MakeProjectCreator/modules/ProjectCreator.pm:
Changed the defaulting rules for implicitly adding source files
when IDL_Files (or any other custom type) is specified.
Previously, generated source files would only be added to the
Source_Files section only if IDL_Files was not specified and no
generated source files were already listed in Source_Files. Now,
the generated source files will be added whether or not IDL_Files
is specified and no generated source files were already listed in
Source_Files.
Fri Jan 23 19:09:43 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/OS_NS_string.cpp:
With CBuilderX Preview strdup is in the std namespace, so
added ACE_STD_NAMESPACE which expands to std with Borland,
to nothing with other compilers.
Fri Jan 23 10:04:00 2004 Gary Maxey <gary.maxey@hp.com>
Fix for BUGID 1722, for Tandem NSK platform.
* ace/OS_NS_stdlib.inl:
Need to use spt_system() instead of system().
* ace/OS_NS_sys_wait.inl:
Need to use spt_waitpid() instead of waitpid()
Fri Jan 23 09:49:00 2004 Gary Maxey <gary.maxey@hp.com>
* ace/OS_NS_Thread.inl:
Fix for BUGID 1708
Added #elif in ACE_OS::sigwait to use alternate sigwait() when
compiling for Tandem NSK platform.
Fri Jan 23 09:34:00 2004 Gary Maxey <gary.maxey@hp.com>
* ace/OS_NS_unistd.inl:
Fix for BUGID 1709
Added #ifdef to use alternate select() when compiling for Tandem
NSK platform.
Fri Jan 23 10:30:12 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/create_ace_build.pl:
Exclude .exp files and ensure that we can stat() the real file
before checking the modification time in
backup_and_copy_changed().
Fri Jan 23 09:41:11 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/templates/vc7.mpd:
Reverted my change from Tue Jan 20 14:11:48 2004. While the
generated vcproj loads properly, the project does not link
properly.
Fri Jan 23 15:04:11 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-win32-borland.h:
Fixed ACE_WCSDUP_EQUIVALENT for CBuilderX Preview
Fri Jan 23 07:20:02 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/config/global.features:
Changed wxwindows to wxWindows to match the changes put in by
Scott Harris.
Fri Jan 23 13:06:56 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-tru64.h:
Define ACE_LACKS_STDINT_H when DIGITAL_UNIX is greater than
0x40E instead of 0x510. Thanks to Daniel Miranda
<dmiranda@telecompersonal.com.ar> for reporting this.
Fri Jan 23 11:05:13 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-win32-borland.h:
Added ACE_HAS_3_PARAM_WCSTOK for the new CBuilderX Preview
compiler
Fri Jan 23 10:47:54 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-win32-borland.h:
Another set of changes for CBuilderX. strcasecmp and strncasecmp
should come from the std namespace
Fri Jan 23 10:04:11 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-win32-borland.h:
ACE_STRCASECMP_EQUIVALENT and ACE_STRNCASECMP_EQUIVALENT are not
needed anymore for the CBuilderX Preview compiler
Fri Jan 23 09:42:15 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/OS_NS_time.inl:
Dinkum STL doesn't have tzset. Fixes another compile problem with
the new Borland CBuilderX Preview compiler
Fri Jan 23 09:36:11 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Object_Manager.cpp:
CBuilderX Preview defines _MSC_VER and __BORLANDC__ so only use
_CrtSetReportMode when _MSC_VER is defined and not __BORLANDC__.
Borland isn't making thing easier to maintain.
Fri Jan 23 09:30:45 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-borland-common.h:
CBuilderX Preview has _endthreadex in the std namespace
Fri Jan 23 09:23:11 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-win32-borland.h:
CBuilderX seems to lack win32 structural exceptions
Fri Jan 23 08:41:53 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/os_include/os_time.h:
Dinkum STL doesn't have timezone or _timezone so only try to use
timezone when we don't have Dinkum STL.
Fri Jan 23 07:38:13 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/README:
* ace/OS_NS_time.h:
Added ace_timezone implementation for use with Dinkum STL, which
lacks _timezone. For this added ACE_HAS_DINKUM_STL which can be
set when using the Dinkum STL version.
* ace/config-win32-borland.h:
The new CBuilderX preview compiler uses Dinkum STL, so se then
ACE_HAS_DINKUM_STL
Thu Jan 22 19:57:59 2004 Ossama Othman <ossama@dre.vanderbilt.edu>
* ace/Makefile.am (install-data-local):
Fixed problem that occurred when performing a "make install".
The "os_include" source and installation directories were not
properly referenced.
Thu Jan 22 18:11:00 2004 Gary Maxey <gary.maxey@hp.com>
* ace/os_include/os_pthread.h
Fix for BUGID 1707
Added #ifdef so correct pthreads include file is used when
compiling for Tandem NSK platform.
Thu Jan 22 17:48:56 2004 Gary Maxey <gary.maxey@hp.com>
* ace/config-tandem-nsk-mips-v2.h
Added missing #endif to end of file
Thu Jan 22 19:08:56 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* ace/OS_NS_sys_stat.inl (mkdir):
ACE_OS::mkdir for OS PSOS wrote one character behind allocated
memory. Fixed it by adding an extra byte for allocation. Thanks
to Dieter Knueppel <dknueppel@datus.com> for reporting the
problem and suggesting a fix.
Thu Jan 22 19:00:50 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* ace/os_include/os_signal.h:
This patch fixes redeclaration of pthread_sigmask
function which showe up RH 9 systems with glibc
2.3. pthread_sigmask declaration is now protected by a guard
which will be defined in the platform configuration file. Thanks
to Olli Savia for providing the patch.
* ace/config-linux-common.h:
A fix similar to this fix "Wed Jan 21 13:38:11 UTC 2004 Johnny
Willemsen <jwillemsen@remedy.nl>", but added
ACE_HAS_PTHREAD_SIGMASK_PROTO within the block for glib 2.3.
Thu Jan 22 19:02:31 2004 Steve Huston <shuston@riverace.com>
* examples/APG/ThreadPools/Task_ThreadPool.cpp: Use 0, not NULL, to
initialize a pointer.
Thu Jan 22 18:08:31 2004 Steve Huston <shuston@riverace.com>
* examples/APG/ThreadPools/ThreadPool.cpp: Don't ACE_ASSERT action
that needs to be performed regardless of the ACE_NDEBUG setting.
Thu Jan 22 13:25:49 2004 Chad Elliott <elliott_c@ociweb.com>
* ace/config-sunos5.5.h:
* ace/config-sunos5.7.h:
Define ACE_LACKS_GETLOADAVG in config-sunos5.5.h since SunOS 5.5
and 5.6 do not have getloadavg(). Undefine it in
config-sunos5.7.h, since it has it.
Wed Jan 22 10:33:47 2004 Scott Harris <harris_s@ociweb.com>
* bin/MakeProjectCreator/config/wxwindows.mpb
* include/makeinclude/platform_linux.GNU
* include/makeinclude/platform_linux_borland.GNU
* include/makeinclude/platform_linux_icc.GNU:
Fixed wxwindows base project in support
of $TAO_ROOT/util/wxNamingViewer.
wxwindows project now require wxWindows defined
(in plaform_macros.GNU) as was since 12/1/00
instead of wxwindows. I choose historical precidence
over making the macro and project name both
being all lower case.
Note: The wxNamingViewer Makefile was overriding the
PLATFORM_WX_* macros defined in platform_*.GNU so I updated the
macros in platform_*.GNU to be like the overrides in the Makefile.
These macros are based on the wxWindows configuration.
The wxNamingViewer makefile contains the only use of these
macros.
Only tested on RedHat 9 with wx_gtk 2.4.2.
Note - the platform_*.GNU files definition of PLATFORM_WX_*
only support wxWindows over GTK+.
TBD - support wxWindows MSVC and Borland in wxwindows.mpc.
Thu Jan 22 12:19:42 2004 Chad Elliott <elliott_c@ociweb.com>
* ace/ace.mpc:
* ace/codecs.mpb:
* ace/filecache.mpb:
* ace/other.mpb:
* ace/svcconf.mpb:
* ace/token.mpb:
* ace/uuid.mpb:
Split some of the components into features that are enabled by
default. The use of comps and compname are no longer supported.
* bin/MakeProjectCreator/README:
Removed descriptions of comps and compname. They have been
replaced by features specific to the gnuace type.
* bin/MakeProjectCreator/config/avstreams.mpb:
* bin/MakeProjectCreator/config/concurrency.mpb:
* bin/MakeProjectCreator/config/event.mpb:
* bin/MakeProjectCreator/config/ftclientorb.mpb:
* bin/MakeProjectCreator/config/ftorbutils.mpb:
* bin/MakeProjectCreator/config/ftrtevent.mpb:
* bin/MakeProjectCreator/config/ftrteventclient.mpb:
* bin/MakeProjectCreator/config/ftserverorb.mpb:
* bin/MakeProjectCreator/config/ifrservice.mpb:
* bin/MakeProjectCreator/config/lifecycle.mpb:
* bin/MakeProjectCreator/config/loadbalancing.mpb:
* bin/MakeProjectCreator/config/naming.mpb:
* bin/MakeProjectCreator/config/notification.mpb:
* bin/MakeProjectCreator/config/orbsvcsexe.mpb:
* bin/MakeProjectCreator/config/orbsvcslib.mpb:
* bin/MakeProjectCreator/config/portablegroup.mpb:
* bin/MakeProjectCreator/config/property.mpb:
* bin/MakeProjectCreator/config/rtcorbaevent.mpb:
* bin/MakeProjectCreator/config/rtcosscheduling.mpb:
* bin/MakeProjectCreator/config/rtevent.mpb:
* bin/MakeProjectCreator/config/rtoldevent.mpb:
* bin/MakeProjectCreator/config/rtsched.mpb:
* bin/MakeProjectCreator/config/rtschedevent.mpb:
* bin/MakeProjectCreator/config/security.mpb:
* bin/MakeProjectCreator/config/ssliop.mpb:
* bin/MakeProjectCreator/config/time.mpb:
* bin/MakeProjectCreator/config/trading.mpb:
Removed the use of comps and compname.
* bin/MakeProjectCreator/modules/GNUACEProjectCreator.pm:
* bin/MakeProjectCreator/modules/ProjectCreator.pm:
Removed code specific to comps and compname.
* bin/MakeProjectCreator/templates/gnu.mpd:
Removed comps and compname related code and replaced it with a
more generic mechanism.
* include/makeinclude/wrapper_macros.GNU:
Set some ace related features to 1 by default.
* tests/tests.mpc:
Use feature requirement instead of comps.
Thu Jan 22 17:23:01 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* examples/APG/Config/HASTATUS_export.h:
Added check for ACE_AS_STATIC_LIBS for setting the export flags for
proper building of static libraries.
Thu Jan 22 17:16:13 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* apps/JAWS/server/server.mpc:
Added missing cpp extension to main
Thu Jan 22 09:47:04 2004 Chad Elliott <elliott_c@ociweb.com>
* tests/RMCast/acetest.mpb:
Reverted some previous changes that were required due to bugs in
MPC that have since been fixed.
Thu Jan 22 06:47:48 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* ace/Strategies_T.cpp:
Fix for BUGID 1719. Please see
http://deuce.doc.wustl.edu/bugzilla/show_bug.cgi?id=1719
for details.
Wed Jan 21 22:31:37 2004 Ossama Othman <ossama@dre.vanderbilt.edu>
* tests/SSL/Makefile.am (EXTRA_DIST):
Force test PEM files to be included in distribution. Another
problem revealed by "make distcheck".
Wed Jan 21 22:06:34 2004 Ossama Othman <ossama@dre.vanderbilt.edu>
* configure.ac (AC_CONFIG_FILES):
Added missing `netsvcs' Makefiles to the files generated by the
configure script.
* Makefile.am (SUBDIRS):
Added "netsvcs" directory to the list of subdirectories to
recurse.
* netsvcs/Makefile.am:
Reverted a series of changes that somehow left this file in an
inconsistent state in our CVS repository, and unparsable by
Automake. In particular, it incorrectly contained
Borland-specific Makefile code.
Updated to our latest Makefile.am conventions.
* netsvcs/clients/Makefile.am:
* netsvcs/clients/Logger/Makefile.am:
* netsvcs/clients/Naming/Client/Makefile.am:
* netsvcs/clients/Naming/Dump_Restore/Makefile.am:
* netsvcs/clients/Tokens/Makefile.am:
* netsvcs/clients/Tokens/collection/Makefile.am:
* netsvcs/clients/Tokens/deadlock/Makefile.am:
* netsvcs/clients/Tokens/invariant/Makefile.am:
* netsvcs/clients/Tokens/manual/Makefile.am:
* netsvcs/clients/Tokens/mutex/Makefile.am:
* netsvcs/clients/Tokens/rw_lock/Makefile.am:
* netsvcs/lib/Makefile.am:
* netsvcs/servers/Makefile.am:
Updated to our latest Makefile.am conventions.
* tests/Makefile.am:
Added more missing header files to appropriate source file
lists. Missing files were made evident when running a "make
distcheck".
Wed Jan 21 20:12:38 2004 Ossama Othman <ossama@dre.vanderbilt.edu>
* configure.ac (ACE_CONFIG_COMMANDS):
Include ACE version in configuration completion message to
improve clarity.
Wed Jan 21 20:17:34 2004 Douglas C. Schmidt <schmidt@cs.wustl.edu>
* ace/Message_Queue.i: Fixed ACE_Message_Queue_NT::is_empty()
so that it returns the right result. Thanks to Ariel Peltz
<Arielp@bigbandnet.com> for contributing this fix.
Wed Jan 21 13:28:41 2004 Ossama Othman <ossama@dre.vanderbilt.edu>
* configure.ac:
Do not rely on "ace/OS.cpp" when performing test that determines
if the generated configuration is usable. "ace/OS.cpp" has been
superseded by and split off into several other files. Addresses
bogus ACE usability configure script errors when running a "make
distcheck".
* ace/Makefile.am:
Added missing "-version-number" libtool flag for all subset
libraries. Fixes problem where the library version for all
these libraries was "0.0.0". Thanks to Robert Schiele
<robert.schiele@t-online.de> for discovering the problem and for
providing a fix.
(libACE_Utils_la_SOURCES):
Added Template_Instantiations.cpp file to this source list.
Fixes a "missing file" problem revealed by a "distcheck".
(HEADER_FILES, INLINE_FILES, TEMPLATE_FILES):
Updated these source file lists. Addresses "missing file"
problems exhibited when performing a "make distcheck".
* m4/acinclude.m4 (ACE_USE_TEMP_FILE):
Fixed problem that prevented the "distcheck" target from passing
due to an attempt to write a file into a read-only directory.
* tests/Makefile.am (Multihomed_INET_Addr_Test_SOURCES):
Removed "Multihomed_INET_Addr_Test.h" from this source file
list. That file doesn't exist. Detected when performing a
"make distcheck".
(libService_Config_DLL_la_SOURCES, libTest_Output_la_SOURCES):
Added missing Service_Config_DLL_Export.h and
Test_Output_Export.h file to these test's source lists,
respectively. Addresses problem revealed by a "distcheck".
(lib_LTLIBRARIES)
Added missing Framework_Component_DLL library to the list of
libraries to build.
Wed Jan 21 13:37:20 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* bin/msvc_mpc_auto_compile.pl:
Added gperf to the list of workspaces that needs compilation
upfront as part of core.
Wed Jan 21 13:38:11 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-linux-common.h:
glibc version 2.3 defines the method isastream, so from this
glibc version don't do this anymore in the ACE library by
setting then the define ACE_HAS_ISASTREAM_PROTO. On RH9 defining
the isastream method within ACE caused errors because there this
method has an exception specification. This only appeared when
other libraries are used which include stropts.h themselves.
Also on SuSE 9 with glibc v2.3 I see that isastream has an
exception specification. This fixed [BUGID 1613]. Thanks to
Jeffrey Graham <jgraham@titan.com> and Akim Boyko
<akim@sitech.com.ua> for reporting this.
Wed Jan 21 12:58:13 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-win32-common.h:
Removed the setting of MWMO_ALERTABLE when using MinGW. This is
set already by MinGW a long time.
* ace/config-win32-common.h:
* ace/config-win32-mingw.h:
* ace/OS_NS_dirent.cpp:
* ace/OS_NS_dirent.inl:
* ace/README:
MinGW delivers a dirent.h which has opendir, closedir, readdir,
etc. Because in the OS_NS_dirent files always on win32 is assumed
that we haven't these methods, introduces ACE_LACKS_OPENDIR,
ACE_LACKS_CLOSEDIR and ACE_LACKS_READDIR. These defines are set
in config-win32-common and undef'd in config-win32-mingw.h.
So, on MinGW we use the normal opendir/closedir/readdir, the other
environmens in win32 use the corresponding emulation methods. This
fixes [BUGID 1718]. Thanks to Matthew Grosso <mgrosso@acm.org>
for reporting this and supplying the patches.
Tue Jan 20 19:58:03 2004 Ossama Othman <ossama@dre.vanderbilt.edu>
* configure.ac:
Replaced all uses of the "changequote" M4 built-in with proper
quoting. Use of "changequote" is very discouraged by autoconf
developers since it is often a source of M4 programming
problems.
(ACE_VERSION, AC_INIT):
Statically determine the version of ACE using M4 built-ins at
autoconf-time, instead of dynamically setting the ACE version in
a shell variable at configure-time. This allows the package
version to be set in the autoconf AC_INIT call since AC_INIT
expects a static value.
Replaced "TEST-VERSION" version value passed to AC_INIT call
with new ACE_VERSION macro. This allows the correct package
version, e.g. "5.4" instead of "TEST-VERSION", to be propagated
to a number of places within the configure script itself, and
Makefile.in templates generated by Automake. For example,
"configure --help" and "configure --version" now display the
correct version of ACE.
(ACE_CURRENT, ACE_AGE, ACE_REVISION):
Removed all kludges that worked around libtool's versioning
scheme. Libtool 1.5 or better now provides a means to set a
package defined library version. Thanks to Robert Schiele
<robert.schiele@t-online.de> pointing out the new libtool
feature.
* bin/bootstrap:
Cleaned up obsolete comments and commented code.
Force auxiliary files to be copied to prevent older versions
from being used with newer versions autotools that expect newer
versions of the auxiliary files.
Clarified some progress messages so that it is obvious that
bootstrapping corresponds to ACE autotool support.
* m4/ace.m4:
* m4/acinclude.m4:
* m4/compiler.m4:
* m4/platform.m4:
Replaced all uses of the "changequote" M4 built-in with proper
quoting. Use of "changequote" is very discouraged by autoconf
developers since it is often a source of M4 programming
problems.
* ace/Makefile.am (libACE_la_LDFLAGS):
Use new libtool 1.5 "-version-number" option instead of
"-version-info" to override libtool's versioning scheme with
ACE's versioning scheme. Thanks to Robert Schiele
<robert.schiele@t-online.de> pointing out the new libtool
feature.
* ace/RMCast/Makefile.am (libACE_RMCast_la_LDFLAGS):
* ace/SSL/Makefile.am (libACE_SSL_la_LDFLAGS):
Set ACE_RMCast and ACE_SSL library versions to ACE library
version, instead of not setting at all (defaulting to 0.0.0).
This is consistent with our stock/classical ACE build
Makefiles.
Tue Jan 20 16:57:54 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* ace/Active_Map_Manager.i:
* ace/CDR_Stream.i:
Fixed warnings in VC71 builds. Thanks to Grutzmacher
Lukas<gruetzmacher@ais-dresden.de> for reporting the problem and
providing patches.
Tue Jan 20 15:37:18 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* bin/msvc_mpc_auto_compile.pl:
Fixed some typos in the comments.
Mon Jan 19 18:49:50 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* bin/msvc_mpc_auto_compile.pl:
This is a new auto_compile script for MSVC with MPC. This just
build DLL's for both debug and release versions. The old file
msvc_auto_compile.pl is age old and suffers from severe brain
hemorrage which is hard to rectify with simple band aids and
stuff. The old file simply needs to go. This new script will be
used completely for DLL builds after testing in our daily
builds.
Tue Jan 20 14:11:48 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/templates/em3vcp.mpd:
* bin/MakeProjectCreator/templates/vc6dsp.mpd:
* bin/MakeProjectCreator/templates/vc7.mpd:
Added support for file grouping in these templates. If source
files are grouped in the mpc file, they will show up grouped in
the graphical interfaces for these project types.
Tue Jan 20 12:20:35 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/templates/make.mpd:
Fixed a bug where the all target wouldn't be generated if the
platform is capable of shared libraries but the user only wants
static libraries.
* bin/MakeProjectCreator/templates/makedll.mpt:
Rearranged some of the VxWorks related settings.
Tue Jan 20 18:02:19 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-cygwin32.h:
Made some small corrections.
Tue Jan 20 17:05:12 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/compiler.bor:
When using BCB6 and release builds we get errors about __strcmp__ is
undefined. This is caused by the optimizer of BCB6 which generates
code for common functions like strcpy() within the calling function's
scope. The compiler flag is -Oi and this is set when the complete -O2
optimization options is passed. So, with BCB6 in release builds,
we don't set -O2, but set all specific optimization flags but just not
-Oi. This is the only way I could fix this.
Tue Jan 20 16:00:11 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-cygwin32.h:
Added support for the Cygwin 1.5.6-1 version
Mon Jan 19 13:31:46 2004 Steve Huston <shuston@riverace.com>
* Makefile: In AUTOCONF_RELEASE_FILES, changed aux to aux_config to
match: Fri Jan 16 12:29:48 2004 Ossama Othman.
Mon Jan 19 17:27:13 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/make_release:
Dfm files shouldn't get LF->CRLF conversions. Thanks to
Martin Kaul <mkaul@leuze.de> for reporting this.
Mon Jan 19 10:46:51 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/modules/GUID.pm:
Mask the 4 byte portions of the GUID with 0xffffffff to avoid
problems with 64-bit versions of Cygwin Perl. Thanks to Cristian
Ferretti <cristian_ferretti@yahoo.com> for reporting this and
providing a fix.
Mon Jan 19 10:22:05 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/templates/make.mpd:
* bin/MakeProjectCreator/templates/makedll.mpt:
Added support for VxWorks 5.5 PPC and PENTIUM.
Mon Jan 19 15:59:11 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Tests.bor:
Added missing FIFO_Test. Thanks to Peter Bekiesch
<peter.bekiesch@dtmgmbh.de>for reporting this.
Mon Jan 19 08:07:02 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/modules/ProjectCreator.pm:
Fixed a bug where files added to the Template_Files section were
not removed from the Source_Files section due to differences in
slashes to backslashes.
Mon Jan 19 07:24:16 2004 Chad Elliott <elliott_c@ociweb.com>
* examples/Misc/test_XtReactor1.cpp:
* examples/Misc/test_XtReactor2.cpp:
Removed #define for String (added back in '96). The workaround is
apparently no longer needed. Also fixed some build errors and
warnings.
Mon Jan 19 10:00:12 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/msvc_auto_compile.pl:
Fixed typo in file path
Sun Jan 18 15:32:59 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* ACE-INSTALL.html:
Added patches from Viktor Ransmayr<viktor.ransmayr@t-online.de>
for a documentation patch, which describes how to build ACE
using only the MinGW and MSYS package.
Sun Jan 18 10:27:11 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* performance-tests/Server_Concurrency/Leader_Follower/RT_CORBA_Leader_Follower.cpp:
Used ACE_UINT64_DBLCAST_ADAPTER instead of direct casting to a
double to be more portable.
Sun Jan 18 10:13:16 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* Logging/LogManager.h:
* Logging/Use_Multiple_Sinks.cpp:
* Logging/Use_Ostream.cpp:
* Naming/Name_Binding.h:
#included fstream conditionally on VC6. This should fix the
remaining compile errors on VC6 with MPC builds.
Sun Jan 18 09:48:03 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* examples/TMCast/member.cpp:
Fixed a compilation errors with VC6 which stemmed due to the
fact that a unsigned long long was used. We use ACE_UINT64
instead.
Sun Jan 18 09:40:04 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* tests/SOCK_Send_Recv_Test_IPV6.cpp:
* tests/SOCK_Test_IPv6.cpp:
More warnings from unused functions.
Sun Jan 18 09:55:32 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/msvc_auto_compile.pl:
Added tests/Test_Output.dsp to the list of libs to be build first
when building statically. Removed the code for the non-MPC static
build, the projects for this are removed before the 1.4 release.
* bin/msvc_static_order.lst:
Added tests/Test_Output.dsp to the list of libs to be build first.
Sun Jan 18 08:52:11 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* ASNMP/asnmp/ctr64.h:
Added include of ace/Basic_Types.h to get ACE_UINT64 definition.
Sun Jan 18 08:45:13 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Tests.bor:
Fixed this makefile
Sun Jan 18 00:00:07 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* tests/Max_Default_Port_Test_IPV6.cpp:
* tests/SOCK_Send_Recv_Test_IPV6.cpp:
* tests/SOCK_Test_IPv6.cpp:
Fixed unused function warnings in the daily builds.
Sat Jan 17 23:52:38 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* tests/SOCK_Dgram_Test.cpp:
Fixed a compile error in Full_Reactor builds.
Sat Jan 17 19:38:11 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/INET_Addr_Test_IPV6.cpp:
* tests/Proactor_Test_IPV6.cpp:
* tests/SOCK_Send_Recv_Test_IPV6.cpp:
Fixed incorrect doxygen file tag.
Sat Jan 17 19:35:43 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* examples/C++NPv2/AC_CLD_export.h:
* examples/C++NPv2/AIO_CLD_export.h:
* examples/C++NPv2/CLD_export.h:
* examples/C++NPv2/SLD_export.h:
* examples/C++NPv2/SLDEX_export.h:
* examples/C++NPv2/TPCLS_export.h:
* examples/C++NPv2/TPLS_export.h:
Added check for ACE_AS_STATIC_LIBS for setting the export flags for
proper building of static libraries.
Sat Jan 17 19:19:33 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* ASNMP/asnmp/ASNMP_Export.h:
Added check for ACE_AS_STATIC_LIBS for setting the export flags for
proper building of static libraries.
* ASNMP/asnmp/ctr64.cpp:
* ASNMP/asnmp/ctr64.h:
Changed unsigned long long to ACE_UINT64
* ASNMP/asnmp/address.h:
* ASNMP/asnmp/octet.h:
* ASNMP/asnmp/oid.h:
* ASNMP/asnmp/pdu.h:
* ASNMP/asnmp/vb.h:
Added missing ASNMP_Export macro.
This fixes several build problems on Win32. Thanks to
Michelangelo Nottoli <m.nottoli@acsys.it> for reporting this
and supplying the ideas how to fix this.
Sat Jan 17 18:43:12 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/msvc_static_compile.pl:
* bin/msvc_static_order.lst:
When using static projects we cannot use the dependencies between
different libraries. Therefor we have to explicitly define the
build order. The existing msvc_auto_compile.pl script was getting
to complex, so added a new msvc_static_compile.pl script that will
be used for building statically. In the msvc_static_order.lst the
order of building can be specified.
Sat Jan 17 09:46:38 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* ace/TMCast/Group.cpp:
Fixed compile errors with VC++ 6.
Sat Jan 17 15:29:01 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* ASNMP/asnmp/asn1.cpp:
Removed not needed ;
Sat Jan 17 15:05:12 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/MakeProjectCreator/config/ec_typed_events.mpb:
* bin/MakeProjectCreator/config/ec_use_typed_events.mpb:
* bin/MakeProjectCreator/config/event.mpb:
The fix for the ec_typed_events feature. Thanks to Chad Elliot for
explaining that MPC inheritance is based on file name. So CosEvent.mpc
inherits from ec_typed_events in the orbsvcs directory, projects using
event inherit from event which inherits from ec_use_typed_events
which then sets the needed compiler flags and adds the needed
libraries to the linker.
Sat Jan 17 00:56:54 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* tests/Proactor_Test_IPV6.cpp
* tests/SOCK_Send_Recv_Test_IPV6.cpp:
* tests/SOCK_Test_IPv6.cpp:
Fixed compilation errors in builds that don't have IPV6 enabled.
Sat Jan 17 00:45:40 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* tests/Multihomed_INET_Addr_Test_IPV6.dsp:
* tests/INET_Addr_Test_IPV6.dsp:
* tests/Max_Default_Port_Test_IPV6.dsp:
* tests/Multicast_Test_IPV6.dsp:
* tests/Proactor_Test_IPV6.dsp:
* tests/SOCK_Send_Recv_Test_IPV6.dsp:
* tests/SOCK_Test_IPv6.dsp:
New dsp files for the tests
* tests/tests.dsw:
Workspace file with the mods.
Sat Jan 17 00:12:21 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* tests/run_test.lst:
* tests/tests.mpc:
Added missing tests.
Fri Jan 16 23:57:08 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* tests/INET_Addr_Test_IPV6.cpp:
* tests/Max_Default_Port_Test_IPV6.cpp:
* tests/Multicast_Test_IPV6.cpp:
* tests/Multihomed_INET_Addr_Test_IPV6.cpp:
* tests/Proactor_Test_IPV6.cpp:
* tests/SOCK_Send_Recv_Test_IPV6.cpp:
Fixed a typo in the name of the files that are printed out for
logging and error checking.
Fri Jan 16 23:25:03 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* tests/Tests.bor:
New test to the borland makefiles.
Fri Jan 16 23:21:10 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* tests/run_test.lst:
Added the new tests to the daily build.
Fri Jan 16 23:19:17 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* tests/tests.mpc:
Added the new tests to the MPC.
Fri Jan 16 23:01:11 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* tests/Multihomed_INET_Addr_Test_IPV6.cpp:
* tests/Proactor_Test_IPV6.cpp:
* tests/SOCK_Send_Recv_Test_IPV6.cpp:
* tests/SOCK_Test_IPv6.cpp:
More IPV6 tests from Brian Bruesker.
* tests/Makefile.tests:
Added these new tests.
Fri Jan 16 21:38:59 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* tests/INET_Addr_Test_IPV6.cpp:
* tests/Max_Default_Port_Test_IPV6.cpp:
* tests/Multicast_Test_IPV6.cpp:
* tests/Multihomed_INET_Addr_Test_IPV6.cpp:
New test for IPV6. These tests were donated by Brian Bruesker.
* tests/SOCK_Dgram_Test.cpp:
Cosmetic fix.
* tests/Makefile.tests:
Added the new tests.
Fri Jan 16 18:44:04 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* tests/INET_Addr_Test.cpp:
* tests/Max_Default_Port_Test.cpp:
* tests/Multicast_Test.cpp:
* tests/Multihomed_INET_Addr_Test.cpp:
* tests/Proactor_Test.cpp:
* tests/SOCK_Send_Recv_Test.cpp:
* tests/SOCK_Test.cpp:
Reverted changes from "Fri Jan 16 17:25:50 2004 Balachandran
Natarajan <bala@dre.vanderbilt.edu>" since the IPV6 needs to be
placed seperately.
Fri Jan 16 17:25:50 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* tests/INET_Addr_Test.cpp:
* tests/Max_Default_Port_Test.cpp:
* tests/Multicast_Test.cpp:
* tests/Multihomed_INET_Addr_Test.cpp:
* tests/Proactor_Test.cpp:
* tests/SOCK_Send_Recv_Test.cpp:
* tests/SOCK_Test.cpp:
Thanks to Brian Bruesker <bbuesker@qualcomm.com>, we now have
tests for IPV6 features in the above tests
* tests/SOCK_Dgram_Test.cpp:
A simple test based on SOCK_Test for Datagrams. Thanks once
again to Brian Bruesker.
* tests/Makefile.tests:
Added the new test.
Fri Jan 16 15:04:17 2004 Douglas C. Schmidt <schmidt@cs.wustl.edu>
* ace/SOCK_Dgram_Bcast.cpp (close): Set the this->if_list_
field to 0 to let applications close and re-open the socket.
Without it, a second close will delete already delete'd memory.
Thanks to Shannon Barber <shannon.barber@myrealbox.com> for
this fix.
Fri Jan 16 12:29:48 2004 Ossama Othman <ossama@dre.vanderbilt.edu>
* configure.ac (AC_CONFIG_AUX_DIR):
Changed auxiliary directory filename from "aux" to
"aux_config". The former is not an allowed/valid name on
Windows. Thanks to Greg Mulyar <greg_mu@yahoo.com> for pointing
out the problem.
Fri Jan 16 14:19:14 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* tests/tests.mpc:
Fixed the project names in MPC to be similar to the ones used in
default distribution. Thanks to Boris Kaminer
<boris_kaminer@mail.ru> for motivating this fix.
Fri Jan 16 16:09:31 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/MakeProjectCreator/config/event.mpb:
Removed ec_typed_events as base. This resulted in problems in
building other orbsvcs which then use the ec_typed_events.mpb
which is located in $(TAO_ROOT)/orbsvcs/orbsvcs. This restores
the situation to the previous situation and in meantime we can
figure out a better solution.
Fri Jan 16 15:01:11 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Logging_Strategy_Test.cpp:
For checking if we are building statically use ACE_AS_STATIC_LIBS and
not ACE_HAS_STATIC_LIBS. With this fix this tests runs again in the
BCB6 static build.
Fri Jan 16 11:27:01 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Service_Config_DLL_Export.h:
Added check for ACE_AS_STATIC_LIBS for setting the export flags for
proper building of static libraries.
Fri Jan 16 11:25:32 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* examples/APG/Svc_Config/HASTATUS_export.h
Added check for ACE_AS_STATIC_LIBS for setting the export flags for
proper building of static libraries.
Fri Jan 16 09:57:45 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/DLL_Test.bor:
* tests/DLL_Test.cpp:
Changed this test so that it works in MPC and non-MPC builds.
We use always the decorator string for the dll name.
Fri Jan 16 08:56:13 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/MakeProjectCreator/config/ec_typed_events.mpb:
Added this file. When the feature ec_typed_events is available,
we must link with the IFRClient and DynamicInterface library.
* bin/MakeProjectCreator/config/event.mpb:
Add ec_typed_events as parent project. When ec_typed_events is
available projects using event should link with the extra needed
libraries. This fixes the link errors in the BCB6 Static build.
Thu Jan 15 20:54:38 2004 Ossama Othman <ossama@dre.vanderbilt.edu>
* configure.ac:
Require GNU Autoconf 2.58 or better, not 2.57g or better.
Version 2.57g was a testing release not a stable release.
Use more comprehensive (custom) test for detecting shm_open()
support instead of AC_CHECK_FUNC. In particular, use
AC_LINK_IFELSE so that we can detect missing function prototype
errors. Addresses a problem on Solaris builds where shm_open()
support was incorrectly detected as available despite the fact
POSIX.1b support was not enabled.
Removed ACE_HAS_MINIMUM_IOSTREAMH_INCLUSION test. This macro is
no longer used.
* ace/os_include/sys/os_resource.h:
Include <sys/procfs.h> in the ACE_HAS_PROC_FS case. It is
necessary to pull in the "prusage_t" typedef. That typedef is
used later in this header. Addresses an ACE+autoconf build
problem on Solaris.
* m4/ace.m4:
Corrected quoting problem that caused "--enable-fast" help
string to be echoed incorrectly.
* m4/acinclude.m4:
Corrected typo in warning message.
* m4/compiler.m4:
Updated Sun C++ 5.0 configuration settings to match those in the
latest platform_sunos5_sunc++.GNU file.
* m4/config_h.m4 (AH_BOTTOM):
Added empty line to text appended to generated `config.h' file
to correct a "non-empty ending line" warning exhibited by Sun
C++ 5.0.
(ACE_HAS_MINIMUM_IOSTREAMH_INCLUSION):
Removed template for this preprocessor macro. It is no longer
used.
Thu Jan 15 20:33:09 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* docs/ACE-development-process.html (HREF):
Added a small writeup about the features of BFO.
Thu Jan 15 19:47:13 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/MakeProjectCreator/config/avstreams.mpb:
Avstreams uses the feature qos, so when qos=1 is set in the
default.features file we use the ACE_QoS library. Projects
using avstreams should also use this feature, so that they also
link with ACE_QoS when qos=1. This fixes link errors in the
BCB6 Static Build.
Thu Jan 15 18:50:42 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/ACE_Init_Test.cpp:
Fixed compile problem in BCB6 Unicode build
Thu Jan 15 18:42:11 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/MakeProjectCreator/config/portablegroup.mpb:
PortableGroup uses iormanip, so also projects using portablegroup
need this. This fixes the compile problems in the BCB6 Static
build.
Thu Jan 15 18:33:16 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* examples/C++NPv1/Process_Per_Connection_Logging_Server.cpp:
Use ACE_OS::strcpy instead of strcpy to fix compile problem in
BCB6 Static build.
Thu Jan 15 11:12:45 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/config/ciao_servant.mpb:
* bin/MakeProjectCreator/config/qt-min_moc.mpb:
* bin/MakeProjectCreator/config/qt_moc.mpb:
Removed the command options from the command setting and put them
into the commandflags settings.
* bin/MakeProjectCreator/templates/cbx.mpd:
Added the initial support for custom build types.
* bin/MakeProjectCreator/templates/em3vcp.mpd:
Fixed a bug in this template where the !ENDIF for custom build
types would be missing.
* bin/MakeProjectCreator/templates/vc6dsp.mpd:
Added user dependencies for custom build types.
* bin/MakeProjectCreator/templates/vc7.mpd:
Fixed the user dependencies for custom build types such that it is
not hard coded to be the CIAO IDL compiler for all custom build
types.
Thu Jan 15 16:47:11 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/MakeProjectCreator/config/rtcorbacommon.mpb:
The rtcorbacommon library needs portableserver and doesn't build
when minimum_corba is set
Thu Jan 15 08:02:23 2004 Douglas C. Schmidt <schmidt@cse.wustl.edu>
* ace/INET_Addr.cpp (get_port_number_from_name): Changed
initial value of port_number from 0 to -1. Thanks to
Stephen Moon <stephenm@sychron.com> for this fix.
Thu Jan 15 16:06:54 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* examples/Export/test_export.h:
* ace/TMCast/Export.hpp:
Added check for ACE_AS_STATIC_LIBS for setting the export flags for
proper building of static libraries.
Thu Jan 15 16:03:11 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* examples/Bounded_Packet_Relay/Bounded_Packet_Relay.mpc:
* examples/Synch/Synch.mpc:
Added new mpc files for these examples
Thu Jan 15 08:14:08 2004 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/README:
Added documentation for keyword mapping which will allow users to
map custom defined keywords into the project level scope.
Removed support for the idlpreprocessor keyword.
* bin/MakeProjectCreator/config/core.mpb:
Changed core = 1 into a verbatim clause that enbles the removal of
the core keyword.
* bin/MakeProjectCreator/config/vcpartialmacros.mpt:
Removed the ACE specific precompiled headers macro.
* bin/MakeProjectCreator/modules/AutomakeProjectCreator.pm:
Propagated change from GNUACEProjectCreator on Wed Jan 7 06:24:54
2004.
* bin/MakeProjectCreator/modules/Creator.pm:
* bin/MakeProjectCreator/modules/ProjectCreator.pm:
Added support for keyword mapping which will allow users to map
custom defined keywords into the project level scope.
* bin/MakeProjectCreator/modules/MakeWorkspaceCreator.pm:
Changed the workspace output to allow a user to make a specific
target within the workspace. If the user specified target
requires other projects, then those projects are built also.
* bin/MakeProjectCreator/modules/Version.pm:
Updated the version number of MPC.
* bin/MakeProjectCreator/modules/WorkspaceCreator.pm:
Warn about circular dependencies between projects.
* bin/MakeProjectCreator/templates/bor.mpd:
Added verbatim markers, removed the use of the core keyword in
favor of the verbatim used to get the same effect.
* bin/MakeProjectCreator/templates/gnu.mpd:
Fixed a bug in this template where TAO_ORBSVCS was not being
handled properly.
Removed the use of the idlpreprocessor keyword in favor of the
verbatim used to get the same effect.
|