From: Yang Tse Date: Fri, 19 Oct 2007 12:15:00 +0000 (+0000) Subject: Fix message shown when detecting icc version X-Git-Tag: curl-7_17_1~51 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d0fe681a28edab36ca47e96122958017305427f3;p=thirdparty%2Fcurl.git Fix message shown when detecting icc version --- diff --git a/ares/configure.ac b/ares/configure.ac index 0f1dd7ea64..42e4b5f813 100644 --- a/ares/configure.ac +++ b/ares/configure.ac @@ -132,6 +132,7 @@ case $host in # if test "$ICC" = "yes"; then dnl figure out icc version + AC_MSG_CHECKING([icc version]) iccver=`$CC -dumpversion` iccnhi=`echo $iccver | cut -d . -f1` iccnlo=`echo $iccver | cut -d . -f2` diff --git a/configure.ac b/configure.ac index 274489699e..eef03855d3 100644 --- a/configure.ac +++ b/configure.ac @@ -239,6 +239,7 @@ case $host in # if test "$ICC" = "yes"; then dnl figure out icc version + AC_MSG_CHECKING([icc version]) iccver=`$CC -dumpversion` iccnhi=`echo $iccver | cut -d . -f1` iccnlo=`echo $iccver | cut -d . -f2`