diff options
author | Tomas Wilhelmsson <[email protected]> | 2009-02-23 08:11:29 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-02-23 08:11:29 -0700 |
commit | 41172c04306098ab9ecba8b48d7be47c3911a662 (patch) | |
tree | a324979d3849b9376a603aed930fb25cee9d45b0 /src/mesa/main/dlopen.c | |
parent | d265706cd3849679e543797b4ad4edf463cd4586 (diff) |
mesa: fixes for building on Haiku
Diffstat (limited to 'src/mesa/main/dlopen.c')
-rw-r--r-- | src/mesa/main/dlopen.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mesa/main/dlopen.c b/src/mesa/main/dlopen.c index 338246bb59b..94bec4a0887 100644 --- a/src/mesa/main/dlopen.c +++ b/src/mesa/main/dlopen.c @@ -36,7 +36,10 @@ #if defined(_WIN32) #include <windows.h> #endif - +#if defined(__HAIKU__) +/* for NULL */ +#include <stdio.h> +#endif /** * Wrapper for dlopen(). |