diff --git a/INSTALL b/INSTALL index a45c4fb1b..97107ba9c 100644 --- a/INSTALL +++ b/INSTALL @@ -12,7 +12,7 @@ install MPD. If more information is desired, read the user manual: Dependencies ------------ -gcc 4.6 or later - http://gcc.gnu.org/ +gcc 4.7 or later - http://gcc.gnu.org/ clang 3.2 or later - http://clang.llvm.org/ Any other C++11 compliant compiler should also work. diff --git a/NEWS b/NEWS index 88ee88970..02f873c17 100644 --- a/NEWS +++ b/NEWS @@ -3,6 +3,7 @@ ver 0.19.18 (not yet released) - ffmpeg: fix crash with older FFmpeg versions (< 3.0) - ffmpeg: log detailed error message - ffmpeg: support FFmpeg 3.1 +* require gcc 4.7 or newer ver 0.19.17 (2016/07/09) * decoder diff --git a/doc/developer.xml b/doc/developer.xml index 074c7f36d..f07c52000 100644 --- a/doc/developer.xml +++ b/doc/developer.xml @@ -41,7 +41,7 @@ the code should be C++11 compliant, and must compile with - GCC 4.6 and + GCC 4.7 and clang 3.2 diff --git a/src/Compiler.h b/src/Compiler.h index fea971526..5a28c3da2 100644 --- a/src/Compiler.h +++ b/src/Compiler.h @@ -45,7 +45,7 @@ # error Sorry, your clang version is too old. You need at least version 3.1. # endif #elif defined(__GNUC__) -# if GCC_OLDER_THAN(4,6) +# if GCC_OLDER_THAN(4,7) # error Sorry, your gcc version is too old. You need at least version 4.6. # endif #else