From: Roland McGrath Date: Wed, 17 Jul 1996 18:59:42 +0000 (+0000) Subject: Wed Jul 17 17:08:48 1996 Roland McGrath X-Git-Tag: cvs/libc-960718~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4de1d5977c0e63cc7517308bbce9157b7903d757;p=thirdparty%2Fglibc.git Wed Jul 17 17:08:48 1996 Roland McGrath * Makerules (soversions.mk): Move this target, include of it, and include of version.mk to ... * Makeconfig: ... here. (soversions.mk): Depend on Makeconfig instead of Makerules. --- diff --git a/Makeconfig b/Makeconfig index c06604c5440..23dca2cc4c3 100644 --- a/Makeconfig +++ b/Makeconfig @@ -510,4 +510,26 @@ $(common-objpfx)version.mk: $(..)version.h $(..)Makeconfig < $< > $@-new mv -f $@-new $@ +ifeq (yes, $(build-shared)) + +# Process the shlib-versions file, which tells us what shared library +# version numbers to use when we install shared objects on this system. +-include $(common-objpfx)soversions.mk +$(common-objpfx)soversions.mk: $(..)shlib-versions $(..)Makeconfig \ + $(common-objpfx)config.make + sed 's/#.*$$//' $< | while read conf versions; do \ + test -n "$$versions" || continue; \ + case '$(config-machine)-$(config-vendor)-$(config-os)' in $$conf)\ + for v in $$versions; do \ + lib="$${v%%=*}"; if eval "test -z \"\$$vers_lib$$lib\""; then \ + eval vers_lib$${lib}=yes; \ + echo $$lib.so-version=.$${v##$$lib=}; fi; \ + done ;; esac; done > $@T + mv -f $@T $@ + +# Get $(version) defined with the release version number. +-include $(common-objpfx)version.mk + +endif # build-shared + endif # Makeconfig not yet included