Commit 71ea31ae authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

test1014: GSS-API is only in curl-config. not in curl

Follow-up to commit 121bcfee. curl-config --features now lists
GSS-API but it is not a listed feature in curl -V. This should probably
be synchronized.
parent 313b274b
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -32,8 +32,11 @@ open(CURLCONFIG, "sh $ARGV[0] --$what|") || die "Can't get curl-config $what lis
while( <CURLCONFIG> )
{
    chomp;
    # ignore curl-config --features not in curl's feature list
    if(!/^(GSS-API)$/) {
        push @curl_config, lc($_);
    }
}
close CURLCONFIG;

@curl_config = sort @curl_config;