mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03:00
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.
This commit is contained in:
@ -1,5 +1,8 @@
|
|||||||
2000-09-15 Ulrich Drepper <drepper@redhat.com>
|
2000-09-15 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* elf/rtld.c (_dl_dynamic_weak): Set to 1 by default for now.
|
||||||
|
* elf/dl-support.c: Likewise.
|
||||||
|
|
||||||
* sysdeps/unix/sysv/linux/ia64/bits/stat.h: Correct position of
|
* sysdeps/unix/sysv/linux/ia64/bits/stat.h: Correct position of
|
||||||
st_blocks member in stat and stat64 structs.
|
st_blocks member in stat and stat64 structs.
|
||||||
Patch by Bill Nottingham <notting@redhat.com>.
|
Patch by Bill Nottingham <notting@redhat.com>.
|
||||||
@ -13,8 +16,7 @@
|
|||||||
Patches by Joseph S. Myers <jsm28@cam.ac.uk>.
|
Patches by Joseph S. Myers <jsm28@cam.ac.uk>.
|
||||||
|
|
||||||
* include/limits.h: Define LLONG_MIN, LLONG_MAX, ULLONG_MAX if
|
* include/limits.h: Define LLONG_MIN, LLONG_MAX, ULLONG_MAX if
|
||||||
necessary. Move includes of POSIX and Unix limits files to the
|
necessary. Move includes of POSIX and Unix limits files to the end.
|
||||||
end.
|
|
||||||
* stdlib/Makefile (tests): Add tst-limits.
|
* stdlib/Makefile (tests): Add tst-limits.
|
||||||
* stdlib/tst-limits.h: New file.
|
* stdlib/tst-limits.h: New file.
|
||||||
|
|
||||||
|
@ -43,7 +43,14 @@ int _dl_debug_versions;
|
|||||||
int _dl_debug_reloc;
|
int _dl_debug_reloc;
|
||||||
int _dl_debug_files;
|
int _dl_debug_files;
|
||||||
int _dl_lazy;
|
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;
|
int _dl_dynamic_weak;
|
||||||
|
#else
|
||||||
|
int _dl_dynamic_weak = 1;
|
||||||
|
#endif
|
||||||
|
|
||||||
/* If nonzero print warnings about problematic situations. */
|
/* If nonzero print warnings about problematic situations. */
|
||||||
int _dl_verbose;
|
int _dl_verbose;
|
||||||
|
@ -84,7 +84,14 @@ const char *_dl_profile;
|
|||||||
const char *_dl_profile_output;
|
const char *_dl_profile_output;
|
||||||
struct link_map *_dl_profile_map;
|
struct link_map *_dl_profile_map;
|
||||||
int _dl_lazy;
|
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;
|
int _dl_dynamic_weak;
|
||||||
|
#else
|
||||||
|
int _dl_dynamic_weak = 1;
|
||||||
|
#endif
|
||||||
int _dl_debug_libs;
|
int _dl_debug_libs;
|
||||||
int _dl_debug_impcalls;
|
int _dl_debug_impcalls;
|
||||||
int _dl_debug_bindings;
|
int _dl_debug_bindings;
|
||||||
|
Reference in New Issue
Block a user