summaryrefslogtreecommitdiff
path: root/Xext
diff options
context:
space:
mode:
authorAdam Jackson <ajax@nwnk.net>2005-06-09 02:29:42 +0000
committerAdam Jackson <ajax@nwnk.net>2005-06-09 02:29:42 +0000
commitcdc15e2294a9bffc570e33bc31170081abfc55fb (patch)
tree827c3a00e92594aad0f546469a6bc128f40e836f /Xext
parente3cdec7cdcd76f6294ba1f296e4bcdee43b1eb3c (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.c9
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);