2008-02-07 20:21:03 -05:00
|
|
|
#!/usr/bin/env perl
|
|
|
|
# Determine if curl-config --version matches the curl --version
|
2010-02-14 14:40:18 -05:00
|
|
|
if ( $#ARGV != 2 )
|
2008-02-07 20:21:03 -05:00
|
|
|
{
|
2010-02-16 08:32:45 -05:00
|
|
|
print "Usage: $0 curl-config-script curl-version-output-file version|vernum\n";
|
|
|
|
exit 3;
|
2008-02-07 20:21:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
my $what=$ARGV[2];
|
|
|
|
|
|
|
|
# Read the output of curl --version
|
|
|
|
open(CURL, "$ARGV[1]") || die "Can't open curl --version list in $ARGV[1]\n";
|
|
|
|
$_ = <CURL>;
|
|
|
|
chomp;
|
2011-04-20 17:11:12 -04:00
|
|
|
/libcurl\/([\.\d]+((-DEV)|(-\d+))?)/;
|
2008-02-07 20:21:03 -05:00
|
|
|
my $version = $1;
|
|
|
|
close CURL;
|
|
|
|
|
|
|
|
my $curlconfigversion;
|
|
|
|
|
|
|
|
# Read the output of curl-config --version/--vernum
|
|
|
|
open(CURLCONFIG, "sh $ARGV[0] --$what|") || die "Can't get curl-config --$what list\n";
|
|
|
|
$_ = <CURLCONFIG>;
|
|
|
|
chomp;
|
2011-04-18 03:03:12 -04:00
|
|
|
my $filever=$_;
|
2008-02-07 20:21:03 -05:00
|
|
|
if ( $what eq "version" ) {
|
2011-04-20 17:11:12 -04:00
|
|
|
if($filever =~ /^libcurl ([\.\d]+((-DEV)|(-\d+))?)$/) {
|
2011-04-18 03:03:12 -04:00
|
|
|
$curlconfigversion = $1;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$curlconfigversion = "illegal value";
|
|
|
|
}
|
2008-02-07 20:21:03 -05:00
|
|
|
}
|
2011-04-21 17:47:35 -04:00
|
|
|
else { # "vernum" case
|
2010-02-16 08:32:45 -05:00
|
|
|
# Convert hex version to decimal for comparison's sake
|
2011-04-18 03:03:12 -04:00
|
|
|
if($filever =~ /^(..)(..)(..)$/) {
|
|
|
|
$curlconfigversion = hex($1) . "." . hex($2) . "." . hex($3);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$curlconfigversion = "illegal value";
|
|
|
|
}
|
2008-02-07 20:21:03 -05:00
|
|
|
|
2010-03-25 05:38:17 -04:00
|
|
|
# Strip off the -DEV from the curl version if it's there
|
2011-04-21 17:47:35 -04:00
|
|
|
$version =~ s/-\w*$//;
|
2008-02-07 20:21:03 -05:00
|
|
|
}
|
|
|
|
close CURLCONFIG;
|
|
|
|
|
|
|
|
my $different = $version ne $curlconfigversion;
|
|
|
|
if ($different || !$version) {
|
2010-02-16 08:32:45 -05:00
|
|
|
print "Mismatch in --version:\n";
|
|
|
|
print "curl: $version\n";
|
|
|
|
print "curl-config: $curlconfigversion\n";
|
|
|
|
exit 1;
|
2008-02-07 20:21:03 -05:00
|
|
|
}
|