scripts/ciconfig.pl: show used options not available

This commit is contained in:
Daniel Stenberg 2022-02-14 08:38:37 +01:00
parent d8ddd0e753
commit bdf49e3366
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -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;
}
}