Revert "add release flag to makefile.shared"

This reverts commit 14272976d0.

This is neither a 'package-internal library' nor
one 'whose interfaces change very frequently' so we remove the
release information again from the shared library.
This commit is contained in:
Steffen Jaeckel 2017-03-21 17:30:18 +01:00
parent 283ea0c426
commit f7bd454dd5

View File

@ -10,8 +10,6 @@ include makefile.include
# The version
# http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
VERSION=0:117
# http://www.gnu.org/software/libtool/manual/html_node/Release-numbers.html
RELEASE=1.17
LT ?= libtool
@ -206,7 +204,7 @@ testprof/$(LIBTEST):
$(LTCOMPILE) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -o $@ -c $<
$(LIBNAME): $(OBJECTS)
$(LT) --mode=link --tag=CC $(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) `find ./src -type f -name "*.lo"` $(EXTRALIBS) -o $(LIBNAME) -rpath $(LIBPATH) -version-info $(VERSION) -release $(RELEASE)
$(LT) --mode=link --tag=CC $(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) `find ./src -type f -name "*.lo"` $(EXTRALIBS) -o $(LIBNAME) -rpath $(LIBPATH) -version-info $(VERSION)
install: $(LIBNAME)
install -d $(DESTDIR)$(LIBPATH)