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

print "1..2\n";

if(Math::MPC::_has_longdouble() == Math::MPFR::_has_longdouble()) {print "ok 1\n"}
else {
  warn "\n  Math::MPC and Math::MPFR treat NV's (doubles) differently.\n",
       "  This breaks assumptions that have been made - and could result\n",
       "  in failing tests and/or strange behaviour. It is recommended that\n",
       "  both modules be built in the same way as regards support of long\n",
       "  doubles - see the Makefile.PL for information on how to control this\n"; 
  print "not ok 1\n";
}

if(Math::MPC::_has_longlong() == Math::MPFR::_has_longlong()) {print "ok 2\n"}
else {
  warn "\n  Math::MPC and Math::MPFR treat IV's (integers) differently.\n",
       "  This breaks assumptions that have been made - and could result\n",
       "  in failing tests and/or strange behaviour. It is recommended that\n",
       "  both modules be built in the same way as regards support of long\n",
       "  longs - see the Makefile.PL for information on how to control this\n"; 
  print "not ok 2\n";
}