summaryrefslogtreecommitdiff
path: root/so.version
diff options
context:
space:
mode:
authorSergey 'Jin' Bostandzhyan <jin at mediatomb dot cc>2017-01-11 22:41:11 +0100
committerSergey 'Jin' Bostandzhyan <jin at mediatomb dot cc>2017-01-18 11:20:07 +0100
commit3f24f048762736e1a5d785a080fec7e84172e708 (patch)
tree3a0a66087a0d0d97bc19c6f4ee379f923f4ab9e8 /so.version
parent5ad3c9890574cfe91a856e4836a553973b7da1a9 (diff)
Setup autotools to read .so version info from a separate file
We want to use the same libtool style .so versions in both build systems, ideally both systems should read the version information from the same configuration file. This commit introduces an so.version configuration file and sets up the autotools to use it. The version numbers in so.version define the ABI compatibility and should be updated prior to each release. implements #323
Diffstat (limited to 'so.version')
-rw-r--r--so.version16
1 files changed, 16 insertions, 0 deletions
diff --git a/so.version b/so.version
new file mode 100644
index 00000000..5c3a8be5
--- /dev/null
+++ b/so.version
@@ -0,0 +1,16 @@
1# .so library version, following the libtool scheme:
2#
3# current:revision:age
4#
5# current: increment if interfaces have been added, removed or changed
6# revision: increment if source code has changed, set to zero if current is
7# incremented
8# age: increment if interfaces have been added, set to zero if
9# interfaces have been removed or changed
10#
11# For a full reference see:
12# https://www.gnu.org/software/libtool/manual/libtool.html#Updating-version-info
13
14CURRENT=5
15REVISION=0
16AGE=4