Skip to content

Commit

Permalink
Update shared objects version info to be not lower than in gc 8.2.6
Browse files Browse the repository at this point in the history
* CMakeLists.txt (LIBCORD_VER_INFO): Increment revision (change
version info of libcord.so to 6:1:5).
* cord/cord.am (LIBCORD_VER_INFO): Likewise.
* CMakeLists.txt (LIBGC_VER_INFO): Increment revision (change version
info of libgc.so to 6:3:5).
* Makefile.am (LIBGC_VER_INFO): Likewise.
  • Loading branch information
ivmai committed Feb 4, 2024
1 parent 34bfeab commit fc78dc6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ set(PACKAGE_VERSION 8.3.0)

# Info (current:revision:age) for the Libtool versioning system.
# These values should match those in cord/cord.am and Makefile.am.
set(LIBCORD_VER_INFO 6:0:5)
set(LIBGC_VER_INFO 6:1:5)
set(LIBCORD_VER_INFO 6:1:5)
set(LIBGC_VER_INFO 6:3:5)
set(LIBGCCPP_VER_INFO 6:0:5)

option(enable_cplusplus "C++ support" OFF)
Expand Down
2 changes: 1 addition & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# Info (current:revision:age) for the Libtool versioning system.
# These numbers should be updated at most once just before the release,
# and, optionally, at most once during the development (after the release).
LIBGC_VER_INFO = 6:1:5
LIBGC_VER_INFO = 6:3:5
LIBGCCPP_VER_INFO = 6:0:5

## FIXME: `make distcheck' in this directory will not currently work.
Expand Down
2 changes: 1 addition & 1 deletion cord/cord.am
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Info (current:revision:age) for the Libtool versioning system.
# These numbers should be updated at most once just before the release,
# and, optionally, at most once during the development (after the release).
LIBCORD_VER_INFO = 6:0:5
LIBCORD_VER_INFO = 6:1:5

lib_LTLIBRARIES += libcord.la

Expand Down

0 comments on commit fc78dc6

Please sign in to comment.