Library (.so) versioning: preserve previous library version

Ticket #120

Change libtool's shared library version info to 3:0:1 to preserve the
previous library version of 2.1.0.

See https://autotools.io/libtool/version.html for the details on how
libtool handles this versioning info.

See https://verbump.de/ for a handy 'version calculator' using
libtools rules.
This commit is contained in:
Jon Trulson
2021-12-16 12:40:15 -07:00
parent 05fa4044f4
commit 17602b4d21
12 changed files with 12 additions and 12 deletions

View File

@@ -2,7 +2,7 @@ MAINTAINERCLEANFILES = Makefile.in
lib_LTLIBRARIES = libDtSvc.la
libDtSvc_la_LDFLAGS = -version-info 2:1:0
libDtSvc_la_LDFLAGS = -version-info 3:0:1
# USe CPPFLAGS so it will apply to both C and C++ components
libDtSvc_la_CPPFLAGS = -I./include -DMULTIBYTE -DNLS16 -I../include \