The R Project SVN R

Rev

Rev 63233 | Rev 63335 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 63233 Rev 63234
Line 33518... Line 33518...
33518
 
33518
 
33519
done
33519
done
33520
 
33520
 
33521
  fi
33521
  fi
33522
if test "x${have_lzma}" = xyes; then
33522
if test "x${have_lzma}" = xyes; then
33523
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if lzma version >= 5.0.0" >&5
33523
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if lzma version >= 5.0.3" >&5
33524
$as_echo_n "checking if lzma version >= 5.0.0... " >&6; }
33524
$as_echo_n "checking if lzma version >= 5.0.0... " >&6; }
33525
if ${r_cv_have_lzma+:} false; then :
33525
if ${r_cv_have_lzma+:} false; then :
33526
  $as_echo_n "(cached) " >&6
33526
  $as_echo_n "(cached) " >&6
33527
else
33527
else
33528
  ac_ext=c
33528
  ac_ext=c
Line 33545... Line 33545...
33545
#include <stdlib.h>
33545
#include <stdlib.h>
33546
int main() {
33546
int main() {
33547
    unsigned int ver = lzma_version_number();
33547
    unsigned int ver = lzma_version_number();
33548
    // This is 10000000*major + 10000*minor + 10*revision + [012]
33548
    // This is 10000000*major + 10000*minor + 10*revision + [012]
33549
    // I.e. xyyyzzzs and 5.1.2 would be 50010020
33549
    // I.e. xyyyzzzs and 5.1.2 would be 50010020
33550
    exit(ver < 50000000);
33550
    exit(ver < 50000030);
33551
}
33551
}
33552
 
33552
 
33553
_ACEOF
33553
_ACEOF
33554
if ac_fn_c_try_run "$LINENO"; then :
33554
if ac_fn_c_try_run "$LINENO"; then :
33555
  r_cv_have_lzma=yes
33555
  r_cv_have_lzma=yes