Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-01-08 | If the mousebutton is unknown when we go to grab, don't just print a | Owain Ainsworth | |
warning, but also skip the XGrabButton call. Noticed by code inspection by okan@, but we agreed my fix was cleaner. ok okan. | |||
2009-01-08 | openchrome doesn't build if you have an xserver with DRI compiled in, | Owain Ainsworth | |
but you disable dri on in the driver build and don't have the via_drm.h it wants in dri mode. Work around this by changing the #define used to an openchrome only one, instead of overloading the XF86DRI identifier. Also disable the DRI build unconditionally. This is needed here since we don't provide the via DRM module, and i'm moving libdrm over to using the kernel headers (instead of libdrms own private copy of same... This is why kernel modules should be developed in kernel). We won't provide a via drm driver until it is re-written, since it is full of linuxisms (like futex). ok matthieu@, discussed with a few. tested by grange@ to prove it was a no-op functionality wise. | |||
2009-01-06 | add GeForce 9300 GE to the list of known chipsets, enough to get it working | Gilles Chehade | |
for me. ok matthieu@ | |||
2009-01-06 | Disable allowFontOps, allowTcapOps and allowWindowOps by default | Matthieu Herrb | |
on OpenBSD. | |||
2009-01-06 | xterm 238. includes fix for CVE-2008-2383. | Matthieu Herrb | |
2009-01-06 | remove "search should ignore the current window" from list, for the | Okan Demirmen | |
current behavior is better... ok oga@ | |||
2009-01-06 | HasXinerama is an int | Okan Demirmen | |
ok oga@ | |||
2009-01-06 | remove unused code | Okan Demirmen | |
ok oga@ | |||
2009-01-05 | Add 2 missing chunks from the 2.1.12 update. This adds support for | Matthieu Herrb | |
a bunch of new chipsets. Problem noticed by Greg Jones. | |||
2009-01-03 | Avoid infinit loop on make clean. Problem found by mglocker@. | Matthieu Herrb | |
2009-01-03 | Replace option "iBookHack" with option "MacModel" "ibook". | Matthieu Herrb | |
From Nicolas Legrand. | |||
2009-01-01 | Build xf86-video-wildcatfb on OpenBSD/sparc64, and explain how to configure it. | Miod Vallat | |
2009-01-01 | Simple unaccelerated driver for ifb(4) frame buffer, using a the X11 shadowfb | Miod Vallat | |
code to carry changes to both overlay areas. ok matthieu@ | |||
2009-01-01 | xedit 1.1.2 | Matthieu Herrb | |
2009-01-01 | mkfontscale 1.0.6 | Matthieu Herrb | |
2008-12-27 | sync | Todd T. Fries | |
2008-12-24 | clean /tmp propery like other scripts; prodded by deraadt@ | Todd T. Fries | |
2008-12-23 | unbreak build: -liboldX | David Krause | |
2008-12-23 | - move wsfb(4) to where it belongs. | Matthieu Herrb | |
- also rename via -> openchrome. | |||
2008-12-23 | - i810 -> intel, noticed by mpf@ (already fixed in -current X.Org) | Matthieu Herrb | |
- add a reference to wsfb(4). | |||
2008-12-23 | sync | Matthieu Herrb | |
2008-12-23 | I said remove deprecated library. | Matthieu Herrb | |
2008-12-23 | remove deprected library. | Matthieu Herrb | |
2008-12-23 | Remove deprecated driver. | Matthieu Herrb | |
2008-12-23 | Remove deprecated drivers that have been disabled for a while. | Matthieu Herrb | |
2008-12-23 | reenable xf86-video-i740 and xf86-video-voodoo on i386 after the last | Matthieu Herrb | |
updates. | |||
2008-12-23 | Disable build of deprecated proxymngr and xfindprox applications. | Matthieu Herrb | |
2008-12-23 | Remove obsolete applications (replaced by xinput). | Matthieu Herrb | |
2008-12-23 | A bunch of new releases. | Matthieu Herrb | |
2008-12-07 | Remove trailing white space. | Matthieu Herrb | |
2008-12-07 | Implement pci_device_read_rom() for arbitrary PCI cards, including | Matthieu Herrb | |
secondary VGA. With help from kettenis@. ok kettenis@, miod@. | |||
2008-12-04 | Kill obviously dead variable. | Owain Ainsworth | |
2008-12-03 | Don't ignore sigpipe. Everytime cwm forks it execs anyway (so it | Owain Ainsworth | |
shouldn't get that signal), and this causes problems for our children since they inherit the ignore. Pointed out by Jacek Masiulani in pr 6010; thanks! | |||
2008-12-01 | regen | Matthieu Herrb | |
2008-12-01 | xf86-video-intel 2.4.3. Tested by many. | Matthieu Herrb | |
2008-11-25 | Fix a logic error in pci_device_openbsd_write() that actually | Matthieu Herrb | |
prevented it to write anything. | |||
2008-11-23 | missing action in if statement. | Matthieu Herrb | |
2008-11-20 | sync | Todd T. Fries | |
2008-11-15 | sync | Matthieu Herrb | |
2008-11-11 | Fix from X.Org master git for XAA screen corruption. | Matthieu Herrb | |
XAA PixmapOps: Sync before accessing unwrapped callbacks. When using any XAAPixmapOps, we call into unknown but freshly unwrapped callbacks (like fb ones). Unlike the XAA*Fallback calls, we did so without syncing first, exposing us to all kinds of synchronisation issues. I believe that the rendering errors appeared now because *PaintWindow vanished (e4d11e58), and we just use miPaintWindow instead. This takes a less direct route to the hw and ends up at PolyFillRectPixmap, which very often left drawing artifacts. We now sync accordingly, and no longer get the rendering artifacts i was methodically reproducing on radeonhd, radeon, unichrome... Also, in order to allow driver authors to remove extensive syncing or flushing to hide this issue, create XAA_VERSION_ defines, put them in xaa.h and bump the patchlevel. tested by naddy@ and Edd Barrett. ok oga@. | |||
2008-11-10 | sync | Todd T. Fries | |
2008-11-10 | sync | Todd T. Fries | |
2008-11-09 | Patch from upstream: Only match PCI display devices in our display driver. | Matthieu Herrb | |
Apparently the server needs the driver to tell it that no, we really don't want screen sections on our NIC, USB hubs, bridge devices, etc. Stop whining about PROBE_DETECT in G80 PreInit and just bail out instead. Bug #18099: Xorg -configure tries to create a screen for every nvidia device. Problem also reported by form@ | |||
2008-11-08 | let make install obey ${DESTDIR}. | Matthieu Herrb | |
2008-11-06 | Merge alpha fix from X.Org instead of home grown one. | Matthieu Herrb | |
2008-11-06 | Set default acceleration method to EXA, like upstreams. | Matthieu Herrb | |
2008-11-06 | The xf86-video-nsc driver is deprecated and won't work with xserver 1.5. | Matthieu Herrb | |
Disable it. | |||
2008-11-06 | sync | Todd T. Fries | |
2008-11-05 | add -fPIC for sparc | Todd T. Fries | |
ugly, but ok matthieu@ | |||
2008-11-05 | more gcc2 fixes courtesy sparc | Todd T. Fries | |