From 499e7464ed5c42246134fe708d783bf44a472c98 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sat, 7 Sep 1996 23:56:19 +0000 Subject: update from main archive 960907 Sat Sep 7 14:00:33 1996 David Mosberger-Tang * catgets/catgets.c (catopen): Allocate sizeof(*result) bytes instead of sizeof(nl_catd) (which is just a pointer!). Sat Sep 7 19:39:19 1996 Ulrich Drepper * Makefile ($(objpfx)version-info.h): Generate from Banner files. * version.c (banner): Add contents of version-info.h to string. * Makerules: If $($(subdir)-version) is available name versioned shared library according to this value instead of glibc's version. * libio/Banner: New file. * elf/eval.c (funcall): Write error message in case function is not found. (eval): Recognize `_' in names. --- Makefile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 039e3c90bd..014b581c45 100644 --- a/Makefile +++ b/Makefile @@ -129,6 +129,23 @@ $(objpfx)sysd-dirs: $(+sysdir_pfx)config.make echo endef) > $@-tmp mv -f $@-tmp $@ +$(objpfx)version-info.h: $(..)Makefile $(+sysdir_pfx)config.make + (first=yes; \ + for dir in $(subdirs); do \ + if [ -r $$dir/Banner ]; then \ + if [ $$first = yes ]; then \ + echo "\"Available extensions:"; \ + first=no; \ + fi; \ + sed -e '/^#/d' -e 's/^[[:space:]]*/ /' $$dir/Banner; \ + fi; \ + done; \ + [ $first = yes ] || echo "\"") > $@-tmp + mv -f $@-tmp $@ + +version.c-objects := $(addprefix $(objpfx)version,$(object-suffixes)) +$(version.c-objects): $(objpfx)version-info.h + # Makerules creates a file `stub-$(subdir)' for each subdirectory, which # contains `#define __stub_FUNCTION' for each function which is a stub. # Here we paste all of these together into . -- cgit v1.2.1