From: Evan Hunt Date: Fri, 7 Sep 2018 17:59:04 +0000 (-0700) Subject: report "$CC --version" output as part of the configure summary X-Git-Tag: v9.13.4~152^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a6f43574a0fff3882d3860bd051b8de3fbc93716;p=thirdparty%2Fbind9.git report "$CC --version" output as part of the configure summary --- diff --git a/configure b/configure index d10db7f43bf..aa53344c969 100755 --- a/configure +++ b/configure @@ -23876,10 +23876,11 @@ report() { echo " prefix: $prefix" echo " sysconfdir: $sysconfdir" echo " localstatedir: $localstatedir" - + echo "-------------------------------------------------------------------------------" + echo "Compiler: $CC" + $CC --version 2>&1 | sed 's/^/ /' if test "X$ac_unrecognized_opts" != "X"; then - echo echo "Unrecognized options:" echo " $ac_unrecognized_opts" fi diff --git a/configure.in b/configure.in index 1210ed5c4c3..284c8ab0d38 100644 --- a/configure.in +++ b/configure.in @@ -3241,10 +3241,11 @@ report() { echo " prefix: $prefix" echo " sysconfdir: $sysconfdir" echo " localstatedir: $localstatedir" - + echo "-------------------------------------------------------------------------------" + echo "Compiler: $CC" + $CC --version 2>&1 | sed 's/^/ /' if test "X$ac_unrecognized_opts" != "X"; then - echo echo "Unrecognized options:" echo " $ac_unrecognized_opts" fi