Skip to content
This repository has been archived by the owner on Jul 2, 2021. It is now read-only.

Commit

Permalink
Bump soname
Browse files Browse the repository at this point in the history
  • Loading branch information
Braydon Fuller committed Oct 17, 2017
1 parent 9cd441a commit a5c00aa
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/Makefile.am
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
lib_LTLIBRARIES = libstorj.la
libstorj_la_SOURCES = storj.c utils.c utils.h http.c http.h uploader.c uploader.h downloader.c downloader.h bip39.c bip39.h bip39_english.h crypto.c crypto.h rs.c rs.h
libstorj_la_LIBADD = -lcurl -lnettle -ljson-c -luv -lm
libstorj_la_LDFLAGS = -Wall
# The rules of thumb, when dealing with these values are:
# - Always increase the revision value.
# - Increase the current value whenever an interface has been added, removed or changed.
# - Increase the age value only if the changes made to the ABI are backward compatible.
# https://autotools.io/libtool/version.html
# The order for version-info is <current>:<revision>:<age>
libstorj_la_LDFLAGS = -Wall -version-info 1:1:0
if BUILD_STORJ_DLL
libstorj_la_LDFLAGS += -no-undefined
endif
Expand Down

0 comments on commit a5c00aa

Please sign in to comment.