summaryrefslogtreecommitdiff
path: root/scripts/ciconfig.pl
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2022-02-14 08:38:37 +0100
committerDaniel Stenberg <daniel@haxx.se>2022-02-14 08:38:37 +0100
commitbdf49e3366a7268053895218f2c955ccb4fcc779 (patch)
tree1098a5d3cc7465a3a50bc3a5f796d99f53455532 /scripts/ciconfig.pl
parentd8ddd0e7536c891647ef05c5f507f7e38f1bf645 (diff)
downloadcurl-bdf49e3366a7268053895218f2c955ccb4fcc779.tar.gz
scripts/ciconfig.pl: show used options not available
Diffstat (limited to 'scripts/ciconfig.pl')
-rwxr-xr-xscripts/ciconfig.pl8
1 files changed, 8 insertions, 0 deletions
diff --git a/scripts/ciconfig.pl b/scripts/ciconfig.pl
index b74bc9529..0d235b71b 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;
+ }
+}