svn commit: trunk/uClibc/libc/sysdeps/linux/common/bits

vapier at uclibc.org vapier at uclibc.org
Wed Feb 28 17:10:27 UTC 2007


Author: vapier
Date: 2007-02-28 09:10:27 -0800 (Wed, 28 Feb 2007)
New Revision: 17984

Log:
ifdef out RTLD defines we dont actually support nor are in POSIX

Modified:
   trunk/uClibc/libc/sysdeps/linux/common/bits/dlfcn.h


Changeset:
Modified: trunk/uClibc/libc/sysdeps/linux/common/bits/dlfcn.h
===================================================================
--- trunk/uClibc/libc/sysdeps/linux/common/bits/dlfcn.h	2007-02-28 17:04:42 UTC (rev 17983)
+++ trunk/uClibc/libc/sysdeps/linux/common/bits/dlfcn.h	2007-02-28 17:10:27 UTC (rev 17984)
@@ -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




More information about the uClibc-cvs mailing list