Pascal de Bruijn
4aedbf2796
dtlogin: openbsd build fix
...
Amend ced27aa1f6
to prevent openbsd
make from failing because of the tab.
2016-06-09 10:05:35 -06:00
Giacomo Comes
542fce33d4
call fclose(infile) after print_progress()
...
The function print_progress uses the pointer infile.
If fclose is called before print_progress then the build process
can fail to build the files:
doc/C/cde.dti/CDEDOC/dtsearch/CDEDOC.d99
doc/C/cde.dti/CDEDOC/dtsearch/dtsearch.ocf
doc/C/cde.dti/cde.oli
To fix the issue move the call fclose(infile) after print_progress()
2016-06-07 20:00:11 -06:00
Giacomo Comes
a650c6214e
Use /var/spool instead of /usr/spool on linux
2016-06-07 19:59:42 -06:00
Peter Howkins
e1333a5160
dtstyle: remove some accidentally commited debug code
2016-04-21 01:48:40 +01:00
Peter Howkins
066adcac5e
dtstyle: backdrops, allow jpg/png if motif supports it
...
add file extensions to all types but .pm/.bm. This lets XmGetPixmap() load them.
2016-04-21 01:43:27 +01:00
Peter Howkins
2ea057d511
Disable all code related to libXp
...
deprecated and mostly no longer included on current OSes
2016-04-20 20:17:22 +01:00
alx
b251a15844
dtfile: Enable FILE_MAP_OPTIMIZE on Linux. This avoids unnecessary tt_file_netfile calls on local host.
2016-04-18 19:16:48 -06:00
alx
2e5bd045ed
dtwm: Resolved some compiler warnings
2016-04-18 19:16:48 -06:00
alx
720fd9365a
dtwm: 0 is not NULL
2016-04-18 19:16:48 -06:00
alx
ed2c149bfc
dtsession: Enable X11 screensaver extension on FreeBSD
2016-04-18 19:16:47 -06:00
alx
7cddb0d165
dtlogin: Enable XDM authentication on FreeBSD
2016-04-18 19:16:47 -06:00
alx
ff7c7d72cf
dtfile: Enable FILE_MAP_OPTIMIZE on FreeBSD. This avoids unnecessary tt_file_netfile calls on local host.
2016-04-18 19:16:47 -06:00
Jon Trulson
6bc5c658b8
dtappbuilder: replace accidental %a with %% in write_func_as_strings()
2015-12-18 10:28:37 -07:00
Jon Trulson
07e84caf74
dbtoman: fix missing arg to fprintf
2015-12-18 10:00:12 -07:00
Jon Trulson
10742f3679
ttcp: fix missing arg to fprintf
2015-12-18 09:55:20 -07:00
Pascal de Bruijn
ced27aa1f6
dtlogin: don't use crypt(3) on openbsd
...
des support has been removed from crypt(3) on openbsd since version 5.8
2015-11-28 12:24:20 -07:00
Jon Trulson
1e2e373082
dtlogin: use XDM authentication instead of MIT/DES on linux
2015-11-26 14:08:23 -07:00
Jon Trulson
05445493d9
ksh: fix up shipin for more modern systems WRT test and wc
...
Patch submitted by Giacomo Comes.
2015-11-22 15:37:40 -07:00
Ulrich Wilkens
f8fdf4920f
Fix FreeBSD 10.2 build
2015-10-21 19:23:05 -06:00
alx
ae16363537
DtWidget: resolved some compiler warnings
2015-07-23 18:51:48 -06:00
alx
c67763c82d
DtWidget: added appropriate KeyPress event handler to DtIcon widget
2015-07-23 18:51:43 -06:00
alx
307981f3e5
dtfile: fixed ambiguity in the translation table
2015-07-23 18:51:39 -06:00
alx
84f725bd54
dtfile: fixed file view scrolling with Page Up/Down keys
2015-07-23 18:51:34 -06:00
alx
5c6ddfd0c1
dtfile: 0 is not NULL
2015-07-16 19:21:18 -06:00
alx
304f99d26c
dticon: KeySym is not char
2015-07-02 17:50:26 -06:00
alx
bd4a4532f0
dtfile: fixed double free in copy/move collision handler
2015-07-02 17:50:21 -06:00
alx
cbd5abb33a
dtsession: fixed errorlog rotation
2015-07-02 17:50:16 -06:00
Douglas Carmichael
ecdf9eba10
Changed memcpy() to memmove() to stop coredumping on OpenBSD 5.7.
2015-06-21 17:07:41 -06:00
Douglas Carmichael
aaab59761f
Patches to enable compilation on OpenBSD 5.7/FreeBSD 10.1.
2015-06-17 11:31:31 -06:00
Isaac Dunham
87d863b8a4
programs/dtappintegrate: make PATH include /bin.
...
Without this, we fail without the /usr merge because 'date' is
unavailable.
2015-06-16 15:56:21 -06:00
Jon Trulson
2c4cdb5edf
cde: update HISTORY for 2.2.3 release
2015-05-09 17:09:11 -06:00
Jon Trulson
14b9e2efa3
cde: change revision to 2.2.3
2015-05-09 16:58:46 -06:00
Jon Trulson
6400908cc1
dtscreen: don't use old version of round() on linux either
2015-05-09 16:37:04 -06:00
Ulrich Wilkens
c7781f434b
Remove warnings on Linux with glibc 2.20
2015-05-09 16:23:05 -06:00
Ulrich Wilkens
8b38d9ea49
Fix broken build on OpenBSD
2015-05-09 16:21:32 -06:00
Ulrich Wilkens
2b8b5f25b5
Support for new Solaris/OpenIndiana versions
2015-05-09 16:19:08 -06:00
Stuart Brady
0306c7c6f2
DtTerm: fix formatted text in history buffer
...
Formatted text currently gets corrupted by DtTerm when copied into its
history buffer.
As soon as a line of text is copied into the history, the text of each
segment of formatted text is altered so that it contains the text from
the start of the line. For example:
echo -e '\e[1mbold\e[m \e[4munderlined\e[m'
When the text has scrolled off the screen, scrolling back to it reveals:
boldbbold under
This is fixed by adding the calls to _DtTermPrimBufferGetCharacterPointer
that were missing which would update the buffer pointer when inserting
text into the history buffer.
2015-05-05 16:47:05 -06:00
Edmond ORIGNAC
51afe76f07
Fix dtprintinfo parser
...
When using a non C locale such as fr_FR.ISO8859-1, the CUPS messages
returned by lpq are translated. However, the parser in ParseJobs.C can only
handle messages in English. As a result, dtprintinfo exits immediately with
an error message. To fix that problem we force a LANG=C environment when calling
lpq so that messages will be in English and will be processed correctly by dtprintinfo
parser.
2015-03-21 20:14:16 -06:00
Isaac Dunham
6c5bab0854
contrib/rc/linux/dtlogin: Make the init script work.
...
* insserv requires a shebang line
* the rc script can hang if a daemon is started in the foreground
* "pgrep dtlogin" apparently can match the init script, if it is started
with "service dtlogin start" or similar.
* reduce code duplication
2015-03-07 19:44:55 -07:00
Peter Howkins
917343911e
dtudcfonted: Resolve CID 86560
2015-01-21 14:15:31 +00:00
Peter Howkins
8c340c1984
dtudcfonted: Resolve CID 86547
2015-01-21 14:10:58 +00:00
Peter Howkins
8ba625d41d
dtudcfonted: Resolve CID 86495
2015-01-21 14:09:39 +00:00
Peter Howkins
9e849c3f25
dtudecfonted: Resolve CID 86417
2015-01-21 14:04:04 +00:00
Peter Howkins
343a78b225
dtudcfonted: Resolve CID 86391
2015-01-21 14:02:34 +00:00
Peter Howkins
0669358b82
dtudcfonted: Resolve CID 86328
2015-01-21 14:00:44 +00:00
Peter Howkins
1e904a31d8
dtudcfonted: Resolve CID 86280
2015-01-21 13:56:00 +00:00
Johannes von Rotz
f6e025b3af
Let "make World" run through on OpenBSD
2015-01-21 13:47:20 +00:00
Peter Howkins
83af6d8431
dtudcfonted: Resolve CID 86389
2015-01-16 16:51:37 +00:00
Peter Howkins
15434b1787
dtudcfonted: Resolve CID 86232
2015-01-16 16:49:42 +00:00
Peter Howkins
1380cb7c8e
dtudcfonted: Resolve CID 86153
2015-01-16 16:29:55 +00:00