[Mesa-dev] [PATCH 7/9] egl: Don't attempt to redefine stdint.h types with VS 2013.

Patrick Baggett baggett.patrick at gmail.com
Fri May 2 08:53:03 PDT 2014


On Fri, May 2, 2014 at 10:11 AM, <jfonseca at vmware.com> wrote:

> From: José Fonseca <jfonseca at vmware.com>
>
> Just include stdint.h.
> ---
>  src/egl/main/eglcompiler.h | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/src/egl/main/eglcompiler.h b/src/egl/main/eglcompiler.h
> index 53dab54..5ea83d6 100644
> --- a/src/egl/main/eglcompiler.h
> +++ b/src/egl/main/eglcompiler.h
> @@ -37,7 +37,8 @@
>  /**
>   * Get standard integer types
>   */
> -#if (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L)
> +#if (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || \
> +    (defined(_MSC_VER) && _MSC_VER >= 1600)
>

VS 2010 is where the support for <stdint.h> beings. This can be verified by
a quick Google search.



>  #  include <stdint.h>
>  #elif defined(_MSC_VER)
>     typedef __int8             int8_t;
> --
> 1.9.1
>
> _______________________________________________
> mesa-dev mailing list
> mesa-dev at lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/mesa-dev
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.freedesktop.org/archives/mesa-dev/attachments/20140502/5213791b/attachment.html>


More information about the mesa-dev mailing list