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;