Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Maxwell <greg@xiph.org>2012-08-11 01:21:28 +0400
committerGregory Maxwell <greg@xiph.org>2012-08-11 01:21:28 +0400
commit8d2e9ade8fe86f0d8f5cf951f8a2034921aaff6b (patch)
tree3c85f3a41a23db5b477bac7056a259b482428517
parent07b8e612fa977dad21414e74a7f44cb0fef1e575 (diff)
Use configure.ac provided soname versioning.
-rw-r--r--Makefile.am2
-rw-r--r--configure.ac4
2 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am
index 46bac9c2..224905df 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -21,7 +21,7 @@ include silk_headers.mk
include opus_headers.mk
libopus_la_SOURCES = $(CELT_SOURCES) $(SILK_SOURCES) $(OPUS_SOURCES)
-libopus_la_LDFLAGS = -no-undefined -version-info 2:0:2
+libopus_la_LDFLAGS = -no-undefined -version-info @OPUS_LT_CURRENT@:@OPUS_LT_REVISION@:@OPUS_LT_AGE@
pkginclude_HEADERS = include/opus.h include/opus_multistream.h include/opus_types.h include/opus_defines.h
diff --git a/configure.ac b/configure.ac
index 9bd15182..cf7df1c3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -37,9 +37,9 @@ AC_DEFINE_UNQUOTED(OPUS_MICRO_VERSION, ${OPUS_MICRO_VERSION}, [Version micro])
AC_DEFINE_UNQUOTED(OPUS_EXTRA_VERSION, "${OPUS_EXTRA_VERSION}", [Version extra])
# For libtool.
-OPUS_LT_CURRENT=0
+OPUS_LT_CURRENT=2
OPUS_LT_REVISION=0
-OPUS_LT_AGE=0
+OPUS_LT_AGE=2
AC_SUBST(OPUS_LT_CURRENT)
AC_SUBST(OPUS_LT_REVISION)