diff options
author | Adam Jackson <ajax@nwnk.net> | 2005-06-09 02:29:42 +0000 |
---|---|---|
committer | Adam Jackson <ajax@nwnk.net> | 2005-06-09 02:29:42 +0000 |
commit | cdc15e2294a9bffc570e33bc31170081abfc55fb (patch) | |
tree | 827c3a00e92594aad0f546469a6bc128f40e836f /Xext | |
parent | e3cdec7cdcd76f6294ba1f296e4bcdee43b1eb3c (diff) |
Bug #1846: Add intentionally undocumented -disablexineramaextension flag to
the server to work around ignorant clients on large display walls.
(Kevin E. Martin)
Diffstat (limited to 'Xext')
-rw-r--r-- | Xext/panoramiX.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Xext/panoramiX.c b/Xext/panoramiX.c index 67cb7c943..5eb5c1f3c 100644 --- a/Xext/panoramiX.c +++ b/Xext/panoramiX.c @@ -1037,7 +1037,16 @@ ProcXineramaIsActive(ClientPtr client) rep.type = X_Reply; rep.length = 0; rep.sequenceNumber = client->sequence; +#if 1 + { + /* The following hack fools clients into thinking that Xinerama + * is disabled even though it is not. */ + extern Bool PanoramiXExtensionDisabledHack; + rep.state = !noPanoramiXExtension && !PanoramiXExtensionDisabledHack; + } +#else rep.state = !noPanoramiXExtension; +#endif if (client->swapped) { register int n; swaps (&rep.sequenceNumber, n); |