diff options
author | Daniel Richard G <skunk@iskunk.org> | 2013-11-23 22:31:36 -0500 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2013-11-23 22:39:39 -0500 |
commit | 7b485daffb3808403ef81e71ce33014e0af785a0 (patch) | |
tree | 4ef08d335d258c81caf0c60f5e915f06654458d4 | |
parent | 757849cd93a9bc361a5113e3aaafe516773aad44 (diff) | |
download | gunmake-7b485daffb3808403ef81e71ce33014e0af785a0.tar.gz |
* load.c: [SV 40515] Define RTLD_GLOBAL if not set.
Copyright-paperwork-exempt: yes
-rw-r--r-- | load.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -30,6 +30,11 @@ this program. If not, see <http://www.gnu.org/licenses/>. */ #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; |