]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
test1013.pl: remove SPNEGO/GSS-API tweaks
authorDaniel Stenberg <daniel@haxx.se>
Tue, 22 Jul 2014 09:01:04 +0000 (11:01 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Tue, 22 Jul 2014 22:01:39 +0000 (00:01 +0200)
No longer necessary after Michael Osipov's rework

tests/libtest/test1013.pl

index 37f98d74cfd4e69a8bd8fd11bfed0610db2bd52b..e2473c93bbd564e0217c5d245e4ae62dcbc2b260 100755 (executable)
@@ -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;