test1013.pl: remove SPNEGO/GSS-API tweaks
No longer necessary after Michael Osipov's rework
This commit is contained in:
parent
3cad5ab77a
commit
a8206adcad
@ -23,7 +23,7 @@ $curl_protocols =~ /\w+: (.*)$/;
|
|||||||
@curl = split / /,$1;
|
@curl = split / /,$1;
|
||||||
|
|
||||||
# These features are not supported by curl-config
|
# These features are not supported by curl-config
|
||||||
@curl = grep(!/^(Debug|TrackMemory|Metalink|Largefile|CharConv|GSS-Negotiate|SPNEGO)$/i, @curl);
|
@curl = grep(!/^(Debug|TrackMemory|Metalink|Largefile|CharConv|GSS-Negotiate)$/i, @curl);
|
||||||
@curl = sort @curl;
|
@curl = sort @curl;
|
||||||
|
|
||||||
# Read the output of curl-config
|
# Read the output of curl-config
|
||||||
@ -33,10 +33,8 @@ while( <CURLCONFIG> )
|
|||||||
{
|
{
|
||||||
chomp;
|
chomp;
|
||||||
# ignore curl-config --features not in curl's feature list
|
# ignore curl-config --features not in curl's feature list
|
||||||
if(!/^(GSS-API)$/) {
|
|
||||||
push @curl_config, lc($_);
|
push @curl_config, lc($_);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
close CURLCONFIG;
|
close CURLCONFIG;
|
||||||
|
|
||||||
@curl_config = sort @curl_config;
|
@curl_config = sort @curl_config;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user