The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use warnings;
use strict;
use Math::MPFR qw(:mpfr);

print "1..4\n";

print  "# Using Math::MPFR version ", $Math::MPFR::VERSION, "\n";
print  "# Using mpfr library version ", MPFR_VERSION_STRING, "\n";
print  "# Using gmp library version ", Math::MPFR::gmp_v(), "\n";

if(MPFR_VERSION_MAJOR >= 3) {
  if(defined(Rmpfr_buildopt_tls_p())) {print "ok 1\n"}
  else {print "not ok 1\n"}
  if(defined(Rmpfr_buildopt_decimal_p())) {print "ok 2\n"}
  else {print "not ok 2\n"}
}
else {
  eval{Rmpfr_buildopt_tls_p();};
  if($@ =~ /Rmpfr_buildopt_tls_p not implemented/) {print "ok 1\n"}
  else {print "not ok 1\n"}
  eval{Rmpfr_buildopt_decimal_p();};
  if($@ =~ /Rmpfr_buildopt_decimal_p not implemented/) {print "ok 2\n"}
  else {print "not ok 2\n"}
}

if((MPFR_VERSION_MAJOR == 3 && MPFR_VERSION_MINOR >= 1) || MPFR_VERSION_MAJOR > 3) {
  if(defined(Rmpfr_buildopt_tune_case())) {print "ok 3\n"}
  else {print "not ok 3\n"}
  if(defined(Rmpfr_buildopt_gmpinternals_p())) {print "ok 4\n"}
  else {print "not ok 4\n"}
}
else {
  eval{Rmpfr_buildopt_tune_case();};
  if($@ =~ /Rmpfr_buildopt_tune_case not implemented/) {print "ok 3\n"}
  else {print "not ok 3\n"}
  eval{Rmpfr_buildopt_gmpinternals_p();};
  if($@ =~ /Rmpfr_buildopt_gmpinternals_p not implemented/) {print "ok 4\n"}
  else {print "not ok 4\n"}
}