summaryrefslogtreecommitdiff
path: root/src/gallium/include
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2011-03-04 11:46:13 +0000
committerJosé Fonseca <jfonseca@vmware.com>2011-03-04 11:55:36 +0000
commitd40b868db5b82529cbe07598b2ebef23cc31a7fa (patch)
treee570ccefa3e86ce3a24a124fe341ad739e2bdb42 /src/gallium/include
parentcf143c1f4d7c3636ddd5c767518b1b00ff46b16c (diff)
gallium: Define __func__ on MSVC.
Diffstat (limited to 'src/gallium/include')
-rw-r--r--src/gallium/include/pipe/p_compiler.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/gallium/include/pipe/p_compiler.h b/src/gallium/include/pipe/p_compiler.h
index 3d6b5b5c81..3441db685c 100644
--- a/src/gallium/include/pipe/p_compiler.h
+++ b/src/gallium/include/pipe/p_compiler.h
@@ -171,6 +171,18 @@ typedef unsigned char boolean;
# define __FUNCTION__ "<unknown>"
# 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__ "<unknown>"
+# endif
+# endif
+#endif