aboutsummaryrefslogtreecommitdiff
path: root/src/gcc.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2012-08-01 09:44:45 +0200
committerMax Kellermann <max@duempel.org>2012-08-01 09:59:12 +0200
commit37b92967c5a8d233536216ac435ebb0d0b17782c (patch)
tree95fe0d231af77d47c885decf34f4b9a859885a8e /src/gcc.h
parent768504e956f711ef98268ac8cfca308b11fa4978 (diff)
gcc.h: require g++ 4.5 or newer
Soon we'll use C++11 lambdas which were implemented in gcc 4.5.
Diffstat (limited to 'src/gcc.h')
-rw-r--r--src/gcc.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gcc.h b/src/gcc.h
index 1c6dbc53..1d0128cb 100644
--- a/src/gcc.h
+++ b/src/gcc.h
@@ -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