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.11.5rc1~9^2 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=ee8cb1b480741d9afad9633e04bf0c83696f6f9d;p=thirdparty%2Fbind9.git report "$CC --version" output as part of the configure summary (cherry picked from commit a6f43574a0fff3882d3860bd051b8de3fbc93716) --- diff --git a/configure b/configure index 1a1631e54c0..4394755a62a 100755 --- a/configure +++ b/configure @@ -27040,10 +27040,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 641bb5ea7bb..9aa7e2d7e7a 100644 --- a/configure.in +++ b/configure.in @@ -5621,10 +5621,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