diff options
author | Roland McGrath <roland@gnu.org> | 2002-11-14 03:59:56 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-11-14 03:59:56 +0000 |
commit | 6e3d59bc0581399e0d8218f7b7fb10961735a82b (patch) | |
tree | cc8ae99aadd6f0b845944b173aa3d7b3102e8686 /Makefile | |
parent | cdedcc7943114bbbcbc2be1a0ef5716b0ef2e862 (diff) | |
download | glibc-6e3d59bc0581399e0d8218f7b7fb10961735a82b.tar.gz glibc-6e3d59bc0581399e0d8218f7b7fb10961735a82b.tar.xz glibc-6e3d59bc0581399e0d8218f7b7fb10961735a82b.zip |
* scripts/abilist.awk: New file.
* Makefile (distribute): Add it. * Makerules ($(objpfx)%.dynsym, $(objpfx)%.symlist): New rules. (tests): Depend on .symlist file for each $(install-lib.so-versioned). [! subdir] (tests): Depend on libc.symlist. (generated): Add those files. * aclocal.m4 (LIBC_PROG_BINUTILS): Check for objdump, set OBJDUMP. * configure: Regenerated. * config.make.in (OBJDUMP): New variable, substituted by configure. * malloc/mcheck.c (struct hdr): New members `block' and `magic2'. (mallochook, reallochook): Set them up. (checkhdr): Check HDR->magic2 value. (freehook): Reset HDR->magic2. (memalignhook): New static function. (old_memalign_hook): New static variable. (mcheck, reallochook): Set __memalign_hook to memalignhook.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile index 942b28518b..0358a6c7c5 100644 --- a/Makefile +++ b/Makefile @@ -278,7 +278,7 @@ distribute := README README.libm INSTALL FAQ FAQ.in NOTES NEWS BUGS \ rellns-sh config.sub config.guess \ mkinstalldirs move-if-change install-sh \ test-installation.pl gen-FAQ.pl versions.awk\ - gen-sorted.awk abi-versions.awk \ + gen-sorted.awk abi-versions.awk abilist.awk \ firstversions.awk documented.sh cpp) distribute := $(strip $(distribute)) |