Browse Source

Revert "add release flag to makefile.shared"

This reverts commit 14272976d0615b546e9e0215ec4e2f01854a2dc9.

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.
Steffen Jaeckel 8 years ago
parent
commit
f7bd454dd5
1 changed files with 1 additions and 3 deletions
  1. 1 3
      makefile.shared

+ 1 - 3
makefile.shared

@@ -10,8 +10,6 @@ include makefile.include
 # The version
 # The version
 # http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
 # http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
 VERSION=0:117
 VERSION=0:117
-# http://www.gnu.org/software/libtool/manual/html_node/Release-numbers.html
-RELEASE=1.17
 
 
 
 
 LT ?= libtool
 LT ?= libtool
@@ -206,7 +204,7 @@ testprof/$(LIBTEST):
 	$(LTCOMPILE) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -o $@ -c $<
 	$(LTCOMPILE) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -o $@ -c $<
 
 
 $(LIBNAME): $(OBJECTS)
 $(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: $(LIBNAME)
 	install -d $(DESTDIR)$(LIBPATH)
 	install -d $(DESTDIR)$(LIBPATH)