Skip to content
Snippets Groups Projects
Commit 8d2e9ade authored by Gregory Maxwell's avatar Gregory Maxwell
Browse files

Use configure.ac provided soname versioning.

parent 07b8e612
Branches opus-ng-neonwarningfix
No related tags found
No related merge requests found
...@@ -21,7 +21,7 @@ include silk_headers.mk ...@@ -21,7 +21,7 @@ include silk_headers.mk
include opus_headers.mk include opus_headers.mk
libopus_la_SOURCES = $(CELT_SOURCES) $(SILK_SOURCES) $(OPUS_SOURCES) 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 pkginclude_HEADERS = include/opus.h include/opus_multistream.h include/opus_types.h include/opus_defines.h
......
...@@ -37,9 +37,9 @@ AC_DEFINE_UNQUOTED(OPUS_MICRO_VERSION, ${OPUS_MICRO_VERSION}, [Version micro]) ...@@ -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]) AC_DEFINE_UNQUOTED(OPUS_EXTRA_VERSION, "${OPUS_EXTRA_VERSION}", [Version extra])
# For libtool. # For libtool.
OPUS_LT_CURRENT=0 OPUS_LT_CURRENT=2
OPUS_LT_REVISION=0 OPUS_LT_REVISION=0
OPUS_LT_AGE=0 OPUS_LT_AGE=2
AC_SUBST(OPUS_LT_CURRENT) AC_SUBST(OPUS_LT_CURRENT)
AC_SUBST(OPUS_LT_REVISION) AC_SUBST(OPUS_LT_REVISION)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment