diff options
author | Mike Frysinger <vapier@gentoo.org> | 2007-02-28 17:10:27 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2007-02-28 17:10:27 +0000 |
commit | 913c52ce79759916e7d504555b44e5e5e79c90ff (patch) | |
tree | 2e89c0dfe710625546683f073a5013fe03108e63 | |
parent | b0973711aa3a985c9479727bd96a2df4094a0114 (diff) |
ifdef out RTLD defines we dont actually support nor are in POSIX
-rw-r--r-- | libc/sysdeps/linux/common/bits/dlfcn.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/common/bits/dlfcn.h b/libc/sysdeps/linux/common/bits/dlfcn.h index f68849843..4bfbbff04 100644 --- a/libc/sysdeps/linux/common/bits/dlfcn.h +++ b/libc/sysdeps/linux/common/bits/dlfcn.h @@ -24,9 +24,11 @@ /* The MODE argument to `dlopen' contains one of the following: */ #define RTLD_LAZY 0x00001 /* Lazy function call binding. */ #define RTLD_NOW 0x00002 /* Immediate function call binding. */ +#if 0 /* uClibc doesnt support these */ #define RTLD_BINDING_MASK 0x3 /* Mask of binding time value. */ #define RTLD_NOLOAD 0x00004 /* Do not load the object. */ #define RTLD_DEEPBIND 0x00008 /* 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 |