From: Eric Engestrom Date: Thu, 2 Nov 2017 23:38:09 +0000 (+0000) Subject: meson: drop GLESv1 .so version back to 1.0.0 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=cc15460e182148292be877bec5a8a61cec57377d;p=mesa.git meson: drop GLESv1 .so version back to 1.0.0 autotools generates libGLESv1_CM.so.1.0.0, so let's make sure meson does the same. Signed-off-by: Eric Engestrom Reviewed-by: Dylan Baker --- diff --git a/src/mapi/es1api/meson.build b/src/mapi/es1api/meson.build index 8d95aee02f4..e8b9066a5f7 100644 --- a/src/mapi/es1api/meson.build +++ b/src/mapi/es1api/meson.build @@ -36,7 +36,7 @@ libglesv1_cm = shared_library( include_directories : [inc_src, inc_include, inc_mapi], link_with : libglapi, dependencies : [dep_thread, dep_libdrm, dep_m, dep_dl], - version : '1.1.0', + version : '1.0.0', install : true, )