summaryrefslogtreecommitdiffstats
path: root/src/gbm
diff options
context:
space:
mode:
authorTimothy Arceri <[email protected]>2014-12-12 20:38:22 +1100
committerTimothy Arceri <[email protected]>2014-12-17 08:37:29 +1100
commitbf37433f8c0fe14b92758f5f35449e35f3a38f9c (patch)
tree079b126ec209f277d9cdef82141fbf3fe51e7270 /src/gbm
parent13675a49074e395a68a5d05dacedf209bc2b69c6 (diff)
gbm: remove support for GCC older than 4.1.0
Signed-off-by: Timothy Arceri <[email protected]> Reviewed-By: Jose Fonseca <[email protected]> Reviewed-by: Ian Romanick <[email protected]> Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/gbm')
-rw-r--r--src/gbm/main/gbmint.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gbm/main/gbmint.h b/src/gbm/main/gbmint.h
index 31345e6f6de..155eb12b06b 100644
--- a/src/gbm/main/gbmint.h
+++ b/src/gbm/main/gbmint.h
@@ -32,7 +32,7 @@
#include <sys/stat.h>
/* GCC visibility */
-#if defined(__GNUC__) && __GNUC__ >= 4
+#if defined(__GNUC__)
#define GBM_EXPORT __attribute__ ((visibility("default")))
#else
#define GBM_EXPORT