aboutsummaryrefslogtreecommitdiff
path: root/elf/dl-support.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-09-16 05:22:26 +0000
committerUlrich Drepper <drepper@redhat.com>2000-09-16 05:22:26 +0000
commit8a0e201e331313cb2fe17a092bde0855773f3a4e (patch)
treeddf3fb00e6c7a15ddf5f24379ff3fe755b6e8f7a /elf/dl-support.c
parentd3d934d81cffcd24d6dce6f54e7f77204ecd777f (diff)
downloadglibc-8a0e201e331313cb2fe17a092bde0855773f3a4e.tar
glibc-8a0e201e331313cb2fe17a092bde0855773f3a4e.tar.gz
glibc-8a0e201e331313cb2fe17a092bde0855773f3a4e.tar.bz2
glibc-8a0e201e331313cb2fe17a092bde0855773f3a4e.zip
Update.
* elf/rtld.c (_dl_dynamic_weak): Set to 1 by default for now. * elf/dl-support.c: Likewise. necessary. Move includes of POSIX and Unix limits files to the end.
Diffstat (limited to 'elf/dl-support.c')
-rw-r--r--elf/dl-support.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/elf/dl-support.c b/elf/dl-support.c
index d2c8738043..50b37e8166 100644
--- a/elf/dl-support.c
+++ b/elf/dl-support.c
@@ -43,7 +43,14 @@ int _dl_debug_versions;
int _dl_debug_reloc;
int _dl_debug_files;
int _dl_lazy;
+/* XXX I know about at least one case where we depend on the old weak
+ behavior (it has to do with librt). Until we get DSO groups implemented
+ we have to make this the default. Bummer. --drepper */
+#if 0
int _dl_dynamic_weak;
+#else
+int _dl_dynamic_weak = 1;
+#endif
/* If nonzero print warnings about problematic situations. */
int _dl_verbose;