mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
3f24f04876
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
17 lines
522 B
Plaintext
17 lines
522 B
Plaintext
# .so library version, following the libtool scheme:
|
|
#
|
|
# current:revision:age
|
|
#
|
|
# current: increment if interfaces have been added, removed or changed
|
|
# revision: increment if source code has changed, set to zero if current is
|
|
# incremented
|
|
# age: increment if interfaces have been added, set to zero if
|
|
# interfaces have been removed or changed
|
|
#
|
|
# For a full reference see:
|
|
# https://www.gnu.org/software/libtool/manual/libtool.html#Updating-version-info
|
|
|
|
CURRENT=5
|
|
REVISION=0
|
|
AGE=4
|