diff options
author | Timothy Arceri <[email protected]> | 2014-12-12 19:05:22 +1100 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2014-12-17 08:37:05 +1100 |
commit | 5eec7c8ab8bddce1de45eee6c48b7078f41a4e2f (patch) | |
tree | 7ce91554304c6bf1511138fc9345f774c74ad5a9 /src/glx | |
parent | 2308b3bef25723b1ebff0b71f2f87dd44050cc2c (diff) |
mesa: remove support for GCC older than 3.3.0
GCC >=3.3 has been required since 9aa3aa71386394725ce88df463d6183f62777ee5
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/glx')
-rw-r--r-- | src/glx/dri_common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glx/dri_common.h b/src/glx/dri_common.h index 6234fd812bf..5cd150ab4d2 100644 --- a/src/glx/dri_common.h +++ b/src/glx/dri_common.h @@ -40,7 +40,7 @@ #include <stdbool.h> #include "loader.h" -#if (__GNUC__ >= 3) +#if (__GNUC__) #define PRINTFLIKE(f, a) __attribute__ ((format(__printf__, f, a))) #else #define PRINTFLIKE(f, a) |