mirror of
https://github.com/curl/curl.git
synced 2026-04-14 22:41:40 +03:00
test1014: GSS-API is only in curl-config. not in curl
Follow-up to commit 121bcfee5d. curl-config --features now lists
GSS-API but it is not a listed feature in curl -V. This should probably
be synchronized.
This commit is contained in:
parent
313b274b9d
commit
71ea31ae74
1 changed files with 4 additions and 1 deletions
|
|
@ -32,7 +32,10 @@ open(CURLCONFIG, "sh $ARGV[0] --$what|") || die "Can't get curl-config $what lis
|
|||
while( <CURLCONFIG> )
|
||||
{
|
||||
chomp;
|
||||
push @curl_config, lc($_);
|
||||
# ignore curl-config --features not in curl's feature list
|
||||
if(!/^(GSS-API)$/) {
|
||||
push @curl_config, lc($_);
|
||||
}
|
||||
}
|
||||
close CURLCONFIG;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue