From: Evan Hunt Date: Tue, 20 May 2014 22:31:14 +0000 (-0700) Subject: [master] report unrecognized configure options X-Git-Tag: v9.11.0a1~1620 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=ea58c563bccc2a8dc20886c99c7c3334a971b6d3;p=thirdparty%2Fbind9.git [master] report unrecognized configure options 3854. [cleanup] Report unrecognized options, if any, in the final configure summary. [RT #36014] --- diff --git a/CHANGES b/CHANGES index 9c900b44f09..1fda6c1ac5c 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,6 @@ +3854. [cleanup] Report unrecognized options, if any, in the final + configure summary. [RT #36014] + 3853. [cleanup] Refactor dns_rdataslab_fromrdataset to seperate out the handling of a rdataset with no records. [RT #35968] diff --git a/configure b/configure index 9aa016dafe1..75e69e74c15 100755 --- a/configure +++ b/configure @@ -24079,6 +24079,11 @@ test "X$PYTHON" = "X" && echo " Python tools (--with-python)" test "X$libxml2_libs" = "X" && echo " XML statistics (--with-libxml2)" test "X$have_libjson" = "X" && echo " JSON statistics (--with-libjson)" +if test "X$ac_unrecognized_opts" != "X"; then + echo + echo "Unrecognized options:" + echo " $ac_unrecognized_opts" +fi echo "========================================================================" if test "X$CRYPTO" = "X"; then diff --git a/configure.in b/configure.in index d008b0079b4..5913a324e03 100644 --- a/configure.in +++ b/configure.in @@ -4662,6 +4662,11 @@ test "X$PYTHON" = "X" && echo " Python tools (--with-python)" test "X$libxml2_libs" = "X" && echo " XML statistics (--with-libxml2)" test "X$have_libjson" = "X" && echo " JSON statistics (--with-libjson)" +if test "X$ac_unrecognized_opts" != "X"; then + echo + echo "Unrecognized options:" + echo " $ac_unrecognized_opts" +fi echo "========================================================================" if test "X$CRYPTO" = "X"; then