diff options
author | Khem Raj <raj.khem@gmail.com> | 2012-01-16 08:48:27 -0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2012-01-16 08:48:27 -0800 |
commit | 1d8d1f6b915c82d1f35d4618211b60d9f91761f1 (patch) | |
tree | 213e7d76069451997cedd67c14a3d37951e99697 /libc/sysdeps | |
parent | 27fb7ccf7e00b1d94b7b13989006aa2da7edef9a (diff) |
mips/dlfcn.h: Disable RTLD_DEEPBIND
RTLD_DEEPBIND is not supported in uclibc
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'libc/sysdeps')
-rw-r--r-- | libc/sysdeps/linux/mips/bits/dlfcn.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/mips/bits/dlfcn.h b/libc/sysdeps/linux/mips/bits/dlfcn.h index 1f054f979..3d81693de 100644 --- a/libc/sysdeps/linux/mips/bits/dlfcn.h +++ b/libc/sysdeps/linux/mips/bits/dlfcn.h @@ -27,7 +27,9 @@ #define RTLD_NOW 0x0002 /* Immediate function call binding. */ #define RTLD_BINDING_MASK 0x3 /* Mask of binding time value. */ #define RTLD_NOLOAD 0x00008 /* Do not load the object. */ +#if 0 /* uClibc doesnt support these */ #define RTLD_DEEPBIND 0x00010 /* Use deep binding. */ +#endif /* If the following bit is set in the MODE argument to `dlopen', the symbols of the loaded object and its dependencies are made |