aboutsummaryrefslogtreecommitdiffstats
path: root/make/stub_includes/unix
diff options
context:
space:
mode:
authorKenneth Russel <[email protected]>2009-06-15 22:39:33 +0000
committerKenneth Russel <[email protected]>2009-06-15 22:39:33 +0000
commit90bcb596e88898f807b39c9e7c85485ab8c006b6 (patch)
treecd8364c36dc0035fde6660808a803d28e69b3fbc /make/stub_includes/unix
parent9e979e542165358b5c3684078e193f9c706f1eab (diff)
Deleted obsolete source code in preparation for copying JOGL_2_SANDBOX
on to trunk git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/../svn-server-sync/gluegen/trunk@146 a78bb65f-1512-4460-ba86-f6dc96a7bf27
Diffstat (limited to 'make/stub_includes/unix')
-rwxr-xr-xmake/stub_includes/unix/dynamic-linker.h47
1 files changed, 0 insertions, 47 deletions
diff --git a/make/stub_includes/unix/dynamic-linker.h b/make/stub_includes/unix/dynamic-linker.h
deleted file mode 100755
index 7071438..0000000
--- a/make/stub_includes/unix/dynamic-linker.h
+++ /dev/null
@@ -1,47 +0,0 @@
-/* Portions extracted from Solaris dlfcn.h */
-
-/*
- * Copyright 2005 Sun Microsystems, Inc. All rights reserved.
- * Use is subject to license terms.
- *
- * Copyright (c) 1989 AT&T
- * All Rights Reserved
- *
- */
-
-/*
- * Valid values for handle argument to dlsym(3x).
- */
-#define RTLD_NEXT -1LL /* look in `next' dependency */
-#define RTLD_DEFAULT -2LL /* look up symbol from scope */
- /* of current object */
-#define RTLD_SELF -3LL /* look in `ourself' */
-#define RTLD_PROBE -4LL /* look up symbol from scope */
- /* of current object, */
- /* using currently */
- /* loaded objects only. */
-
-/*
- * Valid values for mode argument to dlopen.
- */
-#define RTLD_LAZY 0x00001 /* deferred function binding */
-#define RTLD_NOW 0x00002 /* immediate function binding */
-#define RTLD_NOLOAD 0x00004 /* don't load object */
-
-#define RTLD_GLOBAL 0x00100 /* export symbols to others */
-#define RTLD_LOCAL 0x00000 /* symbols are only available */
- /* to group members */
-#define RTLD_PARENT 0x00200 /* add parent (caller) to */
- /* a group dependencies */
-#define RTLD_GROUP 0x00400 /* resolve symbols within */
- /* members of the group */
-#define RTLD_WORLD 0x00800 /* resolve symbols within */
- /* global objects */
-#define RTLD_NODELETE 0x01000 /* do not remove members */
-#define RTLD_FIRST 0x02000 /* only first object is */
- /* available for dlsym */
-
-extern void *dlopen(const char *, int);
-extern void *dlsym(void *, const char *);
-extern int dlclose(void *);
-extern char *dlerror(void);