diff options
author | José Fonseca <[email protected]> | 2014-11-25 23:04:05 +0000 |
---|---|---|
committer | José Fonseca <[email protected]> | 2014-11-26 20:30:58 +0000 |
commit | 4b6e93650cfe5f2c285cf601d7f3e8286ce40d3c (patch) | |
tree | abe2761e9b5d2747aa307cac942c2cd2adf8a9ca /src/gallium/auxiliary | |
parent | 29557a1fa8cbfb62fdc32cfc78085f3e6218b51d (diff) |
util/u_snprintf: Don't redefine HAVE_STDINT_H as 0.
We now always guarantee availability of stdint.h on MSVC -- if MSVC
doesn't supply one we use our own.
Cc: "10.4" <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Reviewed-by: Roland Scheidegger <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary')
-rw-r--r-- | src/gallium/auxiliary/util/u_snprintf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/util/u_snprintf.c b/src/gallium/auxiliary/util/u_snprintf.c index 7a2bf2a6f78..39e9b70d0f8 100644 --- a/src/gallium/auxiliary/util/u_snprintf.c +++ b/src/gallium/auxiliary/util/u_snprintf.c @@ -176,7 +176,7 @@ #define HAVE_ASPRINTF 1 /* not needed */ #define HAVE_STDARG_H 1 #define HAVE_STDDEF_H 1 -#define HAVE_STDINT_H 0 +#define HAVE_STDINT_H 1 #define HAVE_STDLIB_H 1 #define HAVE_INTTYPES_H 0 #define HAVE_LOCALE_H 0 |