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:
Adam Jackson 2021-03-02 11:40:14 +01:00 committed by Michel Dänzer
parent 280aac5a0e
commit efd546cd1e

View File

@ -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)