From: Daniel Richard G Date: Sun, 24 Nov 2013 03:31:36 +0000 (-0500) Subject: * load.c: [SV 40515] Define RTLD_GLOBAL if not set. X-Git-Tag: 4.1~60 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7b485daffb3808403ef81e71ce33014e0af785a0;p=thirdparty%2Fmake.git * load.c: [SV 40515] Define RTLD_GLOBAL if not set. Copyright-paperwork-exempt: yes --- diff --git a/load.c b/load.c index ca73ac4c..63f2aafe 100644 --- a/load.c +++ b/load.c @@ -30,6 +30,11 @@ this program. If not, see . */ #include "filedef.h" #include "variable.h" +/* Tru64 V4.0 does not have this flag */ +#ifndef RTLD_GLOBAL +# define RTLD_GLOBAL 0 +#endif + struct load_list { struct load_list *next;