From 716108831dbc2d43a0d5638257c75dbd7393a09b Mon Sep 17 00:00:00 2001 From: Nicolas Chauvet Date: Thu, 28 Nov 2024 11:40:34 +0100 Subject: [PATCH] Fix version-info for 8.9.0 and drop release This will lead to a libcryptopp.so.9 SONAME and libcryptopp.so.9.0.0 library. --- Makefile.am | 3 +-- configure.ac | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile.am b/Makefile.am index 99955a7..2e923bc 100644 --- a/Makefile.am +++ b/Makefile.am @@ -250,9 +250,8 @@ endif ## The remainder of the object files libcryptopp_la_DEPENDENCIES += $(libothers_la_OBJECTS) -## Man, did Autotools fuck this up royally... ## https://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html -libcryptopp_la_LDFLAGS = $(AM_LDFLAGS) -release 8.8.0 -version-info 8:8 +libcryptopp_la_LDFLAGS = $(AM_LDFLAGS) -version-info 9:0:0 ## Source files with special needs libcryptlib_la_SOURCES = cryptlib.cpp diff --git a/configure.ac b/configure.ac index 73cf21a..7b7a598 100644 --- a/configure.ac +++ b/configure.ac @@ -133,7 +133,7 @@ echo "Build is $build" ## configure.ac preamble ############################################################################# -AC_INIT([Crypto++], [8.8], [http://www.cryptopp.com/wiki/Bug_Report], [cryptopp], [http://www.cryptopp.com]) +AC_INIT([Crypto++], [8.9], [http://www.cryptopp.com/wiki/Bug_Report], [cryptopp], [http://www.cryptopp.com]) AC_CONFIG_SRCDIR([configure.ac]) AC_CONFIG_HEADERS([local.h]) AC_CONFIG_FILES([Makefile] [libcryptopp.pc])