Skip to content

Commit

Permalink
Update shared objects version info to be not lower than in v7.8.x
Browse files Browse the repository at this point in the history
* CMakeLists.txt (LIBATOMIC_OPS_VER_INFO, LIBATOMIC_OPS_GPL_VER_INFO):
Increment current and age (change version info of libatomic_ops.so and
libatomic_ops_gpl.so to 4:0:3).
* src/Makefile.am (LIBATOMIC_OPS_VER_INFO, LIBATOMIC_OPS_GPL_VER_INFO):
Likewise.
  • Loading branch information
ivmai committed Dec 17, 2023
1 parent c1b884b commit 40d5b8c
Show file tree
Hide file tree
Showing 2 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 @@ -28,8 +28,8 @@ set(PACKAGE_VERSION 7.9.0)

# Info (current:revision:age) for the Libtool versioning system.
# These values should match those in src/Makefile.am.
set(LIBATOMIC_OPS_VER_INFO 3:0:2)
set(LIBATOMIC_OPS_GPL_VER_INFO 3:0:2)
set(LIBATOMIC_OPS_VER_INFO 4:0:3)
set(LIBATOMIC_OPS_GPL_VER_INFO 4:0:3)

project(libatomic_ops C)

Expand Down
4 changes: 2 additions & 2 deletions src/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
# 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).
LIBATOMIC_OPS_VER_INFO = 3:0:2
LIBATOMIC_OPS_GPL_VER_INFO = 3:0:2
LIBATOMIC_OPS_VER_INFO = 4:0:3
LIBATOMIC_OPS_GPL_VER_INFO = 4:0:3

AM_CFLAGS=@PICFLAG@
AM_CPPFLAGS = -I$(top_builddir)/src -I$(top_srcdir)/src
Expand Down

0 comments on commit 40d5b8c

Please sign in to comment.