summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-04-10syncMatthieu Herrb
2010-04-10Unlink deprecated xtrap, xevie and lbxutil libs and protos from the X build.Matthieu Herrb
ok oga@, deraadt@.
2010-04-10syncTodd T. Fries
2010-04-07Here's a really good idea: when preparing for a vt switch the intelOwain Ainsworth
driver idles the ringbuffer, stops it, unbinds all memory, then hands back off. Now here's the clever bit: just before we call to idle the ringbuffer (which sleeps waiting for an interrupt) let's TURN OFF THE FUCKING INTERRUPT. That's a great idea, really, isn't it? Move the interrupt disable to *after* stop_ring. Theo's T61 VT switches again. everyone elses' intel stuff worked by magic (or shared interrupts) before now. Fixed after discussion with deraadt@, thanks to miod for suggestions.
2010-04-06ifdef out the new code that moves the cursor one pixel to the rightMatthieu Herrb
for each char during password input. Requested by deraadt@.
2010-04-05syncTodd T. Fries
2010-04-05syncTodd T. Fries
2010-04-05syncMatthieu Herrb
2010-04-05syncMatthieu Herrb
2010-04-04syncMatthieu Herrb
2010-04-04syncMatthieu Herrb
2010-04-04syncMatthieu Herrb
2010-04-04updateMatthieu Herrb
2010-04-03updateMatthieu Herrb
2010-03-31update libdrm to 2.4.15.Owain Ainsworth
This diff seems larger than it is since upstream reindented some sources. This updates libdrm_intel to -current (which only affect the GEM code) and libdrm to 2.4.15. bumping both minor versions. Discussed with matthieu@
2010-03-30#if 0 out the code that listens for /dev/apm events.Owain Ainsworth
A cleaner fix will be forthcoming, but for now this allows the xserver to work nicely with the recent kernel vt-switch-on-suspend changes. ok miod@
2010-03-28disconnect bitstream-vera fonts from the build.Matthieu Herrb
They are superceeded by DejaVu. reminded by naddy@.
2010-03-28updatesMatthieu Herrb
2010-03-28Update to xinput 1.5.1Matthieu Herrb
2010-03-28Update to xkbprint 1.0.2Matthieu Herrb
2010-03-28update to xkbevd 1.1.0.Matthieu Herrb
2010-03-28Update to xvidtune 1.0.2Matthieu Herrb
2010-03-28missed files in update to 1.0.2Matthieu Herrb
2010-03-28Update to xmessage 1.0.3.Matthieu Herrb
2010-03-28regenMatthieu Herrb
2010-03-28Install pkg-config file in $(libdir)/pkgconfigMatthieu Herrb
2010-03-28update to util-macros 1.6.1.Matthieu Herrb
Might help with doc formatting issues.
2010-03-28update to xlogo 1.0.2Matthieu Herrb
2010-03-28Update to xgc 1.0.2Matthieu Herrb
2010-03-28Disable xprint support.Matthieu Herrb
2010-03-28Update to xeyes 1.1.0Matthieu Herrb
2010-03-28Update to xdm 1.1.9Matthieu Herrb
2010-03-28Update to xcalc 1.0.3Matthieu Herrb
2010-03-28Update to xbiff 1.0.2Matthieu Herrb
2010-03-27Update to viewres 1.0.2Matthieu Herrb
2010-03-27Update to listres 1.0.2Matthieu Herrb
2010-03-25updatesMatthieu Herrb
2010-03-25Update to xterm-255. Tested by stsp@, oga@.Matthieu Herrb
2010-03-25Update to pixman 0.16.6. Tested on a full ports build by naddy@.Matthieu Herrb
2010-03-25Update to fontconfig 2.8.0. Tested on a full ports build by naddy@.Matthieu Herrb
2010-03-25Update to fontconfig 2.8.0. Tested on a full ports build by naddy@.Matthieu Herrb
2010-03-25Missing resurected files in freetype 2.3.12Matthieu Herrb
2010-03-25Update to freetpe 2.3.12. Tested against ports by naddy@.Matthieu Herrb
2010-03-25Update to freetpe 2.3.12. Tested against ports by naddy@.Matthieu Herrb
2010-03-23add a -v flag to select verbose mode, to output raw coordinate readMatthieu Herrb
from the device, for debugging.
2010-03-22syncTodd T. Fries
2010-03-22start at socppcTodd T. Fries
2010-03-20Fix formatting errors breaking the xenocara mandoc(1) build:Ingo Schwarze
* .Bl may only have .It children * .SH requires an argument * blank lines are illegal outside literal context Now "cd /usr/xenocara && make man" succeeds, but unfortunately, that covers a minority of X11 manuals only. ok matthieu@
2010-03-20The reply type could be XCB_NONE if the property is not present.Matthieu Herrb
Patch from upstreams, pointed out by David Coppa.
2010-03-20Validate size of wm_hints and wm_size_hintsMatthieu Herrb
Without these checks, we can overflow the buffer or divide by zero. Patch from upstreams, From David Coppa.