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

test1013.pl: remove SPNEGO/GSS-API tweaks

No longer necessary after Michael Osipov's rework
parent 3cad5ab7
No related branches found
No related tags found
No related merge requests found
......@@ -23,7 +23,7 @@ $curl_protocols =~ /\w+: (.*)$/;
@curl = split / /,$1;
# 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;
# Read the output of curl-config
......@@ -33,9 +33,7 @@ while( <CURLCONFIG> )
{
chomp;
# ignore curl-config --features not in curl's feature list
if(!/^(GSS-API)$/) {
push @curl_config, lc($_);
}
push @curl_config, lc($_);
}
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