[aadk-commits] dbailey: uClinux/trunk r161 -
/uClinux/trunk/uClinux-dist/uClibc/libc/sysdeps...
aadk-commits at lists.digium.com
aadk-commits at lists.digium.com
Thu Feb 22 07:02:06 MST 2007
Author: dbailey
Date: Thu Feb 22 08:02:05 2007
New Revision: 161
URL: http://svn.digium.com/view/aadk?view=rev&rev=161
Log:
remove RTLD_NOLOAD definition since the uClibc dlopen does not support it.
Its existence confused the autoconf so that some build assumed it was available
Modified:
uClinux/trunk/uClinux-dist/uClibc/libc/sysdeps/linux/common/bits/dlfcn.h
Modified: uClinux/trunk/uClinux-dist/uClibc/libc/sysdeps/linux/common/bits/dlfcn.h
URL: http://svn.digium.com/view/aadk/uClinux/trunk/uClinux-dist/uClibc/libc/sysdeps/linux/common/bits/dlfcn.h?view=diff&rev=161&r1=160&r2=161
==============================================================================
--- uClinux/trunk/uClinux-dist/uClibc/libc/sysdeps/linux/common/bits/dlfcn.h (original)
+++ uClinux/trunk/uClinux-dist/uClibc/libc/sysdeps/linux/common/bits/dlfcn.h Thu Feb 22 08:02:05 2007
@@ -25,7 +25,12 @@
#define RTLD_LAZY 0x00001 /* Lazy function call binding. */
#define RTLD_NOW 0x00002 /* Immediate function call binding. */
#define RTLD_BINDING_MASK 0x3 /* Mask of binding time value. */
-#define RTLD_NOLOAD 0x00004 /* Do not load the object. */
+
+/* Remove the following definition as the dlopen
+ * does not support this option.
+ * Its existence confuses the autoconf process.
+ */
+/*#define RTLD_NOLOAD 0x00004 */ /* Do not load the object. */
/* 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 aadk-commits
mailing list