Skip to content

Commit

Permalink
build: move comments to make -version-info work correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
jgriffiths committed Dec 26, 2023
1 parent 938ef3e commit 2fd4f61
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -197,9 +197,12 @@ libwallycore_la_INCLUDES = \
include/wally_transaction_members.h

if SHARED_BUILD_ENABLED
LT_VER_CURRENT = 2 # increment at every ABI change (whether breaking or non-breaking)
LT_VER_REVISION = 0 # increment at every release, but reset to 0 at every ABI change
LT_VER_AGE = 1 # increment at every ABI change, but reset to 0 if breaking
# Increment at every ABI change (whether breaking or non-breaking)
LT_VER_CURRENT = 2
# Increment at every release, but reset to 0 at every ABI change
LT_VER_REVISION = 0
# Increment at every ABI change, but reset to 0 if breaking
LT_VER_AGE = 1
# The library filename will be "libwallycore.so.$((current-age)).$((age)).$((revision))",
# and the soname will be "libwallycore.so.$((current-age))".
# Do NOT try to make the library version-info follow the project release version number!
Expand Down

0 comments on commit 2fd4f61

Please sign in to comment.