2010-08-06 Yaakov Selkowitz * include/dlfcn.h (RTLD_LOCAL): Define. Index: include/dlfcn.h =================================================================== RCS file: /cvs/src/src/winsup/cygwin/include/dlfcn.h,v retrieving revision 1.3 diff -u -r1.3 dlfcn.h --- include/dlfcn.h 14 Sep 2004 08:29:12 -0000 1.3 +++ include/dlfcn.h 7 Aug 2010 01:22:37 -0000 @@ -31,6 +31,7 @@ #define RTLD_DEFAULT NULL /* valid values for mode argument to dlopen */ +#define RTLD_LOCAL 0 /* symbols in this dlopen'ed obj are not visible to other dlopen'ed objs */ #define RTLD_LAZY 1 /* lazy function call binding */ #define RTLD_NOW 2 /* immediate function call binding */ #define RTLD_GLOBAL 4 /* symbols in this dlopen'ed obj are visible to other dlopen'ed objs */