From: José Fonseca Date: Mon, 6 Sep 2010 12:56:07 +0000 (+0100) Subject: mesa: Define C99's __func__ macro on MSVC. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=079c8840609f1277320bd85c3e9568179e30bfd3;p=mesa.git mesa: Define C99's __func__ macro on MSVC. --- diff --git a/src/mesa/main/compiler.h b/src/mesa/main/compiler.h index ded69c3106c..800eb839005 100644 --- a/src/mesa/main/compiler.h +++ b/src/mesa/main/compiler.h @@ -224,6 +224,18 @@ extern "C" { # endif # endif #endif +#ifndef __func__ +# if (__STDC_VERSION__ >= 199901L) || \ + (defined(__SUNPRO_C) && defined(__C99FEATURES__)) + /* __func__ is part of C99 */ +# elif defined(_MSC_VER) +# if _MSC_VER >= 1300 +# define __func__ __FUNCTION__ +# else +# define __func__ "" +# endif +# endif +#endif /**