From 5be1b1a8ce6c635cf0310d2b97056a2b8f11a601 Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Thu, 2 Nov 2017 23:24:00 +0000 Subject: meson: standardize .so version to major.minor.patch This `version` field defines the filename for the .so. The plan .so as well as .so.$major are always symlinks to this. Unless I'm mistaken, only the major is ever used, so this shouldn't matter, but for consistency with autotools (and in case it does matter), let's always have all 3 major.minor.patch components. (The soname isn't affected, and is always .so.$major) Signed-off-by: Eric Engestrom Reviewed-by: Dylan Baker --- src/glx/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/glx/meson.build') diff --git a/src/glx/meson.build b/src/glx/meson.build index 573316c9424..01ebc567734 100644 --- a/src/glx/meson.build +++ b/src/glx/meson.build @@ -112,7 +112,7 @@ if not with_glvnd gl_lib_version = '1.2.0' else gl_lib_name = 'GLX_mesa' - gl_lib_version = '0' + gl_lib_version = '0.0.0' files_libglx += files( 'g_glxglvnddispatchfuncs.c', 'g_glxglvnddispatchindices.h', -- cgit v1.2.3