diff options
author | Roland McGrath <roland@gnu.org> | 2003-01-13 03:42:27 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2003-01-13 03:42:27 +0000 |
commit | f1c5213d6908c00e42556e9ac910cf150029f4c2 (patch) | |
tree | 97737a5aa00658c356b14b80570e5a253c7e45f5 /sysdeps/mach | |
parent | 2674e3c6fc3d2a1279b0e31877f90a22a523504c (diff) | |
download | glibc-f1c5213d6908c00e42556e9ac910cf150029f4c2.tar glibc-f1c5213d6908c00e42556e9ac910cf150029f4c2.tar.gz glibc-f1c5213d6908c00e42556e9ac910cf150029f4c2.tar.bz2 glibc-f1c5213d6908c00e42556e9ac910cf150029f4c2.zip |
* include/fcntl.h: Declare __libc_creat.
* sysdeps/mach/hurd/Makefile (libmachuser-link.so-no-z-defs,
libhurduser-link.so-no-z-defs): New variables.
* malloc/malloc.c: Revert last change.
* malloc/malloc.h (_int_*): Move these decls to ...
* include/malloc.h: ... here. Add attribute_hidden.
(_int_valloc): Declare it too.
Diffstat (limited to 'sysdeps/mach')
-rw-r--r-- | sysdeps/mach/hurd/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sysdeps/mach/hurd/Makefile b/sysdeps/mach/hurd/Makefile index e12874f055..6e03643381 100644 --- a/sysdeps/mach/hurd/Makefile +++ b/sysdeps/mach/hurd/Makefile @@ -1,4 +1,5 @@ -# Copyright (C) 1993,94,95,96,97,98,99,2000,01 Free Software Foundation, Inc. +# Copyright (C) 1993,94,95,96,97,98,99,2000,2001,2002, 2003 +# Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or @@ -155,6 +156,8 @@ $(link-rpcuserlibs): %-link.so: %_pic.a -nostdlib -o $@ \ -Wl,-soname=$(*F).so$($(*F).so-version) \ $(build-shlib-objlist) +libmachuser-link.so-no-z-defs = yes +libhurduser-link.so-no-z-defs = yes # And get them into the libc.so ldscript. $(inst_libdir)/libc.so: $(rpcuserlibs) @@ -163,7 +166,7 @@ $(inst_libdir)/libc.so: $(rpcuserlibs) # linker, too. It must be self-contained, so we link the needed PIC # objects directly into the shared object. ifeq (elf,$(subdir)) -$(objpfx)librtld.os: $(rpcuserlibs:.so=_pic.a) +$(objpfx)librtld.map: $(rpcuserlibs:.so=_pic.a) CFLAGS-dl-load.c = -DEXTERNAL_MAP_FROM_FD endif |