mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-01-07 17:10:15 +01:00
xinerama: Put the proto version in the code instead using proto headers.
Proto headers updating resulting in the server advertising new versions is
broken. This should be applied to every extension.
This fixes the build against slightly-older xineramaproto.
(cherry picked from commit b349a764e9)
Signed-off-by: Keith Packard <keithp@keithp.com>
This commit is contained in:
parent
a7a93c12f9
commit
d478bc9488
1 changed files with 4 additions and 2 deletions
|
|
@ -58,6 +58,8 @@ Equipment Corporation.
|
|||
#endif
|
||||
#include "modinit.h"
|
||||
|
||||
#define SERVER_PANORAMIX_MAJOR_VERSION 1
|
||||
#define SERVER_PANORAMIX_MINOR_VERSION 1
|
||||
|
||||
#ifdef GLXPROXY
|
||||
extern VisualPtr glxMatchVisual(ScreenPtr pScreen,
|
||||
|
|
@ -903,8 +905,8 @@ ProcPanoramiXQueryVersion (ClientPtr client)
|
|||
rep.type = X_Reply;
|
||||
rep.length = 0;
|
||||
rep.sequenceNumber = client->sequence;
|
||||
rep.majorVersion = PANORAMIX_MAJOR_VERSION;
|
||||
rep.minorVersion = PANORAMIX_MINOR_VERSION;
|
||||
rep.majorVersion = SERVER_PANORAMIX_MAJOR_VERSION;
|
||||
rep.minorVersion = SERVER_PANORAMIX_MINOR_VERSION;
|
||||
if (client->swapped) {
|
||||
swaps(&rep.sequenceNumber, n);
|
||||
swapl(&rep.length, n);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue