diff options
author | Timothy Arceri <[email protected]> | 2014-12-12 20:27:44 +1100 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2014-12-17 08:37:17 +1100 |
commit | 8d0c641603e4115c99b21faf9ad24333fb626bea (patch) | |
tree | b57a1db8e018184acfc62f4f063efdffc7728308 /src/egl/wayland | |
parent | 78e1246bece3d14e2e0c194493e676e9c50f342f (diff) |
egl: 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/egl/wayland')
-rw-r--r-- | src/egl/wayland/wayland-egl/wayland-egl-priv.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/egl/wayland/wayland-egl/wayland-egl-priv.h b/src/egl/wayland/wayland-egl/wayland-egl-priv.h index da25be9f710..74a155202be 100644 --- a/src/egl/wayland/wayland-egl/wayland-egl-priv.h +++ b/src/egl/wayland/wayland-egl/wayland-egl-priv.h @@ -6,7 +6,7 @@ extern "C" { #endif /* GCC visibility */ -#if defined(__GNUC__) && __GNUC__ >= 4 +#if defined(__GNUC__) #define WL_EGL_EXPORT __attribute__ ((visibility("default"))) #else #define WL_EGL_EXPORT |