summaryrefslogtreecommitdiff
path: root/ChangeLog
blob: 0537b9c1425a6858787c16b59af26eea7d6e9f56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
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.