mesa: fixes for building on Haiku
[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 "dlopen.h"
32
33 #if defined(_GNU_SOURCE) && !defined(__MINGW32__)
34 #include <dlfcn.h>
35 #endif
36 #if defined(_WIN32)
37 #include <windows.h>
38 #endif
39 #if defined(__HAIKU__)
40 /* for NULL */
41 #include <stdio.h>
42 #endif
43
44 /**
45 * Wrapper for dlopen().
46 * Note that 'flags' isn't used at this time.
47 */
48 void *
49 _mesa_dlopen(const char *libname, int flags)
50 {
51 #if defined(_GNU_SOURCE)
52 flags = RTLD_LAZY | RTLD_GLOBAL; /* Overriding flags at this time */
53 return dlopen(libname, flags);
54 #elif defined(__MINGW32__)
55 return LoadLibraryA(libname);
56 #else
57 return NULL;
58 #endif
59 }
60
61
62 /**
63 * Wrapper for dlsym() that does a cast to a generic function type,
64 * rather than a void *. This reduces the number of warnings that are
65 * generated.
66 */
67 GenericFunc
68 _mesa_dlsym(void *handle, const char *fname)
69 {
70 #if defined(__DJGPP__)
71 /* need '_' prefix on symbol names */
72 char fname2[1000];
73 fname2[0] = '_';
74 _mesa_strncpy(fname2 + 1, fname, 998);
75 fname2[999] = 0;
76 return (GenericFunc) dlsym(handle, fname2);
77 #elif defined(_GNU_SOURCE)
78 return (GenericFunc) dlsym(handle, fname);
79 #elif defined(__MINGW32__)
80 return (GenericFunc) GetProcAddress(handle, fname);
81 #else
82 return (GenericFunc) NULL;
83 #endif
84 }
85
86
87 /**
88 * Wrapper for dlclose().
89 */
90 void
91 _mesa_dlclose(void *handle)
92 {
93 #if defined(_GNU_SOURCE)
94 dlclose(handle);
95 #elif defined(__MINGW32__)
96 FreeLibrary(handle);
97 #else
98 (void) handle;
99 #endif
100 }
101
102
103