Home | History | Annotate | Download | only in libtest

Lines Matching refs:CURL

2 # Determine if curl-config --version matches the curl --version
5 print "Usage: $0 curl-config-script curl-version-output-file version|vernum\n";
11 # Read the output of curl --version
12 open(CURL, "$ARGV[1]") || die "Can't open curl --version list in $ARGV[1]\n";
13 $_ = <CURL>;
17 close CURL;
21 # Read the output of curl-config --version/--vernum
22 open(CURLCONFIG, "sh $ARGV[0] --$what|") || die "Can't get curl-config --$what list\n";
43 # Strip off the -DEV from the curl version if it's there
51 print "curl: $version\n";
52 print "curl-config: $curlconfigversion\n";