Commit 37b92967 authored by Max Kellermann's avatar Max Kellermann

gcc.h: require g++ 4.5 or newer

Soon we'll use C++11 lambdas which were implemented in gcc 4.5.
parent 768504e9
......@@ -62,6 +62,10 @@
#ifdef __cplusplus
#if !defined(__clang__) && defined(__GNUC__) && !GCC_CHECK_VERSION(4,5)
#error Your gcc version is too old. MPD requires gcc 4.5 or newer.
#endif
/* support for C++11 "override" was added in gcc 4.7 */
#if !defined(__clang__) && defined(__GNUC__) && !GCC_CHECK_VERSION(4,7)
#define override
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment