CLI-Popt

 view release on metacpan or  search on metacpan

easyxs/ppport.h  view on Meta::CPAN

10892
10893
10894
10895
10896
10897
10898
10899
10900
10901
10902
10903
10904
10905
10906
10907
10908
10909
10910
10911
10912
                  "help by submitting a documentation patch";
        }
        print ".\n";
        if ($todo) {
            if ($todo <= $int_min_perl) {
                print "It may very well be supported all the way back to ",
                      format_version(5.003_07), ".\n";
            }
            else {
                print "But given the things $f depends on, it's a good",
                      " guess that it isn't\n",
                      "supported prior to ", format_version($todo), ".\n";
            }
        }
    }
}
if ($API{$f}{provided}) {
  print "Support needs to be explicitly requested by #define NEED_$f\n",
        "(or #define NEED_${f}_GLOBAL).\n"              if exists $need{$f};
  $info++;
}

easyxs/ppport.h  view on Meta::CPAN

12063
12064
12065
12066
12067
12068
12069
12070
12071
12072
12073
12074
12075
12076
12077
12078
12079
12080
12081
12082
#ifndef UV_MAX
#  define UV_MAX                         PERL_ULONG_MAX
#endif
 
#endif
 
#ifndef IVSIZE
#  ifdef LONGSIZE
#    define IVSIZE LONGSIZE
#  else
#    define IVSIZE 4 /* A bold guess, but the best we can make. */
#  endif
#endif
#ifndef UVTYPE
#  define UVTYPE                         unsigned IVTYPE
#endif
 
#ifndef UVSIZE
#  define UVSIZE                         IVSIZE
#endif



( run in 0.301 second using v1.01-cache-2.11-cpan-3cd7ad12f66 )