mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-04 05:28:05 +02:00
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 <eric.engestrom@intel.com> Acked-by: Kristian H. Kristensen <hoegsberg@google.com>
This commit is contained in:
parent
e1dbf10749
commit
63f5aee694
3 changed files with 6 additions and 0 deletions
|
|
@ -47,7 +47,9 @@ libglesv1_cm = shared_library(
|
|||
include_directories : [inc_src, inc_include, inc_mapi],
|
||||
link_with : libglapi,
|
||||
dependencies : [dep_thread, dep_libdrm, dep_m, dep_dl],
|
||||
soversion : host_machine.system() == 'windows' ? '' : '1',
|
||||
version : '1.1.0',
|
||||
name_prefix : 'lib',
|
||||
install : true,
|
||||
)
|
||||
|
||||
|
|
|
|||
|
|
@ -47,7 +47,9 @@ libgles2 = shared_library(
|
|||
include_directories : [inc_src, inc_include, inc_mapi],
|
||||
link_with : libglapi,
|
||||
dependencies : [dep_thread, dep_libdrm, dep_m, dep_dl],
|
||||
soversion : host_machine.system() == 'windows' ? '' : '2',
|
||||
version : '2.0.0',
|
||||
name_prefix : 'lib',
|
||||
install : true,
|
||||
)
|
||||
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue