From: Daniel Stenberg Date: Mon, 14 Feb 2022 07:38:37 +0000 (+0100) Subject: scripts/ciconfig.pl: show used options not available X-Git-Tag: curl-7_82_0~73 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bdf49e3366a7268053895218f2c955ccb4fcc779;p=thirdparty%2Fcurl.git scripts/ciconfig.pl: show used options not available --- diff --git a/scripts/ciconfig.pl b/scripts/ciconfig.pl index b74bc9529f..0d235b71b7 100755 --- a/scripts/ciconfig.pl +++ b/scripts/ciconfig.pl @@ -174,3 +174,11 @@ for my $w (sort keys %avail) { printf " %s\n", $w; } } + + +print "ENABLED configure options that aren't available\n"; +for my $w (sort keys %with) { + if(!$avail{$w}) { + printf " %s\n", $w; + } +}