| author | Eric Anholt <eric@anholt.net> | 2009-02-17 17:59:17 (GMT) |
|---|---|---|
| committer | Eric Anholt <eric@anholt.net> | 2009-02-17 23:28:29 (GMT) |
| commit | b349a764e98f0d8f221190157ffa0904b91beca5 (patch) (side-by-side diff) | |
| tree | b3f484e756d08a5d98c2cf8d7bfd9b00361af17b | |
| parent | 5394b7e66224d20888dd4020f5cb8ca930720fb4 (diff) | |
| download | xserver-b349a764e98f0d8f221190157ffa0904b91beca5.zip xserver-b349a764e98f0d8f221190157ffa0904b91beca5.tar.gz | |
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.
| -rw-r--r-- | Xext/panoramiX.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Xext/panoramiX.c b/Xext/panoramiX.c index 0439668..767f603 100644 --- a/Xext/panoramiX.c +++ b/Xext/panoramiX.c @@ -57,6 +57,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, @@ -902,8 +904,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); |
