-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathChangeLog
More file actions
8331 lines (6032 loc) · 299 KB
/
ChangeLog
File metadata and controls
8331 lines (6032 loc) · 299 KB
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
2014-06-26 14:45:30 +0200 Eric NOULARD
* Prepare CERTI 3.4.3 Release (Include some typo fix in git log format
indication) (HEAD, tag: CERTI-3_4_3, master)
2014-06-26 14:43:41 +0200 Eric NOULARD
* Update testFederate in order to do more test (on-going work) (origin/master,
origin/HEAD)
2014-06-26 14:42:58 +0200 Eric NOULARD
* Implement connect/disconnect for IEEE-1516 2010
2014-06-26 14:42:21 +0200 Eric NOULARD
* Update Release Process description for using git
2014-05-15 10:53:51 +0000 Eric Noulard
* Fix compile error on MacOS with both mac port X11 and Quartz/native X11
installed (origin/origin)
2014-05-07 12:10:56 +0000 Eric Noulard
* Fix compilation warning on MasOS X/Clang 5.1
2014-05-06 09:12:55 +0000 Eric Noulard
* Better to install certi-config in bin dir.
2014-05-06 09:02:10 +0000 Eric Noulard
* Provide a certi-config script in order to ease hand-written build systems.
certi-config --cflags provides compile flags certi-config --libs
provides linker flags one should use: --hlaversion option in order to
select 1.3, 1516 or 1516e.
2014-05-06 08:06:17 +0000 Eric Noulard
* Second thought: put both local and remote link this may be more convenient.
2014-05-06 07:59:06 +0000 Eric Noulard
* Refer to PDF documentation on www.nongnu.org directly. This is more convenient
when PDF are not generated locally.
2014-05-06 07:43:43 +0000 Eric Noulard
* Remove old reference to CERTI_FED var and use up to date CERTI_FOM_PATH
2014-04-17 09:42:13 +0000 Eric Noulard
* Add support for WIX installer if WiX Toolset is found on the machine.
2014-04-16 15:01:16 +0000 Eric Noulard
* Avoid MSVC warning
2014-04-16 14:41:02 +0000 Eric Noulard
* Add some devel files (tag: CERTI-3_4_3-beta)
2014-04-16 14:32:19 +0000 Eric Noulard
* Prepare 3.4.3-beta release
2014-04-16 14:31:54 +0000 Eric Noulard
* Provide more explicit Not Implemented messages
2014-04-16 13:47:06 +0000 Eric Noulard
* Add automatic test federate script
2014-04-16 12:24:01 +0000 Eric Noulard
* Clean-up the code a little bit
2014-04-16 11:30:49 +0000 Eric Noulard
* Avoid forward declaration of auto_ptr. Use proper standard include header
<memory>.
2014-03-24 13:01:52 +0000 Eric Noulard
* Fix compilation on Windows, patch from Jan-Patrick.
2014-03-07 18:25:17 +0000 Eric Noulard
* testFederate now compile & link for IEEE-1516-2010 this is mostly untested
though :-(
2014-03-07 18:24:43 +0000 Eric Noulard
* Add the missings bit into libRTI for IEEE-1516-2010
2014-03-07 18:01:22 +0000 Eric Noulard
* Prepare IEEE-1516-2010 test
2014-03-07 18:00:49 +0000 Eric Noulard
* Very alpha version of IEEE-1516-2010 library which compile just fine.
2014-03-07 18:00:05 +0000 Eric Noulard
* Remove spurious file
2014-03-06 16:11:31 +0000 Eric Noulard
* One more step towards IEEE-1516-2010 API not working yet
2014-03-06 16:01:36 +0000 Eric Noulard
* API Update from 1516 to 1516e
2014-03-06 12:14:10 +0000 Eric Noulard
* Rename RTiambassador implementation to appropriate name and put it in certi::
namespace while leaving polymorphic RTIambassador in rti1516::
namespace.
2014-03-05 10:15:56 +0000 Eric Noulard
* Remove useless file
2014-03-03 16:43:25 +0000 Eric Noulard
* Prepare IEEE-1516-2010 library build
2014-03-03 16:42:36 +0000 Eric Noulard
* Change copyrihgt date and remove CVS expansion keyword
2014-03-03 16:41:46 +0000 Eric Noulard
* Rename file since we now have a private directory. It will ease the 1516-2000
--> 1516-2010 copy/paste
2014-03-03 15:18:13 +0000 Eric Noulard
* Split-up standard specific files in separate directories. One for existing
hla-1_3 One for existing ieee1516-2000 One for the forthcoming
ieee1516-2010.
2014-03-03 14:29:30 +0000 Eric Noulard
* Add a test federate in the Certi source tree in order to ease multi-standard
(1.3, 1516-2000, 1516-2010/Evolved) testing.
2014-03-03 14:27:21 +0000 Eric Noulard
* prefer absolute path usage for generated files
2014-03-03 14:26:37 +0000 Eric Noulard
* tab pruning
2014-03-03 14:26:03 +0000 Eric Noulard
* Install configured file in the build tree at configure time in order to ease
the compilation of builtin test federate
2014-03-03 14:24:56 +0000 Eric Noulard
* Enhance HLA 1.3 API documentation. This is a long running and painful job.
2014-02-28 15:54:13 +0000 Eric Noulard
* Update RTIG doxygen documentation
2014-02-28 15:53:34 +0000 Eric Noulard
* Update RTIA doxygen documentation
2014-02-28 15:53:12 +0000 Eric Noulard
* export libhla includes in its own place
2014-02-28 15:33:24 +0000 Eric Noulard
* Update doxygen generated documentation configuration
2014-02-28 13:55:31 +0000 Eric Noulard
* Resurrect install.dox file
2014-02-04 10:34:21 +0000 Eric Noulard
* More doc update
2014-02-04 10:00:34 +0000 Eric Noulard
* Suppress CVS $ tags
2014-02-04 09:58:21 +0000 Eric Noulard
* Resurrect two more doc files...
2014-02-04 09:03:48 +0000 Eric Noulard
* Resurrect documentation files that were suppressed by error
2014-01-22 09:35:58 +0000 Eric Noulard
* Avoid including unistd.h on Windows
2013-12-16 14:07:29 +0000 Eric Noulard
* Fix build error on Windows+Code::Blocks
2013-12-09 15:49:39 +0000 Eric Noulard
* Update find module to look for CERTI new include directories
2013-12-09 13:56:19 +0000 Eric Noulard
* Missing generated include path.
2013-12-09 13:47:43 +0000 Eric Noulard
* Source file and path structure redesign in order to prepare the addition of
ieee1516 v2010 (evolved).
2013-12-06 13:45:42 +0000 Eric Noulard
* Do not confuse host and target when cross-compiling
2013-12-06 13:30:33 +0000 Eric Noulard
* Small update of the release process
2013-12-06 12:55:04 +0000 Eric Noulard
* Go on with CERTI development
2013-12-06 13:31 tag CERTI-3_4_2
2013-12-06 13:31 erk
* CMakeLists.txt (1.130, CERTI-3_4_2): Prepare 3.4.2 release
2013-12-06 13:24 erk
* RTIG/main.cc (3.24, CERTI-3_4_2): Provide a better error when @IP
format is wrong
2013-12-06 13:10 erk
* libRTI/CMakeLists.txt (1.28, CERTI-3_4_2): Use new style add_test
even in commented out code
2013-12-06 13:09 erk
* scripts/certi-ctest.cmake (1.5, CERTI-3_4_2): Small update
2013-12-06 11:34 erk
* CMakeLists.txt (1.129): Add ENABLE_MINGW_AUTOIMPORT option and
avoid discovering which version of MinGW support the
-enable-auto-import option. This close patch #8184.
2013-10-02 15:49 erk
* CMakeLists.txt (1.128): Add two icon in start menu (of NSIS
installer) in order to be able to easily launch: RTIG + 2
billard applications.
The default is to use billard-nogui because GUI version of
billard is not currently built on Windows.
2013-10-02 14:50 erk
* CMakeLists.txt (1.127): Avoid requiring cmake 2.8.0 on Linux
since default CentOS 5/6 version of CMake is 2.6.4 and we
currently only "really" require 2.8.x on Windows
2013-09-27 15:04 erk
* libCERTI/SocketUDP.cc (3.32), RTIG/RTIG.cc (3.72),
libCERTI/Socket.hh (3.22), libCERTI/SocketUDP.hh (3.16) (utags:
CERTI-3_4_2): Fixes bug #23360 : RTIA UDP socket being bound to
`localhost` address bug #35955 : RTIG listen on all interfaces
UDP as well as TCP should obey the new -l option of RTIG.
2013-09-27 10:39 erk
* ReleaseProcess.txt (1.10, CERTI-3_4_2): Small update command line
reminder for scp
2013-09-27 10:38 erk
* CMakeLists.txt (1.126): Go back to work on 3.4.2 release
2013-09-27 10:33 tag CERTI_SYS015_2013
2013-09-27 10:33 erk
* CMakeLists.txt (1.125, CERTI_SYS015_2013): Build specific version
for SYS015 course
2013-09-27 10:20 erk
* RTIA/main.cc (3.29, CERTI-3_4_2, CERTI_SYS015_2013): Adjust RTIA
signal handling in the same way RTIG does. This was suggested in
bug #23135 : RTIG/RTIA generates no coredump after unhandled
exception This close the bug.
2013-09-26 16:21 erk
* CTestConfig.cmake (1.4, CERTI-3_4_2, CERTI_SYS015_2013): Change
the Nightly update date
2013-09-25 16:57 erk
* libHLA/CMakeLists.txt (1.20, CERTI-3_4_2), libRTI/CMakeLists.txt
(1.27) (utags: CERTI_SYS015_2013): Merge patch #8187 : Fix for
CTest Nightly This requires cmake 2.8.0. The requirement has
been added in a previous commit.
2013-09-25 16:55 erk
* CMakeLists.txt (1.124): Fix patch #7072 we should require modern
CMake version. We go for 2.8.0 which is already more than 3 year
old which seems acceptable.
2013-09-25 11:46 erk
* CMakeLists.txt (1.123): On native windows build keep one-dash
prefix option -enable-auto-import
2013-09-24 16:46 erk
* libCERTI/BaseRegion.hh (3.5), libCERTI/HandleManager.hh (3.10),
libCERTI/Message.cc (3.70), libCERTI/NameReservation.hh (3.4),
include/RTI.hh (3.22), include/federateAmbServices.hh (3.3)
(utags: CERTI-3_4_2, CERTI_SYS015_2013): Re-add files that were
wrongly suppressed
2013-09-24 16:27 erk
* libCERTI/AuditLine.cc (3.13, CERTI-3_4_2, CERTI_SYS015_2013),
libCERTI/BaseRegion.hh (3.4), libCERTI/ObjectAttribute.cc (3.20,
CERTI-3_4_2, CERTI_SYS015_2013), libCERTI/ObjectClass.cc (3.91,
CERTI-3_4_2, CERTI_SYS015_2013),
libCERTI/ObjectClassBroadcastList.cc (3.33, CERTI-3_4_2,
CERTI_SYS015_2013), libCERTI/fed.hh (3.9, CERTI-3_4_2,
CERTI_SYS015_2013), libCERTI/FederateLevelList.hh (3.12,
CERTI-3_4_2, CERTI_SYS015_2013), libCERTI/GAV.cc (3.24,
CERTI-3_4_2, CERTI_SYS015_2013), libCERTI/HandleManager.hh (3.9),
libCERTI/LBTS.cc (3.21, CERTI-3_4_2, CERTI_SYS015_2013),
libCERTI/ObjectClassAttribute.cc (3.40, CERTI-3_4_2,
CERTI_SYS015_2013), libCERTI/tokens.ll (3.12, CERTI-3_4_2,
CERTI_SYS015_2013), libCERTI/AuditFile.hh (3.12, CERTI-3_4_2,
CERTI_SYS015_2013), libCERTI/BasicMessage.cc (3.19, CERTI-3_4_2,
CERTI_SYS015_2013), libCERTI/NetworkMessage.hh (3.67,
CERTI-3_4_2, CERTI_SYS015_2013), libCERTI/PrettyDebug.cc (4.13,
CERTI-3_4_2, CERTI_SYS015_2013), libCERTI/Exception.cc (3.22,
CERTI-3_4_2, CERTI_SYS015_2013), libCERTI/FedTime.cc (3.17,
CERTI-3_4_2, CERTI_SYS015_2013), libCERTI/Interaction.cc (3.65,
CERTI-3_4_2, CERTI_SYS015_2013),
libCERTI/ObjectClassBroadcastList.hh (3.12, CERTI-3_4_2,
CERTI_SYS015_2013), libCERTI/SocketTCP.cc (3.36, CERTI-3_4_2,
CERTI_SYS015_2013), libCERTI/BaseRegion.cc (3.7, CERTI-3_4_2,
CERTI_SYS015_2013), libCERTI/FederateLevelList.cc (3.12,
CERTI-3_4_2, CERTI_SYS015_2013), libCERTI/InteractionSet.cc
(3.35, CERTI-3_4_2, CERTI_SYS015_2013), libCERTI/LBTS.hh (3.14,
CERTI-3_4_2, CERTI_SYS015_2013), libCERTI/Message.cc (3.69),
libCERTI/Named.cc (3.11, CERTI-3_4_2, CERTI_SYS015_2013),
libCERTI/ObjectClassAttribute.hh (3.30, CERTI-3_4_2,
CERTI_SYS015_2013), libCERTI/Extent.cc (3.15, CERTI-3_4_2,
CERTI_SYS015_2013), libCERTI/Object.cc (3.29, CERTI-3_4_2,
CERTI_SYS015_2013), libCERTI/ObjectAttribute.hh (3.20,
CERTI-3_4_2, CERTI_SYS015_2013), libCERTI/GSSAPIHandler.hh (3.5,
CERTI-3_4_2, CERTI_SYS015_2013),
libCERTI/InteractionBroadcastList.hh (3.11, CERTI-3_4_2,
CERTI_SYS015_2013), libCERTI/NetworkMessage_RW.cc (3.59,
CERTI-3_4_2, CERTI_SYS015_2013), libCERTI/helper.hh (3.3,
CERTI-3_4_2, CERTI_SYS015_2013), libCERTI/FedRegion.cc (3.7,
CERTI-3_4_2, CERTI_SYS015_2013), libCERTI/FedTimeD.hh (4.2,
CERTI-3_4_2, CERTI_SYS015_2013), libCERTI/InteractionSet.hh
(3.29, CERTI-3_4_2, CERTI_SYS015_2013),
libCERTI/NameReservation.hh (3.3), libCERTI/AuditFile.cc (3.13,
CERTI-3_4_2, CERTI_SYS015_2013), libCERTI/AuditLine.hh (3.12,
CERTI-3_4_2, CERTI_SYS015_2013), libCERTI/Extent.hh (3.13,
CERTI-3_4_2, CERTI_SYS015_2013), libCERTI/GSSAPIHandler.cc (3.9,
CERTI-3_4_2, CERTI_SYS015_2013), libCERTI/NetworkMessage.cc
(3.52, CERTI-3_4_2, CERTI_SYS015_2013), libCERTI/BasicMessage.hh
(3.18, CERTI-3_4_2, CERTI_SYS015_2013), libCERTI/Dimension.cc
(3.10, CERTI-3_4_2, CERTI_SYS015_2013), libCERTI/Dimension.hh
(3.11, CERTI-3_4_2, CERTI_SYS015_2013), libCERTI/Exception.hh
(3.13, CERTI-3_4_2, CERTI_SYS015_2013), libCERTI/FedRegion.hh
(3.6, CERTI-3_4_2, CERTI_SYS015_2013), libCERTI/Interaction.hh
(3.46, CERTI-3_4_2, CERTI_SYS015_2013),
libCERTI/InteractionBroadcastList.cc (3.17, CERTI-3_4_2,
CERTI_SYS015_2013), libCERTI/Message_RW.cc (3.43, CERTI-3_4_2,
CERTI_SYS015_2013), libCERTI/Named.hh (3.12, CERTI-3_4_2,
CERTI_SYS015_2013), libCERTI/ObjectClass.hh (3.60, CERTI-3_4_2,
CERTI_SYS015_2013), libCERTI/ObjectClassSet.cc (3.59,
CERTI-3_4_2, CERTI_SYS015_2013), libCERTI/ObjectClassSet.hh
(3.43, CERTI-3_4_2, CERTI_SYS015_2013), libCERTI/PrettyDebug.hh
(4.11, CERTI-3_4_2, CERTI_SYS015_2013), libCERTI/fed.cc (3.25,
CERTI-3_4_2, CERTI_SYS015_2013), RTIG/Federation.cc (3.152,
CERTI-3_4_2, CERTI_SYS015_2013), RTIG/Federation.hh (3.75,
CERTI-3_4_2, CERTI_SYS015_2013), RTIG/RTIG.cc (3.71,
CERTI_SYS015_2013), RTIG/RTIG.hh (3.39, CERTI-3_4_2,
CERTI_SYS015_2013), RTIG/RTIG_processing.cc (3.116, CERTI-3_4_2,
CERTI_SYS015_2013), libCERTI/Handled.hh (3.3, CERTI-3_4_2,
CERTI_SYS015_2013), test/Billard/Billard_cmdline.c (1.1,
CERTI-3_4_2, CERTI_SYS015_2013), test/Billard/Billard_cmdline.h
(1.1, CERTI-3_4_2, CERTI_SYS015_2013), test/libgraphc/graph_c.cc
(3.8, CERTI-3_4_2, CERTI_SYS015_2013), doc/certi_install_doc.tree
(3.6), doc/certi_user_doc.tree (3.7), doc/install.dox (3.3),
doc/introduction.dox (3.3), doc/build.dox (3.6), doc/execute.dox
(3.7), include/RTI.hh (3.21), include/RTIambServices.hh (3.12,
CERTI-3_4_2, CERTI_SYS015_2013), include/RTItypes.hh.cmake (1.2,
CERTI-3_4_2, CERTI_SYS015_2013), include/certi.hh (3.54,
CERTI-3_4_2, CERTI_SYS015_2013), include/federateAmbServices.hh
(3.2), include/fedtime.hh (3.14, CERTI-3_4_2, CERTI_SYS015_2013),
include/NullFederateAmbassador.hh (3.2, CERTI-3_4_2,
CERTI_SYS015_2013): Merge patch #7791 : Remove $Id: ChangeLog,v 3.44 2013/12/06 12:48:41 erk Exp $ CVS keywords
2013-09-24 11:16 erk
* CMakeLists.txt (1.122): Merge patch #8184 with slight
modification to avoid --enable-auto-import when cross-compiling
because mingw32/64 cross compiler doesn not seem to support the
option.
2013-09-20 14:09 erk
* RTIG/CMakeLists.txt (1.13), test/Billard/CMakeLists.txt (1.12),
RTIA/CMakeLists.txt (1.14) (utags: CERTI-3_4_2,
CERTI_SYS015_2013): Less "secure" MSVC warning for gengetopt
generated files.
2013-09-20 14:04 erk
* RTIG/Federation.cc (3.151): Should fix build error on MSVC
2013-09-18 16:50 erk
* test/Billard/CMakeLists.txt (1.11): Prepare proper gengetopt
command line generation [unfinished]
2013-09-18 16:50 erk
* test/Billard/: Billard.ggo (1.1, CERTI-3_4_2, CERTI_SYS015_2013),
CommandLine.ggo (3.5): Rename CommandLine.ggo --> Billard.ggo
2013-09-18 16:49 erk
* RTIA/CMakeLists.txt (1.13), RTIG/CMakeLists.txt (1.12): Update
for more informative messages
2013-09-18 16:29 erk
* RTIG/Federation.cc (3.150): Avoid Mingw warning: "warning:
"strcasecmp" redefined [enabled by default]"
2013-09-17 17:05 erk
* scripts/Toolchain-cross-mingw-Win64.cmake (1.1, CERTI-3_4_2,
CERTI_SYS015_2013), CMakeLists.txt (1.121),
scripts/Toolchain-cross-mingw-Win32.cmake (1.1, CERTI-3_4_2,
CERTI_SYS015_2013), scripts/Toolchain-cross-mingw32-linux.cmake
(1.6): Add test for properly cross-compiling CERTI on a Linux
host to a Win32/64 target
2013-09-16 16:31 erk
* include/CMakeLists.txt (1.6, CERTI-3_4_2, CERTI_SYS015_2013):
Suppress spurious space.
2013-09-16 16:30 erk
* libCERTI/RingBuffer.cc (3.4, CERTI-3_4_2, CERTI_SYS015_2013):
Avoid compiler warning. This is not a real fix, this code must
be changed/updated.
2013-09-16 16:14 erk
* libRTI/RTI1516ambassador.h (1.3, CERTI-3_4_2, CERTI_SYS015_2013):
Complete friend function prototype to include full exception
specification.
2013-09-16 16:10 erk
* CMakeLists.txt (1.120): Prune spurious space in CMakeLists.txt
2013-09-16 16:09 erk
* RTIG/: Federation.cc (3.149), Federation.hh (3.74): Calm down
compiler warning and avoid using libxml inlcudes in CERTI headers
(using it in .cc is enough).
2013-09-16 15:24 erk
* RTIG/RTIG_processing.cc (3.115): Avoid compiler warning about
"set but not used variable". Add some more comment about this
"side-effect" call.
2013-09-16 15:23 erk
* libCERTI/Exception.hh (3.12): Avoid compiler warning about
non-initialized field member.
2013-09-16 15:22 erk
* RTIA/RTIA_federate.cc (3.122, CERTI-3_4_2, CERTI_SYS015_2013):
Add break or explicit NO break comment in order to calm down code
analysis warning and makes it explicit that we don't want a break
in some cases.
2013-09-11 10:17 erk
* RTIA/RTIA_federate.cc (3.121): Avoid compiler warning (clang) due
to unsigned comparison.
2013-09-10 14:46 erk
* xml/: README.txt (1.1), 1516_1-2010/HLAstandardMIM.xml (1.1),
1516_1-2010/IEEE1516-FDD-2010.xsd (1.1),
1516_1-2010/hla1516e.wsdl (1.1), 1516_2-2000/HLA.dtd (1.1),
1516_2-2000/OMT-DIF.xml (1.1), 1516_2-2010/IEEE1516-DIF-2010.xsd
(1.1), 1516_2-2010/IEEE1516-OMT-2010.xsd (1.1),
1516_2-2010/RestaurantFOMmodule.xml (1.1),
1516_2-2010/RestaurantSOMmodule.xml (1.1) (utags: CERTI-3_4_2,
CERTI_SYS015_2013): Add xml files coming from IEEE-1516 norms
2013-09-06 15:34 erk
* scripts/SystemSpecificInformations.cmake (1.11, CERTI-3_4_2,
CERTI_SYS015_2013): Update more MSVC version
2013-09-06 14:50 erk
* include/certi.hh (3.53): Should fix compilation with Visual
Studio 2012.
2013-09-04 14:53 erk
* libCERTI/: CMakeLists.txt (1.40, CERTI-3_4_2, CERTI_SYS015_2013),
SocketTCP.hh (3.25, CERTI-3_4_2, CERTI_SYS015_2013), SocketTCP.cc
(3.35): Calm down warning concerning uninitialized field member
in constructor.
2013-09-04 14:50 erk
* RTIG/CMakeLists.txt (1.11), RTIA/CMakeLists.txt (1.12): Calm down
compiler warning for generated files.
2013-09-04 10:15 erk
* libCERTI/ObjectClassSet.cc (3.58): Fixes bug #39456 : Recovery
after crashed federate that owns multiple objects.
2013-09-04 09:56 erk
* RTIG/CMakeLists.txt (1.10), RTIG/RTIG.ggo (3.2, CERTI-3_4_2,
CERTI_SYS015_2013), RTIG/RTIG.cc (3.70), RTIG/RTIG_cmdline.c
(3.2, CERTI-3_4_2, CERTI_SYS015_2013), RTIG/RTIG_cmdline.h (3.2,
CERTI-3_4_2, CERTI_SYS015_2013), RTIG/RTIG.hh (3.38),
RTIG/main.cc (3.23, CERTI_SYS015_2013), libCERTI/Socket.hh (3.21,
CERTI_SYS015_2013): Add -l command line option to RTIG in order
to listen on a specific  @IP address and not all of them. Fixes
bug #35955
2013-09-04 09:52 erk
* RTIA/CMakeLists.txt (1.11): Add custom target for easing the
regeneration of RTIA command line handling
2013-09-04 09:51 erk
* RTIA/RTIA_federate.cc (3.120): Calm down one more warning about
set but unused local var.
2013-09-04 09:50 erk
* libCERTI/: SocketUDP.cc (3.31), SocketUDP.hh (3.15) (utags:
CERTI_SYS015_2013): Calm down some compiler warning about
initialization
2013-08-22 09:46 erk
* CMakeLists.txt (1.119): Search only Xlib.h and display actual X11
include dir found.
2013-04-11 22:20 erk
* CMakeLists.txt (1.118): Xlib header needs .h extension
2013-04-11 22:16 erk
* test/libgraphc/: CMakeLists.txt (1.10, CERTI-3_4_2,
CERTI_SYS015_2013), graph_c.cc (3.7): Pruning
2013-04-11 22:16 erk
* CMakeLists.txt (1.117): Fix X11 header discovery bug which makes
compilation fail on Mac OS X 10.8 Contributed by Jerome Hugues.
2013-03-18 09:47 erk
* test/Billard/dtest_billard.py (1.7, CERTI-3_4_2,
CERTI_SYS015_2013): Add example of alternative trace manager
2013-01-08 10:45 erk
* doc/DoxyTools.cmake (3.7, CERTI-3_4_2, CERTI_SYS015_2013):
Enhance dependencies for doxygen doc generation
2013-01-08 10:45 erk
* doc/doc_install.in (3.4, CERTI-3_4_2, CERTI_SYS015_2013): Remove
spurious space
2012-07-22 14:39 erk
* libCERTI/tokens.ll (3.11): Fix compilation with gcc 4.7.x (isatty
undefined)
2012-06-21 14:16 erk
* libCERTI/: PrettyDebug.cc (4.12), PrettyDebug.hh (4.10): Avoid
race condition on DEBUG file. Mangle the filename using PID
2012-06-21 10:03 erk
* libCERTI/: PrettyDebug.hh (4.9), PrettyDebug.cc (4.11): Try to
implement. Trace in file oen can now set CERTI_DEBUG_FILE env
var
2012-06-05 17:33 erk
* libHLA/: HLAbasicType.hh (1.8), HLAtypesIEEE1516.hh (1.6) (utags:
CERTI-3_4_2, CERTI_SYS015_2013): Fix compilation error with clang
2012-05-23 23:18 erk
* CERTICPackOptions.cmake.in (1.4, CERTI-3_4_2, CERTI_SYS015_2013):
Indent in a more readable manner
2012-04-26 10:24 erk
* .cvsignore (1.7, CERTI-3_4_2, CERTI_SYS015_2013): Ignore any
subdir beginning with build, i.e. globbing expression build* in
.cvsignore
2012-04-26 10:23 erk
* libHLA/CMakeLists.txt (1.19): Do not flag header file as "C
source file" this produce CMake warning for nothing. Tidy up the
CMakeLists.txt a little bit.
2012-04-26 09:50 erk
* libHLA/tlsf_target.h (1.2, CERTI-3_4_2, CERTI_SYS015_2013): Fix
header protecting macro name
2012-04-26 09:49 erk
* RTIG/FederationsList.cc (3.77, CERTI-3_4_2, CERTI_SYS015_2013):
Remove return value usage where method should return void.
2012-04-05 13:45 erk
* COPYING.txt (1.2, CERTI-3_4_2, CERTI_SYS015_2013): Clarify
license status for **all** lib
2012-02-05 12:43 erk
* CMakeLists.txt (1.116): Check whether if NSIS is installed before
trying to build NSIS package
2012-02-01 17:25 erk
* libRTI/RTI1516exception.cpp (1.2, CERTI-3_4_2,
CERTI_SYS015_2013): Remove unnecessary CERTI specific method
2012-01-26 22:39 erk
* CMakeLists.txt (1.115): Adjust test name for package
2012-01-26 22:33 erk
* CMakeLists.txt (1.114): Try adding package as a test
2011-12-31 16:49 tag CERTI-3_4_2-dev1
2011-12-31 16:49 erk
* libCERTI/: Interaction.cc (3.64), Interaction.hh (3.45) (utags:
CERTI-3_4_2-dev1): More interaction class clean-up
2011-12-31 14:25 erk
* RTIG/Federation.hh (3.73, CERTI-3_4_2-dev1),
RTIG/FederationsList.cc (3.76, CERTI-3_4_2-dev1),
RTIG/FederationsList.hh (3.60, CERTI-3_4_2, CERTI_SYS015_2013,
CERTI-3_4_2-dev1), RTIG/RTIG_processing.cc (3.114,
CERTI-3_4_2-dev1), libCERTI/Interaction.cc (3.63),
libCERTI/Interaction.hh (3.44), libCERTI/InteractionSet.cc (3.34,
CERTI-3_4_2-dev1), libCERTI/RootObject.cc (3.53, CERTI-3_4_2,
CERTI_SYS015_2013, CERTI-3_4_2-dev1), RTIG/Federation.cc (3.148,
CERTI-3_4_2-dev1): Fix interaction class inheritance. Previously
send interaction wasn't propagated to super class
2011-12-31 14:25 erk
* scripts/Toolchain-cross-mingw32-linux.cmake (1.5,
CERTI-3_4_2-dev1): More cross compiler support
2011-12-31 14:24 erk
* include/RTI.hh (3.20, CERTI-3_4_2-dev1): some more documentation
2011-12-31 14:23 erk
* libCERTI/: RootObject.hh (3.39, CERTI-3_4_2, CERTI_SYS015_2013),
fed.cc (3.24) (utags: CERTI-3_4_2-dev1): reindent source
2011-12-29 18:59 erk
* libCERTI/syntax.yy (3.10, CERTI-3_4_2, CERTI_SYS015_2013,
CERTI-3_4_2-dev1): Enable improved syntax error reporting
2011-12-20 08:43 erk
* CMakeLists.txt (1.113, CERTI-3_4_2-dev1),
scripts/Toolchain-cross-mingw32-linux.cmake (1.4): Enhance
mingw32 toolchain file
2011-12-18 17:02 erk
* CERTIBuildTreeSettings.cmake.in (1.1, CERTI-3_4_2,
CERTI_SYS015_2013, CERTI-3_4_2-dev1), CERTIConfig.cmake.in (1.1,
CERTI-3_4_2, CERTI_SYS015_2013, CERTI-3_4_2-dev1),
CERTIConfigVersion.cmake.in (1.1, CERTI-3_4_2, CERTI_SYS015_2013,
CERTI-3_4_2-dev1), CMakeLists.txt (1.112), RTIG/CMakeLists.txt
(1.9, CERTI-3_4_2-dev1), libCERTI/CMakeLists.txt (1.39,
CERTI-3_4_2-dev1), libHLA/CMakeLists.txt (1.18,
CERTI-3_4_2-dev1), RTIA/CMakeLists.txt (1.10, CERTI-3_4_2-dev1),
libRTI/CMakeLists.txt (1.26, CERTI-3_4_2-dev1): Add CMake's
config mode file for CERTI
2011-12-18 17:01 erk
* scripts/Toolchain-cross-mingw32-linux.cmake (1.3): Update mingw32
cross-compile toolchain file
2011-12-18 16:26 erk
* libCERTI/tokens.ll (3.10, CERTI-3_4_2-dev1): Tolerate DOS like
end of line.
2011-12-18 16:25 erk
* CMakeLists.txt (1.111), libCERTI/Socket.hh (3.20,
CERTI-3_4_2-dev1): Enable cross-compiling with libxml2 support as
well
2011-12-18 14:28 erk
* libHLA/CMakeLists.txt (1.17),
scripts/SystemSpecificInformations.cmake (1.10,
CERTI-3_4_2-dev1), CMakeLists.txt (1.110),
libCERTI/CMakeLists.txt (1.38), scripts/FindLexYacc.cmake (1.6,
CERTI-3_4_2, CERTI_SYS015_2013, CERTI-3_4_2-dev1),
scripts/Toolchain-cross-mingw32-linux.cmake (1.2): Some small
change in order to enable cross-compilling (at least from Linux
to Win32)
2011-10-29 19:07 erk
* RTIG/Federation.cc (3.147): Fix FOM search path regression on
Windows. Patch from Jan-Patrick.
2011-10-27 09:59 erk
* CMakeLists.txt (1.109), libRTI/RTI1516ambassadorFactory.cpp (1.7,
CERTI-3_4_2, CERTI_SYS015_2013, CERTI-3_4_2-dev1),
libRTI/RTIambassador.cc (3.128, CERTI-3_4_2, CERTI_SYS015_2013,
CERTI-3_4_2-dev1): Make RTIA console display an option (default
is DO not show RTIA console)
2011-10-27 09:46 erk
* scripts/CERTI_Message.msg (1.19), libCERTI/M_Classes.cc (3.17)
(utags: CERTI-3_4_2, CERTI-3_4_2-dev1, CERTI_SYS015_2013): Avoid
non-initialized member in some Messages
2011-10-18 22:42 erk
* CMakeLists.txt (1.108): Post 3.4.1 release go for 3.4.2cvs
2011-10-18 22:36 erk
* scripts/certi-ctest.cmake (1.4, CERTI-3_4_1): More comment at the
beginning of the file
2011-10-18 22:23 erk
* CMakeLists.txt (1.107, CERTI-3_4_1): Prepare 3.4.1 release
2011-10-18 22:20 erk
* scripts/FindRTI.cmake (1.14, CERTI-3_4_1): Prune whitespace
2011-10-07 13:10 erk
* test/Billard/Billard.cc (3.46, CERTI-3_4_1): Add some collision
message for nongui case
2011-10-03 11:17 erk
* libCERTI/ObjectClassSet.cc (3.57), RTIA/ObjectManagement.cc
(3.77), test/Billard/main.cc (3.27) (utags: CERTI-3_4_1): Less
compiler warnings
2011-10-03 09:01 erk
* libRTI/RTI1516ambassador.cpp (1.10, CERTI-3_4_1): Suppress
warning about pointer/non-pointer comparison, in fact this test
is unnecessary (and probably buggy)
2011-10-03 08:54 erk
* libRTI/RTIambassador.cc (3.127, CERTI-3_4_1): Avoid using tab,
use space
2011-10-03 08:53 erk
* libHLA/: SHMWin32.cc (1.3), SemaphoreWin32.cc (1.3),
SemaphoreWin32.hh (1.3) (utags: CERTI-3_4_1): Suppress Warning
due to WINAPI misuse
2011-10-01 11:01 erk
* libRTI/CMakeLists.txt (1.25, CERTI-3_4_1): No def file is
generated for STATIC lib this is reserved for DLL see:
http://www.transmissionzero.co.uk/computing/advanced-mingw-dll-topics/
2011-09-30 15:28 erk
* libRTI/CMakeLists.txt (1.24): Merge modified version of
Jan-Patrick patch for fixing build-time dependency issue on
Windows.
2011-09-28 22:03 erk
* RTIG/Federation.cc (3.146, CERTI-3_4_1): Merged patch #7625:
startRegistrationForObjectClass callback started in publishObject
from Jan-Patrick.
2011-09-26 22:24 erk
* CMakeLists.txt (1.106): Avoid MinGW warning about visibility.
Merge patch #7624 from Jan-Patrick Osterloh
2011-09-16 23:25 erk
* scripts/certi-ctest.cmake (1.3): Comments update
2011-09-16 23:13 erk
* scripts/certi-ctest.cmake (1.2): Update certi-ctest.cmake CTest
script to new-style ctest scripting
2011-09-16 18:39 erk
* libRTI/CMakeLists.txt (1.23): Merge updated version of patch
#7566
2011-09-14 22:32 erk
* libCERTI/CMakeLists.txt (1.37, CERTI-3_4_1),
libHLA/CMakeLists.txt (1.16, CERTI-3_4_1), libRTI/CMakeLists.txt
(1.22), CMakeLists.txt (1.105), doc/CMakeLists.txt (1.11,
CERTI-3_4_1): Prepare EXPORTED target
2011-09-14 22:32 erk
* doc/DoxyTools.cmake (3.6, CERTI-3_4_1): Fix typo in DoxyTools
it's even strange to have worked at some point??
2011-09-14 15:30 erk
* doc/certi_install.cnf.in (3.8, CERTI-3_4_1), doc/build.dox (3.5,
CERTI-3_4_1), doc/execute.dox (3.6, CERTI-3_4_1), doc/install.dox
(3.2, CERTI-3_4_1), doc/introduction.dox (3.2, CERTI-3_4_1),
RTIG/Federation.cc (3.145): Small documentation update. At least
add the CERTI_FED_PATH doc
2011-09-09 16:35 erk
* libCERTI/ObjectClass.cc (3.90, CERTI-3_4_1): Fix uninitialized
var use
2011-09-09 16:31 erk
* RTIG/Federation.cc (3.144): Fix Windows path escape
2011-09-09 16:29 erk
* test/CMakeLists.txt (1.4, CERTI-3_4_1): Do not compile
CertiCheckHostAndIp on Windows.
2011-09-09 13:18 tag CERTI-MORSE-0_4
2011-09-09 13:18 erk
* RTIG/Federation.cc (3.143, CERTI-MORSE-0_4): Merge patch #7614:
Add a new environment path variable to look for FOM files
Modified version in order to factor out Windows an unix code and
avoid duplication. Now the algorithm is simple: 1) try the
bare file 2) try PATH_PREFIX+file with PATH_PREFIX being a
list of possible pathes including the one specified in
CERTI_FOM_PATH
2011-09-08 22:24 erk
* libCERTI/M_Classes.hh (3.16), libCERTI/NM_Classes.cc (3.31),
libCERTI/NM_Classes.hh (3.25), libCERTI/M_Classes.cc (3.16),
scripts/GenMsgCXX.py (1.25) (utags: CERTI-3_4_1,
CERTI-MORSE-0_4): Fix compilation error on Windows. STL
std::vector does not have .a standard .data() accessor. Should
use &(v[0]) which should always work.
2011-09-02 23:42 erk
* libCERTI/ObjectClass.cc (3.89, CERTI-MORSE-0_4),
libCERTI/ObjectClassSet.hh (3.42, CERTI-3_4_1, CERTI-MORSE-0_4),
libCERTI/ObjectClass.hh (3.59, CERTI-3_4_1, CERTI-MORSE-0_4),
libCERTI/ObjectClassAttribute.cc (3.39, CERTI-3_4_1,
CERTI-MORSE-0_4), libCERTI/ObjectClassAttribute.hh (3.29,
CERTI-3_4_1, CERTI-MORSE-0_4), libCERTI/ObjectClassSet.cc (3.56,
CERTI-MORSE-0_4), libCERTI/Subscribable.cc (3.11, CERTI-3_4_1,
CERTI-MORSE-0_4), libCERTI/Subscribable.hh (3.10, CERTI-3_4_1,
CERTI-MORSE-0_4), RTIA/DeclarationManagement.cc (3.36,
CERTI-3_4_1, CERTI-MORSE-0_4), RTIA/RTIA_federate.cc (3.119,
CERTI-3_4_1, CERTI-MORSE-0_4), RTIG/Federation.cc (3.142),
RTIG/Federation.hh (3.72, CERTI-3_4_1, CERTI-MORSE-0_4),
RTIG/FederationsList.cc (3.75, CERTI-3_4_1, CERTI-MORSE-0_4),
RTIG/FederationsList.hh (3.59, CERTI-3_4_1, CERTI-MORSE-0_4),
RTIG/RTIG.cc (3.69, CERTI-3_4_1, CERTI-MORSE-0_4),
RTIG/RTIG_processing.cc (3.113, CERTI-3_4_1, CERTI-MORSE-0_4),
RTIA/DeclarationManagement.hh (3.12, CERTI-3_4_1,
CERTI-MORSE-0_4): Publishing/Unpublishing path clean-up
2011-09-01 15:50 erk
* libCERTI/ObjectClass.cc (3.88), libCERTI/ObjectClass.hh (3.58),
libCERTI/ObjectClassSet.cc (3.55), libCERTI/ObjectClassSet.hh
(3.41), libCERTI/RootObject.hh (3.38, CERTI-3_4_1,
CERTI-MORSE-0_4), libCERTI/SocketServer.cc (3.20, CERTI-3_4_1,
CERTI-MORSE-0_4), RTIA/DeclarationManagement.cc (3.35),
RTIA/FederationManagement.cc (3.89, CERTI-3_4_1,
CERTI-MORSE-0_4), RTIA/RTIA_federate.cc (3.118),
RTIG/Federation.cc (3.141), RTIG/Federation.hh (3.71),
RTIG/FederationsList.cc (3.74), RTIG/FederationsList.hh (3.58),
RTIG/RTIG_processing.cc (3.112): Clean-up subscribe path while
hunting bug#34016 - Suppress unnecessary list_size argument -
Improve comments here and there - replace tabs with space along
the way
2011-07-29 11:08 erk
* libHLA/: MsgBuffer.c (1.3), MsgBuffer.h (1.4), MsgBufferTests.c
(1.2) (utags: CERTI-3_4_1, CERTI-MORSE-0_4): Be homogeneous even
with bool
2011-07-29 11:08 erk
* scripts/: GenMsgBase.py (1.12, CERTI-3_4_1, CERTI-MORSE-0_4),
GenMsgAST.py (1.23, CERTI-3_4_1, CERTI-MORSE-0_4), GenMsgC.py
(1.8, CERTI-3_4_1, CERTI-MORSE-0_4), GenMsgCXX.py (1.24): Better
C message generator
2011-07-28 16:04 erk
* scripts/: GenMsgBase.py (1.11), GenMsgC.py (1.7), GenMsgJava.py
(1.6, CERTI-3_4_1, CERTI-MORSE-0_4): Update C generator
2011-07-26 12:12 erk
* CMakeLists.txt (1.104), cmake_uninstall.cmake.in (1.1,
CERTI-3_4_1) (utags: CERTI-MORSE-0_4): Add Uninstall target.
Contribution from Charles on the ML.
2011-07-26 11:27 erk
* CMakeLists.txt (1.103), libRTI/CMakeLists.txt (1.21,
CERTI-MORSE-0_4): Add the CERTI_RTING_DLL_USE_LIB_PREFIX CMake
OPTION in order to ease the constrution of libRTI-NG.dll and
libFedTime.dll instead of RTI-NG.dll and FedTime.dll on Windows.
This was requested by a user on the ML. This is NOT the default