diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/main/arbprogram.c | 4 | ||||
-rw-r--r-- | src/mesa/main/shaderapi.c | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/src/mesa/main/arbprogram.c b/src/mesa/main/arbprogram.c index c0786d4230d..911b6fa3960 100644 --- a/src/mesa/main/arbprogram.c +++ b/src/mesa/main/arbprogram.c @@ -41,6 +41,10 @@ #include "program/program.h" #include "program/prog_print.h" +#ifdef _MSC_VER +#include <stdlib.h> +#define PATH_MAX _MAX_PATH +#endif /** * Bind a program (make it current) diff --git a/src/mesa/main/shaderapi.c b/src/mesa/main/shaderapi.c index eb6b1f5a7e8..9d440a0fd03 100644 --- a/src/mesa/main/shaderapi.c +++ b/src/mesa/main/shaderapi.c @@ -60,6 +60,10 @@ #include "util/hash_table.h" #include "util/mesa-sha1.h" +#ifdef _MSC_VER +#include <stdlib.h> +#define PATH_MAX _MAX_PATH +#endif /** * Return mask of GLSL_x flags by examining the MESA_GLSL env var. |