mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2025-12-25 20:00:06 +01:00
meson.build: Keep the protocol version looking like xserver 1.20.x did
This effectively changes the versioning to be as if xserver 21.0 was
xserver 1.21.0. This should keep any client-side version checks that
know about the Xorg 7.0 -> xserver 1.0 epoch from getting confused.
Fixes: 1e72c3ce84 "Bump version to 21.0.99.1"
This commit is contained in:
parent
280aac5a0e
commit
efd546cd1e
1 changed files with 1 additions and 1 deletions
|
|
@ -8,7 +8,7 @@ else
|
|||
subpatch = 0
|
||||
endif
|
||||
|
||||
release = major * 10000000 + minor * 100000 + patch * 1000 + subpatch
|
||||
release = 1 * 10000000 + major * 100000 + minor * 1000 + patch
|
||||
|
||||
dri_dep = dependency('dri', required: build_glx)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue