forked from DCMTK/dcmtk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGES.341
2347 lines (1978 loc) · 79.9 KB
/
CHANGES.341
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
Release 3.4.1 (Public Release - 2000-03-10)
- Updated Version Number and Implementation Version Name to reflect the
current public release (3.4.1)
Affects: dcmdata/include/dcuid.h
- Updated documentation to reflect changes in 3.4.1
Affects: ANNOUNCE
INSTALL
**** Changes from 2000.03.10 (eichelberg)
- Added special configure test for <netinet/in.h> and <netinet/tcp.h>,
needed for IRIX 6.
Affects: config/aclocal.m4
config/configure
config/configure.in
- Call to signal() now depending on SIGNAL_HANDLER_WITH_ELLIPSE
compile time flag, required for Irix5.
Affects: dcmnet/libsrc/dul.cc
**** Changes from 2000.03.09 (riesmeier)
- Updated project/make files for MSVC5.
Affects: config/system/win32/msvc5.zip
**** Changes from 2000.03.08 (riesmeier)
- Added debug version of function 'parseDebug' to avoid compiler warnings
(unused variable).
Affects: dcmnet/libsrc/dulparse.cc
**** Changes from 2000.03.08 (eichelberg)
- Modified configure script to perform X11 tests with C++ instead of C.
Helps to convince AIX that it really has a shmat() system call.
Affects: config/configure.in
config/configure
- Added test for <netinet/in_systm.h> to configure. Needed for NeXT.
Affects: config/configure.in
config/configure
config/include/config.h.in
config/include/cfwin32.h
- Now including netinet/in_systm.h and netinet/in.h wherever netinet/tcp.h
is used. Required for NeXTStep 3.3.
Affects: dcmnet/libsrc/dul.cc
dcmnet/libsrc/dulfsm.cc
- Updated documentation.
Added: dcmpstat/docs/dcmprtsv.txt
dcmpstat/docs/dcmpsprt.txt
Affects: dcmpstat/docs/dcmpsmk.txt
imagectn/docs/dbregimg.txt
imagectn/docs/imagectn.txt
imagectn/docs/setup.txt
imagectn/docs/ti.txt
wlistctn/docs/wlistctn.txt
COPYRIGHT
HISTORY
README
- Updated copyright header.
Affects: dcmdata/*/*.cc
dcmdata/*/*.h
dcmdata/libsrc/dcdictbi.nul
dcmdata/libsrc/dicom.dic
dcmimgle/*/*.cc
dcmimgle/*/*.h
dcmnet/*/*.cc
dcmnet/*/*.h
dcmpstat/*/*.cc
dcmpstat/*/*.h
dcmpstat/libsrc/test.cfg
ofstd/*/*.cc
ofstd/*/*.h
wlistctn/*/*.cc
wlistctn/*/*.h
wlistctn/*/*.pl
wlistctn/*/*.ph
**** Changes from 2000.03.07 (riesmeier)
- Changed behaviour of class OFConsoleApplication to support automatic
evaluation of "--help" option for command line application with no
mandatory parameter.
Affects: ofstd/include/ofcmdln.h
ofstd/include/ofconapp.h
ofstd/libsrc/ofconapp.cc
- Added explicit type casts to make Sun CC 2.0.1 happy.
Affects: dcmdata/libsrc/dcobject.cc
dcmdata/libsrc/dcvrobow.cc
dcmimgle/include/dimoopxt.h
dcmimgle/include/discalet.h
dcmimgle/libsrc/didispfn.cc
dcmpstat/apps/dcmmklut.cc
dcmpstat/libsrc/dvpssp.cc
- Added include statement required for Sun CC 2.0.1.
Affects: dcmnet/libsrc/cond.cc
ctndisp/libsrc/snq.cc
- Removed type specifier 'const' to make Sun CC 2.0.1 happy.
Affects: dcmpstat/apps/dcmpsprt.cc
dcmpstat/libsrc/dvpsibl.cc
- Added brackets to case block within a switch statement (reported an error
by Sun CC 2.0.1).
Affects: dcmpstat/libsrc/dvpspr.cc
**** Changes from 2000.03.06 (riesmeier)
- Avoid empty statement in the body of if-statements (MSVC6 reports warnings).
Affects: dcmdata/apps/dcmconv.cc
dcmdata/apps/dcmdump.cc
dcmdata/apps/dcmgpdir.cc
dcmdata/apps/dump2dcm.cc
dcmdata/libsrc/dcdicdir.cc
dcmnet/libsrc/dulparse.cc
dcmdata/apps/dcmmkcrv.cc
dcmdata/apps/dcmmklut.cc
dcmdata/apps/dcmp2pgm.cc
dcmdata/apps/dcmprtsv.cc
dcmdata/apps/dcmpsmk.cc
dcmdata/apps/dcmpsprt.cc
dcmdata/apps/dcmpsrcv.cc
dcmdata/apps/dcmpssnd.cc
- Renamed local variable hiding a member variable (reported by Sun CC 4.2).
Affects: dcmdata/include/dcpixseq.h
dcmdata/libsrc/dcpixseq.cc
dcmpstat/libsrc/dvpsril.cc
- Added missing include (reported by MSVC).
Affects: dcmdata/libsrc/cmdlnarg.cc
- Removed inline specifier from a 'large' method (reported by Sun CC 4.2).
Affects: dcmimgle/include/dcmimage.h
- Moved get-method to base class, renamed method and made method virtual to
avoid hiding of methods (reported by Sun CC 4.2).
Affects: dcmimgle/include/dibaslut.h
dcmimgle/include/diciefn.h
dcmimgle/include/didislut.h
dcmimgle/include/didispfn.h
dcmimgle/include/digsdfn.h
dcmimgle/include/diluptab.h
dcmimgle/include/dimoopxt.h
dcmimgle/libsrc/diciefn.cc
dcmimgle/libsrc/didispfn.cc
dcmimgle/libsrc/digsdfn.cc
dcmimgle/libsrc/diluptab.cc
- Added const type specifier to derived method (reported by Sun CC 4.2).
Affects: dcmpstat/include/dvpsovl.h
- Replaced #ifdef statements (reported an error by Cygwin).
Affects: dcmimage/apps/dcm2pnm.cc
**** Changes from 2000.03.06 (eichelberg)
- Introduced typecasts when printing enums to cout/cerr.
Avoids warning on Linux 2.2.x with egcs 1.1.2
Affects: ctndisp/libsrc/dispuser.cc
imagectn/libsrc/dbfind.cc
- Fixed unassigned variable usage problem, reported by egcs 1.1.2
Affects: dcmpstat/libsrc/dvpsibl.cc
- Changed static template functions to methods.
Required for xlC 1.0 on AIX 3.2.
Affects: dcmimgle/include/dicrvfit.h
- Changed a couple of definitions that implied that Uint32 or size_t are long.
Required for OSF/1 on Alpha.
Affects: dcmdata/libsrc/dcvrobow.cc
dcmpstat/libsrc/dvpscf.cc
dcmpstat/libsrc/dvpsri.cc
- Avoiding to include <sys/socket.h> directly, using dcompat.h instead.
<sys/socket.h> is not protected against multiple inclusion on Ultrix.
Affects: dcmnet/libsrc/dul.cc
- Added constructor declarations needed by gcc 2.5.8.
Affected: imagectn/include/dbpriv.h
**** Changes from 2000.03.03 (riesmeier)
- Corrected bug related to padding of file and item size.
Affects: dcmdata/include/dcpixseq.h
dcmdata/libsrc/dcitem.cc
dcmdata/libsrc/dcpixseq.cc
dcmdata/libsrc/dcsequen.cc
**** Changes from 2000.03.03 (eichelberg)
- Now using autoconf check AC_C_CHAR_UNSIGNED to find out whether
char is unsigned and Uint8 must by typedef'd to signed char.
Affects: config/configure
config/configure.in
config/include/config.h.in
- Added warning that MacOS configuration header is outdated.
Affects: config/include/cfmwerks.h
- Updated Win32 configuration header for latest config.h.in
Affects: config/include/cfwin32.h
- Implemented library support for redirecting error messages into memory
instead of printing them to stdout/stderr for GUI applications.
See ofstd/include/ofconsol for a description of this feature.
Thanks to Markus Mertens <[email protected]> for this
contribution.
Added: ofstd/include/ofconsol.h
ofstd/libsrc/ofconsol.cc
Affects: ctndisp/apps/Makefile.dep
ctndisp/apps/ctndisp.cc
ctndisp/libsrc/Makefile.dep
ctndisp/libsrc/Makefile.in
ctndisp/libsrc/dispuser.cc
ctndisp/libsrc/snq.cc
dcmdata/apps/Makefile.dep
dcmdata/apps/dcmconv.cc
dcmdata/apps/dcmdump.cc
dcmdata/apps/dcmftest.cc
dcmdata/apps/dcmgpdir.cc
dcmdata/apps/dump2dcm.cc
dcmdata/include/dcbytstr.h
dcmdata/include/dcdatset.h
dcmdata/include/dcdebug.h
dcmdata/include/dcdicdir.h
dcmdata/include/dcdirrec.h
dcmdata/include/dcfilefo.h
dcmdata/include/dcitem.h
dcmdata/include/dcmetinf.h
dcmdata/include/dcobject.h
dcmdata/include/dcpixel.h
dcmdata/include/dcpixseq.h
dcmdata/include/dcpxitem.h
dcmdata/include/dcsequen.h
dcmdata/include/dctypes.h
dcmdata/include/dcvrat.h
dcmdata/include/dcvrfd.h
dcmdata/include/dcvrfl.h
dcmdata/include/dcvrobow.h
dcmdata/include/dcvrsl.h
dcmdata/include/dcvrss.h
dcmdata/include/dcvrui.h
dcmdata/include/dcvrul.h
dcmdata/include/dcvrulup.h
dcmdata/include/dcvrus.h
dcmdata/libsrc/Makefile.dep
dcmdata/libsrc/cmdlnarg.cc
dcmdata/libsrc/dcdebug.cc
dcmdata/libsrc/dcdicdir.cc
dcmdata/libsrc/dcdict.cc
dcmdata/libsrc/dcdirrec.cc
dcmdata/libsrc/dcelem.cc
dcmdata/libsrc/dcfilefo.cc
dcmdata/libsrc/dchashdi.cc
dcmdata/libsrc/dcitem.cc
dcmdata/libsrc/dcmetinf.cc
dcmdata/libsrc/dcpxitem.cc
dcmdata/libsrc/dcsequen.cc
dcmdata/libsrc/dcstream.cc
dcmdata/libsrc/dctag.cc
dcmdata/libsrc/dcuid.cc
dcmdata/libsrc/dcvr.cc
dcmdata/libsrc/dcvrat.cc
dcmdata/libsrc/dcvrfd.cc
dcmdata/libsrc/dcvrfl.cc
dcmdata/libsrc/dcvrobow.cc
dcmdata/libsrc/dcvrsl.cc
dcmdata/libsrc/dcvrss.cc
dcmdata/libsrc/dcvrul.cc
dcmdata/libsrc/dcvrulup.cc
dcmdata/libsrc/dcvrus.cc
dcmimgle/apps/Makefile.dep
dcmimgle/apps/dcmdspfn.cc
dcmimgle/apps/dconvlum.cc
dcmimgle/include/diinpx.h
dcmimgle/include/diinpxt.h
dcmimgle/include/dimoipxt.h
dcmimgle/include/dimoopxt.h
dcmimgle/include/dimopxt.h
dcmimgle/include/discalet.h
dcmimgle/libsrc/Makefile.dep
dcmimgle/libsrc/dcmimage.cc
dcmimgle/libsrc/diciefn.cc
dcmimgle/libsrc/dicielut.cc
dcmimgle/libsrc/didispfn.cc
dcmimgle/libsrc/didocu.cc
dcmimgle/libsrc/digsdfn.cc
dcmimgle/libsrc/digsdlut.cc
dcmimgle/libsrc/diimage.cc
dcmimgle/libsrc/diluptab.cc
dcmimgle/libsrc/dimoimg.cc
dcmimgle/libsrc/dimomod.cc
dcmimgle/libsrc/diovlay.cc
dcmimgle/libsrc/diovlimg.cc
dcmimgle/libsrc/diovpln.cc
dcmimgle/libsrc/diutils.cc
dcmnet/apps/Makefile.dep
dcmnet/apps/findscu.cc
dcmnet/apps/storescu.cc
dcmnet/libsrc/Makefile.dep
dcmnet/libsrc/assoc.cc
dcmnet/libsrc/cond.cc
dcmnet/libsrc/dcompat.cc
dcmnet/libsrc/dimse.cc
dcmnet/libsrc/dul.cc
dcmnet/libsrc/dulconst.cc
dcmnet/libsrc/dulfsm.cc
dcmnet/libsrc/dulparse.cc
dcmnet/libsrc/dulpriv.h
dcmpstat/apps/Makefile.dep
dcmpstat/apps/dcmmkcrv.cc
dcmpstat/apps/dcmmklut.cc
dcmpstat/apps/dcmp2pgm.cc
dcmpstat/apps/dcmprtsv.cc
dcmpstat/apps/dcmpsmk.cc
dcmpstat/apps/dcmpsprt.cc
dcmpstat/apps/dcmpsrcv.cc
dcmpstat/apps/dcmpssnd.cc
dcmpstat/include/dviface.h
dcmpstat/include/dvpssp.h
dcmpstat/libsrc/Makefile.dep
dcmpstat/libsrc/dvpsab.cc
dcmpstat/libsrc/dvpsabl.cc
dcmpstat/libsrc/dvpsal.cc
dcmpstat/libsrc/dvpscf.cc
dcmpstat/libsrc/dvpsda.cc
dcmpstat/libsrc/dvpsga.cc
dcmpstat/libsrc/dvpsgl.cc
dcmpstat/libsrc/dvpsgr.cc
dcmpstat/libsrc/dvpshlp.cc
dcmpstat/libsrc/dvpsib.cc
dcmpstat/libsrc/dvpsibl.cc
dcmpstat/libsrc/dvpsov.cc
dcmpstat/libsrc/dvpspl.cc
dcmpstat/libsrc/dvpspll.cc
dcmpstat/libsrc/dvpspr.cc
dcmpstat/libsrc/dvpsri.cc
dcmpstat/libsrc/dvpsril.cc
dcmpstat/libsrc/dvpsrs.cc
dcmpstat/libsrc/dvpsrsl.cc
dcmpstat/libsrc/dvpssp.cc
dcmpstat/libsrc/dvpssv.cc
dcmpstat/libsrc/dvpstat.cc
dcmpstat/libsrc/dvpstx.cc
dcmpstat/tests/didb.cc
imagectn/apps/Makefile.dep
imagectn/libsrc/Makefile.dep
imagectn/libsrc/dbfind.cc
imagectn/libsrc/dbindex.cc
imagectn/libsrc/dbmove.cc
imagectn/libsrc/dbstore.cc
imagectn/libsrc/dbutils.cc
imagectn/tests/Makefile.dep
ofstd/include/ofcmdln.h
ofstd/libsrc/Makefile.dep
ofstd/libsrc/Makefile.in
ofstd/libsrc/ofcmdln.cc
ofstd/libsrc/ofconapp.cc
ofstd/tests/Makefile.dep
ofstd/tests/tlist.cc
ofstd/tests/tstcmdln.cc
ofstd/tests/tstlist.cc
ofstd/tests/tstring.cc
ofstd/tests/tststack.cc
wlistctn/apps/Makefile.dep
wlistctn/apps/scefind.cc
wlistctn/libsrc/Makefile.dep
wlistctn/libsrc/wrklstdb.cc
wlistctn/tests/Makefile.dep
wlistctn/wwwapps/Makefile.dep
wlistctn/wwwapps/writwlst.cc
**** Changes from 2000.03.02 (riesmeier)
- Fixed inconsistency: console applications with no or only optional
parameters could not be started without any command line argument
because this was always regarded identical with "--help" (print usage).
Affects: ofstd/include/ofcmdln.h
ofstd/libsrc/ofcmdln.cc
ofstd/libsrc/ofconapp.cc
- Added new class comprising all general purpose helper functions (first
entry: strlcpy - a mixture of strcpy and strncpy).
Added: ofstd/include/ofstd.h
Affects: dcmnet/libsrc/Makefile.dep
dcmnet/libstc/assoc.cc
- Rewrote some memory related statements (memcpy, strcpy, etc.) to avoid
warnings reported by BoundsChecker.
Affects: dcmnet/libsrc/assoc.cc
dcmnet/libsrc/dimstore
dcmdata/libsrc/dcbuf.cc
- Rewrote variable initialization in class contructors to avoid warnings
reported on Irix.
Affects: dcmimgle/include/diflipt.h
dcmimgle/include/dirotat.h
dcmimgle/include/ditranst.h
- Fixed bug that caused imagectn to ignore the -F (write dataset) flag when
+B (bit preserving) was set.
Affects: imagectn/apps/scestore.cc
**** Changes from 2000.02.29 (eichelberg)
- Fixed bug in dcmdata that could cause the parser to return
an EC_IllegalCall flag when parsing very small packets.
Affects: dcmdata/libsrc/dcstream.cc
- Dcmtk now supports transmission with very small max PDU size
(less than 24 bytes). In this case dcmdata uses a larger block size
than dcmnet because it requires at least 12 bytes of buffer space.
Affects: dcmnet/libsrc/assoc.cc
dcmnet/libsrc/dulfsm.cc
- Fixed bug in dcmpstat library that caused Monochrome1 images
to be printed inverse if a Presentation LUT was applied.
Affects: dcmpstat/include/dvpspll.h
dcmpstat/include/dvpssp.h
dcmpstat/include/dvpstat.h
dcmpstat/libsrc/dviface.cc
dcmpstat/libsrc/dvpspll.cc
dcmpstat/libsrc/dvpssp.cc
- Removed support for VS value representation. This was proposed in CP 101
but never became part of the standard.
Affects: ctndisp/apps/Makefile.dep
dcmdata/apps/Makefile.dep
dcmdata/apps/dcmconv.cc
dcmdata/apps/dcmgpdir.cc
dcmdata/apps/dump2dcm.cc
dcmdata/libsrc/dcmconv.txt
dcmdata/docs/dcmgpdir.txt
dcmdata/docs/dump2dcm.txt
dcmdata/include/dctk.h
dcmdata/include/dcvr.h
dcmdata/libsrc/Makefile.dep
dcmdata/libsrc/Makefile.in
dcmdata/libsrc/dcitem.cc
dcmdata/libsrc/dcutils.cc
dcmdata/libsrc/dcvr.cc
dcmimgle/apps/Makefile.dep
dcmimgle/libsrc/Makefile.dep
dcmnet/apps/Makefile.dep
dcmnet/apps/findscu.cc
dcmnet/apps/movescu.cc
dcmnet/apps/storescp.cc
dcmnet/apps/storescu.cc
dcmnet/docs/findscu.txt
dcmnet/docs/movescu.txt
dcmnet/docs/storescp.txt
dcmnet/docs/storescu.txt
dcmnet/libsrc/Makefile.dep
dcmpstat/apps/Makefile.dep
dcmpstat/apps/dcmprtsv.cc
dcmpstat/apps/dcmpsrcv.cc
dcmpstat/apps/dcmpssnd.cc
dcmpstat/libsrc/Makefile.dep
imagectn/apps/Makefile.dep
imagectn/apps/imagectn.cc
imagectn/apps/ti.cc
imagectn/docs/imagectn.txt
imagectn/docs/ti.txt
imagectn/tests/Makefile.dep
wlistctn/apps/Makefile.dep
wlistctn/apps/wlistctn.cc
wlistctn/docs/wlistctn.txt
wlistctn/libsrc/Makefile.dep
wlistctn/tests/Makefile.dep
wlistctn/wwwapps/Makefile.dep
Removed: dcmdata/include/dcvrvs.h
dcmdata/libsrc/dcvrvs.cc
**** Changes from 2000.02.24 (eichelberg)
- Calls to accept() and getsockname() now use socklen_t * for the third
parameter if this type is defined. Avoids warning on recent Linux distributions.
Affects: dcmnet/libsrc/dul.cc
config/acconfig.h
config/configure
config/configure.in
config/include/config.h.in
- Added new check that distinguishes NeXT's libtool from GNU libtool (which
has a totally different purpose). Required because the old configure scheme
failed if GNU libtool was found in the search path.
Affects: config/aclocal.m4
config/configure
config/configure.in
config/include/config.h.in
**** Changes from 2000.02.23 (eichelberg)
- Added FAQ entry about gcc 'multiple common of `XXX type_info node' warning.
Affects: FAQ
- Corrected macro for Borland C++ Builder 4 workaround.
Affects: ctndisp/apps/ctndisp.cc
ctndisp/apps/ctndsupp.cc
ctndisp/apps/sendimg.cc
ctndisp/libsrc/dispuser.cc
ctndisp/libsrc/snq.cc
dcmdata/apps/dcmconv.cc
dcmdata/apps/dcmdump.cc
dcmdata/apps/dcmftest.cc
dcmdata/apps/dcmgpdir.cc
dcmdata/apps/dump2dcm.cc
dcmdata/include/dclist.h
dcmdata/include/dcswap.h
dcmdata/include/dcuid.h
dcmdata/include/dcvr.h
dcmdata/libsrc/cmdlnarg.cc
dcmdata/libsrc/dcbytstr.cc
dcmdata/libsrc/dcdicdir.cc
dcmdata/libsrc/dcdict.cc
dcmdata/libsrc/dcdirrec.cc
dcmdata/libsrc/dcelem.cc
dcmdata/libsrc/dcerror.cc
dcmdata/libsrc/dcfilefo.cc
dcmdata/libsrc/dcitem.cc
dcmdata/libsrc/dcmetinf.cc
dcmdata/libsrc/dcpixseq.cc
dcmdata/libsrc/dcpxitem.cc
dcmdata/libsrc/dcsequen.cc
dcmdata/libsrc/dcstack.cc
dcmdata/libsrc/dcuid.cc
dcmdata/libsrc/dcutils.cc
dcmdata/libsrc/dcvrobow.cc
dcmdata/libsrc/mkdeftag.cc
dcmdata/libsrc/mkdictbi.cc
dcmimgle/libsrc/dconvlum.cc
dcmimgle/include/dimoopx.h
dcmimgle/libsrc/diutils.h
dcmnet/apps/echoscu.cc
dcmnet/apps/findscu.cc
dcmnet/apps/movescu.cc
dcmnet/apps/storescp.cc
dcmnet/apps/storescu.cc
dcmnet/include/dcompat.h
dcmnet/include/dicom.h
dcmnet/libsrc/assoc.cc
dcmnet/libsrc/dcompat.cc
dcmnet/libsrc/dimcancl.cc
dcmnet/libsrc/dimcmd.cc
dcmnet/libsrc/dimdump.cc
dcmnet/libsrc/dimecho.cc
dcmnet/libsrc/dimfind.cc
dcmnet/libsrc/dimget.cc
dcmnet/libsrc/dimmove.cc
dcmnet/libsrc/dimse.cc
dcmnet/libsrc/dimstore.cc
dcmnet/libsrc/diutil.cc
dcmnet/libsrc/dul.cc
dcmnet/libsrc/dulconst.cc
dcmnet/libsrc/dulextra.cc
dcmnet/libsrc/dulfsm.cc
dcmnet/libsrc/dulparse.cc
dcmnet/libsrc/dulpres.cc
dcmnet/libsrc/lst.cc
dcmpstat/apps/dcmpsmk.cc
dcmpstat/libsrc/dvpstat.cc
imagectn/apps/cnf.cc
imagectn/apps/cnfexnt.cc
imagectn/apps/cnfpriv.cc
imagectn/apps/imagectn.cc
imagectn/apps/sce.cc
imagectn/apps/sceecho.cc
imagectn/apps/scefind.cc
imagectn/apps/sceget.cc
imagectn/apps/scemove.cc
imagectn/apps/scestore.cc
imagectn/apps/ti.cc
imagectn/apps/tinet.cc
imagectn/apps/tiui.cc
imagectn/include/dbstore.h
imagectn/include/imagedb.h
imagectn/libsrc/dbfind.cc
imagectn/libsrc/dbindex.cc
imagectn/libsrc/dbmove.cc
imagectn/libsrc/dbstore.cc
imagectn/libsrc/dbutils.cc
imagectn/libsrc/dbregimg.cc
ofstd/include/ofstring.h
ofstd/libsrc/offname.cc
wlistctn/apps/sce.cc
wlistctn/apps/sceecho.cc
wlistctn/apps/scefind.cc
wlistctn/apps/wlistctn.cc
wlistctn/libsrc/wrklstdb.cc
wlistctn/tests/wltest.cc
wlistctn/wwwapps/writwlst.cc
**** Changes from 2000.02.10 (riesmeier)
- Added new feature to dcmdump (enhanced print method of dcmdata): write
pixel data/item value fields to raw files.
Affects: dcmdata/apps/dcmdump.cc
dcmdata/docs/dcmdump.txt
dcmdata/include/dcbytstr.h
dcmdata/include/dcdatset.h
dcmdata/include/dcdicdir.h
dcmdata/include/dcdirrec.h
dcmdata/include/dcfilefo.h
dcmdata/include/dcitem.h
dcmdata/include/dcmetinf.h
dcmdata/include/dcobject.h
dcmdata/include/dcpixel.h
dcmdata/include/dcpixseq.h
dcmdata/include/dcpxitem.h
dcmdata/include/dcsequen.h
dcmdata/include/dcvrat.h
dcmdata/include/dcvrfd.h
dcmdata/include/dcvrfl.h
dcmdata/include/dcvrobow.h
dcmdata/include/dcvrsl.h
dcmdata/include/dcvrss.h
dcmdata/include/dcvrui.h
dcmdata/include/dcvrul.h
dcmdata/include/dcvrulup.h
dcmdata/include/dcvrus.h
dcmdata/libsrc/dcbytstr.cc
dcmdata/libsrc/dcdatset.cc
dcmdata/libsrc/dcdicdir.cc
dcmdata/libsrc/dcdictbi.cc
dcmdata/libsrc/dcdirrec.cc
dcmdata/libsrc/dcfilefo.cc
dcmdata/libsrc/dcitem.cc
dcmdata/libsrc/dcmetinf.cc
dcmdata/libsrc/dcobject.cc
dcmdata/libsrc/dcpixel.cc
dcmdata/libsrc/dcpixseq.cc
dcmdata/libsrc/dcpxitem.cc
dcmdata/libsrc/dcsequen.cc
dcmdata/libsrc/dcvrat.cc
dcmdata/libsrc/dcvrfd.cc
dcmdata/libsrc/dcvrfl.cc
dcmdata/libsrc/dcvrobow.cc
dcmdata/libsrc/dcvrsl.cc
dcmdata/libsrc/dcvrss.cc
dcmdata/libsrc/dcvrui.cc
dcmdata/libsrc/dcvrul.cc
dcmdata/libsrc/dcvrulup.cc
dcmdata/libsrc/dcvrus.cc
- Fixed bug producing an error message when trying to create an empty
PixelData element.
Affects: dcmdata/libsrc/dcpixel.cc
- Enhanced handling of PixelData/Item element. Externally stored raw data is
now always imported as little endian and swapped if necessary. This change
reflects the new 'export' feature of dcmdump.
Affects: dcmdata/apps/dump2dcm.cc
dcmdata/docs/dump2dcm.txt
dcmdata/libsrc/dcvrobow.cc
**** Changes from 2000.02.09 (eichelberg)
- Corrected inconsistency in findscu documentation.
Thanks to David Lappen <[email protected]> for the report.
Affects: dcmnet/docs/findscu.txt
**** Changes from 2000.02.07 (eichelberg)
- Significant speed improvement for network transmission.
Now using a default socket buffer length of 32K and disabling the Nagle
algorithm by default (TCP_NODELAY). Disabling of the Nagle algorithm
can be switched off by compiling the toolkit with the symbol
DONT_DISABLE_NAGLE_ALGORITHM defined, or by setting the environment
variable TCP_NODELAY to the value "0".
Contribution from Andy Hewett <[email protected]>
Affects: dcmnet/libsrc/dul.cc
dcmnet/libsrc/dulfsm.cc
- Added test for <netinet/tcp.h> to configure script.
Affects: config/configure
config/configure.in
config/confmod
config/include/config.h.in
- Removed const qualifier from DcmTagKey::toString(), avoids warning on Irix.
Affects: dcmdata/include/dctagkey.h
dcmdata/libsrc/dctagkey.cc
- The typedef for Sint8 now defaults to char instead of signed char.
This avoids warnings on certain c-front related compilers.
The old behaviour can be restored by compiling with the symbol
CHAR_IS_UNSIGNED defined.
Affects: dcmdata/include/dctypes.h
**** Changes from 2000.02.03 (riesmeier)
- Fixed bug: encapsulated data (pixel items) have never been loaded using
method 'loadAllDataIntoMemory'. Therefore, encapsulated pixel data was
never printed with 'dcmdump'.
Affects: dcmdata/include/dcpixel.h
dcmdata/libsrc/dcpixel.cc
dcmdata/libsrc/dcpxitem.cc
dcmdata/libsrc/dcvr.cc
- Corrected bug that caused wrong calculation of group length for sequence
of items (e.g. encapsulated pixel data).
Affects: dcmdata/libsrc/dcsequen.cc
dcmdata/libsrc/dcpxitem.cc
dcmdata/libsrc/dcvr.cc
dcmdata/libsrc/dcvrobow.cc
- Avoid EVR_pixelItem in comparisons (compare with != EVR_OW instead).
Affects: dcmdata/libsrc/dcvrobow.cc
**** Changes from 2000.02.03 (eichelberg)
- Rebuilt data dictionary based on 1999 standard text,
latest supplements and CP packet 6.
Affects: dcmdata/include/dcdeftag.h
dcmdata/include/dcuid.h
dcmdata/libsrc/Makefile.in
dcmdata/libsrc/dcdictzz.cc
dcmdata/libsrc/dcuid.cc
dcmdata/libsrc/dicom.dic
dcmpstat/libsrc/dvpsib.cc
- Moved UID related functions from dcmnet (diutil.h) to dcmdata (dcuid.h)
where they belong. Renamed access functions to dcmSOPClassUIDToModality and
dcmGuessModalityBytes.
Affects: dcmdata/include/dcuid.h
dcmdata/libsrc/dcuid.cc
dcmnet/apps/movescu.cc
dcmnet/apps/storescp.cc
dcmnet/apps/storescu.cc
dcmnet/include/diutil.h
dcmnet/libsrc/dimstore.cc
dcmnet/libsrc/diutil.cc
imagectn/apps/sceget.cc
imagectn/apps/scemove.cc
imagectn/apps/tinet.cc
imagectn/libsrc/dbutils.cc
dcmpstat/apps/dcmpssnd.cc
- Updated dcmgpdir to new directory record structure in letter ballot text
of Structured Report.
Affects: dcmdata/apps/dcmgpdir.cc
dcmdata/libsrc/dcdirrec.cc
**** Changes from 2000.02.02 (eichelberg)
- Fixed bug in ACSE code that could cause data in memory to be overwritten
if a client sent an A-ASSOCIATE request with a longer ImplementationClassUID
or ImplementationVersionName than allowed.
Thanks to Gilles Mevel <[email protected]> for the report and bug fix.
Affects: dcmnet/libsrc/assoc.cc
- Replaced some #if statements by more robust #ifdef
Affects: dcmdata/apps/dcmgpdir.cc
dcmnet/apps/movescu.cc
dcmnet/libsrc/dcompat.cc
dcmpstat/apps/dcmprtsv.cc
dcmpstat/apps/dcmpsrcv.cc
dcmpstat/tests/didb.cc
wlistctn/apps/wlistctn.cc
wlistctn/include/wrklstdb.h
**** Changes from 2000.02.02 (riesmeier)
- Removed space characters before preprocessor directives.
Affects: ofstd/include/ofbmanip.h
ofstd/include/oftimer.h
ofstd/libsrc/ofcmdln.cc
dcmimgle/include/didocu.h
dcmimgle/include/diimage.h
dcmimgle/include/diovpln.h
dcmimgle/include/dipxrept.h
dcmimgle/libsrc/dcmimage.cc
dcmimgle/libsrc/diciefn.cc
dcmimgle/libsrc/didispfn.cc
dcmimgle/libsrc/digsdfn.cc
dcmpstat/apps/dcmmklut.cc
dcmpstat/apps/dcmprtsv.cc
- Added type cast to delete void pointer (reported by gcc 2.95).
Affects: dcmimgle/libsrc/dimoimg.cc
- Updated Readme file.
Affects: README
- Replaced 'delete' statements by 'delete[]' for objects created with 'new[]'.
Affects: ofstd/libsrc/ofstring.cc
dcmdata/include/dcbuf.h
dcmdata/include/dcelem.h
dcmdata/libsrc/dcbuf.cc
dcmdata/libsrc/dcbytstr.cc
dcmdata/libsrc/dcdicdir.cc
dcmdata/libsrc/dcdicent.cc
dcmdata/libsrc/dcdictbi.cc
dcmdata/libsrc/dcdirrec.cc
dcmdata/libsrc/dchashdi.cc
dcmdata/libsrc/dcitem.cc
dcmdata/libsrc/dcpixseq.cc
dcmdata/libsrc/dcstream.cc
dcmdata/libsrc/dcvrat.cc
dcmdata/libsrc/dcvrfd.cc
dcmdata/libsrc/dcvrfl.cc
dcmdata/libsrc/dcvrsl.cc
dcmdata/libsrc/dcvrss.cc
dcmdata/libsrc/dcvrui.cc
dcmdata/libsrc/dcvrul.cc
dcmdata/libsrc/dcvrulup.cc
dcmdata/libsrc/dcvrus.cc
dcmimgle/include/displint.h
dcmpstat/libsrc/dvpsconf.cc
dcmnet/apps/storescu.cc
wlistctn/libsrc/wrklstdb.cc
wlistctn/wwwapps/writwlst.cc
**** Changes from 2000.02.01 (eichelberg)
- Adapted ctndisp to OFCommandLine class.
Affects: ctndisp/apps/ctndisp.cc
ctndisp/docs/ctndisp.txt
- Fixed inconsistency in movescu documentation
Affects: dcmnet/docs/movescu.txt
- Avoiding to include <stdlib.h> as extern "C" on Borland C++ Builder 4,
workaround for bug in compiler header files.
Affects: ctndisp/apps/ctndisp.cc
ctndisp/apps/ctndsupp.cc
ctndisp/apps/killassc.cc
ctndisp/apps/sendimg.cc
ctndisp/libsrc/dispuser.cc
ctndisp/libsrc/snq.cc
dcmdata/apps/dcmconv.cc
dcmdata/apps/dcmdump.cc
dcmdata/apps/dcmftest.cc
dcmdata/apps/dcmgpdir.cc
dcmdata/apps/dump2dcm.cc
dcmdata/include/dclist.h
dcmdata/include/dcobject.h
dcmdata/include/dcswap.h
dcmdata/include/dcuid.h
dcmdata/include/dcvr.h
dcmdata/libsrc/cmdlnarg.cc
dcmdata/libsrc/dcbytstr.cc
dcmdata/libsrc/dcdicdir.cc
dcmdata/libsrc/dcdict.cc
dcmdata/libsrc/dcdirrec.cc
dcmdata/libsrc/dcelem.cc
dcmdata/libsrc/dcerror.cc
dcmdata/libsrc/dcfilefo.cc
dcmdata/libsrc/dcitem.cc
dcmdata/libsrc/dcmetinf.cc
dcmdata/libsrc/dcobject.cc
dcmdata/libsrc/dcpixseq.cc
dcmdata/libsrc/dcpxitem.cc
dcmdata/libsrc/dcsequen.cc
dcmdata/libsrc/dcstack.cc
dcmdata/libsrc/dcuid.cc
dcmdata/libsrc/dcutils.cc
dcmdata/libsrc/dcvrobow.cc
dcmdata/libsrc/mkdeftag.cc
dcmdata/libsrc/mkdictbi.cc
dcmimgle/libsrc/dconvlum.cc
dcmimgle/libsrc/dimoopx.h
dcmimgle/libsrc/dimoopxt.h
dcmimgle/libsrc/diutils.h
dcmnet/apps/echoscu.cc
dcmnet/apps/findscu.cc
dcmnet/apps/movescu.cc
dcmnet/apps/storescp.cc
dcmnet/apps/storescu.cc
dcmnet/include/dcompat.h
dcmnet/include/dicom.h
dcmnet/libsrc/assoc.cc
dcmnet/libsrc/dcompat.cc
dcmnet/libsrc/dimcancl.cc
dcmnet/libsrc/dimcmd.cc
dcmnet/libsrc/dimdump.cc
dcmnet/libsrc/dimecho.cc
dcmnet/libsrc/dimfind.cc
dcmnet/libsrc/dimget.cc
dcmnet/libsrc/dimmove.cc
dcmnet/libsrc/dimse.cc
dcmnet/libsrc/dimstore.cc
dcmnet/libsrc/diutil.cc
dcmnet/libsrc/dul.cc
dcmnet/libsrc/dulconst.cc
dcmnet/libsrc/dulextra.cc
dcmnet/libsrc/dulfsm.cc
dcmnet/libsrc/dulparse.cc
dcmnet/libsrc/dulpres.cc
dcmnet/libsrc/lst.cc
dcmpstat/apps/dcmpsmk.cc
dcmpstat/apps/dcmpsprt.cc
dcmpstat/libsrc/dvpstat.cc
imagectn/apps/cnf.cc
imagectn/apps/cnfexnt.cc
imagectn/apps/cnfpriv.cc
imagectn/apps/imagectn.cc
imagectn/apps/sce.cc
imagectn/apps/sceecho.cc
imagectn/apps/scefind.cc
imagectn/apps/sceget.cc
imagectn/apps/scemove.cc
imagectn/apps/scestore.cc
imagectn/apps/ti.cc
imagectn/apps/tinet.cc
imagectn/apps/tiui.cc
imagectn/include/dbstore.h
imagectn/include/imagedb.h
imagectn/libsrc/dbfind.cc
imagectn/libsrc/dbindex.cc
imagectn/libsrc/dbmove.cc
imagectn/libsrc/dbstore.cc
imagectn/libsrc/dbutils.cc
imagectn/libsrc/dbregimg.cc
ofstd/include/ofstring.h
ofstd/libsrc/offname.cc
wlistctn/apps/sce.cc
wlistctn/apps/sceecho.cc
wlistctn/apps/scefind.cc
wlistctn/apps/wlistctn.cc
wlistctn/libsrc/wrklstdb.cc
wlistctn/tests/wltest.cc
wlistctn/wwwapps/writwlst.cc
**** Changes from 2000.01.31 (eichelberg)
- Introduced new flag g_dimse_save_dimse_data. If enabled,
all DIMSE messages and data sets sent or received are stored
in files. This facilitates debugging of DIMSE problems.
Affects: dcmnet/include/dimse.h
dcmnet/libsrc/dimse.cc
**** Changes from 1999.12.09 (riesmeier)
- Split source file dimoimg.cc into 4 parts to avoid compiler problems
with gcc and additional optimization options.
Added: dcmimgle/libsrc/dimoimg3.cc
dcmimgle/libsrc/dimoimg4.cc
dcmimgle/libsrc/dimoimg5.cc
Affects: dcmimgle/include/dimoimg.h
dcmimgle/libsrc/Makefile.dep
dcmimgle/libsrc/Makefile.in
dcmimgle/libsrc/dimoimg.cc
**** Changes from 1999.11.25 (riesmeier)
- Changed config file entry "HighEndSystem" to "HighResolutionGraphics".
Affects: dcmimgle/libsrc/dviface.cc
dcmimgle/libsrc/dvpscf.cc
**** Changes from 1999.11.24 (riesmeier)
- Added method to mirror order of entries in look-up tables.
Affects: dcmimgle/include/diluptab.h
dcmimgle/libsrc/diluptab.cc
- Enhanced comments for methods "inverting" the LUT values/entries.
Affects: dcmimgle/include/diluptab.h
- Replaced call of method invertTable() by mirrorTable() to invert a
presentation LUT.
Affects: dcmpstat/libsrc/dvpspl.cc
- Fixed bug in method getData() occurred sometimes when inverting
presentation LUTs.
Affects: dcmimgle/libsrc/dimoimg.cc
**** Changes from 1999.11.24 (eichelberg)
- Fixed locking problem in dcmpssnd and dcmpsrcv on Win9x platforms.
Affects: dcmpstat/apps/dcmpssnd.cc
dcmpstat/apps/dcmpsrcv.cc
**** Changes from 1999.11.19 (riesmeier)
- Fixed bug in scaling method "reducePixel" (reported by gcc 2.7.2.1).
Affects: dcmimgle/include/discalet.h
- Added explicit type cast to avoid compiler warnings (reported by gcc
2.7.2.1 on Linux).
Affects: dcmimgle/include/dcmimage.h
- Updated sample configuration file (changed PreviewSize).
Affects: dcmpstat/tests/test.cfg
- Removed bugs: deactivating VOI and presentation LUTs should be done
by decreasing the reference pointer not by deleting the storage area.
Affects: dcmimgle/libsrc/dimoimg.cc