Author: obnox Date: 2007-05-24 07:15:36 +0000 (Thu, 24 May 2007) New Revision: 23108
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=23108 Log: Add defines of RTLD_NOW and RTLD_GLOBAL to replace.h. Fixing build of ldb for instance on some systems without dlfcn.h. Modified: branches/SAMBA_3_0/source/lib/replace/replace.h branches/SAMBA_3_0_26/source/lib/replace/replace.h branches/SAMBA_4_0/source/lib/replace/replace.h Changeset: Modified: branches/SAMBA_3_0/source/lib/replace/replace.h =================================================================== --- branches/SAMBA_3_0/source/lib/replace/replace.h 2007-05-24 01:57:02 UTC (rev 23107) +++ branches/SAMBA_3_0/source/lib/replace/replace.h 2007-05-24 07:15:36 UTC (rev 23108) @@ -111,11 +111,6 @@ extern int errno; #endif -#if defined(HAVE_LINUX_READAHEAD) && ! defined(HAVE_READAHEAD_DECL) -ssize_t readahead(int fd, off64_t offset, size_t count); -#endif - - #ifndef HAVE_STRDUP #define strdup rep_strdup char *rep_strdup(const char *s); @@ -326,6 +321,12 @@ #ifndef RTLD_LAZY #define RTLD_LAZY 0 #endif +#ifndef RTLD_NOW +#define RTLD_NOW 0 +#endif +#ifndef RTLD_GLOBAL +#define RTLD_GLOBAL 0 +#endif #ifndef HAVE_SECURE_MKSTEMP #define mkstemp(path) rep_mkstemp(path) Modified: branches/SAMBA_3_0_26/source/lib/replace/replace.h =================================================================== --- branches/SAMBA_3_0_26/source/lib/replace/replace.h 2007-05-24 01:57:02 UTC (rev 23107) +++ branches/SAMBA_3_0_26/source/lib/replace/replace.h 2007-05-24 07:15:36 UTC (rev 23108) @@ -321,6 +321,12 @@ #ifndef RTLD_LAZY #define RTLD_LAZY 0 #endif +#ifndef RTLD_NOW +#define RTLD_NOW 0 +#endif +#ifndef RTLD_GLOBAL +#define RTLD_GLOBAL 0 +#endif #ifndef HAVE_SECURE_MKSTEMP #define mkstemp(path) rep_mkstemp(path) Modified: branches/SAMBA_4_0/source/lib/replace/replace.h =================================================================== --- branches/SAMBA_4_0/source/lib/replace/replace.h 2007-05-24 01:57:02 UTC (rev 23107) +++ branches/SAMBA_4_0/source/lib/replace/replace.h 2007-05-24 07:15:36 UTC (rev 23108) @@ -321,6 +321,12 @@ #ifndef RTLD_LAZY #define RTLD_LAZY 0 #endif +#ifndef RTLD_NOW +#define RTLD_NOW 0 +#endif +#ifndef RTLD_GLOBAL +#define RTLD_GLOBAL 0 +#endif #ifndef HAVE_SECURE_MKSTEMP #define mkstemp(path) rep_mkstemp(path)
