diff options
author | Eric Anholt <anholt@FreeBSD.org> | 2005-01-02 00:32:07 +0000 |
---|---|---|
committer | Eric Anholt <anholt@FreeBSD.org> | 2005-01-02 00:32:07 +0000 |
commit | 08ae21589bcd1d97310653a08de59141f43e5365 (patch) | |
tree | afcc2c3e84a91f49ddb85cd5bae2ddfa57627248 /x11-servers/xorg-server-snap/files/patch-i830_video.c | |
parent | Reset bouncing maintainer address: (diff) |
[1] Fix a crash on startup with i830+ systems due to failure to follow an API
change that occurred.
[2] Install the xorg.conf referred to by xorg.conf(5). Installation was
disabled during the XF86 name avoidance phase, but could still be of use.
[3] Add a section about the Composite extension to xorg.conf.
[4] Add MakeDllModules YES to the WITH_DEBUG flag's options. While it won't
package correctly, you can't actually debug modules (where crashes almost always
happen) without it.
[5] Merge fixes from XORG-6_8-branch for i810 driver crashes in on CloseScreen,
ringbuffer lockups, and various warnings.
[6] Recognize R_ALPHA_SREL32 relocation type in elfloader.
PR: [1] ports/75425
[2] ports/73915
[6] ports/73257
Submitted by: [1] Marc Silver, marcs at draenor dot org
[2] Frank J. Laszlo, laszlof at vonostingroup dot com
[6] Ken Stailey kstailey at yahoo dot com
[6] r1.4 of X.Org CVS.
Approved by: portmgr
Diffstat (limited to 'x11-servers/xorg-server-snap/files/patch-i830_video.c')
-rw-r--r-- | x11-servers/xorg-server-snap/files/patch-i830_video.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/x11-servers/xorg-server-snap/files/patch-i830_video.c b/x11-servers/xorg-server-snap/files/patch-i830_video.c new file mode 100644 index 000000000000..259ad42669c1 --- /dev/null +++ b/x11-servers/xorg-server-snap/files/patch-i830_video.c @@ -0,0 +1,11 @@ +--- programs/Xserver/hw/xfree86/drivers/i810/i830_video.c.orig Fri Dec 31 13:43:36 2004 ++++ programs/Xserver/hw/xfree86/drivers/i810/i830_video.c Fri Dec 31 13:44:22 2004 +@@ -632,7 +632,7 @@ + pPriv->gamma0 = 0x080808; + + /* gotta uninit this someplace */ +- REGION_INIT(pScreen, &pPriv->clip, NullBox, 0); ++ REGION_NULL(pScreen, &pPriv->clip); + + pI830->adaptor = adapt; + |