libosmocore: bump library interface version to '1' for new osmo_ names
diff --git a/src/Makefile.am b/src/Makefile.am
index a0d639c..8383a95 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -2,7 +2,7 @@
 
 # This is _NOT_ the library release version, it's an API version.
 # Please read Chapter 6 "Library interface versions" of the libtool documentation before making any modification
-LIBVERSION=0:0:0
+LIBVERSION=1:0:0
 
 INCLUDES = $(all_includes) -I$(top_srcdir)/include
 AM_CFLAGS = -fPIC -Wall
@@ -18,7 +18,9 @@
 
 if ENABLE_PLUGIN
 libosmocore_la_SOURCES += plugin.c
-libosmocore_la_LDFLAGS = -ldl
+libosmocore_la_LDFLAGS = -version-info $(LIBVERSION) -ldl
+else
+libosmocore_la_LDFLAGS = -version-info $(LIBVERSION)
 endif
 
 if ENABLE_TALLOC
diff --git a/src/codec/Makefile.am b/src/codec/Makefile.am
index f8a0601..5a54c42 100644
--- a/src/codec/Makefile.am
+++ b/src/codec/Makefile.am
@@ -8,3 +8,4 @@
 lib_LTLIBRARIES = libosmocodec.la
 
 libosmocodec_la_SOURCES = gsm610.c gsm620.c gsm660.c gsm690.c
+libosmocodec_la_LDFALGS = -version-info $(LIBVERSION)
diff --git a/src/gsm/Makefile.am b/src/gsm/Makefile.am
index 57eb5ca..fb4a8cb 100644
--- a/src/gsm/Makefile.am
+++ b/src/gsm/Makefile.am
@@ -10,4 +10,5 @@
 libosmogsm_la_SOURCES = a5.c rxlev_stat.c tlv_parser.c comp128.c gsm_utils.c \
                         rsl.c gsm48.c gsm48_ie.c gsm0808.c \
 			gprs_cipher_core.c gsm0480.c
+libosmogsm_la_LDFLAGS = -version-info $(LIBVERSION)
 libosmogsm_la_LIBADD = $(top_builddir)/src/libosmocore.la
diff --git a/src/vty/Makefile.am b/src/vty/Makefile.am
index 7353ab8..b7be6f8 100644
--- a/src/vty/Makefile.am
+++ b/src/vty/Makefile.am
@@ -10,5 +10,6 @@
 
 libosmovty_la_SOURCES = buffer.c command.c vty.c vector.c utils.c \
 			telnet_interface.c logging_vty.c
+libosmovty_la_LDFLAGS = -version-info $(LIBVERSION)
 libosmovty_la_LIBADD = $(top_builddir)/src/libosmocore.la
 endif