diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-07-06 17:09:00 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-07-06 17:09:00 +0000 |
commit | 8eaaffdeedf5a34a68a785e62b181e4e5fc6cf43 (patch) | |
tree | d1c6fd49faf7237b3fa5c388885a049c46ffbad0 /Makefile | |
parent | dd3c89f99cf911345abd1781be699a73f699aa00 (diff) | |
download | glibc-8eaaffdeedf5a34a68a785e62b181e4e5fc6cf43.tar.gz |
Update.
1998-07-06 14:36 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* posix/Makefile (generated): Remove $(objpfx) from the names.
1998-07-05 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* stdio-common/test_rdwr.c: Use %Zu for size_t in printf
format string.
* libio/iofread_u.c: Include <stdio.h> for prototype.
* libio/iofwrite_u.c: Likewise.
1998-07-06 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* db2/Versions: New file.
1998-07-04 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* Makefile (lib-noranlib): Don't depend on sysd-versions.
($(common-objpfx)sysd-versions): Remove rule.
* Makerules ($(common-objpfx)sysd-versions): Define here instead.
Pass name of Versions.def file to script and redirect output to
target. Include it and make all generated version maps depend on
it.
* versions.awk: Print out variable definition containing all
generated version maps. Print error messages to stderr. Remove
temp file.
1998-07-04 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* posix/annexc.c (check_header): Terminate macro name before
comparing.
(get_null_defines): Allow builtin macros with parameters.
(fmt, testfmt): Add -D_LIBC.
* posix/Makefile: Remove bogus duplicate include directories from
annexc test command.
1998-07-06 12:04 Ulrich Drepper <drepper@cygnus.com>
* nis/nss_nis/nis-pwd.c (internal_nis_getpwent_r): Handle adjunct
password scheme.
(_nss_nis_getpwnam_r): Likewise.
(_nss_nis_getpwuid_r): Likewise.
1998-07-05 Mark Kettenis <kettenis@phys.uva.nl>
* libio/Versions: Move symbols whose source lives in
stdio-common to ...
* stdio-common/Versions: ... here.
* stdio/Versions: Add missing symbols.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 26 |
1 files changed, 0 insertions, 26 deletions
@@ -77,10 +77,6 @@ ifeq (yes,$(build-shared)) install-others += $(inst_includedir)/gnu/lib-names.h endif -ifeq ($(versioning),yes) -lib-noranlib: lib-mapfiles -endif - include Makerules ifeq ($(build-programs),yes) @@ -315,25 +311,3 @@ headers2_0 := __math.h bytesex.h confname.h direntry.h elfclass.h \ .PHONY: remove-old-headers remove-old-headers: rm -f $(addprefix $(inst_includedir)/, $(headers2_0)) - -# Generate version maps. -ifeq ($(versioning),yes) -ifndef avoid-generated -$(common-objpfx)sysd-versions: Versions.def - (echo define vers-libs; \ - sed -n 's/\(lib[a-zA-Z0-9_][a-zA-Z0-9_]*\) {/$$(common-objpfx)\1%map/p' $<; \ - echo endef) > $@T - mv -f $@T $@ --include $(common-objpfx)sysd-versions -vers-libs := $(subst $(\n), ,$(vers-libs)) - -$(vers-libs): versions.awk \ - $(wildcard $(subdirs:%=%/Versions)) \ - $(wildcard $(+sysdep_dirs:%=%/Versions)) - $(AWK) -v 'buildroot=$(common-objpfx)' -f $^ - -lib-mapfiles: $(common-objpfx)sysd-versions $(subst %,.,$(vers-libs)) -else -lib-mapfiles: -endif -endif |