aboutsummaryrefslogtreecommitdiff
path: root/elf
diff options
context:
space:
mode:
Diffstat (limited to 'elf')
-rw-r--r--elf/dl-support.c7
-rw-r--r--elf/rtld.c7
2 files changed, 14 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;
diff --git a/elf/rtld.c b/elf/rtld.c
index 4f92844e54..b2c9f5dc20 100644
--- a/elf/rtld.c
+++ b/elf/rtld.c
@@ -84,7 +84,14 @@ const char *_dl_profile;
const char *_dl_profile_output;
struct link_map *_dl_profile_map;
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
int _dl_debug_libs;
int _dl_debug_impcalls;
int _dl_debug_bindings;