Merge branch 'mesa_7_6_branch'
[mesa.git] / src / mesa / main / dlopen.c
1 /*
2 * Mesa 3-D graphics library
3 *
4 * Copyright (C) 1999-2008 Brian Paul All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included
14 * in all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
17 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
20 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
21 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22 */
23
24
25 /**
26 * Wrapper functions for dlopen(), dlsym(), dlclose().
27 * Note that the #ifdef tests for various environments should be expanded.
28 */
29
30
31 #include "compiler.h"
32 #include "dlopen.h"
33
34 #if defined(_GNU_SOURCE) && !defined(__MINGW32__)
35 #include <dlfcn.h>
36 #endif
37 #if defined(_WIN32)
38 #include <windows.h>
39 #endif
40
41
42 /**
43 * Wrapper for dlopen().
44 * Note that 'flags' isn't used at this time.
45 */
46 void *
47 _mesa_dlopen(const char *libname, int flags)
48 {
49 #if defined(_GNU_SOURCE)
50 flags = RTLD_LAZY | RTLD_GLOBAL; /* Overriding flags at this time */
51 return dlopen(libname, flags);
52 #elif defined(__MINGW32__)
53 return LoadLibraryA(libname);
54 #else
55 return NULL;
56 #endif
57 }
58
59
60 /**
61 * Wrapper for dlsym() that does a cast to a generic function type,
62 * rather than a void *. This reduces the number of warnings that are
63 * generated.
64 */
65 GenericFunc
66 _mesa_dlsym(void *handle, const char *fname)
67 {
68 #if defined(__DJGPP__)
69 /* need '_' prefix on symbol names */
70 char fname2[1000];
71 fname2[0] = '_';
72 _mesa_strncpy(fname2 + 1, fname, 998);
73 fname2[999] = 0;
74 return (GenericFunc) dlsym(handle, fname2);
75 #elif defined(_GNU_SOURCE)
76 return (GenericFunc) dlsym(handle, fname);
77 #elif defined(__MINGW32__)
78 return (GenericFunc) GetProcAddress(handle, fname);
79 #else
80 return (GenericFunc) NULL;
81 #endif
82 }
83
84
85 /**
86 * Wrapper for dlclose().
87 */
88 void
89 _mesa_dlclose(void *handle)
90 {
91 #if defined(_GNU_SOURCE)
92 dlclose(handle);
93 #elif defined(__MINGW32__)
94 FreeLibrary(handle);
95 #else
96 (void) handle;
97 #endif
98 }
99
100
101