diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-01-11 17:50:24 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-01-11 17:50:24 +0000 |
commit | beb5387cf656c281f9cc81d6a04f1085fe534c9a (patch) | |
tree | 0ef71cac8c17d2b5b8375d8854c77b94d61cfa27 /elf/dl-libc.c | |
parent | c926001f2a943e3208c0d89096926e3a62481cd7 (diff) | |
download | glibc-beb5387cf656c281f9cc81d6a04f1085fe534c9a.tar.gz glibc-beb5387cf656c281f9cc81d6a04f1085fe534c9a.tar.xz glibc-beb5387cf656c281f9cc81d6a04f1085fe534c9a.zip |
Update.
2001-01-10 H.J. Lu <hjl@gnu.org> * elf/dl-libc.c (do_dlopen): Call DL_STATIC_INIT for static binaries. * sysdeps/unix/sysv/linux/ia64/Makefile (sysdep-dl-routines): Add dl-static. * sysdeps/unix/sysv/linux/ia64/Versions (ld): Add _dl_var_init. * sysdeps/generic/ldsodefs.h (DL_STATIC_INIT): Defined if not defined. * sysdeps/unix/sysv/linux/ia64/ldsodefs.h: New file. * sysdeps/unix/sysv/linux/ia64/dl-static.c: New file. * sysdeps/unix/sysv/linux/ia64/Dist: Add dl-static.c.
Diffstat (limited to 'elf/dl-libc.c')
-rw-r--r-- | elf/dl-libc.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/elf/dl-libc.c b/elf/dl-libc.c index dc47851803..913a516f37 100644 --- a/elf/dl-libc.c +++ b/elf/dl-libc.c @@ -1,5 +1,5 @@ /* Handle loading and unloading shared objects for internal libc purposes. - Copyright (C) 1999, 2000 Free Software Foundation, Inc. + Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Zack Weinberg <zack@rabi.columbia.edu>, 1999. @@ -76,6 +76,10 @@ do_dlopen (void *ptr) struct do_dlopen_args *args = (struct do_dlopen_args *) ptr; /* Open and relocate the shared object. */ args->map = _dl_open (args->name, RTLD_LAZY, NULL); + +#ifndef SHARED + DL_STATIC_INIT (args->map); +#endif } static void |