summaryrefslogtreecommitdiffstats
path: root/src/mapi/shared-glapi
diff options
context:
space:
mode:
authorDylan Baker <[email protected]>2018-07-10 11:09:27 -0700
committerDylan Baker <[email protected]>2019-10-10 16:33:04 -0700
commit63f5aee69443049926e9e853daac7be79a87dcbe (patch)
treee5096532a164422e373cfff4c8a8abd0d16e97e7 /src/mapi/shared-glapi
parente1dbf10749ca52604005551a5077c0997efcf428 (diff)
meson: maintain names of shared API libraries
Mesa uses the lib prefix, and doesn't use a version for it's dynamic libraries, which meson defaults to. v2: - this patch Acked-by: Eric Engestrom <[email protected]> Acked-by: Kristian H. Kristensen <[email protected]>
Diffstat (limited to 'src/mapi/shared-glapi')
-rw-r--r--src/mapi/shared-glapi/meson.build2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mapi/shared-glapi/meson.build b/src/mapi/shared-glapi/meson.build
index ea97e1b9437..7d0fe115d63 100644
--- a/src/mapi/shared-glapi/meson.build
+++ b/src/mapi/shared-glapi/meson.build
@@ -55,7 +55,9 @@ libglapi = shared_library(
link_args : [ld_args_gc_sections],
include_directories : [inc_src, inc_include, inc_mapi],
dependencies : [dep_thread, dep_selinux],
+ soversion : host_machine.system() == 'windows' ? '' : '0',
version : '0.0.0',
+ name_prefix : 'lib',
install : true,
)