lp:~thopiekar/xorg-server/+git/xorg-xserver

Get this repository:
git clone https://git.launchpad.net/~thopiekar/xorg-server/+git/xorg-xserver

Import details

Import Status: Reviewed

This repository is an import of the Git repository at https://gitlab.freedesktop.org/xorg/xserver.git.

The next import is scheduled to run .

Last successful import was .

Import started on juju-98ee42-prod-launchpad-codeimport-5 and finished taking 2 minutes — see the log
Import started on juju-98ee42-prod-launchpad-codeimport-1 and finished taking 1 minute — see the log
Import started on juju-98ee42-prod-launchpad-codeimport-1 and finished taking 2 minutes — see the log
Import started on juju-98ee42-prod-launchpad-codeimport-5 and finished taking 50 seconds — see the log
Import started on juju-98ee42-prod-launchpad-codeimport-5 and finished taking 2 minutes — see the log
Import started on juju-98ee42-prod-launchpad-codeimport-5 and finished taking 2 minutes — see the log
Import started on juju-98ee42-prod-launchpad-codeimport-1 and finished taking 2 minutes — see the log
Import started on juju-98ee42-prod-launchpad-codeimport-0 and finished taking 1 minute — see the log
Import started on juju-98ee42-prod-launchpad-codeimport-5 and finished taking 2 minutes — see the log
Import started on juju-98ee42-prod-launchpad-codeimport-1 and finished taking 1 minute — see the log

Branches

Name Last Modified Last Commit
xwayland-24.1 2024-04-18 07:17:07 UTC
m4: drop autoconf leftovers

Author: Enrico Weigelt, metux IT consult
Author Date: 2024-02-15 13:22:38 UTC

m4: drop autoconf leftovers

these m4 macros had been used for autotools-based build system. But since this
had been replaced by meson, these files are obsolete now.

Fixes: c97397dc47f7a25858052f52dd9396ec564065b4
Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
(cherry picked from commit 887fc7121bb6661808bb5bb58b44e624934730ca)

Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1487>

master 2024-04-18 01:03:11 UTC
xfree86: x86emu: fix warning on unneccessary abs()

Author: Enrico Weigelt, metux IT consult
Author Date: 2024-03-21 12:56:32 UTC

xfree86: x86emu: fix warning on unneccessary abs()

fix warning:

> In file included from ../hw/xfree86/int10/x86emu.c:11:
> ../hw/xfree86/x86emu/prim_ops.c:2478:9: warning: taking the absolute value of unsigned type 'x86emuu32' (aka 'unsigned int') has no effect [-Wabsolute-value]
> if (abs(div) > 0xff) {
> ^
> ../hw/xfree86/x86emu/prim_ops.c:2478:9: note: remove the call to 'abs' since unsigned values cannot be negative
> if (abs(div) > 0xff) {
> ^~~
> ../hw/xfree86/x86emu/prim_ops.c:2502:9: warning: taking the absolute value of unsigned type 'x86emuu32' (aka 'unsigned int') has no effect [-Wabsolute-value]
> if (abs(div) > 0xffff) {
> ^
> ../hw/xfree86/x86emu/prim_ops.c:2502:9: note: remove the call to 'abs' since unsigned values cannot be negative
> if (abs(div) > 0xffff) {
> ^~~

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1428>

xwayland-23.2 2024-04-17 23:12:27 UTC
m4: drop autoconf leftovers

Author: Enrico Weigelt, metux IT consult
Author Date: 2024-02-15 13:22:38 UTC

m4: drop autoconf leftovers

these m4 macros had been used for autotools-based build system. But since this
had been replaced by meson, these files are obsolete now.

Fixes: c97397dc47f7a25858052f52dd9396ec564065b4
Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
(cherry picked from commit 887fc7121bb6661808bb5bb58b44e624934730ca)

Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1493>

server-21.1-branch 2024-04-12 17:09:23 UTC
xserver 21.1.13

Author: Matt Turner
Author Date: 2024-04-12 17:09:23 UTC

xserver 21.1.13

Signed-off-by: Matt Turner <mattst88@gmail.com>

xwayland-23.1 2023-06-06 09:20:05 UTC
Bump version to 23.1.2

Author: Olivier Fourdan
Author Date: 2023-06-06 09:18:57 UTC

Bump version to 23.1.2

Signed-off-by: Olivier Fourdan <ofourdan@redhat.com>

xwayland-22.1 2023-04-27 09:26:02 UTC
xwayland/window: Queue damage after commits are allowed

Author: Jonas Ådahl
Author Date: 2023-03-31 14:01:20 UTC

xwayland/window: Queue damage after commits are allowed

Compositors may use XWAYLAND_ALLOW_COMMITS to communicate when Xwayland
may or may not commit new buffers to a wl_surface. If commits are
denied, then later allowed, we'll only get a buffer attached if there is
actual damage posted, which might be long after.

This fixes an issue where the window manager would reparent a window
while denying commits, then after reparenting, allow commits. The window
in question belonged to a game and took several seconds produce the next
frame, resulting in an empty window appearing as if it had just
disappeared.

Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
(cherry picked from commit 9a55c402aa803fb10e39ab4fd18a709d0cd06fd4)

xwayland-21.1 2022-12-19 03:58:25 UTC
Xext: fix invalid event type mask in XTestSwapFakeInput

Author: Peter Hutterer
Author Date: 2022-12-19 00:06:45 UTC

Xext: fix invalid event type mask in XTestSwapFakeInput

In commit b320ca0 the mask was inadvertently changed from octal 0177 to
hexadecimal 0x177.

Fixes commit b320ca0ffe4c0c872eeb3a93d9bde21f765c7c63
  Xtest: disallow GenericEvents in XTestSwapFakeInput

Found by Stuart Cassoff

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
(cherry picked from commit bb1711b7fba42f2a0c7d1c09beee241a1b2bcc30)

server-1.20-branch 2022-07-02 21:50:04 UTC
XQuartz: Improve type safety for X11Controller's application menu editor

Author: Jeremy Sequoia
Author Date: 2022-07-02 21:15:50 UTC

XQuartz: Improve type safety for X11Controller's application menu editor

Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
(cherry picked from commit 4cfdc5af31ae8282903d0f65cff858330b9f9d1a)

server-1.19-branch 2022-06-16 14:28:57 UTC
XQuartz: Ensure scroll events are delivered to a single window (not both X11 ...

Author: Jeremy Sequoia
Author Date: 2022-06-16 07:10:26 UTC

XQuartz: Ensure scroll events are delivered to a single window (not both X11 and AppKit)

Fixes: https://github.com/XQuartz/XQuartz/issues/130
Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
(cherry picked from commit 4532b696c644cb7f21e96cf76d3e6b21ccc0e309)

server-1.18-branch 2022-06-15 05:11:17 UTC
Revert "randr: Initialize RandR even if there are currently no screens attached"

Author: Jeremy Sequoia
Author Date: 2022-06-15 05:11:17 UTC

Revert "randr: Initialize RandR even if there are currently no screens attached"

This wasn't intended to be present in the merged patch series. Sorry for the noise.

This reverts commit 6f13c13ed69078d4ed33cfb53b804b04c2cb702d.

server-1.17-branch 2015-10-28 16:30:47 UTC
xserver 1.17.4

Author: Adam Jackson
Author Date: 2015-10-28 16:30:44 UTC

xserver 1.17.4

server-1.16-branch 2015-02-10 23:33:17 UTC
Bump to 1.16.4

Author: Julien Cristau
Author Date: 2015-02-10 23:33:17 UTC

Bump to 1.16.4

Signed-off-by: Julien Cristau <jcristau@debian.org>

server-1.15-branch 2014-06-27 00:57:48 UTC
Bump version to 1.15.2

Author: Peter Hutterer
Author Date: 2014-06-27 00:57:48 UTC

Bump version to 1.15.2

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>

server-1.14-branch 2014-06-06 04:05:32 UTC
Bump revision from 1.14.6 to 1.14.7

Author: Matt Dew
Author Date: 2014-06-06 04:05:32 UTC

Bump revision from 1.14.6 to 1.14.7

server-1.13-branch 2013-04-17 05:50:48 UTC
xserver 1.13.4

Author: Peter Hutterer
Author Date: 2013-04-17 05:50:48 UTC

xserver 1.13.4

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>

server-1.12-branch 2012-10-15 00:42:25 UTC
XQuartz: Avoid a possible deadlock with DRI on OS X 10.7.5 and OS X 10.8.2

Author: Jeremy Sequoia
Author Date: 2012-09-21 04:49:40 UTC

XQuartz: Avoid a possible deadlock with DRI on OS X 10.7.5 and OS X 10.8.2

<rdar://problem/12338921>
http://bugs.winehq.org/show_bug.cgi?id=31751

Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
(cherry picked from commit 25d26875bc9bd6fd23ae1b5280f015abf1b033b7)

server-1.11-branch 2012-04-16 23:55:07 UTC
Avoid crash on button events on device without valuators.

Author: Michal Suchanek
Author Date: 2012-02-29 13:43:16 UTC

Avoid crash on button events on device without valuators.

Backport of 2416ee4a015068359807a10f433e8c54192c78a9.

Signed-off-by: Michal Suchanek <hramrach@gmail.com>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>

server-1.10-branch 2012-02-24 19:34:23 UTC
XQuartz: Short-circuit activateX:

Author: Jeremy Sequoia
Author Date: 2012-02-17 21:44:12 UTC

XQuartz: Short-circuit activateX:

This also avoids a deadlock when calling activateX: before the server
thread has initialized

Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
(cherry picked from commit cb6a32da27f09261c4d561c19d1877c750d98cc3)

Conflicts:

 hw/xquartz/X11Application.m

server-1.9-branch 2011-10-29 17:09:07 UTC
Fix CVE-2011-4029: File permission change vulnerability.

Author: Matthieu Herrb
Author Date: 2011-10-17 20:27:35 UTC

Fix CVE-2011-4029: File permission change vulnerability.

Use fchmod() to change permissions of the lock file instead
of chmod(), thus avoid the race that can be exploited to set
a symbolic link to any file or directory in the system.

Signed-off-by: Matthieu Herrb <matthieu.herrb@laas.fr>
Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
(cherry picked from commit b67581cf825940fdf52bf2e0af4330e695d724a4)

server-1.8-branch 2011-10-29 16:59:32 UTC
Fix CVE-2011-4029: File permission change vulnerability.

Author: Matthieu Herrb
Author Date: 2011-10-17 20:27:35 UTC

Fix CVE-2011-4029: File permission change vulnerability.

Use fchmod() to change permissions of the lock file instead
of chmod(), thus avoid the race that can be exploited to set
a symbolic link to any file or directory in the system.

Signed-off-by: Matthieu Herrb <matthieu.herrb@laas.fr>
Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
(cherry picked from commit b67581cf825940fdf52bf2e0af4330e695d724a4)

server-1.7-branch 2011-10-21 18:43:22 UTC
Fix CVE-2011-4029: File permission change vulnerability.

Author: Matthieu Herrb
Author Date: 2011-10-17 20:27:35 UTC

Fix CVE-2011-4029: File permission change vulnerability.

Use fchmod() to change permissions of the lock file instead
of chmod(), thus avoid the race that can be exploited to set
a symbolic link to any file or directory in the system.

Signed-off-by: Matthieu Herrb <matthieu.herrb@laas.fr>
Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
(cherry picked from commit b67581cf825940fdf52bf2e0af4330e695d724a4)
(cherry picked from commit 12f65819ffb04103f170ecd7e281348de618fc4c)

server-1.7-nominations 2010-08-25 15:50:41 UTC
configure.ac: Exit to encourage commit to server-1.7-branch

Author: Jeremy Sequoia
Author Date: 2010-08-25 15:50:41 UTC

configure.ac: Exit to encourage commit to server-1.7-branch

Also refer to the wiki for more info and clarification

Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>

compat_output 2010-02-25 19:37:05 UTC
Allow for missing or disabled compat_output

Author: Keith Packard
Author Date: 2010-02-25 19:37:05 UTC

Allow for missing or disabled compat_output

When the compat output is missing (I don't think this is actually
possible), or is disabled (and hence has no crtc), we would like to
avoid dereferencing NULL pointers. This patch creates inline functions
to extract the current compat output, crtc or associated RandR crtc
structure, carefully checking for NULL pointers everywhere.

Signed-off-by: Keith Packard <keithp@keithp.com>

dri2-swapbuffers 2009-10-29 21:28:11 UTC
Fixup validDrawable usage

Author: Jesse Barnes
Author Date: 2009-10-29 21:28:11 UTC

Fixup validDrawable usage

server-1.6-branch 2009-10-27 21:32:09 UTC
xselinux: Use a more informative message when disabled by boolean.

Author: Eamon Walsh
Author Date: 2009-10-26 23:17:37 UTC

xselinux: Use a more informative message when disabled by boolean.

Signed-off-by: Eamon Walsh <ewalsh@tycho.nsa.gov>
Signed-off-by: Keith Packard <keithp@keithp.com>

xorg-server-1.6-apple 2009-10-19 00:00:23 UTC
1.6.5-apple2

Author: Jeremy Sequoia
Author Date: 2009-10-19 00:00:23 UTC

1.6.5-apple2

xorg-server-1.5-apple 2009-10-18 23:59:03 UTC
1.5.3-apple18

Author: Jeremy Sequoia
Author Date: 2009-10-18 23:59:03 UTC

1.5.3-apple18

xorg-server-1.4-apple 2009-10-18 22:58:14 UTC
1.4.2-apple50

Author: Jeremy Sequoia
Author Date: 2009-10-18 22:58:14 UTC

1.4.2-apple50

xorg-server-1.7-apple 2009-10-13 19:54:56 UTC
Rootless: src drawable window can now be NULL

Author: Jeremy Sequoia
Author Date: 2009-10-13 19:54:56 UTC

Rootless: src drawable window can now be NULL

Fix a possible crash when pSrc->pDrawable is NULL.

Signed-off-by: Colin Harrison <colin.harrison@virgin.net>
Signed-off-by: Jeremy Huddleston <jeremyhu@freedesktop.org>

server-1.5-branch 2009-04-17 03:50:13 UTC
security: Grant untrusted windows remove access on all windows.

Author: Eamon Walsh
Author Date: 2009-04-17 02:48:11 UTC

security: Grant untrusted windows remove access on all windows.

This allows untrusted clients to destroy their own windows when they
have been reparented by a trusted window manager.
(cherry picked from commit 4559d2ace6ac55fe361f572ded0769cdd1f3b545)

dmx-2 2009-01-26 23:41:32 UTC
Add dbus method attachScreenAt.

Author: David Reveman
Author Date: 2009-01-26 23:41:32 UTC

Add dbus method attachScreenAt.

server-1.6-enterleave 2009-01-11 23:56:28 UTC
dix: move focus handling into enterleave.c.

Author: Keith Packard
Author Date: 2009-01-11 23:56:28 UTC

dix: move focus handling into enterleave.c.

This commit moves the focus handling from events.c into enterleave.c and
implements a model similar to the core enter/leave model.
For a full description of the model, see:
http://lists.freedesktop.org/archives/xorg/2008-December/041740.html

This commit also gets rid of the focusinout array in the WindowRec, ditching
it in favour of a local array that keeps the current focus window for each
device.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
(cherry picked from commit eb2d7b3d700952ba88c77deacf687b251300e660)

Conflicts:

 dix/events.c
 include/input.h

Signed-off-by: Keith Packard <keithp@keithp.com>

panning-for-server-1.6 2008-12-12 10:01:59 UTC
randr: Fix initial panning border copy

Author: Matthias Hopf
Author Date: 2008-12-11 17:48:02 UTC

randr: Fix initial panning border copy

Thanks to Julien Cristau for finding this.

gsr-current 2008-11-24 21:21:14 UTC
Require randrproto 1.3 for GetScreenResourcesCurrent

Author: Adam Jackson
Author Date: 2008-11-24 21:21:14 UTC

Require randrproto 1.3 for GetScreenResourcesCurrent

transform-proposal 2008-09-12 00:06:07 UTC
fix stale dri2 build

Author: Keith Packard
Author Date: 2008-09-12 00:06:07 UTC

fix stale dri2 build

xorg-server-1.2-apple 2008-08-21 18:04:58 UTC
Re-added LSBackgroundOnly which got removed from the plist

Author: Jeremy Sequoia
Author Date: 2008-08-21 18:04:58 UTC

Re-added LSBackgroundOnly which got removed from the plist

glucose-2 2008-08-20 09:54:07 UTC
Merge branch 'master' of git+ssh://git.freedesktop.org/git/xorg/xserver into ...

Author: Alan Hourihane
Author Date: 2008-08-20 09:54:07 UTC

Merge branch 'master' of git+ssh://git.freedesktop.org/git/xorg/xserver into glucose-2

Conflicts:

 configure.ac
 glx/glxcmds.c
 hw/xfree86/Makefile.am
 hw/xquartz/bundle/Resources/English.lproj/main.nib/designable.nib
 hw/xquartz/bundle/Resources/English.lproj/main.nib/keyedobjects.nib

server-1.4-branch 2008-07-30 01:40:44 UTC
Fix potential crasher in xf86CrtcRotate()

Author: Alex Deucher (none)
Author Date: 2008-01-04 03:53:36 UTC

Fix potential crasher in xf86CrtcRotate()

xf86CrtcRotate() is called by randr 1.2 drivers via xf86CrtcSetMode() or xf86SetDesiredModes()
during ScreenInit() at which point pScrn->pScreen is not set. If a user specifies a rotation
in their config file pScrn->pScreen is dereferenced and boom.

server-1.3-branch 2008-06-11 19:08:15 UTC
CVE-2008-2360 - RENDER Extension heap buffer overflow

Author: Matthieu Herrb
Author Date: 2008-06-08 17:13:47 UTC

CVE-2008-2360 - RENDER Extension heap buffer overflow

An integer overflow may occur in the computation of the size of the
glyph to be allocated by the AllocateGlyph() function which will cause
less memory to be allocated than expected, leading to later heap
overflow.

On systems where the X SIGSEGV handler includes a stack trace, more
malloc()-type functions are called, which may lead to other
exploitable issues.
(cherry picked from commit b1a4a96885bf191d5f4afcfb2b41a88631b8412b)

mpx 2008-05-26 08:44:31 UTC
xfree86: Bump XINPUT ABI to 3.0.

Author: Peter Hutterer
Author Date: 2008-05-26 08:31:07 UTC

xfree86: Bump XINPUT ABI to 3.0.

xquartz-composite 2008-04-22 02:58:29 UTC
Nuke a call to deprecated LookupClient, and hopefully prevent a

Author: Ben Byer
Author Date: 2008-04-22 02:55:54 UTC

Nuke a call to deprecated LookupClient, and hopefully prevent a
null-pointer dereference, too!
(cherry picked from commit 3d28e9f953709914e18807bc74c241333671cb30)

xgl-0-0-1 2008-03-14 14:51:10 UTC
Nuked wrong break in -display option parsing

Author: Matthias Hopf
Author Date: 2008-03-14 14:51:10 UTC

Nuked wrong break in -display option parsing

Resulted in server display number not parsed if specified after a
-display option.

XACE-SELINUX 2008-02-08 22:33:54 UTC
xselinux: Implement support for property polyinstantiation.

Author: Eamon Walsh
Author Date: 2008-02-08 22:33:54 UTC

xselinux: Implement support for property polyinstantiation.

no-pci-rework 2007-09-27 11:08:41 UTC
EXA: Make sure tile offsets passed to drivers are never negative.

Author: Michel Dänzer
Author Date: 2007-09-27 11:08:41 UTC

EXA: Make sure tile offsets passed to drivers are never negative.

Thanks to Björn Steinbrink for pointing out the problem on IRC.

pci-rework 2007-08-24 01:19:17 UTC
Merge branch 'master' of git+ssh://git.freedesktop.org/git/xorg/xserver into ...

Author: Ian Romanick
Author Date: 2007-08-24 01:19:17 UTC

Merge branch 'master' of git+ssh://git.freedesktop.org/git/xorg/xserver into pci-rework

Conflicts:

 hw/xfree86/common/xf86.h
 hw/xfree86/common/xf86Init.c
 hw/xfree86/common/xf86pciBus.c
 hw/xfree86/int10/generic.c
 hw/xfree86/int10/helper_exec.c
 hw/xfree86/loader/xf86sym.c
 hw/xfree86/os-support/bus/Pci.c
 hw/xfree86/os-support/bus/Pci.h
 hw/xfree86/os-support/bus/linuxPci.c
 hw/xfree86/os-support/linux/int10/linux.c

randr-dpms 2007-07-13 17:25:46 UTC
Add support for new RandR output dpms change event.

Author: Eric Anholt
Author Date: 2007-07-13 17:25:46 UTC

Add support for new RandR output dpms change event.

wonderland-dev 2007-06-05 03:23:56 UTC
Added debug code (currently disabled)

Author: Deron (none)
Author Date: 2007-06-05 03:23:56 UTC

Added debug code (currently disabled)

server-1.2-branch 2007-02-15 17:22:08 UTC
configure.ac: exit 1 to encourage use of 1.3 branch

Author: Daniel Stone
Author Date: 2007-02-15 17:22:08 UTC

configure.ac: exit 1 to encourage use of 1.3 branch

randr-1.2-for-server-1.2 2007-01-31 03:05:20 UTC
Allow DDX to not supply a property set notification function.

Author: Keith Packard
Author Date: 2007-01-31 03:05:20 UTC

Allow DDX to not supply a property set notification function.

Check rrOutputSetProperty and only call if it isn't NULL.

exa-damagetrack 2006-12-19 17:57:22 UTC
EXA: Lots of damage tracking fixes.

Author: Michel Dänzer
Author Date: 2006-12-19 17:57:22 UTC

EXA: Lots of damage tracking fixes.

Mostly due to exaDrawableDirty() now calculating the backing pixmap coordinates
internally, for cases where they aren't trivially known. There's a new
exaPixmapDirty() function for the other cases.

randr-1.2 2006-11-27 22:46:50 UTC
Add some mode helper functions from the intel driver.

Author: Eric Anholt
Author Date: 2006-11-27 22:46:50 UTC

Add some mode helper functions from the intel driver.

This also removes static from some other functions that had been copied out
to at least the intel driver, but perhaps others that were doing mode list
handling.

lg3d-7.2 2006-11-24 23:37:39 UTC
Fix the Xvfb visuals bug a better way

Author: Deron
Author Date: 2006-11-24 23:37:39 UTC

Fix the Xvfb visuals bug a better way

lg3d-dev 2006-11-23 19:41:30 UTC
Populate branch.

Author: Deron
Author Date: 2006-11-23 19:41:30 UTC

Populate branch.

input-hotplug 2006-11-02 01:18:13 UTC
Merge branch 'master' of git+ssh://git.freedesktop.org/git/xorg/xserver into ...

Author: Daniel Stone
Author Date: 2006-11-02 01:18:13 UTC

Merge branch 'master' of git+ssh://git.freedesktop.org/git/xorg/xserver into input-hotplug

orib-soc-2006 2006-10-29 17:22:35 UTC
Updated to compile against new XCB, fixed configure.ac help message.

Author: Ori Bernstein
Author Date: 2006-10-29 17:22:35 UTC

Updated to compile against new XCB, fixed configure.ac help message.

XACE-modular 2006-09-15 19:26:57 UTC
Merge branch 'master' into my-XACE-modular

Author: Eamon Walsh
Author Date: 2006-09-15 19:26:57 UTC

Merge branch 'master' into my-XACE-modular

autoconfig-for-7.2 2006-09-14 23:28:44 UTC
Always believe the monitor when it reports a reduced-blanking mode.

Author: Adam Jackson
Author Date: 2006-09-14 23:28:44 UTC

Always believe the monitor when it reports a reduced-blanking mode.

CVT reduced blanking modes are typically only seen on digital connections to
LCDs, but there are some monitors that report them as supported over the
VGA connector too, which is perfectly legitimate, electrically speaking.

server-1_1-branch 2006-07-08 00:54:08 UTC
Bump package version to 1.1.1 for release, and vendor release to 7.1.1.0.

Author: Eric Anholt
Author Date: 2006-07-08 00:54:08 UTC

Bump package version to 1.1.1 for release, and vendor release to 7.1.1.0.

It was decided to retain the vendorrelease being related to the katamari version
for now, to be resolved in a later major release.

server-1_0-branch 2006-03-20 14:00:37 UTC
Bug #6213: Check geteuid's return value, not its address, otherwise

Author: Adam Jackson
Author Date: 2006-03-20 14:00:37 UTC

Bug #6213: Check geteuid's return value, not its address, otherwise
    unprivileged users can set the modulepath and run arbitrary code. Patch
    from Matthieu Herrb. (CVE-2006-0745, Coverity #4)
Bump to 1.0.2.

lg3d-dev-0-7-1 2005-08-30 12:42:32 UTC
Integrate needed changes to support Multiscreen in LG, it is now more

Author: Amir Bukhari
Author Date: 2005-08-30 12:42:32 UTC

Integrate needed changes to support Multiscreen in LG, it is now more
    stable.

CYGWIN 2005-07-15 17:42:34 UTC
Added layout "Polish (Programmers)" as pl

Author: Alexander Gottwald
Author Date: 2005-07-15 17:42:34 UTC

Added layout "Polish (Programmers)" as pl

lg3d-master 2005-06-21 23:47:42 UTC
Removed debug code that sneaked into the CVS

Author: Deron Johnson
Author Date: 2005-06-21 23:47:42 UTC

Removed debug code that sneaked into the CVS

lg3d-dev-0-7-0 2005-06-21 23:47:42 UTC
Removed debug code that sneaked into the CVS

Author: Deron Johnson
Author Date: 2005-06-21 23:47:42 UTC

Removed debug code that sneaked into the CVS

sco_port_update 2005-06-10 06:54:08 UTC
SCO port update for SCO OpenServer 5 and UnixWare 7. A few general cleanups

Author: Kean Johnson
Author Date: 2005-06-10 06:54:08 UTC

SCO port update for SCO OpenServer 5 and UnixWare 7. A few general cleanups
    and bugs not specifically related to the port fixed along the way.

lg3d-dev-0-6-2 2005-03-04 23:22:00 UTC
lg3d-dev-6-1-1-2: Fix bug 157: Stability: Escher events sometimes cross

Author: Deron Johnson
Author Date: 2005-03-04 23:22:00 UTC

lg3d-dev-6-1-1-2: Fix bug 157: Stability: Escher events sometimes cross
    over to the wrong Display

lg3d-dev-0-6-1-1 2005-03-04 23:22:00 UTC
lg3d-dev-6-1-1-2: Fix bug 157: Stability: Escher events sometimes cross

Author: Deron Johnson
Author Date: 2005-03-04 23:22:00 UTC

lg3d-dev-6-1-1-2: Fix bug 157: Stability: Escher events sometimes cross
    over to the wrong Display

XORG-6_8-branch 2005-02-08 00:44:27 UTC
Update formatted docs.

Author: Kevin E Martin
Author Date: 2005-02-08 00:44:27 UTC

Update formatted docs.

lg3d 2005-01-20 23:47:26 UTC
Integrate changes for release-0-6-1

Author: Deron Johnson
Author Date: 2005-01-20 23:47:26 UTC

Integrate changes for release-0-6-1

lg3d-dev-0-6-1-latest 2005-01-16 00:09:53 UTC
Part of the fix for 193. (lg3d-x11 0-6-1-18).

Author: Deron Johnson
Author Date: 2005-01-16 00:09:53 UTC

Part of the fix for 193. (lg3d-x11 0-6-1-18).

lg3d-dev-0-6-1-current 2005-01-08 05:52:50 UTC
Integrate changes up to lg3d-dev-0-6-1-15 plus lg3d-dev-0-6-1-16 (disabled

Author: Deron Johnson
Author Date: 2005-01-08 05:52:50 UTC

Integrate changes up to lg3d-dev-0-6-1-15 plus lg3d-dev-0-6-1-16 (disabled
    debug visualize).

lg3d-dev-0-6-1 2005-01-06 04:14:03 UTC
Integrate updates from Xorg 6.8.2 RC2.

Author: Deron Johnson
Author Date: 2005-01-06 04:14:03 UTC

Integrate updates from Xorg 6.8.2 RC2.
VS: ----------------------------------------------------------------------

lg3d-event 2004-12-09 18:59:52 UTC
Assorted bug fixes and cleanup for lg3d-x11-dev-0.6.1.8

Author: Deron Johnson
Author Date: 2004-12-09 18:59:52 UTC

Assorted bug fixes and cleanup for lg3d-x11-dev-0.6.1.8

lg3d-dev-0-6-latest 2004-09-16 23:37:23 UTC
Initially populate the lg3d branch with lg3d code.

Author: Deron Johnson
Author Date: 2004-09-16 23:37:23 UTC

Initially populate the lg3d branch with lg3d code.

COMPOSITEWRAP 2004-07-31 07:52:02 UTC
Rewrite render support in composite wrapper to (almost) work. FIXME:

Author: Keith Packard
Author Date: 2004-07-31 07:52:02 UTC

Rewrite render support in composite wrapper to (almost) work. FIXME:
    PaintWindowBackground/CopyWindow is still broken.
Remove mfb from Xvfb. Use standard visual formats so Render actually works.

XPRINT 2004-04-20 03:27:09 UTC
Fix for http://xprint.freedesktop.org/cgi-bin/bugzilla/show_bug.cgi?id=491

Author: Roland Mainz
Author Date: 2004-04-20 03:27:09 UTC

Fix for http://xprint.freedesktop.org/cgi-bin/bugzilla/show_bug.cgi?id=491
    - RFE: Need workaround for bug 467 ("Xfree86 smart scheduler breaks
    Xprt")

bcook-backend 2004-04-12 02:23:11 UTC
Some little debugging additions; this works well with my NM2200 when

Author: Brent Cook
Author Date: 2004-04-12 02:23:11 UTC

Some little debugging additions; this works well with my NM2200 when
    acceleration is turned off in fbdev mode, but hangs when acceleration
    is on. Will merge this with HEAD and debug from there, since backend
    seems in good shape.

XORG-RELEASE-1 2004-04-06 22:09:45 UTC
made server also accept -xf86config

Author: Egbert Eich
Author Date: 2004-04-06 22:09:45 UTC

made server also accept -xf86config

XORG-RELEASE-1-STSF 2004-04-02 21:47:33 UTC
70. Merging in the TM branch (Egbert Eich).

Author: Egbert Eich
Author Date: 2004-04-02 21:47:33 UTC

70. Merging in the TM branch (Egbert Eich).

DAMAGE-XFIXES 2004-04-02 06:31:37 UTC
Memory overrun due to incomplete implementation of saveSetElt data

Author: Stuart Kreitman
Author Date: 2004-04-02 06:31:37 UTC

Memory overrun due to incomplete implementation of saveSetElt data
    structure
Modified Files: Tag: DAMAGE-XFIXES window.c dixutils.c

XORG-RELEASE-1-TM 2004-04-01 08:28:56 UTC
47. Update formatted docs (I hope I got everything) (Keith Packard)

Author: Keith Packard
Author Date: 2004-04-01 08:28:56 UTC

47. Update formatted docs (I hope I got everything) (Keith Packard)

IPv6-REVIEW 2004-03-13 18:48:40 UTC
ServerInterpreted address family additions for IPv6 public review

Author: Alan Coopersmith
Author Date: 2004-03-13 18:48:40 UTC

ServerInterpreted address family additions for IPv6 public review

XEVIE 2004-03-01 15:06:59 UTC
3. Added missing parts to XKB to make XEVIE branch compile (Egbert Eich).

Author: Egbert Eich
Author Date: 2004-03-01 15:06:59 UTC

3. Added missing parts to XKB to make XEVIE branch compile (Egbert Eich).
2. Merged with XORG-CURRENT branch to obtain a bugfix (Egbert Eich).
1. First add of SUN's XIVIE extension (Stuart Kreitman).

dri-0-1-branch 2003-12-29 05:10:55 UTC
- Disable libdrm verbosity. It isn't important enough yet to make a

Author: Eric Anholt
Author Date: 2003-12-29 05:10:55 UTC

- Disable libdrm verbosity. It isn't important enough yet to make a
    run-time flag for it.
- Fix the (void)atic; tricks to quiet unused variable warnings in ATI
    template files. Mixing statements and variable defines works in newer
    compilers, but not pdx's.

XORG-STABLE 2003-11-25 19:29:01 UTC
Initial revision

Author: Kaleb Keithley
Author Date: 2003-11-25 19:29:01 UTC

Initial revision

xfixes_2_branch 2003-11-02 09:27:36 UTC
Fix fill/copyarea of r128 by setting the scissor registers in setup, as

Author: Eric Anholt
Author Date: 2003-11-02 09:27:36 UTC

Fix fill/copyarea of r128 by setting the scissor registers in setup, as
    XFree86 does on engine init. Add another PCI ID to r128stub.c.

xf-4_3-branch 2002-12-12 18:29:05 UTC
621. Let kbd driver test if Xserver is in suspend before handling any input

Author: Egbert Eich
Author Date: 2002-12-12 18:29:05 UTC

621. Let kbd driver test if Xserver is in suspend before handling any input
    events (Egbert Eich).
620. Fixed agp version checking to accept minor versions >= the specified
    number (Leif Delgass).

Domain-branch 2002-01-21 23:05:40 UTC
Resync with 4.2.0

Author: Marc Aurele La France
Author Date: 2002-01-21 23:05:40 UTC

Resync with 4.2.0

xf-4_2-branch 2002-01-18 16:25:19 UTC
kdrive: fix button emulation for iPAQ

Author: Keith Packard
Author Date: 2002-01-18 16:25:19 UTC

kdrive: fix button emulation for iPAQ

xf-4_1-branch 2001-05-25 18:50:08 UTC
592. Fix xmh's use of XtNewString() with getenv (#4694, Tim Waugh).

Author: David Dawes
Author Date: 2001-05-25 18:50:08 UTC

592. Fix xmh's use of XtNewString() with getenv (#4694, Tim Waugh).
591. Xdm/PAM fixes: leave it to PAM to observe whether or not an account is
    locked, and reinitialize credentials after calling initgroups(),
    because sometimes the credentials pam_setcred() gives are in the form
    of group membership (#4693, Mike Harris).
590. Add an encodings file for standard box drawing characters for
    VT100-compatible terminals (#4691, Juliusz Chroboczek).
589. Fix warnings when building mieq.c (#4689, Adam Sulmicki).
588. Fix some bugs in the cz and sk entried in XKB's keymap/xfree86 file
    (#4692, Ivan Pascal).
587. Add 'hr' entries to XKB's keymap/xfree86 and rules/xfree86.lst files
    (#4687, Nerijus Baliunas).
586. Include <X11/Xutil.h> in shape.h to get Region typedef (#4686, Adam
    Sulmicki).

xf-4_0_2-branch 2001-02-28 21:44:20 UTC
1238. Don't attempt to drive an mga G450 if the hal module isn't available

Author: David Dawes
Author Date: 2001-02-28 21:44:20 UTC

1238. Don't attempt to drive an mga G450 if the hal module isn't available
    (#4465, David Woodhouse).
1237. Fix a typo in Xfbdev.man (#4446, Juliusz Chroboczek).

190 of 90 results
This repository contains Public information 
Everyone can see this information.