in reply to Re^4: Supporting 64-bit ints on 32-bit perl
in thread Supporting 64-bit ints on 32-bit perl
I don't know how you achieve that alteration using Dist::Zilla to generate your Makefile.PL, but cpantesters would then report your module as "NA" instead of "FAIL".use strict; use warnings; use 5.010000; use ExtUtils::MakeMaker; if($Config::Config{ivsize} != 8) { warn "This module requires 64-bit integers"; exit 0; } # existing code then follows, unaltered.
|
|---|