From: Rhys Kidd Date: Sun, 11 Sep 2016 13:42:50 +0000 (+0000) Subject: Improve configure output error message, when compiler version not supported. n-i-bz. X-Git-Tag: svn/VALGRIND_3_12_0~75 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=72097ab0f7b7b01fa245075fcd1258556bbf0c77;p=thirdparty%2Fvalgrind.git Improve configure output error message, when compiler version not supported. n-i-bz. Based on a patch by Jeremy Hu . Refer bz#366138. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@15948 --- diff --git a/configure.ac b/configure.ac index 4ebea04535..ef61c155af 100644 --- a/configure.ac +++ b/configure.ac @@ -167,7 +167,7 @@ case "${is_clang}-${gcc_version}" in AC_MSG_RESULT([ok (clang-${gcc_version})]) ;; *) - AC_MSG_RESULT([no (${gcc_version})]) + AC_MSG_RESULT([no (${is_clang}-${gcc_version})]) AC_MSG_ERROR([please use gcc >= 3.0 or clang >= 2.9 or icc >= 13.0]) ;; esac