summaryrefslogtreecommitdiff
path: root/ChangeLog
blob: fc7c44ac1dfb6e124e06c50b5750c51812fcee0f (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
Fri Dec 30 15:58:24 UTC 2011  Chip Jones  <jonesc@ociweb.com>

        * bin/MakeProjectCreator/config/ace_idl_dependencies.mpb:
        
          Added this file to handle generation of IDL 
          dependencies as a feature.
        
        * bin/MakeProjectCreator/config/acedefaults.mpb:
        * bin/MakeProjectCreator/config/global.features:
        
          Added ace_idl_dependencies as a base project of
          acedefaults and set ace_idl_dependencies=0

        * bin/MakeProjectCreator/templates/gnu.mpd:
        
          Changes to support incremental IDL dependency 
          generation. Each IDL file now has its own 
          .depends file so there is are no collisions when 
          using 'make -j'

        * include/makeinclude/rules.local.GNU:
        
          Modified the prerequisite .depend rules to 'touch'
          or 'copy NUL' multiple .depend files as needed to
          support IDL dependency generation.

Tue Nov 29 18:42:09 UTC 2011  Chip Jones  <jonesc@ociweb.com>

        * bin/MakeProjectCreator/templates/gnu.mpd:

          Changes to support incremental generation of IDL
          dependencies. This is necessary since IDL files
          in the same project may not have the same flags.

        * include/makeinclude/rules.local.GNU:

          Added incremental IDL dependency rule.

Wed Nov  9 17:06:46 UTC 2011  Chip Jones  <jonesc@ociweb.com>

        * include/makeinclude/rules.local.GNU:

          Modified depend_idl.local to call depgen only if
          IDL_DEPS is defined.

Wed Nov  9 12:49:11 UTC 2011  Chip Jones  <jonesc@ociweb.com>

        * bin/MakeProjectCreator/templates/gnu.mpd:

          Added conditional so that IDL_DEPS does not print
          when empty.

Wed Nov  9 03:34:28 UTC 2011  Chip Jones  <jonesc@ociweb.com>

        * bin/MakeProjectCreator/templates/gnu.mpd:

          Added blank line between IDL_DEPS and VPATH

Mon Nov  7 16:41:08 UTC 2011  Chip Jones  <jonesc@ociweb.com>

        * bin/DependencyGenerator/GNUIDLDependencyWriter.pm:
        * bin/DependencyGenerator/GNUIDLObjectGenerator.pm:

          Added these files to support writing IDL dependencies.

        * bin/MakeProjectCreator/templates/gnu.mpd:

          Modifications to support IDL dependency generation.

        * include/makeinclude/rules.common.GNU:
        * include/makeinclude/rules.local.GNU:
        * include/makeinclude/wrapper_macros.GNU:

          Modifications to support IDL dependency generation.

Sat Oct 22 02:06:37 UTC 2011  Abdullah Sowayan  <sowayan@gmail.com>

        * include/makeinclude/platform_macosx_common.GNU:

          Added missing:
          DCCFLAGS += -g

          From the file. Thanks to William R. Otte  <wotte@dre.vanderbilt.edu>
          for pointing this out.

Fri Oct 21 23:35:30 UTC 2011  William R. Otte  <wotte@dre.vanderbilt.edu>

        * ace/Time_Value.inl:

          Changed the operator comparing __builtin_constant_p to be a
          bitwise (&) instead oflogical and (&&) to address a warning from the
          LLVM compiler.  In this case, the result of the two operators is
          logically equivalent.  Thanks to Abdullah Sowayan <sowayan@gmail.com>
          for reporting the issue.

Fri Oct 21 11:26:49 UTC 2011  Marcel Smit  <msmit@remedy.nl>

        * examples/Misc/test_trace.cpp:
          Fixed compile issue in case all logging is turned off.

Thu Oct 20 10:41:44 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * docs/Download.html:
          Added links to the OBS projects, thanks to John Fletcher for providing
          this update

Tue Oct 20 09:30:13 UTC 2011  Martin Corino  <mcorino@remedy.nl>

        Merged changes from Remedy work branch.

        === start changelog ===

        Tue Oct 18 09:23:13 UTC 2011  Marijke Hengstmengel  <mhengstmengel@remedy.nl>

                * bin/MakeProjectCreator/config/global.features:
                Add ccm_direct_collocation

        Wed Oct 12 13:08:13 UTC 2011  Marcel Smit  <msmit@remedy.nl>

                * bin/MakeProjectCreator/config/crosscompile.mpb:
                  Fixed install issues.

                * bin/mwc.pl:
                  Removed unnecessary STDERR.

        === end changelog ===

Thu Oct 20 06:57:38 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * *.*:
          Removed autoconf support due to lack of resources/funding to
          get autoconf really working. It now only causes confusions and
          not working configurations for users.

Wed Oct 19 19:13:38 UTC 2011  William R. Otte  <wotte@dre.vanderbilt.edu>

        * bin/MakeProjectCreator/config/global.features:
          disable openmp by default.

        * include/makeinclude/platform_clang_common.GNU:
        * include/makeinclude/platform_g++_common.GNU:
          add flags for openmp.

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

        * rpmbuild/ace-tao.spec:
          Removed not needed setting of inline

Mon Oct 17 20:40:35 UTC 2011  Abdul Sowayan  <sowayan@gmail.com>

        * include/makeinclude/platform_macosx_iOS.GNU:

          Minor enhancements to this file to make ACE/TAO compile again.

Sat Oct 15 00:57:11 UTC 2011  Abdullah Sowayan  <sowayan@gmail.com>

        * ace/config-macosx-lion.h:
        * include/makeinclude/platform_macosx_lion.GNU:

          Minor enhancements to the files above.

Mon Oct 10 12:13:52 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * protocols/ace/INet/ClientRequestHandler.h:
        * protocols/ace/INet/HTTP_ClientRequestHandler.h:
        * protocols/ace/INet/URLBase.h:
          Always export, should solve SLE9 issues

Mon Oct 10 11:16:58 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * docs/Download.html:
          Make x.0.5 public

Mon Oct 10 11:16:58 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

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

        * bin/make_release.py:
          Next time we don't ship vc8 anymore

        * docs/bczar/bczar.html:
          Make x.0.5 public

        * etc/index.html:
          Make x.0.5 public

Mon Oct 10 08:48:51 CEST 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ACE version 6.0.5 released.

Sat Oct  8 09:00:00 UTC 2011  Marcel Smit  <msmit@remedy.nl>

        * ACEXML/examples/SAXPrint/namespaces.xml:
        * ACEXML/examples/SAXPrint/ns.svc.conf.xml:
        * ACEXML/examples/SAXPrint/simple.svcconf.xml:
        * ACEXML/examples/SAXPrint/svc.conf.xml:
          XML does not allow anything before the xml-tag.

Fri Oct  7 09:45:31 UTC 2011  Marcel Smit  <msmit@remedy.nl>

        * ACEXML/docs/TODO.txt:
        * ACEXML/docs/bugs.txt:
        * ASNMP/tests/run_tests.sh:
          Fuzz

Fri Oct  7 09:10:55 UTC 2011  Marcel Smit  <msmit@remedy.nl>

        * ACEXML/docs/readme.txt:
        * ASNMP/README:
        * Kokyu/README:
        * bin/LabVIEW_RT/README:
        * bin/PerlACE/README:
        * contrib/FaCE/README:
        * examples/C++NPv1/README:
        * examples/C++NPv2/README:
        * examples/IPC_SAP/SSL_SAP/README:
        * examples/Semaphores/README:
        * html/README:
        * netsvcs/lib/README:
        * performance-tests/README:
        * performance-tests/RPC/README:
        * performance-tests/Synch-Benchmarks/Perf_Test/README:
        * performance-tests/Synch-Benchmarks/README:
        * performance-tests/Synch-Benchmarks/Synch_Lib/README:
        * performance-tests/TCP/README:
        * performance-tests/TTCP/C/README:
        * performance-tests/UDP/README:
        * protocols/ace/HTBP/README:
        * websvcs/README:
          Fuzz: No id-tags. Also uniform way of declaring the Id-tags

Fri Oct  7 07:48:32 UTC 2011  Marcel Smit  <msmit@remedy.nl>

        * ACEXML/examples/SAXPrint/broken.xml:
        * ACEXML/examples/SAXPrint/namespaces.xml:
        * ACEXML/examples/SAXPrint/ns.svc.conf.xml:
        * ACEXML/examples/SAXPrint/simple.svcconf.xml:
        * ACEXML/examples/SAXPrint/svc.conf.xml:
        * Kokyu/tests/DSRT_MIF/svc.conf.xml:
        * examples/ASX/CCM_App/svc.conf.xml:
        * netsvcs/servers/svc.conf.xml:
        * tests/Service_Config_Test.conf.xml:
          Fuzz: No Id-tags.

Thu Oct  6 12:01:30 UTC 2011  Marcel Smit  <msmit@remedy.nl>

        * netsvcs/README:
        * netsvcs/clients/Logger/README:
        * netsvcs/clients/README:
        * netsvcs/clients/Tokens/README:
        * netsvcs/clients/Tokens/collection/README:
        * netsvcs/clients/Tokens/deadlock/README:
        * netsvcs/clients/Tokens/invariant/README:
        * netsvcs/clients/Tokens/manual/README:
        * netsvcs/clients/Tokens/mutex/README:
        * netsvcs/lib/README:
        * netsvcs/servers/README:
          Fuzz: trailing whitespaces, tab characters and ID strings

Thu Oct  6 11:56:19 UTC 2011  Marcel Smit  <msmit@remedy.nl>

        * README:
        * examples/Connection/non_blocking/README:
        * examples/IPC_SAP/DEV_SAP/README:
        * examples/IPC_SAP/SOCK_SAP/README:
        * examples/IPC_SAP/SSL_SAP/README:
        * examples/Log_Msg/Log_Msg_MFC/README:
        * examples/Log_Msg/README:
        * examples/Logger/README:
        * examples/README:
        * examples/Reactor/Ntalker/README:
        * examples/Reactor/README:
        * examples/Reactor/TP_Reactor/README:
        * examples/Service_Configurator/Misc/README:
        * examples/Synch/README:
        * examples/System_V_IPC/README:
        * examples/Timer_Queue/README:
          Fuzz: trailing whitespaces, tab characters and ID strings

Mon Oct  3 06:30:57 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Dev_Poll_Reactor.h:
          Doxygen improvements

Fri Sep 30 14:03:58 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/fuzz.pl:
          Check more filetypes for id tag

        * docs/bczar/bczar.html:
          Added some more packages

Thu Sep 29 01:58:23 UTC 2011  Abdullah Sowayan  <sowayan@gmail.com>

        * include/makeinclude/platform_macosx_lion.GNU:

          LLVM is the default compiler on Lion for now on.

Fri Sep 23 12:45:47 UTC 2011  Marcel Smit  <msmit@remedy.nl>

        * bin/PerlACE/TestTarget.pm:
        * bin/PerlACE/TestTarget_Android.pm:
          Created a special method for the ADB timeout environment
          variable.

Fri Sep 23 09:25:04 UTC 2011  Marcel Smit  <msmit@remedy.nl>

        * bin/PerlACE/TestTarget_Android.pm:
          Stop the script when an emulator times out.

Wed Sep 14 07:54:28 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/PerlACE/TestTarget_Android.pm:
          Adding of libpath is only needed for non static builds

Tue Sep 13 08:12:40 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/TestTarget.pm:
          Added DOC_TEST_DEFAULT, this controls the default platform
          for all platform instead of defaulting to localhost

Tue Sep 13 08:12:40 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/PerlACE/ProcessAndroid.pm:
          Don't delete executable after each run

Mon Sep 12 12:55:58 UTC 2011  Marcel Smit  <msmit@remedy.nl>

        * ACE-INSTALL.html:
          Made some minor modification to the Android section.

Mon Sep 12 11:16:53 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-android.h:
          Android doesn't have icmp support

        * docs/bczar/bczar.html:
          Added telnet

Sun Sep 11 18:11:08 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/PerlACE/ProcessAndroid.pm:
          Don't copy any log files here, that has to be done in the test
          script

        * tests/run_test.pl:
          Get the log file from the target before analyzing it

Sun Sep 11 18:02:08 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/PerlACE/ProcessAndroid.pm:
          Fixed executable method

Fri Sep  9 21:34:26 UTC 2011  Adam Mitz  <mitza@ociweb.com>

        * bin/PerlACE/Process_Win32.pm:

          Fixed a bug introduced in the previous commit to this file:
          Thu Sep  8 08:14:46 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

          The bug prevented any tests from running on Win32.

Fri Sep  9 19:31:43 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/PerlACE/ProcessAndroid.pm:
        * bin/PerlACE/TestTarget_Android.pm:
          Added PutFile for the TestTarget

Fri Sep  9 19:19:22 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/PerlACE/ProcessAndroid.pm:
        * bin/PerlACE/TestTarget_Android.pm:
          Don't copy all config files, if we need files on a target, the test
          script should copy them

Fri Sep  9 19:15:28 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/PerlACE/TestTarget_Android.pm:
          Try to kill emulator and emulator-arm

Fri Sep  9 11:26:45 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/platform_android.GNU:
          Android doesn't have rwho

Fri Sep  9 07:19:00 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/CDR_Stream.h:
          Doxygen changes

        * include/makeinclude/platform_android.GNU:
          Prevent flags being listed twice

Thu Sep  8 17:48:53 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/OS_NS_stdlib.cpp:
          Fixed compile warnings

        * ace/OS_NS_Thread.inl:
          Added check for ACE_LACKS_CONDATTR

        * ace/Mem_Map.cpp:
          When ACE_MMAP_NO_ZERO is defined, when the length if zero we
          default to the pagesize

Thu Sep  8 17:46:28 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-android.h:
          Further cleanup and improvements

Thu Sep  8 17:32:48 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/TP_Reactor.h:
          Typo fixed

        * ace/Process_Manager.cpp:
          Layout changes

        * ace/config-sunos5.5.h:
          Removed old comment

        * ace/Signal.h:
          Doxygen cleanup

        * ace/OS_NS_errno.inl:
          Const changes

        * ace/OS_NS_errno.h:
          Only define ACE_ERRNO_TYPE when it is not defined yet, that way we
          can just set it in config-android.h

        * ace/config-android.h:
          Cleanup and set various defines needed to get correct runtime
          behavior

        * bin/PerlACE/Process_VMS.pm:
          Chorus support removal

        * bin/PerlACE/README:
          Layout changes

        * include/makeinclude/platform_android.GNU:
          Further cleanup

Thu Sep  8 17:20:26 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/platform_android.GNU:
          Fixed warning about not recognized --version

Thu Sep  8 17:16:26 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ACE-INSTALL.html:
        * docs/bczar/bczar.html:
          Another 32bit package for android

        * include/makeinclude/platform_android.GNU:
        * include/makeinclude/platform_android_linux.GNU:
          Renamed to platform_android.GNU

Thu Sep  8 13:20:55 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ACE-INSTALL.html:
          Added another 32bit package for Android

        * docs/bczar/bczar.html:
          Added some packages

Thu Sep  8 13:20:55 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ACE-INSTALL.html:
          Documented which 32bit packages need to be installed on a 64bit
          linux host for the Android port

        * docs/bczar/bczar.html:
          Added some packages

Thu Sep  8 08:16:35 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Lib_Find.cpp:
          Add support for ACE_DEFAULT_TEMP_DIR

        * ace/MEM_Stream.h:
          Added missing export include

        * ace/OS_NS_unistd.cpp:
          Added ACE_HAS_NONCONST_PWRITE

        * ace/Select_Reactor_Base.cpp:
          Layout change

        * include/makeinclude/platform_android_linux.GNU:
          Use ?= to make an override possible from platform_macros.GNU

Thu Sep  8 08:14:46 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/PerlACE/ConfigList.pm:
        * bin/PerlACE/Process.pm:
        * bin/PerlACE/ProcessAndroid.pm:
        * bin/PerlACE/ProcessLVRT.pm:
        * bin/PerlACE/ProcessVX.pm:
        * bin/PerlACE/ProcessVX_Unix.pm:
        * bin/PerlACE/ProcessVX_Win32.pm:
        * bin/PerlACE/ProcessWinCE.pm:
        * bin/PerlACE/ProcessWinCE_Unix.pm:
        * bin/PerlACE/Process_Unix.pm:
        * bin/PerlACE/Process_VMS.pm:
        * bin/PerlACE/Process_Win32.pm:
        * bin/PerlACE/Run_Test.pm:
        * bin/PerlACE/TestTarget.pm:
        * bin/PerlACE/TestTarget_Android.pm:
        * bin/PerlACE/TestTarget_LVRT.pm:
        * bin/PerlACE/TestTarget_VxWorks.pm:
        * bin/PerlACE/TestTarget_WinCE.pm:
          Extensions to run automatically tests on an Android emulator

Tue Sep  6 09:36:36 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * rpmbuild/ace-tao.spec:
          Removed rnq option, that is now default, added versioned namespace
          support

Wed Aug 31 11:43:13 UTC 2011  Abdul Sowayan  <sowayan@gmail.com>

        * include/makeinclude/platform_macosx_iOS.GNU:

          Minor updates to this file to work with Mac OSX Lion (10.7)

Wed Aug 31 11:33:39 UTC 2011  Abdul Sowayan  <sowayan@gmail.com>

        * ace/config-macosx-iOS-hardware.h:
        * ace/config-macosx-iOS-simulator.h:
        * include/makeinclude/platform_macosx_iOS.GNU:

          Renamed the files from iphone to iOS since this is what apple
          calls the platform these days.

        * ace/config-macosx-iphone-hardware.h:
        * ace/config-macosx-iphone-simulator.h:
        * include/makeinclude/platform_macosx_iphone.GNU:

          Removed these files.

Tue Aug 30 14:40:01 UTC 2011  Abdul Sowayan  <sowayan@gmail.com>

        * include/makeinclude/platform_macosx_iphone.GNU:

          Allow the user to specify the location of XCode. This is helpful
          when there are multiple versions of XCode installed on the machine.
          To specify the location of XCode, use XCODE_ROOT environment variable.
          If XCODE_ROOT is not specified, the location of XCode is assumed to be
          located at the default installation directory (which is /Developer).

Fri Aug 26 16:02:13 UTC 2011  Abdul Sowayan  <sowayan@gmail.com>

        * include/makeinclude/platform_macosx_iphone.GNU:

          Switch the default compiler from GCC to Clang

Fri Aug 26 15:59:19 UTC 2011  Abdul Sowayan  <sowayan@gmail.com>

        * ace/config-macosx-iphone-hardware.h:
        * ace/config-macosx-iphone-simulator.h:

          Updated these files to use Mac OS-X Lion as the build host. Also, fixed
          some minor typos.

Wed Aug 24 13:06:17 UTC 2011  Douglas C. Schmidt  <schmidt@dre.vanderbilt.edu>

        * ace/Message_Block.cpp: Replaced the recursive version of
          ACE_Message_Block::clone() with a non-recursive version to avoid
          problems when there are large numbers of message blocks.  Thanks
          to Andrew Metcalfe <andrew dot metcalfe at ccur dot com> for
          reporting this and suggesting the fix, which was provided by
          Eric Frias <efrias at syncad dot com>.

Tue Aug 23 18:20:02 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * NEWS:
          Prepared for next release

        * bin/diff-builds-and-group-fixed-tests-only.sh:
        * docs/Download.html:
        * docs/bczar/bczar.html:
        * etc/index.html:
          Updated to make the new release public

Tue Aug 23 19:01:44 CEST 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ACE version 6.0.4 released.

Thu Aug 18 01:31:48 UTC 2011  Phil Mesnier  <mesnier_p@ociweb.com>

        * ace/Message_Block.cpp:

          Reverted the change from Mon Aug 15 14:41:24 UTC 2011 Douglas
          C. Schmidt <schmidt@dre.vanderbilt.edu>. This change caused a
          regression failure that showed up on some of the TAO tests. We
          can try reintroducing this patch after the upcoming release.

Wed Aug 17 15:01:28 UTC 2011  Phil Mesnier  <mesnier_p@ociweb.com>

        * ACE-INSTALL.html:

          Fix typo in SYSROOT default example.

Wed Aug 17 13:54:12 UTC 2011  Phil Mesnier  <mesnier_p@ociweb.com>

        * ace/Message_Block.cpp:

          Unfuzz.

Mon Aug 15 14:41:24 UTC 2011  Douglas C. Schmidt  <schmidt@dre.vanderbilt.edu>

        * ace/Message_Block.cpp: Replaced the recursive version of
          ACE_Message_Block::clone() with a non-recursive version to avoid
          problems when there are large numbers of message blocks.  Thanks
          to Andrew Metcalfe <andrew dot metcalfe at ccur dot com> for
          reporting this and suggesting the fix, which was provided by
          Eric Frias <efrias at syncad dot com>.

Sun Aug 14 10:44:32 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * rpmbuild/ace-tao.spec:
          Added support for inline, thanks to Thomas Lockhart for providing
          the patch

Wed Aug 10 20:15:40 UTC 2011  Phil Mesnier  <mesnier_p@ociweb.com>

        * ACE-INSTALL.html:
        * NEWS:

          Add a note about support for Android in the news, and add more
          detail to the installation steps.

Wed Aug 10 19:02:21 UTC 2011  Phil Mesnier  <mesnier_p@ociweb.com>

        * ACE-INSTALL.html:

          Updated the text related to installing for Android.

        * include/makeinclude/platform_android_linux.GNU:

          Added this file.

        * include/makeinclude/platform_linux_android.GNU:

          Removed this file.

          Renamed the file to be consistent with others, now the name is
          target platform first followed by the build-specific name. The
          settings for cross compilation are now configured inside this
          platform file, using some assumptions for architecture.

          The build for the arm architecture works, but it looks like x86
          still needs work by the NDK team, it was just added in their r6
          release. I've submitted a bug report to the android team with a
          suggested patch.

Wed Aug 10 17:14:01 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-win32.h:
          Removed one include too much

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

        * ace/config-macros.h:
          Enable ACE_HAS_REACTOR_NOTIFICATION_QUEUE by default, it gives
          much better performance and also doesn't suffer the issue that them
          reactor queue can get full

Wed Aug 10 12:18:56 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Notification_Queue.inl:
        * ace/Service_Config.h:
          Layout changes

Wed Aug 10 11:45:28 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-win32-common.h:
        * ace/config-win32.h:
          Moved define to the common file

        * ace/config-win32-borland.h:
          Removed support for C++ Builder, the port is broken and not maintained
          for years.

Tue Aug  9 17:28:15 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * debian/patches/series:
          Updated because of removed files

        * debian/patches/16-ace-inet-pkgconfig-files.diff:
        * debian/patches/prevent_doxygen_ace_manpages.diff:
          Removed these files, integrated into trunk

Tue Aug  9 17:17:56 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/os_include/os_dlfcn.h:
          Added if !defined checks around all defines in this file

Mon Aug  8 21:46:01 UTC 2011  Phil Mesnier  <mesnier_p@ociweb.com>

        * ace/OS_NS_time.inl:

          Fix some inconsistencies in the new android-specific wrappers.

        * ace/config-android.h:

          Android does not supply std::wstring

        * include/makeinclude/platform_linux_android.GNU:

          The android supplied compiler gives a preemptive warning about
          va_args mangling change, but I cannot find anything to change
          in the ACE code, so I added the recommended warning suppressor.

Thu Aug  4 22:11:26 UTC 2011  Phil Mesnier  <mesnier_p@ociweb.com>

        * ace/config-android.h:

          unfuzz.

Thu Aug  4 15:03:16 UTC 2011  Phil Mesnier  <mesnier_p@ociweb.com>

        * ACE-INSTALL.html:
        * ace/OS_NS_Thread.cpp:
        * ace/OS_NS_errno.h:
        * ace/OS_NS_time.h:
        * ace/OS_NS_time.inl:
        * ace/config-linux.h:
        * ace/config-android.h:
        * include/makeinclude/platform_linux_android.GNU:

          Added configuration files and minor changes to allow building
          for Android using the Android Native Development Kit's standalone
          tool chain. http://developer.android.com/sdk/ndk/index.html
          Android is not a completely tested platform and automated testing
          does not work for it currently. Thanks to Trevor Fields of OCI
          for doing the heavy lifting on preparing these changes.

        * examples/APG/ThreadManagement/Async_Cancel.cpp:
        * examples/Service_Configurator/IPC-tests/client/local_dgram_client_test.cpp:
        * examples/Service_Configurator/IPC-tests/server/Handle_L_Stream.inl:
        * examples/Service_Configurator/IPC-tests/server/Handle_R_Stream.inl:
        * examples/Service_Configurator/IPC-tests/server/Handle_Thr_Stream.cpp:
        * examples/System_V_IPC/SV_Message_Queues/TMQ_Client.cpp:

          Add wrappers necessary to get them working with Android.

        * tests/Thread_Attrs_Test.cpp:
        * tests/test_config.h:

          Minor changes for running tests on Android.

Sun Jul 31 11:14:23 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/generate_doxygen.pl:
          Don't generate man pages, not used

        * debian/*:
          Pull in latest version from debian packaging

        * protocols/ace/INet/ACE_INet.pc.in:
        * protocols/ace/INet/ACE_INet_SSL.pc.in:
        * protocols/ace/INet/inet.mpc:
        * protocols/ace/INet/inet_ssl.mpc:
          Added pc.in files

        * etc/ace_man.doxygen:
          Removed this file.

Sat Jul 30 13:11:43 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-windows.h:
        * ace/config-win64.h:
          Renamed win64.h to windows.h

Sun Jul 24 04:27:10 UTC 2011  Phil Mesnier  <mesnier_p@ociweb.com>

        * examples/APG/Streams/Answerer.cpp:

          Fuzz fixes.

Sat Jul 23 22:37:24 UTC 2011  Phil Mesnier  <mesnier_p@ociweb.com>

        * ace/config-win64.h:
        * examples/APG/Timers/PCB.cpp:

          Fuzz fixes.

        * bin/fuzz.pl:

          Enhanced the check for ACE_TRACE messages so that it works
          correctly with class definitions such as those found in
          examples/APG/ThreadPools/Futures.cpp.

Fri Jul 22 12:29:59 UTC 2011  Douglas C. Schmidt  <schmidt@dre.vanderbilt.edu>

        * ace/Malloc_T.cpp: Fixed ACE_Dynamic_Cached_Allocator so that it
          doesn't overflow.  Thanks to Qiao Zhiqiang <qiaozhiqiang at
          leadcoretech dot com> for this fix.

Fri Jul 22 12:27:16 UTC 2011  Douglas C. Schmidt  <schmidt@dre.vanderbilt.edu>

        * tests/Cached_Allocator_Test.cpp (run_main): Updated this test to
          check that ACE_Dynamic_Cached_Allocator works properly.

Wed Jul 20 23:52:46 UTC 2011  Douglas C. Schmidt  <schmidt@dre.vanderbilt.edu>

        * ace/config-win64.h: Added this file to make it more clear how to
          build ACE on a 64-bit Windows platform.  Thanks to Thomas Pauli
          <thomas dot pauli at tu-dortmund dot de> for contributing this
          fix.

Mon Jul 18 11:44:16 UTC 2011  Douglas C. Schmidt  <schmidt@dre.vanderbilt.edu>

        * Happy Birthday to me ;-)

Mon Jul 11 00:39:05 UTC 2011  Douglas C. Schmidt  <schmidt@dre.vanderbilt.edu>

        * examples/APG/ThreadPools/Futures.cpp (class Manager):
        * examples/APG/Containers/Stacks.cpp (StackExample::run):
        * examples/APG/Containers/Allocator.cpp (StackExample::run):
        * examples/APG/Timers/PCB.cpp (PCB::handleClose): Fixed a mismatch in ACE_TRACE.

Sat Jul  9 19:07:20 UTC 2011  Douglas C. Schmidt  <schmidt@dre.vanderbilt.edu>

        * ace/RB_Tree.inl,
          ace/Svc_Handler.cpp,
          examples/APG/Active_Objects/AO.cpp,
          examples/APG/Active_Objects/AO2.cpp,
          examples/APG/Containers/Allocator.cpp,
          examples/APG/Containers/DLList.cpp,
          examples/APG/Containers/Hash_Map.cpp,
          examples/APG/Containers/Hash_Map_Hash.cpp,
          examples/APG/Containers/Map_Manager.cpp,
          examples/APG/Containers/Map_Manager_Specialization.cpp,
          examples/APG/Containers/Queues.cpp,
          examples/APG/Containers/RB_Tree.cpp,
          examples/APG/Containers/RB_Tree_Functors.cpp,
          examples/APG/Containers/Sets.cpp,
          examples/APG/Containers/Stacks.cpp,
          examples/APG/Processes/Process_Manager_Death.cpp,
          examples/APG/Processes/Process_Mutex.cpp,
          examples/APG/Signals/SigAction.cpp,
          examples/APG/Signals/SigHandler.cpp,
          examples/APG/Signals/SigHandlers.cpp,
          examples/APG/Streams/Answerer.cpp,
          examples/APG/Streams/CommandStream.cpp,
          examples/APG/Streams/CommandTask.cpp,
          examples/APG/Streams/EndTask.h,
          examples/APG/ThreadPools/Futures.cpp,
          examples/APG/ThreadPools/LF_ThreadPool.cpp,
          examples/APG/ThreadPools/Task_ThreadPool.cpp,
          examples/APG/ThreadPools/ThreadPool.cpp,
          examples/APG/Timers/Alarm.cpp,
          examples/APG/Timers/CB.cpp,
          examples/APG/Timers/PCB.cpp,
          examples/APG/Timers/PTimerDispatcher.cpp,
          examples/APG/Timers/Task.cpp,
          examples/APG/Timers/TimerDispatcher.cpp,
          examples/APG/Timers/Upcall.cpp,
          examples/Reactor/TP_Reactor/ReadHandler.cpp,
          examples/Timer_Queue/Custom_Handler.cpp,
          netsvcs/lib/Name_Handler.cpp,
          netsvcs/lib/Server_Logging_Handler_T.cpp,
          netsvcs/lib/TS_Clerk_Handler.cpp,
          netsvcs/lib/TS_Server_Handler.cpp,
          tests/Bug_3878_Regression_Test.cpp,
          tests/Thread_Timer_Queue_Adapter_Test.cpp: Fixed all the
          ACE_TRACE statements similar to

          ACE_TRACE( ACE_TEXT( "sometext" ) );

          and

          ACE_TRACE( "some"
                     "text" );

          to

          ACE_TRACE( "sometext" );

          Thanks to Espen Harlinn <espen at harlinn dot no> for this fix,
          which fixes bugid 3976.

Thu Jul  7 15:24:09 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Unbounded_Set_Ex.cpp:
          Fixed compile error when ACE_HAS_DUMP is defined. This fixes bugzilla
          3977, thanks to Ben Bronk <benjamin dot j dot bronk at lmco dot com>
          for reporting this

        * docs/bczar/bczar.html:
          Added git

Tue Jul  5 10:30:18 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/MakeProjectCreator/templates/gnu.mpd:
          Removed cidlc, that got removed years ago

Fri Jul  1 11:08:06 UTC 2011  Steve Huston  <shuston@riverace.com>

        * tests/bug_3974_Regression_Test.cpp: Return the correct value from
          the test. Thanks to Johnny for picking this up.

Fri Jul  1 10:28:10 UTC 2011  Martin Corino  <mcorino@remedy.nl>

        * ace/config-freebsd.h:
          Added missing ACE_HAS_XPG4_MULTIBYTE_CHAR. Should also resolve
          CDR stream op compile problems.

Fri Jul  1 10:01:54 UTC 2011  Olli Savia  <ops@iki.fi>

        * ace/config-linux.h:
          Reverted __ACE_INLINE__ removal.

Fri Jul  1 09:31:38 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-openvms.h:
          Readded OpenVMS socket buffer size limit

Fri Jul  1 08:46:30 UTC 2011  Martin Corino  <mcorino@remedy.nl>

        * ace/config-qnx.h:
        * ace/config-sunos5.5.h:
          Added ACE_LACKS_STD_WSTRING to remedy compile problems with new
          CDR stream ops in TAO.

Wed Jun 29 20:47:33 UTC 2011  Steve Huston  <shuston@riverace.com>

        * ace/Select_Reactor_T.cpp:
        * ace/TP_Reactor.cpp:
        * ace/Dev_Poll_Reactor.cpp:
        * ace/WFMO_Reactor.cpp:
          In handle_events(), if returning -1 because the reactor isn't
          ready to handle events, also set errno to ESHUTDOWN to tell the
          caller why. Fixes Bugzilla #3974.

        * tests/Bug_3974_Regression_Test.cpp:
        * tests/tests.mpc:
        * tests/run_test.lst:
          New test for the above problem/fix.

Wed Jun 29 10:38:02 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Thread_Manager.cpp:
          Fixed compile error in some environments

Wed Jun 29 07:56:54 UTC 2011  Martin Corino  <mcorino@remedy.nl>

        * ace/config-lynxos.h:
          Added ACE_LACKS_STD_WSTRING to remedy compile problems with new
          CDR stream ops in TAO.

Thu Jun 23 14:51:19 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/CE_Screen_Output.h:
        * ace/Log_Msg.cpp:
        * netsvcs/clients/Logger/direct_logging.cpp:
        * netsvcs/clients/Logger/indirect_logging.cpp:
        * netsvcs/lib/Base_Optimizer.h:
        * netsvcs/lib/Base_Optimizer.cpp:
        * netsvcs/lib/Client_Logging_Handler.cpp:
        * netsvcs/lib/Log_Message_Receiver.h:
        * netsvcs/lib/Log_Message_Receiver.cpp:
        * netsvcs/lib/Server_Logging_Handler.cpp:
        * netsvcs/lib/Server_Logging_Handler_T.cpp:
        * netsvcs/lib/TS_Clerk_Handler.cpp:
        * netsvcs/lib/TS_Server_Handler.cpp:
        * netsvcs/lib/Time_Request_Reply.cpp:
        * netsvcs/lib/lib.mpc:
        * netsvcs/servers/README:
        * netsvcs/servers/main.cpp:
          Layout and typo fixes

Thu Jun 23 14:29:08 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * docs/bczar/bczar.html:
          libtool

        * bin/diff-builds-and-group-fixed-tests-only.sh:
        * docs/Download.html:
          Make x.0.3 available

Thu Jun 23 12:39:08 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * etc/*.doxygen
          Disable html help, seems doxygen now disables the search option
          when html help is enabled

Thu Jun 23 13:46:08 CEST 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ACE version 6.0.3 released.

Wed Jun 22 18:01:15 UTC 2011  Jeff Parsons <j.parsons@vanderbilt.edu>

        * Basic_Types.h:
        * CDR_Base.cpp:
        * CDR_Base.h:
        * config-win32-mingw.h:

          Reverted all changes made related to support for long double
          constants in IDL.

Tue Jun 21 18:14:46 UTC 2011  Jeff Parsons <j.parsons@vanderbilt.edu>

        * ace/Basic_Types.h:

          Fixed typo in ACE_LONG_DOUBLE_FORMAT_SPECIFIER_ASCII
          decision tree. Thanks to Phil Mesnier <mesnier_p@ociweb.com>
          for his help in connecting it to scoreboard warnings.

Mon Jun 20 17:39:01 UTC 2011  Jeff Parsons <j.parsons@vanderbilt.edu>

        * ace/Basic_Types.h:

          Another tweak to ACE_LONG_DOUBLE_FORMAT_SPECIFIER_ASCII's
          logic aimed at warnings on FC6, FC8, FC12, and FC15.

Mon Jun 20 17:17:26 UTC 2011  Jeff Parsons <j.parsons@vanderbilt.edu>

        * ace/config-win32-mingw.h:
        * ace/Basic_Types.h:

          - Moved the definition of ACE_LONG_DOUBLE_FORMAT_SPECIFIER_ASCII
            to the MinGW config file.

          - Added #define ACE_CDR_IMPLEMENT_WITH_NATIVE_DOUBLE 1 to
            the MinGW config file, so that, for generated IDL long
            double constants, the argument will agree with the
            print format string. MinGW doesn't support long double
            in the print format.

Fri Jun 17 16:48:29 UTC 2011  Jeff Parsons <j.parsons@vanderbilt.edu>

        * ace/Basic_Types.h:

          Another tweak to ACE_LONG_DOUBLE_FORMAT_SPECIFIER_ASCII's
          conditional definition to eliminate warnings on FC12
          and FC15.

Fri Jun 17 12:48:31 UTC 2011  Jeff Parsons <j.parsons@vanderbilt.edu>

        * ace/Basic_Types.h:

          Removed the 'L' from the version of
          ACE_LONG_DOUBLE_FORMAT_SPECIFIER_ASCII targeted at MinGW
          platforms. That platform apparently doesn't support that
          part of the C print format spec.

Thu Jun 16 13:31:16 UTC 2011  Jeff Parsons <j.parsons@vanderbilt.edu>

        * ace/Basic_Types.h:

          Changed the logic of what ACE_LONG_DOUBLE_FORMAT_SPECIFIER_ASCII
          expands to in order to eliminate warnings on FC6 and FC8.

Wed Jun 15 13:10:40 UTC 2011  Jeff Parsons <j.parsons@vanderbilt.edu>

        * ace/Basic_Types.h:

          Added a special version of ACE_LONG_DOUBLE_FORMAT_SPECIFIER_ASCII
          for MinGW32, which seems to diverge from other platforms in how
          it conforms to the printf print format.

Fri Jun 10 19:05:30 UTC 2011  Jeff Parsons <j.parsons@vanderbilt.edu>

        * ace/Basic_Types.h:

          Added #define of ACE_LONG_DOUBLE_FORMAT_SPECIFIER_ASCII
          to make generation of a long double literal by the TAO IDL
          compiler more portable.

Fri Jun 10 12:58:49 UTC 2011  Marcel Smit  <msmit@remedy.nl>

        * ChangeLog:
          Fuzz. Removed tab.

Thu Jun  9 01:16:23 UTC 2011  Douglas C. Schmidt  <schmidt@dre.vanderbilt.edu>

        * ace/RB_Tree.cpp: Fixed overly long ACE_TRACE string literals
          that were split across lines.  Thanks to Espen Harlinn <espen at
          harlinn dot no> for reporting this.

Wed Jun  8 21:05:56 UTC 2011  Adam Mitz  <mitza@ociweb.com>

        * bin/fuzz.pl:

          Switch from cvs to svn for the -m option that checks only modified
          files.  We haven't used cvs for some time now.

Tue Jun  7 20:45:56 UTC 2011  Phil Mesnier  <mesnier_p@ociweb.com>

        * ace/CDR_Base.h:

          The inline function needs to be static to match the semantics of
          a struct constructor when the environment has native long
          doubles.

Tue Jun  7 18:20:36 UTC 2011  Jeff Parsons <j.parsons@vanderbilt.edu>

        * ace/CDR_Base.h:

          Added an inline function called LongDoubleAssign tha works
          as an alternative to the struct constructor of the same
          name when a 16-byte native long double exists and the struct
          is not defined. Thanks again to Adam Mitz <mitza at ociweb dot com>
          for the idea.

Mon Jun  6 22:17:26 UTC 2011  Adam Mitz  <mitza@ociweb.com>

        * ace/CDR_Base.h:

          The struct just added by Jeff also needs the export macro.

Mon Jun  6 19:51:27 UTC 2011  Jeff Parsons <j.parsons@vanderbilt.edu>

        * ace/CDR_Base.cpp:
        * ace/CDR_Base.h:

          Added a struct LongDoubleAssign which inherits from LongDouble,
          and contains the assignment operator and constructors, as well
          as a cast operator to LongDouble. This scheme allows generated
          code to use the LongDouble struct (when no 16-byte native long
          double exists) as a member in C++ unions, and to be initialized
          (when it appears as a constant) with the default copy constructor
          from LongDouble, converted from the supplied LongDoubleAssign,
          which is in turn initialized from the rhs literal. Thanks to
          Adam Mitz <mitza at ociweb dot com> for the LongDoubleAssign
          suggestion to work around the C++ union restriction.

Mon Jun  6 16:59:29 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * docs/Download.html:
          Fixed typo

        * include/makeinclude/platform_g++_common.GNU:
          Added support for c++0x, adding this to your platform_macros.GNU
          enables the g++ c++0x extensions

Mon Jun  6 13:44:14 UTC 2011  Marcel Smit  <msmit@remedy.nl>

        * examples/IPC_SAP/SSL_SAP/SSL-client-simple.cpp:
          Fixed gcc 4.6 warning.

Fri Jun  3 18:46:50 UTC 2011  Jeff Parsons <j.parsons@vanderbilt.edu>

        * ace/CDR_Base.h:

          Made the ACE_CDR::LongDouble struct constructor from native
          long double explicit, which eliminates compiler ambiguities
          when the struct's '==' and '!=' operators are used with
          a native long double rhs.

Wed Jun  1 19:30:44 UTC 2011  Jeff Parsons <j.parsons@vanderbilt.edu>

        * ace/CDR_Base.cpp:
        * ace/CDR_Base.h:

          To the struct ACE_CDR::LongDouble, used for platforms with
          a native long double that isn't 16 bytes, added an
          assignment operator and a constructor. The former is for
          internal use by the IDL compiler, and the latter is for
          code generation for long double constants. For types
          using the non-native struct, a const declaration is
          impossible to initialize by assignment to a literal,
          so a constructor is generated instead.

Wed Jun  1 10:17:33 UTC 2011  Marcel Smit  <msmit@remedy.nl>

        * bin/fuzz.pl:
          Fixed typo.

Wed Jun  1 05:53:10 UTC 2011  Marcel Smit  <msmit@remedy.nl>

        * examples/APG/Naming/Temperature_Monitor2.cpp:
        * examples/IPC_SAP/SSL_SAP/SSL-client-simple.cpp:
        * tests/Bug_3943_Regression_Test.cpp:
        * tests/Proactor_UDP_Test.cpp:
          Resolved gcc 4.6 warning: variable was set but not used.

Tue May 31 09:16:33 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * docs/Download.html:
          OBS now stands for Open Build Service

Tue May 31 07:13:01 UTC 2011  Marcel Smit  <msmit@remedy.nl>

        * ACEXML/examples/SAXPrint/main.cpp:
          Fixed compile error.

Mon May 30 18:44:55 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ACEXML/examples/SAXPrint/main.cpp:
          Fixed gcc 4.6 warning

        * docs/bczar/bczar.html:
          Added some more packages

Fri May 27 14:44:01 UTC 2011  Marcel Smit  <msmit@remedy.nl>

        * tests/Bug_2653_Regression_Test.cpp:
        * tests/Compiler_Features_12_Test.cpp:
        * tests/Reference_Counted_Event_Handler_Test.cpp:
          Resolved gcc 4.6 warning: variable was set but not used.

Fri May 27 09:49:56 UTC 2011  Marcel Smit  <msmit@remedy.nl>

        * ace/Monitor_Control/Linux_Network_Interface_Monitor.cpp:
          Made changes to satisfy Coverity and the GNU 4.6 gcc compiler.
          fgets returns a void*. This is stored in dummy. We use
          ACE_UNUSED_ARG to fool the 4.6 gcc compiler.

Thu May 26 14:27:50 UTC 2011  Marcel Smit  <msmit@remedy.nl>

        * ace/Monitor_Control/Linux_Network_Interface_Monitor.cpp:
          Resolved gcc 4.6 warning: variable was set but not used.

Thu May 26 14:11:57 UTC 2011  Marcel Smit  <msmit@remedy.nl>

        * ace/Monitor_Control/Linux_Network_Interface_Monitor.cpp:
          Resolved gcc 4.6 warning: variable was set but not used.

Thu May 26 11:39:54 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * docs/bczar/bczar.html:
          Added a yum install with all packages you could need on FC

Thu May 26 13:09:50 UTC 2011  Marcel Smit  <msmit@remedy.nl>

        * tests/Compiler_Features_10_Test.cpp:
          Resolved coverity warnings.

Mon May 23 07:55:41 UTC 2011  Marijke Hengstmengel  <mhengstmengel@remedy.nl>

        * tests/QtReactor_Test.h:
        * tests/QtReactor_Test.cpp:
        Changed deprecated qt4 functions and includes.

Mon May 23 07:10:41 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * examples/APG/Naming/Name_Binding.h:
        * netsvcs/lib/Client_Logging_Handler.cpp:
          Fixed incorrect delete

Mon May 23 06:55:37 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * examples/APG/Streams/MessageInfo.h:
          Pass argument as const& to fix Coverity error

        * protocols/ace/INet/BidirStreamBuffer.h:
        * protocols/ace/INet/BufferedStreamBuffer.h:
        * protocols/ace/INet/HTTP_BasicAuthentication.cpp:
        * protocols/ace/RMCast/Link.cpp:
          Fixed memory leaks, thanks to Max Zhou <earthdog at 126 dot com>
          for creating the patch, this fixes bugzilla 3959

Fri May 20 22:17:29 UTC 2011  Adam Mitz  <mitza@ociweb.com>

        * bin/MakeProjectCreator/config/ace_qt4reactor.mpb:

          Assignment to "after" must match the target MPC project name.

Thu May 12 18:08:47 UTC 2011  Steve Huston  <shuston@riverace.com>

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

        * include/makeinclude/rules.local.GNU: Added rules to preprocess
          C and C++ files when directed.

          These allow one to now quickly produce a preprocessed version of
          a source file. Ala... make -f GNUmakefile.ACE ACE.i
          would preprocess ACE.cpp and put the result in ACE.i.

Thu May 12 01:04:19 UTC 2011   Chad Beaulac  <chad.beaulac@objectivesolutions.com>
        * tests/Bug_3912_Regression_Test.cpp:
          Integrated changes from Phil Mesnier.
          Added static_cast and const_cast instead of C-style casts.

Wed May 11 18:26:28 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Thread_Control.h:
        * ace/Thread_Control.cpp:
        * ace/Thread_Hook.h:
        * ace/Thread_Hook.cpp:
        * apps/gperf/src/Options.cpp:
          Doxygen changes

Wed May 11 13:41:28 UTC 2011  Marijke Hengstmengel  <mhengstmengel@remedy.nl>

        * ace/QtReactor/QtReactor.h:
          Changed for QT4 deprecated include QT/..

Wed May 11 12:45:21 UTC 2011  Chad Beaulac  <chad.beaulac@objectivesolutions.com>

        * tests/Bug_3912_Regression_Test.cpp:
          Returning a value from close now.

        * tests/tests.mpc:
          Removed libs Stream_Config_Stream_DLL.
          It's dynamically loaded by the ASR.

Tue May 10 11:59:32 UTC 2011  Chad Beaulac  <chad.beaulac@objectivesolutions.com>

        * ace/Stream.cpp:
        * tests/Bug_3912_Regression_Test.cpp:
        * tests/Bug_3912_Regression_Test.conf:
          Fixed FUZZ whitespace and Id

Mon May  9 19:09:35 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Dump.h:
        * ace/FIFO.cpp:
        * ace/Filecache.cpp:
        * ace/Svc_Conf.y:
        * ace/Svc_Conf_y.cpp:
          Fixed coverity errors

Sun May  8 17:57:50 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/ETCL/ETCL_Constraint.h:
        * ace/ETCL/ETCL_Constraint.inl:
          Fixed coverity errors

Thu May  5 21:38:45 UTC 2011  Phil Mesnier  <mesnier_p@ociweb.com>

        * ace/Select_Reactor_T.cpp:

          Added a reset of errno during the ctor in case there was an
          error during the first attempt at opening the reactor. Turns out
          that in this case on at least on Linux, the errno leaks through
          the second, good call to open. This can happen for example, when
          ACE::max_handles() is less than the select reactor's DEFAULT_SIZE.
          Since all this happens in a ctor, there's no result value for
          application code to check, apart from errno.

Wed May  4 15:07:46 UTC 2011  Chad Beaulac <chad.beaulac@objectivesolutions.com>

          * ace/Stream.cpp:
          Modified ACE_Stream::remove(name,flags) so close
          is always called on the module that's removed regardless of the
          flags. Close needs to be called to ensure proper lifecycle
          management when the ACE_Service_Repository shuts down in its
          fini method.  Bugzilla #3912

        * tests/Bug_3912_Regression_Test.conf:
        * tests/Bug_3912_Regression_Test.cpp:
        * tests/run_test.lst
        * tests/test.mpc
          Added test to assert that close is called.

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

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

Fri Apr 29 06:39:06 UTC 2011  Marcel Smit  <msmit@remedy.nl>

        * bin/fuzz.pl:
          Exclude *.WCHAR_T.conf and *.UTF-16.conf files from $Id check.
          These files are not UTF-8 format and cannot be read by perl.

Thu Apr 28 06:39:25 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * rpmbuild/ace-tao.spec:
          Disable inlining

Wed Apr 27 13:33:43 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-visualage.h:
          Removed this file, includes only non existent files

Wed Apr 27 11:02:59 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Time_Value.inl:
        * ace/Time_Value.cpp:
          Corrected some casts to use time_t

Wed Apr 27 09:01:11 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * rpmbuild/ace-tao.spec:
          Improved this file

Tue Apr 26 09:38:05 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * rpmbuild/ace-tao.spec:
          Improved this file

Tue Apr 26 08:17:40 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * rpmbuild/ace-tao.spec:
          Improved this file

Sat Apr 23 12:31:28 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Stream.cpp:
          Fixed incorrect ACE_NEW_RETURN macro

Fri Apr 22 19:05:19 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/ACE.cpp (strnew):
          Removed null check, ACE_NEW_RETURN already does that

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

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

Fri Apr 22 12:43:18 UTC 2011  Marcel Smit  <msmit@remedy.nl>

        * protocols/tests/HTBP/HTBP_Config.conf:
        * protocols/tests/HTBP/Reactor_Tests/inside.conf:
        * tests/Service_Config_Test.WCHAR_T.conf:
          Fuzz: Added $Id string

Fri Apr 22 11:16:57 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * rpmbuild/ace-tao.spec:
          Removed autoconf support

Fri Apr 22 07:25:57 UTC 2011  Marcel Smit  <msmit@remedy.nl>

        * ace/MMAP_Memory_Pool.cpp:
        * ace/OS_NS_stdlib.cpp:
          Layout changes

        * Kokyu/tests/DSRT_MIF/svc.conf:
        * apps/Gateway/Gateway/svc.conf:
        * apps/Gateway/Peer/svc.conf:
        * apps/JAWS/server/svc.conf:
        * apps/JAWS3/jaws3/jaws.conf:
        * apps/JAWS3/small/jaws.conf:
        * apps/JAWS3/small/svc.conf:
        * examples/APG/Logging/client.conf:
        * examples/APG/Logging/logging_strategy.conf:
        * examples/APG/Logging/server.conf:
        * examples/APG/Naming/svc.conf:
        * examples/APG/Svc_Config/svc.conf.dynamic:
        * examples/APG/Svc_Config/svc.conf.static:
        * examples/ASX/CCM_App/svc.conf:
        * examples/C++NPv2/svc.conf:
        * examples/Service_Configurator/IPC-tests/server/svc.conf:
        * examples/Service_Configurator/Misc/svc.conf1:
        * examples/Service_Configurator/Misc/svc.conf2:
        * netsvcs/clients/Naming/Client/svc.conf:
        * netsvcs/clients/Naming/Client/svc2.conf:
        * netsvcs/servers/svc.conf:
        * performance-tests/Synch-Benchmarks/svcconf/perf_t1.conf:
        * performance-tests/Synch-Benchmarks/svcconf/perf_t16.conf:
        * performance-tests/Synch-Benchmarks/svcconf/perf_t2.conf:
        * performance-tests/Synch-Benchmarks/svcconf/perf_t32.conf:
        * performance-tests/Synch-Benchmarks/svcconf/perf_t4.conf:
        * performance-tests/Synch-Benchmarks/svcconf/perf_t64.conf:
        * performance-tests/Synch-Benchmarks/svcconf/perf_t8.conf:
        * performance-tests/Synch-Benchmarks/svcconf/svc.conf:
        * protocols/tests/HTBP/HTBP_Config.conf:
        * protocols/tests/HTBP/Reactor_Tests/inside.conf:
        * rpmbuild/etc/tao/tao-cosconcurrency.conf:
        * rpmbuild/etc/tao/tao-cosevent.conf:
        * rpmbuild/etc/tao/tao-cosnaming.conf:
        * rpmbuild/etc/tao/tao-cosnotification.conf:
        * rpmbuild/etc/tao/tao-costrading.conf:
        * rpmbuild/etc/tao/tao-rtevent.conf:
        * tests/Bug_3334_Regression_Test.conf:
        * tests/Service_Config_Stream_Test.conf:
        * tests/Service_Config_Test.UTF-16.conf:
        * tests/Service_Config_Test.conf:
        * tests/Service_Config_Test.conf.xml:
        * tests/UNIXclerk.conf:
        * tests/UNIXserver.conf:
        * tests/UNIXtokens.conf:
        * tests/Win32clerk.conf:
        * tests/Win32server.conf:
        * tests/Win32tokens.conf:
          Fuzz: Added $Id string.

Thu Apr 21 12:25:13 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/fuzz.pl:
          Check *.conf files for an Id tag

Thu Apr 21 08:16:01 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/platform_macosx.GNU:
        * include/makeinclude/platform_macosx_common.GNU:
          Cleanup

        * include/makeinclude/platform_macosx_lion.GNU:
          Fixed comment

Wed Apr 20 11:29:35 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/MakeProjectCreator/config/gnuace.features:
          Don't set ndds default to 1, reduced size of release and makes it
          possible to support more dds vendors

Wed Apr 20 10:27:42 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/diff-builds-and-group-fixed-tests-only.sh:
        * docs/Download.html:
        * etc/index.html:
          Make x.0.2 available

        * html/Stats/index.shtml:
          Removed cell xampler

Wed Apr 20 08:53:55 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * apps/gperf/src/Gen_Perf.cpp:
          Fixed coverity errors

        * bin/fuzz.pl:
          Extended fuzz

        * bin/generate_rel_manpages:
          Removed obsolete make steps

        * docs/bczar/bczar.html:
          zip should also be available

        * tests/Env_Value_Test.cpp:
        * tests/Reactor_Fairness_Test.cpp:
          Layout changes

Wed Apr 20 09:52:52 CEST 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ACE version 6.0.2 released.

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