Module: Mesa Branch: master Commit: e801fbb8131a6124e4f9663e97c66de24918a584 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=e801fbb8131a6124e4f9663e97c66de24918a584
Author: Timothy Arceri <[email protected]> Date: Fri Dec 12 20:47:43 2014 +1100 util: 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]> --- src/util/u_atomic.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/u_atomic.h b/src/util/u_atomic.h index 56c5740..4010036 100644 --- a/src/util/u_atomic.h +++ b/src/util/u_atomic.h @@ -21,7 +21,7 @@ #define PIPE_ATOMIC_OS_SOLARIS #elif defined(_MSC_VER) #define PIPE_ATOMIC_MSVC_INTRINSIC -#elif defined(__GNUC__) && ((__GNUC__ * 100 + __GNUC_MINOR__) >= 401) +#elif defined(__GNUC__) #define PIPE_ATOMIC_GCC_INTRINSIC #else #error "Unsupported platform" _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
