Revert "Update to 7.40.1"
[platform/upstream/curl.git] / tests / libtest / test1013.pl
index b680273..37f98d7 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)$/i, @curl);
+@curl = grep(!/^(Debug|TrackMemory|Metalink|Largefile|CharConv|GSS-Negotiate|SPNEGO)$/i, @curl);
 @curl = sort @curl;
 
 # Read the output of curl-config
@@ -33,7 +33,9 @@ while( <CURLCONFIG> )
 {
     chomp;
     # ignore curl-config --features not in curl's feature list
-    push @curl_config, lc($_);
+    if(!/^(GSS-API)$/) {
+        push @curl_config, lc($_);
+    }
 }
 close CURLCONFIG;