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/egl/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/egl/meson.build') diff --git a/src/egl/meson.build b/src/egl/meson.build index 67ca8cef921..36b1d9e41b0 100644 --- a/src/egl/meson.build +++ b/src/egl/meson.build @@ -145,7 +145,7 @@ if not with_glvnd egl_lib_version = '1.0.0' else egl_lib_name = 'EGL_mesa' - egl_lib_version = '0' + egl_lib_version = '0.0.0' files_egl += [g_egldispatchstubs_h, g_egldispatchstubs_c] files_egl += files('main/eglglvnd.c', 'main/egldispatchstubs.c') install_data( -- cgit v1.2.3