diff options
author | José Fonseca <[email protected]> | 2009-02-23 11:24:46 +0000 |
---|---|---|
committer | José Fonseca <[email protected]> | 2009-02-23 11:24:46 +0000 |
commit | 1456af2f2d7602a1f1fca54d8fe625e25851e441 (patch) | |
tree | 80e326a9c48f09682349c0c9dca08835d1d0b37d /src/mesa/main/dlopen.c | |
parent | ddc6ee316cd7ca07853efc615cd2681f3a1232d4 (diff) |
mesa: Fix windows build.
Diffstat (limited to 'src/mesa/main/dlopen.c')
-rw-r--r-- | src/mesa/main/dlopen.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/main/dlopen.c b/src/mesa/main/dlopen.c index 0fc0c21e94a..338246bb59b 100644 --- a/src/mesa/main/dlopen.c +++ b/src/mesa/main/dlopen.c @@ -33,6 +33,9 @@ #if defined(_GNU_SOURCE) && !defined(__MINGW32__) #include <dlfcn.h> #endif +#if defined(_WIN32) +#include <windows.h> +#endif /** |