blob: ad68ed7c5d5bdf17da650685dacd33f9f2091649 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
--- glibc-2.3.1/elf/Versions.orig 2002-11-07 17:04:54.000000000 +0200
+++ glibc-2.3.1/elf/Versions 2002-11-07 17:06:56.000000000 +0200
@@ -32,6 +32,10 @@
_r_debug;
}
GLIBC_2.1 {
+ # This will be GLIBC_PRIVATE, just to give folks some time
+ # to fix their stuff
+ __libc_stack_end;
+
# functions used in other libraries
_dl_mcount;
}
@@ -41,7 +45,7 @@
}
GLIBC_PRIVATE {
# Those are in the dynamic linker, but used by libc.so.
- __libc_enable_secure; __libc_stack_end;
+ __libc_enable_secure; # __libc_stack_end;
_dl_argv; _dl_catch_error; _dl_check_map_versions;
_dl_debug_printf; _dl_debug_state; _dl_dst_count;
_dl_dst_substitute; _dl_init; _dl_lookup_symbol; _dl_lookup_symbol_skip;
|