aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/glapi
diff options
context:
space:
mode:
authorIan Romanick <[email protected]>2010-03-03 16:15:42 -0800
committerIan Romanick <[email protected]>2010-03-03 16:26:32 -0800
commitf7dde2c131d8ec04c00f0dd3d7747019ff72a237 (patch)
tree884865a845d58e897c36871995096c4140a89ced /src/mesa/glapi
parent6e8e4b918d1dac8a0c20e7a5d6f4665a1eaf174f (diff)
Remove support for GCC older than 3.3.0 from generated sources
Signed-off-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/mesa/glapi')
-rw-r--r--src/mesa/glapi/glapitemp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/glapi/glapitemp.h b/src/mesa/glapi/glapitemp.h
index 2ef4728e09c..f9b803e2abd 100644
--- a/src/mesa/glapi/glapitemp.h
+++ b/src/mesa/glapi/glapitemp.h
@@ -27,7 +27,7 @@
*/
-# if (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 3) || (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590))) && defined(__ELF__)
+# if defined(__GNUC__) || (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590))) && defined(__ELF__)
# define HIDDEN __attribute__((visibility("hidden")))
# else
# define HIDDEN