summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-05-16Update to xkbprint 1.0.5Matthieu Herrb
2020-05-16missed README->README.md transition in 1.5.1 update.Matthieu Herrb
2020-05-16Update to xrandr 1.5.1Matthieu Herrb
2020-05-16Update to libXxf86dga 1.1.5Matthieu Herrb
2020-05-16Update to libXrandr 1.5.2Matthieu Herrb
2020-05-16updateMatthieu Herrb
2020-05-16syncMatthieu Herrb
2020-05-16Update to libxcb 1.14 and xcb-proto 1.14. ok tb@Matthieu Herrb
2020-04-28syncMatthieu Herrb
2009-05-22import libxcb 1.2Matthieu Herrb
2009-05-22initial import of xcb-proto 1.4Matthieu Herrb
2020-04-28Stop providing /usr/X11R6/README. It contains mostly oudated informationMatthieu Herrb
and few people found it. Discussed with schwwarze@, sthen@.
2020-04-26updateMatthieu Herrb
2006-11-27Bring over distrib from XF4Matthieu Herrb
2020-04-25Fixed memory leak in xu_get_strprop.Tobias Stoeckmann
If a client calls XSetTextProperty for a window to clear all its properties, then allocated memory within libX11 is not freed. OK okan@
2020-04-20Release unused filedescriptors in the privileged X server process.Matthieu Herrb
There is no reason to keep /dev/pci* and /dev/ttyC* open in this process. pointed to by deraadt. ok kettenis@ deraadt@
2020-04-18Remove unused files.Matthieu Herrb
2020-04-16Prevent out of boundary write with configuration files in which too manyTobias Stoeckmann
quoted arguments are stored for other window managers. The quotation handling happens within the while loop without checking if the "end" limit has been already reached. If this happens, the final NULL assignment leads to an out of boundary write on stack. OK okan@
2020-04-16Allow configuring a percentage window size of the master window duringOkan Demirmen
htile/vtile actions. From Uwe Werler, with a few manpage tweaks.
2020-04-14dix: do not send focus event when grab actually does not changeMatthieu Herrb
upstream commit 364d64981549544213e2bca8de6ff8a5b2b5a69e Fixes an issue in xserver 1.20 where some applications were loosing focus. Naddy@ reported it appeards in SDL 1.2 games (burgerspace). tested and ok naddy@
2020-04-13updateMatthieu Herrb
2020-04-13Update to xserver 1.20.8. ok jsg@ robert@Matthieu Herrb
2020-04-03Remove #ifdef that doesn't make sense anymore; extend clang workaround toMark Kettenis
conver __sync_val_compare_and_swap. ok jsg@
2020-04-03Make this build on clang architectures that don't have 64-bit atomicMark Kettenis
instructions. Clang doesn't allow redeclaration (and therefore redefinition) of the __sync_* builtins. Use #pragma redefine_extname to work around that restriction. Clang also turns __sync_add_and_fetch into __sync_fetch_and_add (and __sync_sub_and_fetch into __sync_fetch_and_sub) in certain cases, so provide these functions as well. ok jsg@
2020-04-03test for 32 bit atomic builtins was incorrectly testing for 64 bit atomicsJonathan Gray
noticed when going over a macppc clang build error reported by deraadt@
2020-04-01sort architectures listMatthieu Herrb
2020-04-01Set the VT to be used by the X server on arm64 too. ok phessler@Matthieu Herrb
2020-03-24more xorg-macros.m4 to xhare/mi where it belongs. noticed by espie@Matthieu Herrb
2020-03-24zap stray tabsOkan Demirmen
2020-03-24Instead of using _NET_ACTIVE_WINDOW on restart, use the pointer locationOkan Demirmen
to determine what client to set active. Reduces a round trip for every window.
2020-03-23Add support for SIGINT/SIGTERM.Okan Demirmen
2020-03-20Simplify conditional construct.Tim van der Molen
OK okan@
2020-03-20Trim event_mask to those that the root window actually needs.Okan Demirmen
2020-03-20No need to lookup current client early; move to right before it isOkan Demirmen
needed.
2020-03-16Recommit 1.259, but now with TAILQ_FOREACH_SAFE.Tim van der Molen
From and OK okan@ Original commit message: Plug two memory leaks. Also get rid of a variable that is no longer necessary. OK okan@
2020-03-14Revert previous. Causes a crash as reported by Tom Murphy.Tim van der Molen
2020-03-13Simplify list markup.Tim van der Molen
OK okan@ schwarze@
2020-03-13Plug two memory leaks. Also get rid of a variable that is no longerTim van der Molen
necessary. OK okan@
2020-03-04Use modesetting driver as the default for rkdrm(4).Mark Kettenis
ok patrick@, jsg@
2020-02-28Remove ColormaskChange from event-mask since there's no event handler.Okan Demirmen
2020-02-27Unrelated style fixes, consistency changes and sorting, appropriateOkan Demirmen
dosage/removal of wrappers, simplification of name queue, client cycle joins other kb/mb bound functions.
2020-02-22updateMatthieu Herrb
2020-02-21add mips64, mips64el and powerpc to the list of archs with -O0 in CFLAGSJonathan Gray
builds were running out of memory requested by deraadt@
2020-02-20regenJonathan Gray
2020-02-20use futexes in Mesa on archs with atomicsJonathan Gray
tested by matthieu@ naddy@ and myself
2020-02-07Allow the 'empty' group clients to be window-{h,v}tile'd.Okan Demirmen
Behaviour (or lack there of) noticed by Raf Czlonka.
2020-02-05Add sanity checks to futex_wait()Matthieu Herrb
- handle the NULL timeout pointer case - avoid negative cases. Suggested by cheloha@ ok cheloha@, jsg@
2020-02-04updateMatthieu Herrb
2020-02-04Fix absolute to relative timeout computation. ok jsg@, mpi@Matthieu Herrb
2020-02-03Map ('5') and allow mod5mask (altgr) as a modifier.Okan Demirmen
From Artturi Alm (though changed from 'm' to '5')