forked from cdesktopenv/cde
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHISTORY
1393 lines (1235 loc) · 59.3 KB
/
HISTORY
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
This is the release history file for CDE. It will detail each
release version and date, along with the highlights of the release.
For more detailed information on changes between any given release,
use 'git log', or peruse the commit history at:
https://sourceforge.net/p/cdesktopenv/code/commit_browser
#######################################################################
### 2.3.1 (stable) 11/15/2019
This stable release comes from the 2.3.0a development release, and
adds a few more minor fixes and cleanups.
The main highlights of this release:
- All languages are built by default on Linux again.
- Hundreds (perhaps thousands) of compiler warnings fixed. Far too
many remain.
- Hundreds of Coverity fixes.
- Removal of large chunks of code, docs and the like pertaining to
unsupported systems and plain old ancient cruft that serves no
useful purpose anymore.
- All non-ansi C functions (K&R style) have finally been ansi'fied.
- All C/C++ 'register' declarations have finally been removed.
- Integration of Antonis Tsolomitis' desktop_approots contribution.
This adds default actions for a variety of common file types.
Support is provided via a new dtopen script that is used to launch an
appropriate viewer for an appropriate file type.
The types supported are: images (jpg, png, etc), videos (mpg, avi,
mp4, etc), PDF files, and Postscript files.
Additionally, icons and actions for various common utilties are also
provided, like one for VLC.
The various "view" helpers currently installed are:
dtopen_vimage - view an image file. Defaults to xv, display, and
gimp, in that order. Override with the environment variable
DTOPEN_VIMAGE.
dtopen_vpdf - view a PDF file. Defaults to okular, xpdf. Override
with the environment variable DTOPEN_VPDF.
dtopen_vps - view a postscript file. Defaults to mgv, gv. Override
with the environment variable DTOPEN_VPS.
dtopen_vvideo - view a video file. Defaults to vlc, ffplay.
Override with the environment variable DTOPEN_VVIDEO.
When a request is made to view one of these file types, the list of
possible viewers will be tried, in order, until one is found. If
none are found, an error message will be displayed.
Add environment variable overrides to your ~/.dtprofile file if you
don't like the default(s). ex:
export DTOPEN_VVIDEO="mpv"
- sgml is gone. We always use CDE's nsgmls program now. In time,
this too will be removed and the system's nsgmls installation will
be used and required as an external dependency.
- The included tcl interpreter is gone, we always use the system TCL
interpreter now (8.5+).
- A potential exploit in dtprintinfo was also addressed. This
affected Solaris CDE, but ours still had "issues" with amazingly
stupid code. It is no longer installed SUID root.
- aarch64 support.
- scroll wheel support for dtterm and dtfile is working now.
Here is the git "short" log:
Adam Sampson (3):
Avoid a NULL pointer dereference
Don't dereference an uninitialised pointer
Explicitly initialise two more static pointers
Alex Ivanov (1):
define M4Cmd
Chase (4):
Use iconv on linux
Remove old jpeg files
remove more internal jpeg headers
il: remove various deprecated files
David Cantrell (1):
Patch out use of deprecated and now removed ustat(2) function on Linux.
Jon Trulson (111):
Merge branch 'master' into cde-next
makedepend: remove register keyword
util/mkshadow: delete ancient unused utility
util/dbtoman/instant: remove register keyword
examples/dtwsm: remove register keyword
lib/DtHelp/il: remove register keyword
lib/DtHelp/jpeg: remove register keyword
lib/DtHelp: remove register keyword
lib/DtPrint: remove register keyword
DtSearch/raima: remove register keyword
lib/DtSearch: remove register keyword
DtSvc/DtCodelibs: remove register keyword
DtSvc/DtEncap: remove register keyword
DtSvc/DtUtil1: remove register keyword
DtSvc/DtUtil2: remove register keyword
DtTerm/util: remove register keyword
DtWidget: remove register keyword
lib/csa: remove register keyword
lib/pam/examples/login: remove register keyword
lib/pam: remove register keyword
tt/lib: remove register keyword
tt/bin: remove register keyword
dtaction: remove register keyword
dtappbuilder: remove register keyword
dtcalc: remove register keyword
dtcm: remove register keyword
dtdocbook: remove register keyword
dtfile: remove register keyword
dtimsstart: remove register keyword
dtinfo: remove TKTemplate.nd.c
dtinfo: remove register keyword
dtksh: remove register keyword
dtlogin: remove register keyword
dtmail: remove register keyword
dtpad: remove register keyword
dtprintinfo: remove register keyword
dtscreen: remove register keyword
dtsr: remove register keyword
dtstyle: remove register keyword
dtterm: remove register keyword
dtwm: remove register keyword
localized/util: remove register keyword
nsgmls: remove register keyword
util/dttypes: remove register keyword
dtudcfonted, dtudcexch: delete from repository
dtdocbook/regexp.c, remove register keyword
lib/tt/mini_isam: remove register keyword
FreeBSD.cf, OpenBSD.cf: remove -Wno-deprecated-register, no longer needed
dtdocbook/tcl/tclUtil.c: fix merge error
Merge branch 'master' into cde-next
ttsnoop: drag into a modern C++ century
ttsnoop: use tail arg -f rather than +0f
tt/mini_isam: use proper include, get rid of ultrix strdup
tt/mini_isam: remove all ancient sccsid blocks
tt/mini_isam: add new isam_prototypes.h include file and fix up problems
ttsnoop: resolve coverity 176047, 176046, 176044, 176043, 176042 and 176040
Merge branch 'master' into update-with-master
Merge branch 'master' into cde-next
lib/DtSearch/raima/proto.h: fix OBSD build - don't redef system functions
Add a new script, dtapp, used to locate and run various helper programs
Add icons from Antonis Tsolomitis desktop_approots contribution
databases/: remove ancient crufty scripts
Add actions and types from Antonis Tsolomitis' desktop_approots contribution
Finish integrating Antonis's desktop_approots work
Rename "dtapp" to "dtopen"
templates/types.tmpl: make sure to clean up new .dt's on a make clean
Merge branch 'master' into cde-next
dtfile: Fix up CopyCheckDeletePermission() and CheckDeletePermission
sgmls: remove from repository - we always use nsgmls
configShlibs.src: Fixup some bugs introduced by previous commits
tcl: use the system version, initial work only on linux for now
docbook.tcl: fix up some problems using a modern Tcl
docbook/instant: fix a few more issues
instant: encode 8bit chars to keep Tcl happy
use system tcl: clean up Imake files for dtdocbook/instant
Change version to 2.3.0a (devel)
dtdocbook/tcl/tcl.h: Add compatibility defines for old Tcl
Remove ancient included tcl code
docbook.tcl, instant: finish remaining help generation issues with tcl
Merge branch 'master' into cde-next
dtdocbook/instant: add Tcl_GetErrorLine check for older versions of Tcl
Merge branch 'master' into cde-next
linux: DtHelp/StringFuncs, enable real iconv() support
dtcalc/calctool.h: Use include stdlib rather than extern declarations
dtdockbook/instant: Add the proper paths for TCL on NetBSD
Merge branch 'master' of ssh://git.code.sf.net/p/cdesktopenv/code
NLS: fix quote issue with various OS's in C/types/_common.dt.tmsg
dtprintinfo: Fix a potential exploitable buffer overrun
dtprintinfo: correct another possible buffer overflow
dtprintinfo: remove SUID root on install
ksh/libast: include sys/sysmacros.h in fmtdev.c for linux systems
isfname.c: remove register keyword
Merge /u/jrubio/cdesktopenv/ branch dtksh_include_sys_sysmacros into master
Merge /u/jrubio/cdesktopenv/ branch linux_aarch64 into master
Merge /u/jrubio/cdesktopenv/ branch pointer-compare into master
Merge /u/jrubio/cdesktopenv/ branch implicit-int into master
Merge /u/jrubio/cdesktopenv/ branch int-conversion into master
Merge /u/jrubio/cdesktopenv/ branch incompatible-pointer-types into master
Merge /u/jrubio/cdesktopenv/ branch delete-incomplete into master
Merge /u/jrubio/cdesktopenv/ branch discarded-qualifiers into master
linux: build all languages by default again
dtterm: add scroll wheel support
dtcalc: increase highlight thickness to match Solaris CDE
dtfile: Add scroll wheel support
dtpad: emit error on catopen() failure
dtmail: fix NULL char embedded in format string
dtmail: fix extra format args warnings
ttserver: fixup forward (vexing) fucntion decl's in main, get rid of **environ
DtSvc/DtUtil1: fix implicit function declarations
DtSvc/DtUtil2: fix implicit function declarations
Change CDE version info for 2.3.1 release
Jose Rubio (15):
Added linux/aarch64 as valid target.
Cleanup of -Wpointer-compare warnings.
Fixes for warnings related to -Wimplicit-int.
FIX: Define Aarch64 as little endian so DtInfo compiles.
Fix for deprecated warnings related to gnu libc sys macros.
Update TCL libraries link and restrict tcl8.6 only to SuSE.
Link TCL libraries and restrict tcl8.6 to SuSE only.
Merge branch 'linux-suse-tcl-link' of https://git.code.sf.net/u/jrubio/cdesktopenv into linux-suse-tcl-link
Fix openbsd compile build errors due to dependency on libiconv
Fix to Wenum-compare
Fix to different compile warnings.
Fix to compile warnings.
Fix to delete-incomplete warnings.
Fixes for a few -Wincompatible-pointer-types
get rid of the 'extern sys_errlist' and 'sys_nerr' in SysErrorMsg.
Matthew R. Trower (4):
Add default TCLLIB, and allow override in host.def
Clean up UseInstalledX11 logic
Restore original `tail` functionality in ttsnoop, with POSIX args
Repair and simplify installCDE.src:CleanDaemons()
Nina Didenko (4):
dtinfogen: don't override PATH
udbToAny.ksh: don't hardcode path to awk
merge: don't hardcode path to gencat
sym2num: don't hardcode path to cpp
Peter Howkins (301):
dtwm: Remove the define PANELIST, it is always on for dtwm
dtwm: Remove id strings related to historic version control system used before CDE was opened.
dtwm: remove define MINIMAL_DT which is always on for CDE
dtwm: Remove WSM define, that is always on for CDE
dtwm: Remove define MOTIF_ONE_DOT_ONE, backwards compatibility for motif 1.1, CDE as a whole requires 2.1
dtwm: Remove define MWM_QATS_PROTOCOL that has to be always off for dtwm, obsolete, unavailable mwm test suite support
dthelp: Remove define M_PROTO that was always turned on (for all platforms) that enabled ANSI not K&R function prototypes
dthelp: Remove always on macro M_NOPAR which was just there to support ancient compilers that don't have 'void'
dthelp: Remove spectaculaly obsolete MSDOS support
dthelp: Convert all K&R function definitions to ANSI (C90) standard
dtwm: In CDE we always build with MULTIBYTE support, disable unused singlebyte only
dtfile: Remove define MULTIBYTE which is always on for CDE
config/util: Change to ANSI function definitions
dbtoman: Change to ANSI function definitions
libDtHelp: Change to ANSI function definitions
libcsa: Change to ANSI function definitions
libDtMrm: Change to ANSI function definitions
libDtSvc: Change to ANSI function definitions
libDtTerm: Change to ANSI function definition
libtt: Change to ANSI function definitions
dsdm: Change to ANSI function definitions
dtappbuilder: Change to ANSI function definitions
dtcalc: Change to ANSI function definitions
dtcm: Change to ANSI function definitions
dtcreate: Change to ANSI function definitions
dtdocbook: Change to ANSI function definitions
dtfile: Change to ANSI function definitions
dtfile/dtcopy: Change to ANSI function definitions
dtinfo: Change to ANSI function definitions
dticon: Change to ANSI function definitions
dtlogin: Change to ANSI function definitions
dtwm: Change to ANSI function definitions
dtsession: Change to ANSI function definitions
dtimsstart: Change to ANSI function definitions
dtpdm: Change to ANSI function definitions
dtpdmd: Change to ANSI function definitions
dtstyle: Change to ANSI function definitions
dtterm: Change to ANSI function definitions
dtscreen: Change to ANSI function definitions
dthelp: Change to ANSI function definitions
dtpad: Change to ANSI function definitions
dtsr: Change to ANSI function definitions
dttypes: Change to ANSI function definitions
localized/util: Change to ANSI function definitions
libDtSearch: Remove optional support for ancient DOS far pointer
libDtSearch: Enable compiling with const support, remove ability to build without const support.
libDtSearch: remove optional code MULTI_TASK that is not used on CDE
libDtSearch: Remove optional code for NO_DBN which is not used on CDE
libDtSearch: Remove define ONE_DB which is always off for CDE
libDtSearch: NO_TRANS is always on for CDE
libDtSearch: SINGLE_USER is always defined for CDE
libDtSearch: NO_TIMESTAMP is always on for CDE
libDtSearch: remove NO_COUNTRY code which is always off for CDE
libDtSearch: Untangle large numbers of TASK_ macros that were all unused code
libDtSearch: Tidy up the LOCK and DBN macro madness
libDtSearch: Convert to ANSI function definitions and use proper prototypes (which causes more warnings
libDtSearch: Remove unused C files that have now disapeared with removal of #defines
Merge branch 'cde-next' of ssh://git.code.sf.net/p/cdesktopenv/code into cde-next
dtwm: Coverity 87858
dtwm: Coverity 88311
dtwm: Coverity 88247
dtwm: Coverity 88714
dtwm: Coverity 89619
dtwm: Coverity 88325
dtwm: Coverity 88540
dtwm: Coverity 89124
dtwm: Coverity 89400
dtwm: 88998
dtwm: Coverity 87256
dtwm: Coverity 87236
dtwm: Coverity 88535
dtwm: Coverity 88285
dtwm: Coverity 88375
libDtSearch: Coverity 86698
libDtSearch: Coverity 86762
libDtSearch: Coverity 86768
libDtSearch: Coverity 86780
libDtSearch: Coverity 86804
libDtSearch: Coverity 86856
libDtSearch: Coverity 86944
libDtSearch: Coverity 87032
libDtSearch: Coverity 86579
libDtSearch: Coverity 176038
libDtSearch: Coverity 87018
libDtSearch: Coverity 86816
libDtSearch: Coverity 86426
libDtSearch: Coverity 86602
libDtSearch: Coverity 86119
libDtSearch: Coverity 86459
dtaction: Coverity 88210 and 87787
dtterm: Coverity 89479
dtpad: Coverity 174846
nsgmls: Coverity 174600
nsgmls: Coverity 174584
dticon: Coverity 89192
dticon: fix for \n being truncated by snprintf off end of error message
dtstyle: Coverity 89351
dtstyle: Coverity 87763
dtstyle: Coverity 89456
dtstyle: Coverity 89011
dtstyle: Coverity 88726
dtstyle: Coverity 88475
dtstyle: Coverity 87337
dtstyle: Coverity 87244
dtstyle: Coverity 87251
dtstyle: Coverity 88110
dtcm: Coverity 89566
dtcm: Coverity 88978
dtcm: Coverity 89423
dtcm: Coverity 89063
dtcm: Coverity 88587
dtcm: Coverity 89037
dtcm: Coverity 88902
dtcm: Coverity 88481
dtcm: Coverity 89265
libDtHelp: Coverity 88776
libDtHelp: Coverity 89548
libDtHelp: Coverity 88813
libDtHelp: Coverity 88906
libDtHelp: Coverity 88665
libDtHelp: 88550
libDtHelp: Coverity 88440
dtprintinfo: Coverity 88414
dtprintinfo: Coverity 89561
dtprintinfo: Coverity 89488
dtprintinfo: Coverity 88650
dtprintinfo: Coverity 88683
dtprintinfo: Coverity 88097
dtprintinfo: Coverity 89669
dtprintinfo: Coverity 88447
dtdocbook: Coverity 86763
dtdocbook: Coverity 86996
doc/util/dbtoman: Coverity 88244
doc/util/dbtoman: Coverity 89668
doc/util/dbtoman: Coverity 88750
dtdocbook: Coverity 86683
dtcm: Coverity 89621
dtcm: Coverity 89547
dtcm: Coverity 88910
dtcm: Coverity 88353
dtcm: Coverity 88888
dtcm: Coverity 88584
dtcm: Coverity 88468
dtcm: Coverity 89169
dtcm: Coverity 88107
dtcm: Coverity 174711
dtcm: Coverity 88514
dtcm: Coverity 88613
dtcm: Coverity 89212, 88188 and 88636
dtcm: Coverity 88675
dtcm: Coverity 88687
dtcm: Coverity 88741, 88121 and 88692
dtcm: Coverity 88768, 89297 and 89115
dtcm: Coverity 89452 and 89661
dtcm: Coverity 88904
dtcm: Coverity 89138
dtcm: Coverity 89287
dtcm: Coverity 89369
dtcm: Coverity 88303, 89531 and 89433
dtcm: Coverity 88113
dtcm: Coverity 88137
dtcm: Coverity 88165
dtcm: Coverity 88331 and 88169
dtcm: Coverity 89670, 88380 and 88201
dtcm: Coverity 88214
dtcm: Coverity 88383
dtcm: Coverity 88858
dtcm: Coverity 88871
dtcm: Coverity 89021
dtcm: Coverity 89105
dtcm: Coverity 89113
dtcm: Coverity 89273
dtcm: Coverity 89439 and 89458
dtcm: Coverity 89502
dtcm: Coverity 89593
dtcm: Coverity 89641
dtcm: Coverity 89645
dtcm: Coverity 174810
dtcm: Extend string buffer to prevent warning
dtcm: Coverity 89423
dtcm: Coverity 89273
dtcm: Coverity 88978
dtcm: Coverity 88902
dtcm: Coverity 88871
dtcm: Coverity 88672
dtcm: Coverity 88636
dtcm: Coverity 88107
dtcm: Coverity 88183, 88208, 89289
dtcm: Coverity 88351
dtcm: Increase buffer size to prevent warning
dtcm: Coverity 88080
dtcm: Fix typo
dtcm: Coverity 88236
dtcm: Coverity 88243
dtcm: Coverity 88334
dtcm: Coverity 88648
dtcm: Coverity 88860
dtcm: Coverity 88917
dtcm: Coverity 89143
dtcm: Coverity 88762
dtcm: Coverity 88792
dtcm: Coverity 88899
dtcm: Coverity 89043
dtcm: Coverity 89182
dtcm: Coverity 89275
dtcm: Coverity 89667
dtcm: Coverity 89686
dtcm: Coverity 87931
dtcm: Coverity 174713
dtcm: Coverity 174819
dtcm: Coverity 88168
dtcm: Coverity 88225
dtcm: Coverity 88235
dtcm: Coverity 88272
dtcm: Coverity 88336
dtcm: Coverity 88505
dtcm: Coverity 88575
dtcm: When freeing pointer, set the pointer to NULL, so that on future failures you don't return a pointer to freed data
dtcm: Coverity 88631
dtcm: Coverity 88647
dtcm: Coverity 88669
dtcm: Coverity 89081
dtcm: Coverity 89413
dtcm: Coverity 89499
dtcm: Coverity 89535
dtcm: Coverity 89542
dtcm: Coverity 89544
dtcm: When deleting data, set the pointer to NULL to avoid returning a pointer to freed data on future errors
dtcm: Also make sure to reset non pointer fields, so that on future failures they don't return stale data (due to static)
dtcm: Coverity 88206
dtcm: Coverity 88326
dtcm: Coverity 89207
dtcm: Coverity 89234
dtcm: Coverity 88778
dtcm: Coverity 89398
dtcm: Coverity 89371
dtcm: Coverity 88253
dtcm: Coverity 89595
dtcm: Coverity 89160
dtcm: Coverity 88079
dtcm: Coverity 88494
dtcm: Coverity 88200
dtcm: Coverity 89517
dtcm: Coverity 89341
dtcm: Coverity 89232
dtcm: Coverity 88745
dtcm: Coverity 88250
dtcm: Coverity 87364
dtcm: Coverity 87745 and 88154
dtcm: Coverity 88056
dtcm: Coverity 88279
dtcm: Coverity 88350
dtcm: Coverity 88533
dtcm: Coverity 89111
dtcm: Coverity 89685
dtcm: Coverity 176055
dtcm: Coverity 89313
dtcm: Coverity 88006
dtcm: Coverity 87565
dtcm: Coverity 87942
dtcm: Coverity 88069
dtcm: Coverity 88382
dtcm: Coverity 88884
dtcm: Coverity 88955
dtcm: Coverity 89051
dtcm: Coverity 89185
libDtHelp: Cov 87607
libDtHelp: Cov 89582
libDtHelp: Cov 88839
libDtHelp: Cov 88527
libDtHelp: Cov 88084
libDtUtil: Cov 88123
libDtUtil: Cov 88127
libDtHelp: Cov 89172
libDtHelp: Cov 89366
libDtHelp: Cov 88221
libDtHelp: Cov 88465
libDtHelp: Cov 88526
libDtHelp: Cov 88724
libDtHelp: Cov 88952
libDtHelp: Cov 89012
libDtHelp: Cov 89084
libDtHelp: Cov 89401
libDtHelp: Cov 89524
libDtHelp: Cov 89532
libDtHelp: Cov 174697
libDtHelp: Cov 88109
libDtHelp: Cov 88119
libDtHelp: Cov 88162
libDtHelp: Cov 88209
libDtHelp: Cov 88240
libDtHelp: Cov 88262 and 88459
libDtHelp: Cov 88275
libDtHelp: Cov 88890 and 88294
libDtHelp: Cov 88302
libDtHelp: Cov 89129 and 88355
libDtHelp: Cov 88365
libDtHelp: Cov 88381
installCDE: fix outputting of missing files on install, caused by C&P error in shellshock fixes
libDtHelp: Fix a regression with the Help Index pages caused by an overzealous Coverity fix
libDtHelp: Fix another regression caused by Coverity fix, clicking 'Help Manager' works again.
chase (26):
linux.cf: Remove permissive flag
Remove macII support
Remove apollo support
Add debian packaging files
Add upstream config files
Remove redundant motif widgets
installCDE.src: Fix shellcheck warnings
linksLast and uncomment: Fix shellcheck warnings
Revert "dtudcfonted, dtudcexch: delete from repository"
Revert "Disable building of dtudcfonted and dtudcexch"
Refactor and reimplement dtudcfonted
CDE-RUN: Readd binary entries for dtudcfonted
post_install: fix shellcheck warnings
Remove amoeba support
Remove old windows support
Dtdocbook: Remove old sgmls program
DtsMM.c: Remove null in string
dtappintegrate.src and dtopen.src: fix shellcheck warnings
dtprintegrate: fix shellcheck warnings
il: Remove deprecated files
debian: misc cleanup
gpftobdf.c: fix long int comiler warnings
remove ultrix support
Remove hpversion.h from repository
Clean up OPENBUGS
dbtoman: Improve readability
tu83 (1):
Fixed segfault for mode switching when compiled with clang
wmoxam (7):
Remove NOTDONE code
Remove unused HP_EXTENSIONS code blocks
Remove legacysun code blocks
Remove 'oldcode'
Remove ancient HP VUE compatibility support
'notdef' means it's not used, so we remove it
Remove all optional compile flags from dtwm that are not referenced anywhere, and are unlikely to ever be used
#######################################################################
### 2.3.0 (stable) 07/06/2018
This is a very long overdue stable release. It incorporates all of
the fixes in the 2.2.4a development release plus:
- tooltalk/ttsession:
- on newer Linux/TIRPC systems, make sure listen() is called on a
server socket. This fixes an infinite loop problem seen with with
newer glibc and TIRPC implementations (SUSE Tumbleweed, ArchLinux)
- default to localhost when hostname IP resolution fails (all
platforms). There is no longer any need to add your unresolvable
hostname to the localhosts line in your /etc/hosts file.
- improved build support on Solaris/OpenIndiana systems (gcc and SunStudio).
- BSD improvments:
- no need to create X11/Motif symlinks prior to compiling CDE.
- Fix native clang builds
- Fix some GCC builds
- remove ancient XmeXpm* defines
Here is the git shortlog since the 2.2.4a development release:
Jon Trulson (14):
libDtTerm: Fix for a coredump seen on OpenBSD
dtinfo/freebsd: fix a (int)NULL cast in DtSR_SearchEngine.C
FreeBSD 11: Don't use imported x11/motif, use installed versions for build
building_release_archive: omit '-src' in archive filename
OpenBSD 6+: use installed X11 and Motif
XPM: Replace calls to XmeXpm*() with regular Xpm*()
FreeBSD 11: Fix clang (v6) builds
FreeBSD: turn off some warnings
CDE-ICONS: create compatibility symlinks as relative rather than absolute
OpenBSD: tone down compiler warnings a bit
libtt: if local hostname lookup fails, default to localhost
linux/site.def: use an if !defined() gaurd for DtLocalesToBuild
slib/mp_rpc_server: TIRPC: force a listen() call on the server socket
dwtm/WmResource.c: Stop printing garbage when XmeRenderTableGetDefaultFont() fails.
Matthew R. Trower (7):
nsgml: Resolve symbol collision when building with SunStudio 12.1
imake: Refactor and fix get_sun_compiler_versions()
Add SMF service on Sun
Resolve inconsistent strcasestr availability on Sun
Minor corrections and cleanup to sun.cf
Enable building against an arbitrary Motif installation
Fix DtMail compilation on Sun with GCC
Ulrich Wilkens (3):
create .depend files for Solaris+Illumos
Reenable gcc support on FreeBSD and OpenBSD
Use installed X11 includes and libs
chase (3):
Remove reallyoldsun defines
installCDE.src: remove duplicate code
docnook.tcl: Add shebang
## 2.2.4a (development) 06/08/2018
This is a long overdue development release.
This release corrects several known issues with newer BSD based
operating systems, enables TIRPC by default for all Linux systems, and
corrects several hundred bugs and warnings (compiler and coverity).
Using TIRPC on Linux means that you should no longer need to configure
rpcbind to run in insecure (-i) mode.
For Linux, only the C/en_US locales are built by default now. The
available extra locales are:
fr_FR.ISO8859-1, de_DE.ISO8859-1, es_ES.ISO8859-1, and it_IT.ISO8859-1
To build for these locales, you must ensure the locale support is
present on your OS (see the wiki), and then you can:
A) Edit config/cf/site.def and add the desired locales to
DtLocalesToBuild in the LinuxArchitecture section, or
B) call make World with the following option:
make World IMAKE_DEFINES='-DDtLocalesToBuild="fr_FR.ISO8859-1"'
to build the French Locale, for example.
For the BSD's, All of the current ones (OpenBSD 6.x and FreeBSD 11.x)
should compile now. Since we no longer use XPrint, the BSD's
should not need to compile their own modified Motif libraries any
more. Just install a Motif development package, and go.
Here is the git shortlog:
Cody Kotichas (1):
Fix typographical error
Edmond ORIGNAC (2):
Manual page for vcal2xapia.awk
DtMail translations and improvements of vcal2xampia.awk
Jon Trulson (103):
dtappbuilder: Add patches from Robert Pangrazio fixing coredumps
Remove old cruft: osf/* and utils/prog*
CDE-RUN: remove osf bindings
dtinfo/TextParser.C: coverity CID 89054; mem corruption
dtinfo/DtSR: coverity CID 88552; memory corruption
dtspcd: coverity CID 174742; potential NULL derefs
dtinfo/MixedGen.C: coverity CID 89495; use after free
dtfile/SharedProcs.c: coverity CID 89068; use after free
dtfile/sharedFuncs.c: coverity CID 88625; use after free
dtfile/Main.c: coverity CID 89623; uninit var
dtmail/DtMailRc.C: coverity CID 88975; use after free
dthelp/htag/malloc: coverity CID 86955; use after free
libtt/db_server_svc.C: coverity CID 87060; string overflow
libtt/process.c: coverity CID 87051; use after free
dtfile/Help.c: coverity CID 88484; use after free
dthelp/helpgen.c: coverity CID 175085; use after free
csa/match.c: coverity CID 87204; bad free; WTF
dtinfo/OutlineListViewMotif.C: coverity CID 87754; memset truncated
dtmail/MsgScrollingList.C: coverity CID 87360; memset no effect
libtt/tt_file_system.C: coverity CID 86024; array vs singlton
dtfile/SharedProcs.c: coverity CID 174852; int overflow
dtfile: coverity CIDs 88363,88405,89140,89612; insecure readlink
dtudcfonted/getfname.c: coverity CID 86392; insecure readlink
dtexec,DtSvc/MsgLog.c: coverity CID 89585; resource leak
dtcm/props.c: coverity CID 88573; unbounded src buf
dthelp/Initialize.c: coverity CID 89569; unbounded src buf
dtfile/File.c: coverity CID 88919; uninit array read
libtt/isrepair.c: coverity CID 86705; uninit ptr read
dtudcfonted/gpftobdf.c: coverity CIDs 87073,87008,87029,86919,86898,86715; uninit scalar
dtudcfonted/_faludcInf.c: coverity CIDs 175096,175092; uninit ptr read
dtcalc/ds_xlib.c: coverity CID 175093; wrong sizeof/bad free
dtcalc: remove MAX_PATH, use standard PATH_MAX
dtcreate/CreateActionAppShell.c: coverity CID 175092; uninit ptr read
dtcreate/fileio.c: coverity CID 175094; dref bef NULL
dtwm/WmResource.c: remove errant ')' added in previous commit
libDtSearch/dtsrapi.c: Coverity CID 86857; dest buf too small
dtsr/dtsrclean.c: Coverity CID 86876; dest buf too small
dtcm/dssw.c: Coverity CID 88672; dest buf too small
dtcalc/ds_xlib.c: Coverity CID 175167; uninit value
dtudcfonted/gpftobdf.c: Coverity CID 175168; NULL deref
dtcm/dssw.c: fix typo
Disable building of dtudcfonted and dtudcexch
fontaliases: use copy rather than symlink since bdftopcf can't handle those
dtfile/SharedProcs.c: rework coverity 174852 fix to unbreak dtfile
dtfile: define MAX_PATH to PATH_MAX rather than 1024, also CID 87557
dtfile/sharedFuncs: CID 88085; resource leak
Revert "dtfile: coverity CIDs 88363,88405,89140,89612; insecure readlink"
Remove admin/BuildTools/fnrclone/; obsolete junk
Remove admin/BuildTools; none of this is pertinent anymore
Remove admin/bin; none of this is pertinent anymore
Remove admin/man, *nameswitch; none of this is pertinent anymore
installCDE/linux: don't try to edit/modify /etc/inetd.conf if it does not exist
dthelp/FormatUtils: fix coredump in dthelpgen due to free() of a bad address
Reimplement reverted commit 7fa35c to fix readlink() issues
dtfile/Prefs: CID 88095,88407,89162,89164,89283,89445
dtfile/Desktop: CID 88133,88159,88339,88798,89331,89466
dtfile/FileDialog: CID 88141,88451,88658,89058
dtfile/SharedProcs: CID 88158,88337,89104,89118
dtfile/File: CID 88195,88595,88627,88794
dtfile/dtcopy/sharedFuncs: CID 88204,88291,88852,88861,88876
dtfile/IconWindow: CID 88242,88702,89030
dtfile/Find: CID 88258,87250
dtfile/FileMgr: CID 88441,89025,174801
dtfile/Help: CID 88598
dtfile/Trash: CID 88638,88815,89061,89614
dtfile/FileOp: CID 88744,89337,89546
linux.cf: Add -Wno-unused-result to C flags
dtfile/Command: CID 88819
dtfile/Directory: CID 88835,89096,89446,89469,89498
dtfile/dtcopy/fsrtns: CID 88868,88128
dtfile/Menu: CID 89222
dtfile/dtcopy/dosync: CID 89374
dtfile/Main: CID 89623
dtfile/Encaps: CID 174844
dtfile/Desktop: CID 175219,175222,175223,175226,175227
dtfile/dtcopy/sharedFuncs: CID 175225
dtfile/SharedProcs: CID 175229
dtfile/FileDialog: CID 175220
dtfile/FileOp: CID 175228
dtbuilder/Imakefile: fix clean target to remove dtbuilder executable
Enable TIRPC support for Linux
dtfile/File.c: implement a hack to fix Ticket #19, tree icons are black
CDE-MAN-DEV.udb: remove extra }, added when UXP support was removed
CDE-DEMOS: remove references to Makefile.novell
TermPrimSetUtmp: fix lost define broken by last patch
tt_old_db: use TT_DB_OK instead of NULL
tt_xdr_utils: fix up some warnings
installCDE.src: Add a -destdir <dir> option
Imake.tmpl: don't delete logfiles (make.log MakeOut)
XlationSvc: remove a "'" added in previous spelling commit that causes warnings
rpc.cmsd: use TIRPC on Linux
dtcm/graphics: NULL is not 0
libDtCmP: use TIRPC on linux, fix some warnings
dtcm: NULL is not 0
dtsession: fix screen saver/locking on linux
configRun: leave dtmail alone, UDB handles it's perms correctly
configRun: remove inetd support
configMin: remove inetd support, 'pam' support
configTT: remove inetd support
installCDE: unset FIGNORE to workaround potential ksh bug
linux.cf: disable stripping of installed binaries
site.def: Only build C/en_US locales by default for Linux
installCDE: Only install locales that were built
Matthew R. Trower (2):
dtwm: basic multihead(xinerama only) support
Fix imake segfault on OpenIndiana
Michael McConville (1):
Remove needless zeroing after calloc
Peter Howkins (78):
Change pid wait types to int on Linux as well. Fixes compile issue in dtudc programs on ubuntu 16.10+
Add in an example .desktop session file for other X session managers (not dtlogin) Suitable for kdm/gdm/lightdm etc
Resolve some coverity warnings
Fixed for wrong cased filename on depends creation
Resolve some compiler warnings
Change how read and write errors are detected on fstream based streams.
Change dtmmdb class from tuple to mmdb_tuple
dtksh: HACKY fix for compilation on later linux C library where FILE definition has moved
dtksh: make sure you can still build on linux older c library too
dtksh: Linux modern glibc compile HACK prevent system wide definition of __FILE that we define to Sfio_t
dtcalc: change from obsoleted MAXFLOAT to FLT_MAX from std C
dtdocbook: glibc 2.27 drops support for matherr() support in math.h
dtcudcfonted: Resolve compiler and coverity warnings
dtscpd: resolve compiler and coverity warnings
dtcalc: resolve coverity issues
libtt: Resolve some compiler warnings
dthelp: compiler warning and coverity warning fixes
dtcalc: resolve coverity issues
dtudcfonted: Resolve further coverity issues
dtcreate: Resolve coverity issues
dtpdmd: Resolve some coverity warnings
libDtWidget: Resolve some Coverity warnings
dtwm: Resolve coverity warnings
dtmail: resolve 'deference before null check' errors related to if(!NULL) checks around free() calls
Merge branch 'master' of ssh://git.code.sf.net/p/cdesktopenv/code
libdtsvc: Compiler warning prevention
libdtsvc: Resolve coverity warnings related to 'dereference before null check' related to free()
dtwm: cov 175166, check for pointer
Merge branch 'master' of ssh://git.code.sf.net/p/cdesktopenv/code
dsdm: cov 86572, free mem in error condition
libdtterm: Resolve coverity issues
config/util: resolve coverity issues
dtspcd: Cov 89547, 175089
dtinfo: Fix coverity issues for resource leaks
dtinfo: fix coverity issues related to null checks after dereference
dtinfo/dtinfogen: Fix segfault introduced by over zealously fixing coverity resource leak
dthelp: more coverity fixes
dtpad: resove coverity issues
libtt: Resolve coverity warnings
ttsnoop: resolve some compiler warnings
libtt: resolve coverity issues related to double close()
lidtsvc: coverity fixes
dtterm: coverity fixes
dtlogin: coverity fixes
libtt: More coverity fixes
dthelp: coverity fixes
dtwm: Fix window menus caused by using destination as param to snprintf
various: You cannot use the destination of snprintf as one of the srcs, undefined
libtt: Coverity fixes related to uninitialised fields in classes.
dtinfo: Resolve coverity warnings related to uninitialised members of classes
nsgmls: resolve coverity warnings related to uninitialed members in C++ classes
dtmail: resolve coverity warnings related to uninitialised members in C++ classes
libtt: Further coverity fixes
dtinfo: Fix coverity warning related to using delete not delete []
Merge branch 'cde-fixups-1' of ssh://git.code.sf.net/p/cdesktopenv/code into cde-fixups-1
dtpdm: Coverity 87632, 87664, 87923
libtt: Fixes for Coverity fixes that I thought I'd already fixed.
dtmail: Further Coverity fixes
dtsr: Coverity fixes for string buffer issues
dtinfo: Extra fixes for previous believed fixed things (coverity)
dtlogin: Two additional coverity fixes
dtappbuilder: Resolve all compiler warnings
dtappbuilder: Coverity fixes for mising return value and copy into fixed size buffer
dtappbuilder: Fix for very wrong sized buffer
dtappbuilder: Further coverity, resource leaks, copy intofixed size buffer and dereference before null checl
dticon: coverity fixes
Merge branch 'cde-fixups-1' of ssh://git.code.sf.net/p/cdesktopenv/code into cde-fixups-1
dtimsstart: Resolve all compiler warnings
dtimsstart: Coverity fixes
dtimsstart: Fix derp in previoua fix set
dtfile: batch coverity fixes
dtlogin: Resolve some coverity issues, including those thought previously fixed
dtsession: A few extra snprintf's for buffer safety
dtimsstart: Fix brackets on previous coverity fix
dticon: Fix broken string length calculation
dthelp: Further coverity fixes
dtappbuilder: Coverity fixes mostly related to uninitialised variables
dtwm: Resolve coverity warnings related to uninitialised variables and missing return statements
Swift Griggs (1):
Patches from pkgsrc-WIP
Ulrich Wilkens (4):
Fix BSD and Sun problems after coverity fixes
Fix Linux rpc problems with new glibc
Fixes for OpenBSD
Fix warnings on FreeBSD
alx (6):
libDtSvc: added Xinerama support to _DtMessageDialog
dtfile: added Xinerama support to dialog positioning routines
dtlogin: center the mouse pointer on the login screen on multi-head setups
ttsession: don't segfault if host name isn't properly set
dtksh/sfio: resolved a naming collision on FreeBSD 11
libtt: pass proper flags to getfsstat, log error message and exit if it fails
chase (23):
Fix various spelling errors
More spelling fixes
Rewrite csh scripts in sh, use sh instead of csh in scripts
Small spelling fixes
Fix typo in license headers
Even more spelling fixed
Last of the spelling fixed
Add missing license headers on *.hh files and others
Remove bsdi support
Add generated binaries to gitignore from programs/localized/
Remove examples/motif
cde.desktop: remove deprecated encoding key
sgml-mode.el: fix address, dt-toolbox: delete
Remove UXPDS support
Remove Unixware and openserver support
Use /var/spool instead of /usr/spool and /var/mail instead of /usr/mail
remove OSF1 support
Use POSIX macros for linux
dinstallCDE.src: add linux and *BSD support
Spelling fixes
cde.desktop:Add keywords to desktop entry
fix files not registering as scripts
cde.desktop: add xpm icon
#######################################################################
### 2.2.4 (stable) 06/19/2016
This release incorporates several fixes for newer operating systems
(linux and the BSD's primarily). It also removes the requirement to
build with Xp (X Print extension), which is no longer supported. As
usual, many warnings and bugs were also fixed.
Here's the shortlog:
Douglas Carmichael (2):
Patches to enable compilation on OpenBSD 5.7/FreeBSD 10.1.
Changed memcpy() to memmove() to stop coredumping on OpenBSD 5.7.
Giacomo Comes (2):
Use /var/spool instead of /usr/spool on linux
call fclose(infile) after print_progress()
Isaac Dunham (1):
programs/dtappintegrate: make PATH include /bin.
Jon Trulson (6):
ksh: fix up shipin for more modern systems WRT test and wc
dtlogin: use XDM authentication instead of MIT/DES on linux
ttcp: fix missing arg to fprintf
dbtoman: fix missing arg to fprintf
dtappbuilder: replace accidental %a with %% in write_func_as_strings()
contrib: some enhancements to the scrotps provided by Edmond Orignac
Pascal de Bruijn (2):
dtlogin: don't use crypt(3) on openbsd
dtlogin: openbsd build fix
Peter Howkins (3):
Disable all code related to libXp deprecated and mostly no longer included on current OSes
dtstyle: backdrops, allow jpg/png if motif supports it add file extensions to all types but .pm/.bm. This lets XmGetPixmap() load them.
dtstyle: remove some accidentally commited debug code
Ulrich Wilkens (3):
Fix FreeBSD 10.2 build
Fix dtinfo document build on OpenBSD
dtlogin: FreeBSD build fix
alx (14):
dtsession: fixed errorlog rotation
dtfile: fixed double free in copy/move collision handler
dticon: KeySym is not char
dtfile: 0 is not NULL
dtfile: fixed file view scrolling with Page Up/Down keys
dtfile: fixed ambiguity in the translation table
DtWidget: added appropriate KeyPress event handler to DtIcon widget
DtWidget: resolved some compiler warnings
dtfile: Enable FILE_MAP_OPTIMIZE on FreeBSD. This avoids unnecessary tt_file_netfile calls on local host.
dtlogin: Enable XDM authentication on FreeBSD
dtsession: Enable X11 screensaver extension on FreeBSD
dtwm: 0 is not NULL
dtwm: Resolved some compiler warnings
dtfile: Enable FILE_MAP_OPTIMIZE on Linux. This avoids unnecessary tt_file_netfile calls on local host.
#######################################################################
### 2.2.3 (stable) 05/09/2015
This release incorporates several hundred fixes identified by various
Coverity scans and patches supplied by users. In addition,
OpenIndiana/OpenSolaris support was significantly enhanced thanks to
Ulrich Wilkens, and a few hundred compiler warnings were squashed.
There is also a new default CDE logo :)
Here is the shortlog: