forked from pool/xorg-x11-server
Stefan Dirsch
418936d994
which is available since release 435.xx: 0001-xsync-Add-resource-inside-of-SyncCreate-export-SyncC.patch, 0002-GLX-Add-a-per-client-vendor-mapping.patch, 0003-GLX-Use-the-sending-client-for-looking-up-XID-s.patch, 0004-GLX-Add-a-function-to-change-a-clients-vendor-list.patch, 0005-GLX-Set-GlxServerExports-major-minor-Version.patch OBS-URL: https://build.opensuse.org/package/show/X11:XOrg/xorg-x11-server?expand=0&rev=742
35 lines
1.0 KiB
Diff
35 lines
1.0 KiB
Diff
From b4231d69028adc8123801a7552b40a15ea928d1b Mon Sep 17 00:00:00 2001
|
|
From: Aaron Plattner <aplattner@nvidia.com>
|
|
Date: Tue, 21 May 2019 10:50:42 -0700
|
|
Subject: [PATCH] GLX: Set GlxServerExports::{major,minor}Version
|
|
|
|
Commit 56c0a71fdd94a008e5d746261f70a713c4767f93 incremented the
|
|
GLXSERVER_VENDOR_ABI_MINOR_VERSION define, but this define was not actually
|
|
being used to set glxServer.minorVersion.
|
|
|
|
Update the initializer for glxServer to use the correct version numbers.
|
|
|
|
Signed-off-by: Aaron Plattner <aplattner@nvidia.com>
|
|
---
|
|
glx/vndext.c | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/glx/vndext.c b/glx/vndext.c
|
|
index 582e60b6e..0513733b6 100644
|
|
--- a/glx/vndext.c
|
|
+++ b/glx/vndext.c
|
|
@@ -304,8 +304,8 @@ GlxFreeServerImports(GlxServerImports *imports)
|
|
}
|
|
|
|
_X_EXPORT const GlxServerExports glxServer = {
|
|
- .majorVersion = 0,
|
|
- .minorVersion = 0,
|
|
+ .majorVersion = GLXSERVER_VENDOR_ABI_MAJOR_VERSION,
|
|
+ .minorVersion = GLXSERVER_VENDOR_ABI_MINOR_VERSION,
|
|
|
|
.extensionInitCallback = &vndInitCallbackListPtr,
|
|
|
|
--
|
|
2.16.4
|
|
|