summaryrefslogtreecommitdiff
path: root/app
AgeCommit message (Collapse)Author
2021-03-13Fix mis-indentationMatthieu Herrb
2021-03-13Don't add authorizations for TCP connections by default.Matthieu Herrb
Add a new resource 'listenTcp' (false by default) to explicitely add authorizations for existing IP addresses on startup (and pass -listen tcp to the X server). ok kettenis@
2021-03-13Remove the 30s minimum delay for xlock timeouts. From Alex Raschi.Matthieu Herrb
2021-03-08Remove code writing .Xauthority in /tmp if it cannot write it in ${HOME}.Matthieu Herrb
Discussed with deraadt@ and zhuk@
2021-02-16Also call the VIDIOC_STREAMOFF ioctl when we stop a read(2) stream. ThisMarcus Glocker
is required by the new video(4) multiopen functionality.
2021-02-14Update to xterm 366. tested by jsg@Matthieu Herrb
2021-02-12chown /dev/dri/ nodes if they existJonathan Gray
2021-01-24making the default system.fvwmrc a bit less obsolete.Matthieu Herrb
- remove xman (was removed from xenocara base) - replace rlogin with ssh in modules - make the fg color for ssh / telnet prompts black so that's it's readable. ok deraadt@
2021-01-24Remove extra parenthesisMatthieu Herrb
2021-01-24add explicit braces to avoid dangling else warning and fix misleadingMatthieu Herrb
indentation.
2021-01-24Add missing function prototypesMatthieu Herrb
2021-01-24Fix 'format string is not a string literal' warning.Matthieu Herrb
2021-01-24Fix pre C89 dummy() prototype.Matthieu Herrb
2021-01-24include <stdlib.h> to get exit() prototype declaration.Matthieu Herrb
2021-01-24include <string.h> to get strcmp() prototype declaration.Matthieu Herrb
2021-01-24Fixes for -fno-common beeing the default in clang 11.Matthieu Herrb
ok mortimer@ who came to the same patches.
2006-11-26Importing from XF4, plus BSD make infrastructureMatthieu Herrb
2021-01-10Update to xterm 363. tested by jsg@ and others on tech@.Matthieu Herrb
2021-01-10Make login_fbtab() work by tweaking the pledges.Matthieu Herrb
chown is needed until the login process is done. It is removed afterwards. Also use the console device from the X server root property. This makes it available on architectures without VTs too.
2021-01-10Get the path to the console device from the X server.Matthieu Herrb
2021-01-03Regen autotools generated filesMatthieu Herrb
2021-01-03Fix the WINDOWPATH environment variable setting.Matthieu Herrb
Setting it to a device name was a mistake as this is not the semantic expected by the applications that use it (screen readers).
2021-01-03Fix function name in Debug() messages.Matthieu Herrb
2021-01-02Pass the proper widget pointer to getKeymapResources()Matthieu Herrb
Found while testing xterm 363
2021-01-02Pass proper widget pointer to SetCursorBlink() in local change.Matthieu Herrb
Found while testing upgrade to version 363.
2021-01-02Remove a now unused field that was added as part of a local change.Matthieu Herrb
2021-01-02Remove redundant / unused defines from CPPFLAGS. No binary changes.Matthieu Herrb
2021-01-01doneAddrs: reset addrs to NULL after freeing listMatthieu Herrb
Resolves warning from Oracle Parfait static analyzer: Warning: Dangling pointer Dangling pointer [dangling-pointer]: Invalid pointer is accessible to caller via global addrs at line 664 of xdm/auth.c in function 'doneAddrs'. Invalid pointer accessible via global addrs at line 646 a accessed from addrs at line 658 in function 'doneAddrs' a freed with free at line 662 From Alan Coopersmith in xdm.
2021-01-01Greeter: add parens to DRAW_STRING & TEXT_WIDTH macrosMatthieu Herrb
From Alan Coopersmith in xdm: Oracle Parfait static analyser points out it wasn't clear if cast or arithmetic operation in arguments at lines 410, 416, 431, & 433 was intended to be done first, so we'll make it explicit.
2021-01-01Fix spelling/wording issues.Matthieu Herrb
From Alan Coopersmith in xdm
2021-01-01Update to xkbcomp 1.4.4Matthieu Herrb
2021-01-01Update to xinit 1.4.1Matthieu Herrb
2021-01-01Update to xprop 1.2.5Matthieu Herrb
2021-01-01Update xev to 1.2.4Matthieu Herrb
2021-01-01Update to fonttosfnt 1.2.1Matthieu Herrb
2020-12-06Set the VT to be used by the X server on armv7 and powerpc64 too.Mark Kettenis
ok phessler@, matthieu@
2020-10-24fix sign of calculated descentMatthieu Herrb
"I discovered this bug when converting the Tamsyn font from pcf to otb." from chrisz@
2020-10-24handle empty foundry encoded as NULL to fix a segfaultMatthieu Herrb
from chrisz@
2020-10-24remove leftover debug printfMatthieu Herrb
from chrisz@
2020-10-23Update to fonttosfnt 1.2.0.Matthieu Herrb
Includes work done by chrisz@ to fix issues for recent pango versions. tested with st and gvim and OK chrisz@
2020-10-23remove empty file not present upstreamsMatthieu Herrb
2020-09-30Remove osrelease from system.fvwmrckn
This is the version string that shows up as part of "OpenBSD 6.8" in the bottom right window in a default installation. But as this version stems from the build machine's kernel with which fvwm was build, it can differ from the version you're running on your machine which is what you'd expect as user. Such values must not be derived from the build environment; instead of fixing it up, remove the version number entirely and leave it to the user's ~/.fvwmrc to update the label if need be. OK deraadt
2020-09-22use <signal.h> instead of <sys/signal.h>Theo de Raadt
ok matthieu
2020-09-07Add control for backlight compensation (V4L2_CID_BACKLIGHT_COMPENSATION).Marcus Glocker
From Laurence Tratt <laurie (at) tratt (dot) net>
2020-08-29Be consistent with control value output; ':' -> '='.Marcus Glocker
From Laurence Tratt <laurie (at) tratt (dot) net>
2020-08-23Allow auto controls to be set back to auto mode explicitly.Marcus Glocker
From Laurence Tratt <laurie (at) tratt (dot) net>
2020-08-16Update to xkbcomp 1.4.3Matthieu Herrb
2020-08-11Allow the combination of '-dc' options, reset and display control values.Marcus Glocker
Reported by Laurence Tratt.
2020-08-09Remove braces for single line control statement.Marcus Glocker
2020-08-09If a control supports auto mode and this is active, print 'auto' with -cMarcus Glocker
instead of printing the last set numeric value. Initial diff from Laurence Tratt with some enhancements added.