Skip to content

Commit

Permalink
tools/nut-scanner/Makefile.am, clients/Makefile.am: bump "version-inf…
Browse files Browse the repository at this point in the history
…o" for NUT v2.8.0

Development since 2.7.4 release included changes to code structure,
fought warnings, and might impact ABI/API by the changes to arguments
(specific integer types and size_t vs. architecture-dependent choice).
  • Loading branch information
jimklimov committed Apr 26, 2022
1 parent 53af2dc commit 6043b8d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions clients/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,12 @@ endif
# object .so names would differ)

# libupsclient version information
libupsclient_la_LDFLAGS = -version-info 5:0:0 -export-symbols-regex ^upscli_
libupsclient_la_LDFLAGS = -version-info 6:0:0 -export-symbols-regex ^upscli_

if HAVE_CXX11
# libnutclient version information and build
libnutclient_la_SOURCES = nutclient.h nutclient.cpp
libnutclient_la_LDFLAGS = -version-info 1:0:0
libnutclient_la_LDFLAGS = -version-info 2:0:0
# Needed in not-standalone builds with -DHAVE_NUTCOMMON=1
# which is defined for in-tree CXX builds above:
libnutclient_la_LIBADD = $(top_builddir)/common/libcommonclient.la
Expand Down
2 changes: 1 addition & 1 deletion tools/nut-scanner/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ libnutscan_la_LIBADD += $(top_builddir)/common/libcommonclient.la
# object .so names would differ)
#
# libnutscan version information
libnutscan_la_LDFLAGS = $(SERLIBS) -version-info 1:0:0
libnutscan_la_LDFLAGS = $(SERLIBS) -version-info 2:0:0

# libnutscan exported symbols regex
# WARNING: Since the library includes parts of libcommon (as much as needed
Expand Down

0 comments on commit 6043b8d

Please sign in to comment.