Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/videolan/dav1d.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJanne Grunau <janne-vlc@jannau.net>2019-03-09 13:20:44 +0300
committerJanne Grunau <janne-vlc@jannau.net>2019-03-09 13:24:40 +0300
commit7f7b558638eb8eda989e4449452005ea489298eb (patch)
treede69f5a35e77d2f32bfe0a87adf4f28545fc2e94 /meson.build
parent79052b17110ad3fabbe3ff7bf41fccec8f73e37d (diff)
build: add "api" to api/soname related versions
Refs #241, Closes #255.
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build8
1 files changed, 4 insertions, 4 deletions
diff --git a/meson.build b/meson.build
index 3172442..77ee473 100644
--- a/meson.build
+++ b/meson.build
@@ -31,10 +31,10 @@ project('dav1d', ['c'],
meson_version: '>= 0.47.0')
dav1d_soname_version = '1.0.1'
-dav1d_version_array = dav1d_soname_version.split('.')
-dav1d_version_major = dav1d_version_array[0]
-dav1d_version_minor = dav1d_version_array[1]
-dav1d_version_revision = dav1d_version_array[2]
+dav1d_api_version_array = dav1d_soname_version.split('.')
+dav1d_api_version_major = dav1d_api_version_array[0]
+dav1d_api_version_minor = dav1d_api_version_array[1]
+dav1d_api_version_revision = dav1d_api_version_array[2]
dav1d_src_root = meson.current_source_dir()
cc = meson.get_compiler('c')