Skip to content
Snippets Groups Projects
Commit 71ea31ae authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

test1014: GSS-API is only in curl-config. not in curl

Follow-up to commit 121bcfee. curl-config --features now lists
GSS-API but it is not a listed feature in curl -V. This should probably
be synchronized.
parent 313b274b
No related branches found
No related tags found
No related merge requests found
...@@ -32,7 +32,10 @@ open(CURLCONFIG, "sh $ARGV[0] --$what|") || die "Can't get curl-config $what lis ...@@ -32,7 +32,10 @@ open(CURLCONFIG, "sh $ARGV[0] --$what|") || die "Can't get curl-config $what lis
while( <CURLCONFIG> ) while( <CURLCONFIG> )
{ {
chomp; chomp;
push @curl_config, lc($_); # ignore curl-config --features not in curl's feature list
if(!/^(GSS-API)$/) {
push @curl_config, lc($_);
}
} }
close CURLCONFIG; close CURLCONFIG;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment